/* ==========================================================================
   Ceviche & Pisco - Concepción (Peruvian Food Internacional)
   Clean Light Theme, Dual Hero Media & Mobile-First Optimization
   ========================================================================== */

:root {
  /* Brand Colors */
  --brand-red: #C8102E;
  --brand-red-dark: #A00B22;
  --brand-red-light: #E02444;
  --brand-red-subtle: rgba(200, 16, 46, 0.08);
  --brand-red-border: rgba(200, 16, 46, 0.25);
  
  --brand-gold: #B88628;
  --brand-gold-light: #D4A038;
  --brand-gold-subtle: rgba(184, 134, 40, 0.1);
  
  /* Surfaces */
  --bg-main: #FBFBFA;
  --bg-surface: #F4F4F1;
  --bg-card: #FFFFFF;
  --bg-dark-banner: #111315;
  
  --border-light: #E6E4DE;
  --border-card: #ECEAE4;
  
  --text-title: #14171A;
  --text-body: #474E57;
  --text-muted: #737D89;
  --text-dim: #9AA3AF;
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.1);
  --shadow-modal: 0 20px 60px rgba(0, 0, 0, 0.25);
  
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-title);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.22;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Lucide Vector Icons standard sizing */
.icon-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  stroke-width: 1.75;
}

.icon-svg-lg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.icon-svg-sm {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

/* ---------------- Top Contact Ribbon ---------------- */
.top-header-banner {
  background-color: var(--brand-red);
  color: #fff;
  padding: 7px 0;
  font-size: 0.82rem;
  font-weight: 500;
}

.top-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-header-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-header-link {
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}

/* ---------------- Main Navbar ---------------- */
.site-navbar {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand-anchor {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-file {
  height: 64px;
  width: auto;
  border-radius: var(--radius-xs);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
  border: 1px solid rgba(200, 16, 46, 0.12);
  transition: transform 0.3s ease;
}

.brand-anchor:hover .brand-logo-file {
  transform: scale(1.02);
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-h1 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.1;
  letter-spacing: 0.2px;
}

.brand-h1 span {
  color: var(--brand-red);
  font-style: italic;
}

.brand-subline {
  font-size: 0.7rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--brand-red);
  font-weight: 700;
}

.nav-links-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.nav-links-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
}

.nav-links-menu a:hover, .nav-links-menu a.active {
  color: var(--brand-red);
}

.nav-links-menu a.active::after, .nav-links-menu a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--brand-red);
  border-radius: 2px;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-mobile-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-title);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-xs);
}

/* ---------------- Action Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  font-family: var(--font-sans);
  text-transform: uppercase;
  touch-action: manipulation;
}

.btn-red {
  background-color: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

.btn-red:hover {
  background-color: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.35);
}

.btn-outline {
  background-color: #fff;
  color: var(--text-title);
  border-color: var(--border-light);
}

.btn-outline:hover {
  background-color: var(--bg-surface);
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #1F9D55;
  color: #fff;
  border-color: #1F9D55;
}

.btn-whatsapp:hover {
  background-color: #178345;
  border-color: #178345;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.8rem;
}

.btn-block {
  width: 100%;
}

/* ---------------- Hero Restaurant Atmosphere (With Full Background Image Behind Structure) ---------------- */
.hero-section {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 255, 255, 0.82) 100%),
              url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
  padding: 65px 0 85px;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background-color: var(--brand-red);
}

.hero-h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 18px;
  color: var(--text-title);
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-red);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 530px;
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Quick Features Row */
.hero-quick-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.quick-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background-color: var(--brand-red-subtle);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quick-feat-text h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.2;
}

.quick-feat-text p {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Hero Reservation Box */
.hero-reserve-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.reserve-box-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.reserve-form-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 10px;
  align-items: flex-end;
}

.input-unit label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 600;
}

.input-unit select, .input-unit input {
  width: 100%;
  padding: 10px 12px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  color: var(--text-title);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}

.input-unit select:focus, .input-unit input:focus {
  border-color: var(--brand-red);
  background-color: #fff;
}

/* ---------------- HERO DUAL/TRIPLE IMAGES COMPOSITION ---------------- */
.hero-dual-images-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}

.hero-dual-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-main-photo-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 460px;
}

.hero-main-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main-photo-frame:hover img {
  transform: scale(1.03);
}

.hero-side-photo-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  height: 223px;
}

.hero-side-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-side-photo-frame:hover img {
  transform: scale(1.03);
}

.photo-label-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(18, 20, 24, 0.88);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------------- Sections Common ---------------- */
.site-section {
  padding: 85px 0;
}

.site-section-alt {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 45px;
}

.section-tagline {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-red);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--text-title);
  margin-bottom: 12px;
}

.section-subtext {
  color: var(--text-body);
  font-size: 0.98rem;
}

/* ---------------- Menu Presentation ---------------- */
.menu-tabs-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px;
}

.tab-btn {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-body);
  padding: 9px 18px;
  border-radius: var(--radius-xs);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.25);
}

.dishes-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 26px;
}

.dish-card-item {
  background-color: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.dish-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand-red-border);
  box-shadow: var(--shadow-hover);
}

.dish-photo-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dish-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card-item:hover .dish-photo-box img {
  transform: scale(1.04);
}

.dish-badge-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  color: var(--brand-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dish-info-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dish-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.dish-item-name {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  color: var(--text-title);
}

.dish-item-price {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-red);
  white-space: nowrap;
}

.dish-item-desc {
  font-size: 0.87rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.55;
  flex: 1;
}

.dish-pairing-note {
  background-color: var(--bg-surface);
  border-left: 3px solid var(--brand-gold);
  padding: 7px 12px;
  font-size: 0.78rem;
  color: var(--text-title);
  margin-bottom: 16px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dish-pairing-note span {
  color: var(--brand-gold);
  font-weight: 700;
}

.dish-card-foot {
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dish-card-foot span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.dish-card-foot button {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-title);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dish-card-foot button:hover {
  border-color: var(--brand-red);
  color: #fff;
  background-color: var(--brand-red);
}

/* ---------------- PHOTOGRAPHY GALLERY SECTION ---------------- */
.gallery-section {
  padding: 80px 0;
}

.gallery-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-photo-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 240px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-photo-item.span-2 {
  grid-column: span 2;
}

.gallery-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-photo-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-photo-item:hover .gallery-overlay-caption {
  opacity: 1;
}

.gallery-caption-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.gallery-caption-sub {
  font-size: 0.74rem;
  color: #e5e7eb;
}

/* ---------------- Culinary Pillars ---------------- */
.pillars-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-item {
  background-color: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pillar-item:hover {
  border-color: var(--brand-red-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.pillar-icon-round {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-color: var(--brand-red-subtle);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-title);
}

.pillar-item p {
  color: var(--text-body);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ---------------- REVIEWS SECTION ---------------- */
.reviews-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--brand-gold);
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.review-quote {
  font-size: 0.9rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 16px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--brand-red-subtle);
  color: var(--brand-red);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.reviewer-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-title);
}

.reviewer-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ---------------- Pisco Bar Showcase ---------------- */
.pisco-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.cocktail-menu-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.cocktail-row-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xs);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cocktail-row-card:hover {
  border-color: var(--brand-red-border);
}

.cocktail-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-title);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cocktail-ingredients {
  font-size: 0.8rem;
  color: var(--text-body);
}

.cocktail-price-val {
  font-weight: 800;
  color: var(--brand-red);
  font-size: 1.05rem;
  margin-left: 15px;
  white-space: nowrap;
}

/* ---------------- Reservation Modal & Form ---------------- */
.modal-backdrop-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 20, 25, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop-wrap.active {
  display: flex;
}

.modal-content-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
}

.modal-head {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-head h2 {
  font-size: 1.4rem;
  margin-bottom: 3px;
  color: var(--text-title);
}

.modal-head p {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.modal-close-button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
}

.modal-close-button:hover {
  color: var(--text-title);
}

.modal-form-body {
  padding: 22px 24px;
}

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group-unit {
  margin-bottom: 14px;
}

.form-group-unit label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group-unit input,
.form-group-unit select,
.form-group-unit textarea {
  width: 100%;
  padding: 11px 12px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
  color: var(--text-title);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-group-unit input:focus,
.form-group-unit select:focus,
.form-group-unit textarea:focus {
  border-color: var(--brand-red);
  background-color: #fff;
}

/* ---------------- Location Section ---------------- */
.location-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.location-info-panel {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}

.loc-item-line {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.loc-icon-holder {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-xs);
  background-color: var(--brand-red-subtle);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-content-text h4 {
  font-size: 0.98rem;
  margin-bottom: 3px;
  color: var(--text-title);
}

.loc-content-text p {
  color: var(--text-body);
  font-size: 0.88rem;
}

.map-embed-box {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.map-embed-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------- Floating Reservation Trigger ---------------- */
.floating-reserve-link {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--brand-red);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.floating-reserve-link:hover {
  background-color: var(--brand-red-dark);
  transform: translateY(-2px);
}

/* ---------------- Footer ---------------- */
.site-footer {
  background-color: #121417;
  color: #fff;
  border-top: 1px solid #23272D;
  padding: 60px 0 28px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand-summary .brand-h1 {
  color: #fff;
}

.footer-brand-summary p {
  color: #9CA3AF;
  font-size: 0.88rem;
  margin: 12px 0 18px;
  max-width: 320px;
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.social-pill-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1F2328;
  border: 1px solid #2F353D;
  color: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-pill-link:hover {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}

.footer-col-nav h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-menu-links {
  list-style: none;
}

.footer-menu-links li {
  margin-bottom: 9px;
}

.footer-menu-links a {
  color: #9CA3AF;
  font-size: 0.86rem;
}

.footer-menu-links a:hover {
  color: #fff;
}

.footer-legal-bar {
  padding-top: 20px;
  border-top: 1px solid #23272D;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6B7280;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE PERFECTION
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-tag {
    justify-content: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-quick-features {
    grid-template-columns: repeat(3, 1fr);
  }
  .reserve-form-row {
    grid-template-columns: 1fr 1fr;
  }
  .reserve-form-row button {
    grid-column: 1 / -1;
  }
  .hero-dual-images-layout {
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-main-photo-frame {
    height: 380px;
  }
  .hero-side-photo-frame {
    height: 182px;
  }
  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-photo-item.span-2 {
    grid-column: span 1;
  }
  .pillars-grid-3 {
    grid-template-columns: 1fr;
  }
  .reviews-grid-3 {
    grid-template-columns: 1fr;
  }
  .pisco-bar-grid {
    grid-template-columns: 1fr;
  }
  .location-row-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-header-left span:nth-child(2) {
    display: none;
  }
  .top-header-banner {
    padding: 6px 0;
    font-size: 0.78rem;
  }
  .site-navbar .nav-inner {
    height: 76px;
  }
  .brand-logo-file {
    height: 52px;
  }
  .brand-h1 {
    font-size: 1.2rem;
  }
  .brand-subline {
    font-size: 0.62rem;
    letter-spacing: 1.4px;
  }
  .nav-right-actions #navReserveBtn {
    display: none; /* Keep header clean on mobile, accessible via floating button and menu */
  }
  .nav-links-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 30px 24px;
    gap: 22px;
    transition: left 0.3s ease;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    align-items: flex-start;
  }
  .nav-links-menu.active {
    left: 0;
  }
  .nav-links-menu a {
    font-size: 1.1rem;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-mobile-btn {
    display: block;
  }
  
  .hero-section {
    padding: 35px 0 50px;
  }
  .hero-h1 {
    font-size: 2.1rem;
  }
  .hero-lead {
    font-size: 0.95rem;
  }
  .hero-quick-features {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }
  .reserve-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-dual-images-layout {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
  }
  .hero-main-photo-frame {
    height: 220px;
  }
  .hero-side-photo-frame {
    height: 105px;
  }
  
  .form-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .dishes-grid-layout {
    grid-template-columns: 1fr;
  }
  .gallery-masonry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-photo-item {
    height: 200px;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .floating-reserve-link {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.78rem;
  }
}
