/* Global Styles */
/* Navbar */
/* Hero */
/* About */
/* Menu */
/* Gallery */
/* Reservation */
/* Contact */
/* Footer */
/* Responsive Styles */

/* ════════════════════════════════════════════════════════════════
   DOLMAMA · Editorial Heritage Design System
   Palette inspired by 190-year-old vine, wall patina, wine, dolma
   ════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Heritage cream + wine + vine */
  --cream:        #F4ECD8;   /* tablecloth ivory */
  --cream-2:      #EAE0C8;
  --cream-3:      #FAF5E7;
  --paper:        #F9F3E2;
  --burgundy:     #6B1A2A;   /* wine red */
  --burgundy-d:   #4A0F1E;
  --pomegranate:  #B23A2E;   /* dolma garnish red */
  --gold:         #B8893B;   /* aged gold/sienna */
  --gold-l:       #D4A95E;
  --vine:         #4A6B3D;   /* leaf green */
  --vine-d:       #2E4527;
  --walnut:       #3D2817;   /* deep wood */
  --ink:          #2A1F18;
  --muted:        #8A7B68;
  --line:         #D4C8B0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --max-w: 1320px;
}

html { scroll-behavior: smooth; }
html { overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Paper grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
}

/* Atmospheric glow layer (subtle, ambient lighting) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 15% 10%, rgba(184,137,59,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 900px 700px at 85% 90%, rgba(107,26,42,0.06) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--burgundy); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--walnut); line-height: 1.1; }
em.italic { font-style: italic; color: var(--burgundy); font-weight: 400; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.divider-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 28px auto;
}
.divider-dot::before, .divider-dot::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.divider-dot span {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(45deg);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 38px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s, box-shadow 0.4s, color 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: -1;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(107,26,42,0.18);
}
.btn-primary:hover {
  background: var(--burgundy-d);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(107,26,42,0.32);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(184,137,59,0.25);
}
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(184,137,59,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244,236,216,0.4);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(244,236,216,0.08); }

.btn .arrow {
  width: 14px; height: 14px;
  transition: transform 0.3s;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.scrolled {
  padding: 8px 56px;
  background: rgba(244,236,216,0.85);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid rgba(184,137,59,0.15);
  box-shadow: 0 4px 30px rgba(42,31,24,0.04);
}
.nav.on-dark {
  --nav-text: rgba(244,236,216,0.85);
  --nav-text-hover: var(--cream);
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(42,31,24,0.75);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--burgundy); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; left: 0; }

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 6px;
  cursor: pointer;
  position: relative;
}
.nav-logo-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(184,137,59,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 20px rgba(107,26,42,0.08), inset 0 0 0 4px rgba(244,236,216,0.6);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-logo-circle::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(184,137,59,0.4);
  animation: spinSlow 60s linear infinite;
  pointer-events: none;
}
.nav-logo-circle img {
  height: 50px;
  width: auto;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
  transform: translate(-17%, -4%);
  transform-origin: center;
  transition: height 0.4s ease, transform 0.4s ease;
}
.nav.scrolled .nav-logo-circle {
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 14px rgba(107,26,42,0.1);
}
.nav.scrolled .nav-logo-circle img { height: 36px; }
.nav.scrolled .nav-logo-circle::before { inset: -5px; }

@keyframes spinSlow { to { transform: rotate(360deg); } }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--walnut);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  transition: all 0.4s;
}
.nav.scrolled .nav-logo-text { font-size: 17px; }
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}
.nav.scrolled .nav-logo-sub { display: none; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
}
.lang-btn {
  background: none;
  border: none;
  padding: 6px 8px;
  color: rgba(42,31,24,0.4);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--walnut); }
.lang-btn.active { color: var(--burgundy); }
.lang-sep { color: rgba(42,31,24,0.2); }

.nav-reserve {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  border: 1px solid var(--burgundy);
  padding: 10px 22px;
  transition: all 0.25s;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  font-weight: 500;
}
.nav-reserve:hover { background: var(--burgundy); color: var(--cream); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

@media (max-width: 1100px) {
  .nav { padding: 0 24px; grid-template-columns: auto 1fr auto; }
  .nav-left .nav-link, .nav-right .nav-link, .nav-right .lang-switch, .nav-right .nav-reserve { display: none; }
  .nav-left { order: 1; }
  .nav-logo { order: 2; justify-self: center; }
  .nav-right { order: 3; }
  .hamburger { display: flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 80px 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--walnut);
  text-decoration: none;
  cursor: pointer;
}
.mobile-menu a:hover { color: var(--burgundy); }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}
.mobile-cta {
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.mobile-lang {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

/* ── PAGES ── */
.page { display: none; animation: pageIn 0.4s ease; }
.page.active { display: block; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  padding: 140px 56px 100px;
  gap: 0;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,59,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,26,42,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}
.hero-content {
  padding: 0 60px 0 0;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.5vw, 104px);
  font-weight: 400;
  line-height: 0.98;
  color: var(--walnut);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 500;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--walnut);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.hero-image-wrap {
  position: relative;
  height: 82vh;
  min-height: 620px;
  z-index: 1;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 30px 80px rgba(42,31,24,0.18), 0 8px 24px rgba(42,31,24,0.08);
}
.hero-image-frame {
  position: absolute;
  top: 28px; right: -28px; bottom: -28px; left: 28px;
  border: 1px solid rgba(184,137,59,0.45);
  pointer-events: none;
  z-index: 0;
}
.hero-image-tag {
  position: absolute;
  bottom: 32px;
  right: -28px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 18px 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  max-width: 240px;
  z-index: 2;
}
.hero-image-tag::before {
  content: '«';
  position: absolute;
  left: 12px; top: 4px;
  font-size: 32px;
  color: var(--gold);
  opacity: 0.5;
  font-style: normal;
}
.hero-image-tag strong {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  font-weight: 500;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 48px;
  }
  .hero-content { padding: 0; }
  .hero-image-wrap { height: 70vh; min-height: 420px; }
  .hero-image-frame { display: none; }
  .hero-image-tag { right: 16px; bottom: 16px; max-width: 200px; font-size: 14px; padding: 14px 18px; }
}

/* ════════════════════════════════════
   HERITAGE BAND (Since 1998)
════════════════════════════════════ */
.heritage-band {
  background: var(--burgundy);
  color: var(--cream);
  padding: 28px 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}
.heritage-band-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.heritage-band-item .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.heritage-band-item strong {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 4px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .heritage-band { padding: 24px; gap: 20px; flex-direction: column; }
  .heritage-band-item { font-size: 15px; }
}

/* ════════════════════════════════════
   STORY SECTION
════════════════════════════════════ */
.story {
  padding: 140px 56px;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
  position: relative;
  background: var(--cream);
}
.story::before {
  content: '1998';
  position: absolute;
  top: 80px;
  right: 5%;
  font-family: var(--font-display);
  font-size: 320px;
  font-weight: 300;
  font-style: italic;
  color: rgba(107,26,42,0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.story-images {
  position: relative;
  z-index: 1;
}
.story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.story-quote-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--cream);
  padding: 18px 24px;
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--walnut);
  max-width: 220px;
  line-height: 1.5;
}
.story-quote-badge::before {
  content: '"';
  font-size: 40px;
  color: var(--burgundy);
  position: absolute;
  top: 0; left: 8px;
  line-height: 1;
}
.story-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.story-text h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  margin: 18px 0 30px;
  line-height: 1.02;
  max-width: 620px;
}
.story-text p {
  font-size: clamp(15.5px, 1vw, 16.5px);
  color: var(--walnut);
  line-height: 1.82;
  margin-bottom: 19px;
  max-width: 660px;
}
.story-text p[hidden] {
  display: none;
}
.story-text .signature {
  margin-top: 36px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--burgundy);
}
.story-text .signature small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  margin-top: 6px;
  letter-spacing: 0.2em;
}

@media (max-width: 1024px) {
  .story { grid-template-columns: 1fr; padding: 80px 24px; gap: 80px; }
  .story::before { font-size: 180px; right: 0; }
}

/* ════════════════════════════════════
   SIGNATURE DISH
════════════════════════════════════ */
.signature-dish {
  background: var(--burgundy);
  color: var(--cream);
  padding: 130px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.signature-dish::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,59,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.signature-dish .eyebrow { color: var(--gold-l); }
.signature-dish .eyebrow::before { background: var(--gold-l); }
.signature-dish h2 {
  font-size: clamp(44px, 5vw, 76px);
  color: var(--cream);
  margin: 20px 0 28px;
  line-height: 1.02;
}
.signature-dish h2 em { color: var(--gold-l); font-style: italic; }
.signature-dish p {
  font-size: 16.5px;
  color: rgba(244,236,216,0.85);
  line-height: 1.95;
  margin-bottom: 24px;
  max-width: 520px;
}
.signature-dish .price {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0 36px;
  padding: 14px 22px;
  border: 1px solid rgba(184,137,59,0.5);
  font-family: var(--font-display);
}
.signature-dish .price strong {
  font-size: 30px;
  color: var(--gold-l);
  font-weight: 500;
  font-style: italic;
}
.signature-dish .price span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.6);
}
.signature-dish-image {
  position: relative;
  aspect-ratio: 4/5;
}
.signature-dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.signature-tag {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .signature-dish { grid-template-columns: 1fr; padding: 80px 24px; gap: 56px; }
}

/* ════════════════════════════════════
   MENU HIGHLIGHTS
════════════════════════════════════ */
.menu-highlights {
  padding: 140px 56px;
  background: var(--paper);
}
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header h2 {
  font-size: clamp(44px, 5vw, 76px);
  margin-top: 22px;
  line-height: 1.02;
}
.section-header h2 em { font-style: italic; color: var(--burgundy); }
.section-header p {
  font-size: 16px;
  color: var(--walnut);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.85;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.dish-card {
  background: var(--cream);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
  box-shadow: 0 4px 14px rgba(42,31,24,0.05);
}
.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(42,31,24,0.14);
}
.dish-card-img-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.dish-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.dish-card:hover .dish-card-img-wrap img { transform: scale(1.05); }
.dish-card-body {
  padding: 32px 28px 34px;
  text-align: left;
}
.dish-card-cat {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.dish-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}
.dish-card .desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
  min-height: 70px;
}
.dish-card .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.dish-card .price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--burgundy);
  font-style: italic;
  font-weight: 500;
}
.dish-card .meta-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vine);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .menu-highlights { padding: 80px 24px; }
  .dish-grid { grid-template-columns: 1fr; gap: 32px; }
  .dish-card .desc { min-height: auto; }
}

/* ════════════════════════════════════
   COURTYARD (190-year vine)
════════════════════════════════════ */
.courtyard {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.courtyard-image {
  background-size: cover;
  background-position: center;
}
.courtyard-text {
  background: var(--vine-d);
  color: var(--cream);
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.courtyard-text .eyebrow { color: var(--gold-l); }
.courtyard-text .eyebrow::before { background: var(--gold-l); }
.courtyard-text h2 {
  color: var(--cream);
  font-size: clamp(40px, 4.5vw, 64px);
  margin: 22px 0 28px;
  line-height: 1.02;
}
.courtyard-text h2 em { color: var(--gold-l); font-style: italic; }
.courtyard-text p {
  font-size: 16px;
  color: rgba(244,236,216,0.82);
  line-height: 1.95;
  margin-bottom: 22px;
  max-width: 480px;
}
@media (max-width: 1024px) {
  .courtyard { grid-template-columns: 1fr; }
  .courtyard-image { min-height: 420px; }
  .courtyard-text { padding: 60px 24px; }
}

/* ════════════════════════════════════
   GALLERY GRID
════════════════════════════════════ */
.gallery-section {
  padding: 140px 56px;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(150px, 12vw, 210px);
  grid-auto-flow: dense;
  gap: clamp(10px, 1.05vw, 16px);
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
  border-radius: 8px;
  isolation: isolate;
  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,0.3), transparent 44%),
    linear-gradient(135deg, #e8dcc5 0%, #f6efdf 48%, #d8c6a8 100%);
  border: 1px solid rgba(184,137,59,0.18);
  box-shadow: 0 4px 14px rgba(42,31,24,0.06);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s, border-color 0.5s;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: -18px;
  z-index: 0;
  background-image: var(--gallery-image);
  background-size: cover;
  background-position: center;
  opacity: 0.46;
  filter: blur(20px) saturate(0.9) contrast(0.92);
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(244,236,216,0.34), rgba(244,236,216,0.34)),
    radial-gradient(circle at center, transparent 30%, rgba(42,31,24,0.12) 100%);
  pointer-events: none;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(42,31,24,0.18);
  border-color: rgba(184,137,59,0.34);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  padding: clamp(8px, 0.8vw, 14px);
  box-sizing: border-box;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  object-position: center;
  transition: filter 0.4s ease;
  filter: saturate(0.98) contrast(1.02);
}
.gallery-item:hover img { transform: none; filter: saturate(1.12) contrast(1.04); }
.gallery-item,
.gallery-item.span-1,
.gallery-item.span-2,
.gallery-item.tall,
.gallery-item.wide,
.gallery-item.feature,
.gallery-item.med {
  grid-column: span 3;
  grid-row: span 1;
}
.gallery-item:nth-child(6n + 1) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(6n + 2) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(6n + 5),
.gallery-item:nth-child(6n) { grid-column: span 6; grid-row: span 1; }

@media (max-width: 900px) {
  .gallery-section { padding: 80px 24px; }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: clamp(145px, 24vw, 210px);
    gap: 12px;
  }
  .gallery-item,
  .gallery-item.span-2,
  .gallery-item.span-1,
  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.feature,
  .gallery-item.med {
    grid-column: span 3;
    grid-row: span 1;
  }
  .gallery-item:nth-child(6n + 1) { grid-column: span 6; grid-row: span 2; }
  .gallery-item:nth-child(6n + 2) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(6n + 5),
  .gallery-item:nth-child(6n) { grid-column: span 3; grid-row: span 1; }
}

/* ════════════════════════════════════
   REVIEWS
════════════════════════════════════ */
.reviews-section { padding: 140px 56px; background: var(--paper); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.review-card {
  background: var(--cream);
  padding: 44px 36px;
  position: relative;
  border-top: 2px solid var(--burgundy);
}
.review-quote-mark {
  position: absolute;
  top: -20px; left: 32px;
  background: var(--burgundy);
  color: var(--cream);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
}
.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin: 14px 0 16px;
}
.review-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.7;
  color: var(--walnut);
  margin-bottom: 28px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}
.review-author-info strong {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-weight: 500;
}
.review-author-info span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .reviews-section { padding: 80px 24px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   RESERVATION CTA / FORM
════════════════════════════════════ */
.reserve-cta {
  padding: 130px 56px;
  background: var(--burgundy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.reserve-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,137,59,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(178,58,46,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.reserve-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.reserve-cta h2 {
  color: var(--cream);
  font-size: clamp(40px, 5vw, 68px);
  margin: 22px 0 22px;
  line-height: 1.02;
}
.reserve-cta h2 em { color: var(--gold-l); font-style: italic; }
.reserve-cta p {
  font-size: 16.5px;
  color: rgba(244,236,216,0.82);
  margin: 0 auto 44px;
  max-width: 540px;
  line-height: 1.85;
}
.reserve-cta .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.reserve-cta .btn-gold { background: var(--gold-l); }
.reserve-cta .btn-gold:hover { background: var(--gold); }
.reserve-cta .eyebrow { color: rgba(244,236,216,0.6); }
.reserve-cta .eyebrow::before, .reserve-cta .eyebrow::after { background: rgba(244,236,216,0.4); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 56px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-brand img {
  height: 80px;
  width: auto;
  filter: invert(1) brightness(1.4);
  opacity: 0.9;
  margin-bottom: 20px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 30px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(244,236,216,0.55);
  line-height: 1.85;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a, .footer-col span {
  font-size: 14px;
  color: rgba(244,236,216,0.55);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1.6;
  display: inline-block;
}
.footer-col .postal-code {
  color: rgba(244,236,216,0.82);
  font-weight: 600;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(244,236,216,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(244,236,216,0.35);
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244,236,216,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,236,216,0.6);
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold-l); color: var(--gold-l); }

@media (max-width: 1024px) {
  footer { padding: 80px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ════════════════════════════════════
   PAGE HEADER (inner pages)
════════════════════════════════════ */
.page-header {
  padding: 160px 56px 70px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  margin: 22px 0 0;
}
.page-header h1 em { font-style: italic; color: var(--burgundy); }
.page-header p {
  font-size: 16px;
  color: var(--walnut);
  max-width: 580px;
  margin: 22px auto 0;
  line-height: 1.85;
}

@media (max-width: 768px) { .page-header { padding: 130px 24px 50px; } }

/* ════════════════════════════════════
   FULL MENU PAGE
════════════════════════════════════ */
.menu-page {
  padding: 80px 56px 140px;
  background: var(--paper);
}
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.menu-cat-btn {
  padding: 12px 26px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: none;
  background: none;
  border: 1px solid transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.menu-cat-btn:hover, .menu-cat-btn.active {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.menu-cat-btn.active { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }

.menu-section-block {
  max-width: 940px;
  margin: 0 auto 80px;
}
.menu-section-block h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 14px;
}
.menu-section-block h2 em { font-style: italic; color: var(--burgundy); }
.menu-section-block .sub {
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 44px;
}

.menu-list { display: flex; flex-direction: column; }
.menu-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-item-row:hover { background: rgba(184,137,59,0.04); }
.menu-item-row-content { display: flex; flex-direction: column; gap: 6px; }
.menu-item-row h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  overflow-wrap: anywhere;
}
.menu-item-row .tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 8px;
  font-weight: 600;
}
.menu-item-row .tag.veg { color: var(--vine); border-color: var(--vine); }
.menu-item-row p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
}
.menu-item-row .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--burgundy);
  font-weight: 500;
  white-space: nowrap;
  align-self: start;
}

.menu-footnote {
  max-width: 940px;
  margin: -24px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--walnut);
  font-size: 14px;
  line-height: 1.8;
}

.menu-footnote p {
  margin: 0;
}

@media (max-width: 768px) {
  .menu-page { padding: 60px 24px 80px; }
  .menu-item-row h4 { font-size: 19px; }
}

/* ════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════ */
.about-intro {
  padding: 100px 56px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-intro-text h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  margin-bottom: 28px;
  line-height: 1.05;
}
.about-intro-text h2 em { font-style: italic; color: var(--burgundy); }
.about-intro-text p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--walnut);
  margin-bottom: 22px;
}
.about-intro-text .signature-quote {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--cream-2);
  border-left: 3px solid var(--burgundy);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--walnut);
  line-height: 1.65;
}
.signature-quote strong {
  display: block;
  color: var(--burgundy);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
}
.signature-quote span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.16em;
  line-height: 1.55;
  text-transform: uppercase;
  color: var(--muted);
}
.about-intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 1fr;
  gap: 12px;
}
.about-intro-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro-images img:nth-child(1) { grid-column: span 2; }

.values-grid-section {
  background: var(--vine-d);
  color: var(--cream);
  padding: 120px 56px;
}
.values-grid-section .section-header h2 { color: var(--cream); }
.values-grid-section .section-header h2 em { color: var(--gold-l); }
.values-grid-section .section-header p { color: rgba(244,236,216,0.7); }
.values-grid-section .eyebrow { color: var(--gold-l); }
.values-grid-section .eyebrow::before, .values-grid-section .eyebrow::after { background: var(--gold-l); }

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184,137,59,0.25);
  border-bottom: 1px solid rgba(184,137,59,0.25);
}
.value-block {
  padding: 56px 36px;
  border-right: 1px solid rgba(184,137,59,0.25);
}
.value-block:last-child { border-right: none; }
.value-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  color: var(--gold-l);
  line-height: 1;
  margin-bottom: 22px;
  font-weight: 400;
}
.value-block h3 {
  color: var(--cream);
  font-size: 28px;
  margin-bottom: 14px;
}
.value-block p {
  font-size: 14.5px;
  color: rgba(244,236,216,0.7);
  line-height: 1.85;
}
.menu-creation-section .section-header {
  margin-bottom: 58px;
}
.menu-story-list {
  align-items: stretch;
}
.menu-story-list .value-block p + p {
  margin-top: 16px;
}
.menu-story-list .value-block h3 {
  line-height: 1.15;
}
.about-press-section {
  padding: 120px 56px;
  background: var(--paper);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.press-card {
  position: relative;
  margin: 0;
  padding: 34px 30px 32px;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  box-shadow: 0 16px 36px rgba(42,31,24,0.06);
}
.press-card::before {
  content: '"';
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  color: rgba(127, 43, 46, 0.12);
}
.press-card cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 18px;
}
.press-card p {
  position: relative;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.72;
  color: var(--walnut);
}

@media (max-width: 1024px) {
  .about-intro { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .values-grid-section { padding: 80px 24px; }
  .values-list { grid-template-columns: 1fr; }
  .value-block { border-right: none; border-bottom: 1px solid rgba(184,137,59,0.25); }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .about-press-section { padding: 80px 24px; }
}

@media (max-width: 720px) {
  .about-intro-text p,
  .value-block p {
    font-size: 15.5px;
    line-height: 1.85;
  }
  .signature-quote {
    padding: 24px 22px;
  }
  .press-grid { grid-template-columns: 1fr; }
  .press-card { padding: 30px 24px 28px; }
  .press-card p { font-size: 17px; }
}

/* ════════════════════════════════════
   RESERVATION PAGE
════════════════════════════════════ */
.reservation-page {
  padding: 80px 56px 140px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.reservation-info { padding-top: 16px; }
.reservation-info h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 22px;
  line-height: 1.1;
}
.reservation-info h2 em { font-style: italic; color: var(--burgundy); }
.reservation-info > p {
  color: var(--walnut);
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 32px;
}
.reservation-card {
  background: var(--paper);
  padding: 28px 30px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
}
.reservation-card h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
}
.reservation-card p {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--walnut);
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.postal-code {
  display: inline-block;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.035em;
  white-space: nowrap;
}
.reservation-card .postal-code,
.contact-block-text .postal-code {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
}

.reservation-form-wrap {
  background: var(--paper);
  padding: 56px 48px;
  border: 1px solid var(--line);
}
.reservation-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 28px;
  line-height: 1.1;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--cream-3);
}
.form-group textarea { resize: none; height: 110px; }
.form-group-datetime {
  gap: 10px;
}
.date-time-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--cream);
  border: 1px solid var(--line);
}
.date-time-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px 14px;
}
.date-time-field + .date-time-field {
  border-left: 1px solid var(--line);
}
.date-time-field span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.date-time-field input,
.date-time-field select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 8px 0 0;
  border: 0;
  background: transparent;
}
.date-time-field input:focus,
.date-time-field select:focus {
  background: transparent;
}
.guest-counter {
  display: flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
}
.guest-counter button {
  background: none;
  border: none;
  width: 44px;
  height: 46px;
  font-size: 20px;
  color: var(--burgundy);
  cursor: pointer;
}
.guest-counter input {
  min-width: 0;
  flex: 1;
  text-align: center;
  border: none;
  background: none;
  font-size: 16px;
  font-family: var(--font-display);
  color: var(--walnut);
}
.form-note {
  grid-column: span 2;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}
.form-note a { color: var(--burgundy); text-decoration: none; }
.form-submit { grid-column: span 2; margin-top: 16px; }
.form-submit button { width: 100%; justify-content: center; }
.form-status {
  grid-column: span 2;
  min-height: 20px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.form-status:not(:empty) {
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid rgba(184, 137, 59, 0.24);
  background: rgba(244, 236, 216, 0.46);
}
.form-status.success {
  color: var(--vine);
  border-color: rgba(74, 107, 61, 0.24);
  background: rgba(74, 107, 61, 0.08);
}
.form-status.error {
  color: var(--burgundy);
  border-color: rgba(107, 26, 42, 0.24);
  background: rgba(107, 26, 42, 0.07);
}
.btn:disabled,
.btn.is-loading {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}
.btn.is-loading .arrow {
  opacity: 0;
}

@media (max-width: 1024px) {
  .reservation-page { grid-template-columns: 1fr; padding: 60px 24px 100px; gap: 48px; }
  .reservation-form-wrap { padding: 36px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full, .form-status, .form-note, .form-submit { grid-column: span 1; }
  .date-time-control { grid-template-columns: 1fr; }
  .date-time-field + .date-time-field {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

/* ════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════ */
.contact-page {
  padding: 80px 56px 140px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}
.contact-info h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 30px;
  line-height: 1.05;
}
.contact-info h2 em { font-style: italic; color: var(--burgundy); }
.contact-block {
  display: flex;
  gap: 22px;
  margin-bottom: 32px;
  align-items: flex-start;
}
.contact-block-icon {
  width: 46px; height: 46px;
  border: 1px solid var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
  border-radius: 50%;
}
.contact-block-text strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-block-text span,
.contact-block-text a {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--walnut);
  line-height: 1.45;
  display: block;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-block-text a:hover { color: var(--burgundy); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 24px;
  margin-top: 6px;
  font-size: 14px;
  color: var(--walnut);
}
.hours-grid .day { color: var(--muted); }
.hours-grid .time { color: var(--burgundy); font-family: var(--font-display); font-size: 16px; }

.map-wrap {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.5) sepia(0.15);
}

@media (max-width: 1024px) {
  .contact-page { padding: 60px 24px 100px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-wrap { min-height: 360px; }
}

/* ════════════════════════════════════
   GALLERY PAGE (BIG)
════════════════════════════════════ */
.gallery-page {
  padding: 80px 56px 140px;
}
.gallery-filter-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

@media (max-width: 768px) { .gallery-page { padding: 60px 16px 80px; } }

/* ════════════════════════════════════
   TOAST + WHATSAPP
════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--burgundy);
  color: var(--cream);
  padding: 16px 32px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 9999;
  transition: transform 0.4s ease;
  pointer-events: none;
  font-weight: 500;
  max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); }

.float-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}

/* Mobile sticky reservation bar */
.mobile-stick-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(244,236,216,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(184,137,59,0.25);
  padding:
    10px max(14px, env(safe-area-inset-left, 0px))
    calc(10px + env(safe-area-inset-bottom, 0px))
    max(14px, env(safe-area-inset-right, 0px));
  z-index: 1200;
  box-shadow: 0 -8px 24px rgba(42,31,24,0.1);
}
.mobile-stick-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.mobile-stick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 12px 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-stick-btn:active { transform: translateY(1px); }
.mobile-stick-btn.primary { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.mobile-stick-btn.secondary { background: transparent; color: var(--burgundy); border: 1px solid var(--burgundy); }

@media (hover: hover) {
  .mobile-stick-btn.primary:hover { background: var(--burgundy-d); border-color: var(--burgundy-d); }
  .mobile-stick-btn.secondary:hover { background: rgba(107, 26, 42, 0.08); }
}

@media (max-width: 768px) {
  .mobile-stick-bar { display: block; }
  .toast { display: none !important; }
  .float-actions { display: none; }
  body { padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px)); }
}
.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(42,31,24,0.25);
  transition: transform 0.3s;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--burgundy); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Hide for translation switching */
[data-i18n] { transition: opacity 0.2s; }
.translating [data-i18n] { opacity: 0.4; }

/* Global Styles */
:root {
  --armenian-blue: #1F5573;
  --armenian-clay: #9E3D2F;
  --armenian-ink: #2A1F18;
  --carpet-soft: rgba(158, 61, 47, 0.055);
  --carpet-blue: rgba(31, 85, 115, 0.045);
  --vine-line: rgba(74, 107, 61, 0.22);
  --armenian-carpet:
    linear-gradient(135deg, transparent 0 42%, var(--carpet-soft) 42% 48%, transparent 48% 52%, var(--carpet-blue) 52% 58%, transparent 58% 100%),
    linear-gradient(45deg, transparent 0 42%, rgba(184, 137, 59, 0.05) 42% 49%, transparent 49% 51%, rgba(107, 26, 42, 0.04) 51% 58%, transparent 58% 100%);
}

body {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(184, 137, 59, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 92%, rgba(107, 26, 42, 0.05), transparent 30rem),
    var(--armenian-carpet);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.armenian-carpet-surface,
.page-header,
.menu-highlights,
.gallery-page,
.reservation-page,
.contact-page {
  position: relative;
  isolation: isolate;
}

.armenian-carpet-surface::before,
.page-header::before,
.menu-highlights::before,
.gallery-page::before,
.reservation-page::before,
.contact-page::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(135deg, transparent 0 46%, rgba(158, 61, 47, 0.045) 46% 50%, transparent 50% 54%, rgba(31, 85, 115, 0.035) 54% 58%, transparent 58% 100%);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  opacity: 0.72;
}

img {
  background: var(--cream-2);
}

/* Navbar */
.nav.scrolled {
  background:
    linear-gradient(rgba(244, 236, 216, 0.88), rgba(244, 236, 216, 0.88)),
    var(--armenian-carpet);
  background-size: auto, 34px 34px, 34px 34px;
}

.nav-logo-circle::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(158, 61, 47, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

/* Hero */
.hero {
  background:
    linear-gradient(90deg, rgba(244, 236, 216, 0.96), rgba(244, 236, 216, 0.72)),
    var(--armenian-carpet);
  background-size: auto, 48px 48px, 48px 48px;
}

.hero-image,
.story-img-main,
.signature-dish-image img,
.dish-card-img-wrap img,
.about-intro-images img {
  object-fit: cover;
}

.hero-image { object-position: center 58%; }
.hero-image-wrap::before,
.about-intro-images::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 137, 59, 0.24);
  pointer-events: none;
  z-index: 3;
}

/* About */
.story,
.about-intro {
  position: relative;
  overflow: hidden;
}

.story::before,
.about-intro::after {
  content: '';
  position: absolute;
  width: min(420px, 42vw);
  height: min(420px, 42vw);
  pointer-events: none;
  opacity: 0.14;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 420 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%234A6B3D' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M35 320 C95 250 105 160 185 118 C248 85 315 98 378 45'/%3E%3Cpath d='M96 245 c-40-18-54-48-44-86 38 10 58 36 44 86z'/%3E%3Cpath d='M185 119 c-36-23-44-58-24-93 35 18 49 49 24 93z'/%3E%3Cpath d='M259 92 c-17 42 1 73 46 91 16-39 0-73-46-91z'/%3E%3Ccircle cx='246' cy='203' r='12'/%3E%3Ccircle cx='274' cy='224' r='10'/%3E%3Ccircle cx='233' cy='232' r='9'/%3E%3C/g%3E%3C/svg%3E");
}
.story::before { right: -120px; top: 80px; }
.about-intro::after { left: -140px; bottom: -90px; transform: rotate(18deg); }

.story-img-main { object-position: center 42%; }
.about-intro-images img:nth-child(1) { object-position: center 50%; }
.about-intro-images img:nth-child(2) { object-position: center 38%; }
.about-intro-images img:nth-child(3) { object-position: center 50%; }

/* Menu */
.menu-highlights {
  background:
    linear-gradient(rgba(249, 243, 226, 0.94), rgba(249, 243, 226, 0.94)),
    var(--armenian-carpet);
  background-size: auto, 52px 52px, 52px 52px;
}

.dish-card-img-wrap img { object-position: center 50%; }
.dish-card:nth-child(1) .dish-card-img-wrap img { object-position: center 46%; }
.dish-card:nth-child(2) .dish-card-img-wrap img { object-position: center 42%; }
.dish-card:nth-child(5) .dish-card-img-wrap img { object-position: center 38%; }

.menu-section-block {
  position: relative;
}
.menu-section-block::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(transparent, rgba(184, 137, 59, 0.42), transparent);
}

/* Gallery */
.gallery-section,
.gallery-page {
  background:
    linear-gradient(rgba(244, 236, 216, 0.92), rgba(244, 236, 216, 0.92)),
    var(--armenian-carpet);
  background-size: auto, 48px 48px, 48px 48px;
}

.gallery-item {
  cursor: zoom-in;
}
.gallery-item img {
  object-fit: contain;
  object-position: center center;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(42, 31, 24, 0.82);
  backdrop-filter: blur(12px);
}
.gallery-lightbox.open { display: flex; }
body.gallery-open { overflow: hidden; }
.gallery-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.42);
}
.gallery-lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244,236,216,0.45);
  border-radius: 50%;
  background: rgba(244,236,216,0.08);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* Reservation */
.reserve-cta,
.reservation-form-wrap,
.reservation-card {
  position: relative;
  overflow: hidden;
}

.reserve-cta::before,
.reservation-form-wrap::before {
  content: '';
  position: absolute;
  inset: auto -40px -90px auto;
  width: 360px;
  height: 260px;
  opacity: 0.12;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 360 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4A95E' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M20 222 C92 160 125 84 226 78 C278 75 315 46 342 18'/%3E%3Cpath d='M116 128 c-42-10-67-40-62-75 39 2 68 27 62 75z'/%3E%3Cpath d='M220 78 c-25 35-14 73 24 98 25-32 17-72-24-98z'/%3E%3Ccircle cx='168' cy='166' r='9'/%3E%3Ccircle cx='190' cy='182' r='8'/%3E%3Ccircle cx='151' cy='188' r='7'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
}

/* Contact */
.contact-page {
  background:
    linear-gradient(rgba(244, 236, 216, 0.92), rgba(244, 236, 216, 0.92)),
    var(--armenian-carpet);
  background-size: auto, 56px 56px, 56px 56px;
}

.contact-block-icon {
  box-shadow: inset 0 0 0 1px rgba(184, 137, 59, 0.26);
}

/* Footer */
footer {
  position: relative;
  background:
    linear-gradient(rgba(42,31,24,0.96), rgba(42,31,24,0.96)),
    var(--armenian-carpet);
  background-size: auto, 46px 46px, 46px 46px;
}

.vine-edge::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(760px, 82vw);
  height: 72px;
  transform: translateX(-50%);
  opacity: 0.16;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 760 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23B8893B' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M8 40 C120 12 198 62 310 34 C440 2 536 62 752 24'/%3E%3Cpath d='M145 31 c-22-20-23-44-4-62 20 17 24 38 4 62z'/%3E%3Cpath d='M478 27 c24-18 50-16 73 6-23 17-47 15-73-6z'/%3E%3Ccircle cx='365' cy='40' r='6'/%3E%3Ccircle cx='382' cy='48' r='5'/%3E%3Ccircle cx='352' cy='52' r='4'/%3E%3C/g%3E%3C/svg%3E") center bottom/contain no-repeat;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  body { background-size: auto, auto, 34px 34px, 34px 34px; }
  .hero { background-size: auto, 38px 38px, 38px 38px; }
  .hero-image { object-position: center center; }
  .hero-image-wrap::before,
  .about-intro-images::before { inset: 10px; }
  .story::before,
  .about-intro::after { opacity: 0.08; }
}

@media (max-width: 640px) {
  .armenian-carpet-surface::before,
  .page-header::before,
  .menu-highlights::before,
  .gallery-page::before,
  .reservation-page::before,
  .contact-page::before {
    background-size: 42px 42px;
    opacity: 0.46;
  }
  .gallery-lightbox { padding: 18px; }
  .gallery-lightbox-close { top: 14px; right: 14px; }
  .vine-edge::after { height: 46px; opacity: 0.12; }
}

/* Global Styles */
:root {
  --decor-vine-pencil: url("assets/decor/vine-pencil-.jpg");
  --decor-vine-floral: url("assets/decor/vine-pencil-floral.jpg");
  --decor-vine-corner: url("assets/decor/vine-corner-.jpg");
  --decor-carpet-heritage: url("assets/decor/carpet-heritage-.jpg");
  --decor-carpet-modern: url("assets/decor/carpet-modern-.jpg");
  --decor-soft-edge-mask: radial-gradient(ellipse at center, #000 0 38%, rgba(0, 0, 0, 0.82) 56%, rgba(0, 0, 0, 0.34) 72%, transparent 88%);
}

body {
  background-image:
    linear-gradient(rgba(244, 236, 216, 0.965), rgba(244, 236, 216, 0.965)),
    var(--decor-carpet-modern),
    radial-gradient(circle at 12% 8%, rgba(184, 137, 59, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 92%, rgba(107, 26, 42, 0.05), transparent 30rem),
    var(--armenian-carpet);
  background-size: auto, 420px 420px, auto, auto, 42px 42px, 42px 42px;
  background-blend-mode: normal, multiply, normal, normal, normal;
}

/* Navbar */
.nav.scrolled {
  background-image:
    linear-gradient(rgba(244, 236, 216, 0.9), rgba(244, 236, 216, 0.9)),
    var(--decor-carpet-heritage),
    var(--armenian-carpet);
  background-size: auto, 520px auto, 34px 34px, 34px 34px;
  background-position: center;
  background-blend-mode: normal, multiply, normal;
}

/* Hero */
.hero {
  background-image:
    linear-gradient(90deg, rgba(244, 236, 216, 0.97), rgba(244, 236, 216, 0.78)),
    var(--decor-carpet-modern),
    var(--armenian-carpet);
  background-size: auto, 520px 520px, 48px 48px, 48px 48px;
  background-blend-mode: normal, multiply, normal;
}

.hero-content,
.section-header,
.reservation-info,
.contact-info,
.footer-brand {
  position: relative;
}

.hero-content::after {
  content: '';
  position: absolute;
  left: -58px;
  bottom: -96px;
  width: min(280px, 34vw);
  aspect-ratio: 0.62;
  background: var(--decor-vine-corner) left bottom / contain no-repeat;
  opacity: 0.075;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: rotate(-2deg);
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  right: -34px;
  top: 40px;
  width: min(180px, 18vw);
  aspect-ratio: 0.62;
  background: var(--decor-vine-corner) right top / contain no-repeat;
  opacity: 0.1;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 4;
}

.heritage-band {
  background-image:
    linear-gradient(rgba(107, 26, 42, 0.91), rgba(107, 26, 42, 0.91)),
    var(--decor-carpet-heritage);
  background-size: auto, 760px auto;
  background-position: center;
  background-blend-mode: normal, multiply;
}

/* About */
.story-text::before,
.about-intro-text::before {
  content: '';
  position: absolute;
  width: min(340px, 38vw);
  aspect-ratio: 0.72;
  background: var(--decor-vine-pencil) center / contain no-repeat;
  opacity: 0.095;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.story-text::before {
  right: -160px;
  bottom: -92px;
}

.about-intro-text {
  position: relative;
}

.about-intro-text::before {
  left: -150px;
  top: -70px;
  transform: rotate(8deg);
}

/* Menu */
.menu-highlights,
.menu-page {
  background-image:
    linear-gradient(rgba(249, 243, 226, 0.955), rgba(249, 243, 226, 0.955)),
    var(--decor-carpet-modern),
    var(--armenian-carpet);
  background-size: auto, 480px 480px, 52px 52px, 52px 52px;
  background-blend-mode: normal, multiply, normal;
}

.section-header::after {
  content: '';
  display: block;
  width: clamp(150px, 24vw, 260px);
  height: clamp(54px, 7vw, 86px);
  margin: 20px auto 0;
  background:
    radial-gradient(ellipse at center, rgba(184, 137, 59, 0.16) 0%, rgba(184, 137, 59, 0.07) 42%, transparent 74%),
    var(--decor-vine-floral) center / contain no-repeat;
  opacity: 0.28;
  mix-blend-mode: multiply;
  filter: blur(0.18px);
  border-radius: 999px;
  overflow: hidden;
  -webkit-mask-image: var(--decor-soft-edge-mask);
  mask-image: var(--decor-soft-edge-mask);
  pointer-events: none;
}

/* Gallery */
.gallery-section,
.gallery-page,
.page-header {
  background-image:
    linear-gradient(rgba(244, 236, 216, 0.945), rgba(244, 236, 216, 0.945)),
    var(--decor-carpet-heritage),
    var(--armenian-carpet);
  background-size: auto, 680px auto, 48px 48px, 48px 48px;
  background-position: center top;
  background-blend-mode: normal, multiply, normal;
}

/* Reservation */
.reserve-cta {
  background-image:
    linear-gradient(rgba(107, 26, 42, 0.86), rgba(107, 26, 42, 0.89)),
    var(--decor-carpet-heritage);
  background-size: auto, 820px auto;
  background-position: center;
  background-blend-mode: normal, multiply;
}

.reservation-info::after,
.contact-info::before {
  content: '';
  position: absolute;
  width: min(300px, 42vw);
  aspect-ratio: 0.66;
  background: var(--decor-vine-floral) center / contain no-repeat;
  opacity: 0.09;
  mix-blend-mode: multiply;
  filter: blur(0.18px);
  border-radius: 999px;
  -webkit-mask-image: var(--decor-soft-edge-mask);
  mask-image: var(--decor-soft-edge-mask);
  pointer-events: none;
  z-index: 0;
}

.reservation-info::after {
  right: -120px;
  bottom: -64px;
}

/* Contact */
.contact-info::before {
  left: -128px;
  top: -72px;
  transform: rotate(-8deg);
}

.contact-info > * {
  position: relative;
  z-index: 1;
}

/* Footer */
footer {
  background-image:
    linear-gradient(rgba(42, 31, 24, 0.965), rgba(42, 31, 24, 0.965)),
    var(--decor-carpet-heritage),
    var(--armenian-carpet);
  background-size: auto, 760px auto, 46px 46px, 46px 46px;
  background-position: center;
  background-blend-mode: normal, multiply, normal;
}

.footer-brand::after {
  content: '';
  position: absolute;
  left: -32px;
  bottom: -74px;
  width: 190px;
  aspect-ratio: 0.62;
  background: var(--decor-vine-corner) left bottom / contain no-repeat;
  filter: invert(1);
  opacity: 0.1;
  pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content::after,
  .hero-image-wrap::after {
    opacity: 0.055;
  }

  .story-text::before,
  .about-intro-text::before,
  .reservation-info::after,
  .contact-info::before {
    width: min(240px, 52vw);
    opacity: 0.065;
  }
}

@media (max-width: 640px) {
  body {
    background-size: auto, 300px 300px, auto, auto, 34px 34px, 34px 34px;
  }

  .hero,
  .menu-highlights,
  .menu-page,
  .gallery-section,
  .gallery-page,
  .page-header {
    background-size: auto, 360px auto, 38px 38px, 38px 38px;
  }

  .hero-content::after,
  .hero-image-wrap::after,
  .story-text::before,
  .about-intro-text::before,
  .reservation-info::after,
  .contact-info::before,
  .footer-brand::after {
    display: none;
  }

  .section-header::after {
    width: clamp(140px, 42vw, 190px);
    height: clamp(48px, 14vw, 64px);
    margin-top: 14px;
    opacity: 0.22;
  }
}

/* Mobile Refinement Layer */
html,
body {
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-stick-bar,
body.menu-open .float-actions {
  opacity: 0;
  pointer-events: none;
}

.lang-switch,
.mobile-lang {
  background: rgba(244, 236, 216, 0.58);
  border: 1px solid rgba(184, 137, 59, 0.24);
  padding: 3px;
}

.lang-switch {
  gap: 2px;
}

.mobile-lang {
  border-radius: 999px;
  gap: 3px;
  margin-top: 10px;
}

.lang-sep {
  display: none;
}

.lang-btn {
  min-width: 38px;
  min-height: 34px;
  padding: 8px 10px;
  color: rgba(42, 31, 24, 0.58);
  letter-spacing: 0.08em;
}

.lang-btn.active {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: 0 6px 16px rgba(107, 26, 42, 0.14);
}

.hamburger {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 137, 59, 0.24);
  background: rgba(244, 236, 216, 0.7);
}

.hamburger span {
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  top: 76px;
  right: 12px;
  bottom: auto;
  left: 12px;
  width: auto;
  min-height: auto;
  max-height: calc(100vh - 92px);
  max-height: calc(100dvh - 92px);
  justify-content: flex-start;
  align-items: stretch;
  gap: 8px;
  padding: 22px 18px calc(22px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(rgba(249, 243, 226, 0.965), rgba(249, 243, 226, 0.965)),
    var(--decor-carpet-heritage);
  background-size: auto, 620px auto;
  border: 1px solid rgba(184, 137, 59, 0.28);
  box-shadow: 0 22px 60px rgba(42, 31, 24, 0.24);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  visibility: hidden;
  transition: transform 0.28s ease, opacity 0.24s ease, visibility 0.24s;
}

.mobile-menu.open {
  display: flex;
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184, 137, 59, 0.18);
  color: var(--walnut);
}

.mobile-close {
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 137, 59, 0.24);
  background: rgba(244, 236, 216, 0.72);
  font-size: 18px;
  z-index: 2;
}

.mobile-cta {
  max-width: none;
  margin-top: 12px;
  padding-top: 18px;
}

.mobile-cta .btn {
  min-height: 50px;
  padding: 14px 18px;
  letter-spacing: 0.12em;
  white-space: normal;
  text-align: center;
}

@media (max-width: 1100px) {
  .nav {
    min-height: 76px;
    padding: 8px 18px;
    background: rgba(244, 236, 216, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav.scrolled {
    padding: 6px 18px;
  }

  .nav-logo-circle {
    width: 54px;
    height: 54px;
  }

  .nav-logo-circle img {
    height: 35px;
  }

  .nav-logo-circle::before {
    inset: -5px;
  }

  .nav-logo-text {
    font-size: 16px;
    letter-spacing: 0.16em;
  }

  .nav-logo-sub {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 56px;
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
    margin-bottom: 22px;
  }

  .hero-eyebrow,
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
    gap: 9px;
  }

  .eyebrow::before,
  .eyebrow.center::after {
    width: 18px;
  }

  .hero-sub {
    font-size: 15.5px;
    line-height: 1.74;
    margin-bottom: 28px;
  }

  .hero-ctas,
  .reserve-cta .btn-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    padding: 15px 18px;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-align: center;
  }

  .hero-image-wrap {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-image {
    object-position: center 48%;
  }

  .hero-image-tag {
    display: none;
  }

  .story,
  .signature-dish,
  .menu-highlights,
  .courtyard,
  .gallery-section,
  .reviews-section,
  .reserve-cta,
  .about-intro,
  .values-grid-section,
  .reservation-page,
  .contact-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .story {
    padding-top: 70px;
    padding-bottom: 86px;
    gap: 58px;
  }

  .story-img-main {
    border-width: 7px;
  }

  .story-quote-badge {
    left: 8px;
    top: 8px;
    max-width: 190px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .section-header h2,
  .story-text h2,
  .signature-dish h2,
  .courtyard-text h2,
  .reserve-cta h2,
  .about-intro-text h2,
  .reservation-info h2,
  .contact-info h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .dish-grid,
  .reviews-grid,
  .values-list,
  .reservation-page,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dish-card-img-wrap {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item.feature,
  .gallery-item.tall,
  .gallery-item.med,
  .gallery-item.wide,
  .gallery-item.span-1,
  .gallery-item.span-2 {
    aspect-ratio: 4 / 3;
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(6n + 1),
  .gallery-item:nth-child(6n) {
    aspect-ratio: 16 / 10;
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(6n + 2),
  .gallery-item:nth-child(6n + 3),
  .gallery-item:nth-child(6n + 4),
  .gallery-item:nth-child(6n + 5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .menu-categories {
    position: sticky;
    top: 76px;
    z-index: 4;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 12px 0;
    margin-inline: -18px;
    padding-inline: 18px;
    background: rgba(249, 243, 226, 0.94);
    backdrop-filter: blur(12px);
    -webkit-overflow-scrolling: touch;
  }

  .menu-cat-btn {
    flex: 0 0 auto;
    min-height: 42px;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .menu-item-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 22px 0;
    align-items: start;
  }

  .menu-item-row .price {
    justify-self: end;
    font-size: 18px;
  }

  .menu-item-row h4 {
    align-items: flex-start;
    gap: 8px;
    line-height: 1.15;
  }

  .menu-item-row .tag {
    margin-top: 2px;
    letter-spacing: 0.14em;
    line-height: 1.2;
  }

  .menu-item-row p {
    max-width: none;
    overflow-wrap: anywhere;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  input,
  select,
  textarea,
  .guest-counter {
    min-height: 48px;
    font-size: 16px;
  }

  .map-wrap {
    min-height: 300px;
  }

  footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 420px) {
  .nav {
    padding-inline: 12px;
  }

  .nav-logo-circle {
    width: 48px;
    height: 48px;
  }

  .nav-logo-circle img {
    height: 31px;
  }

  .nav-logo-text {
    font-size: 14px;
  }

  .hamburger {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    top: 70px;
    left: 8px;
    right: 8px;
    max-height: calc(100vh - 82px);
    max-height: calc(100dvh - 82px);
  }

  .hero {
    padding-top: 92px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.feature,
  .gallery-item.tall,
  .gallery-item.med,
  .gallery-item.wide,
  .gallery-item.span-1,
  .gallery-item.span-2,
  .gallery-item:nth-child(6n + 1),
  .gallery-item:nth-child(6n + 2),
  .gallery-item:nth-child(6n + 3),
  .gallery-item:nth-child(6n + 4),
  .gallery-item:nth-child(6n + 5),
  .gallery-item:nth-child(6n) {
    aspect-ratio: 4 / 3;
    grid-column: span 1;
    grid-row: span 1;
  }

  .mobile-stick-bar-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 6px;
  }

  .mobile-stick-btn {
    min-width: 0;
    min-height: 52px;
    padding-inline: 7px;
    font-size: 9px;
    letter-spacing: 0.03em;
    gap: 5px;
  }

  .mobile-stick-btn svg {
    flex: 0 0 auto;
  }
}

@media (max-width: 360px) {
  .mobile-stick-bar {
    padding-inline: 8px;
  }

  .mobile-stick-bar-inner {
    gap: 5px;
  }

  .mobile-stick-btn {
    min-height: 50px;
    padding-inline: 5px;
    font-size: 10px;
    line-height: 1.15;
  }

  .mobile-stick-btn svg {
    width: 12px;
    height: 12px;
  }
}

/* Grapevine Mobile Fix */
@media (max-width: 900px) {
  .hero-content::after,
  .hero-image-wrap::after,
  .story-text::before,
  .about-intro-text::before,
  .reservation-info::after,
  .contact-info::before,
  .footer-brand::after,
  .vine-edge::after {
    display: none;
  }

  .section-header::after {
    opacity: 0.2;
  }
}

/* Gallery editorial full-image grid */
.gallery-section,
.gallery-page {
  overflow: hidden;
}

.gallery-grid {
  --gallery-gap: clamp(14px, 1.45vw, 24px);
  --gallery-pad: clamp(12px, 1vw, 18px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-auto-flow: row;
  gap: var(--gallery-gap);
  align-items: stretch;
  width: min(100%, 1500px);
  margin-inline: auto;
}

.gallery-item,
.gallery-item.feature,
.gallery-item.tall,
.gallery-item.med,
.gallery-item.wide,
.gallery-item.span-1,
.gallery-item.span-2,
.gallery-item:nth-child(6n + 1),
.gallery-item:nth-child(6n + 2),
.gallery-item:nth-child(6n + 3),
.gallery-item:nth-child(6n + 4),
.gallery-item:nth-child(6n + 5),
.gallery-item:nth-child(6n) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: span 4;
  grid-row: auto;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 7px;
  border: 1px solid rgba(184, 137, 59, 0.22);
  box-shadow: 0 18px 42px rgba(42, 31, 24, 0.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 38%),
    linear-gradient(145deg, #d9c7a8 0%, #f7efdf 48%, #c9b28d 100%);
}

.gallery-item.feature,
.gallery-item:nth-child(8n + 1) {
  grid-column: span 7;
  aspect-ratio: 16 / 10;
}

.gallery-item.tall,
.gallery-item:nth-child(8n + 2),
.gallery-item:nth-child(8n + 6) {
  grid-column: span 5;
  aspect-ratio: 4 / 5;
}

.gallery-item.wide,
.gallery-item:nth-child(8n + 5) {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery-item:nth-child(8n + 4),
.gallery-item:nth-child(8n + 8) {
  grid-column: span 6;
  aspect-ratio: 3 / 2;
}

.gallery-page .gallery-item,
.gallery-page .gallery-item.med {
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.gallery-page .gallery-item.feature,
.gallery-page .gallery-item:nth-child(9n + 1) {
  grid-column: span 7;
  aspect-ratio: 16 / 10;
}

.gallery-page .gallery-item.tall,
.gallery-page .gallery-item:nth-child(9n + 2),
.gallery-page .gallery-item:nth-child(9n + 7) {
  grid-column: span 5;
  aspect-ratio: 4 / 5;
}

.gallery-page .gallery-item:nth-child(9n + 4),
.gallery-page .gallery-item:nth-child(9n + 8) {
  grid-column: span 6;
  aspect-ratio: 3 / 2;
}

.gallery-page .gallery-item:nth-child(9n + 5) {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--gallery-image);
  background-size: cover;
  background-position: center;
  opacity: 0.62;
  filter: blur(14px) saturate(0.92) contrast(0.9);
  transform: scale(1.06);
  z-index: 0;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(244, 236, 216, 0.18), rgba(244, 236, 216, 0.16)),
    radial-gradient(circle at center, transparent 48%, rgba(42, 31, 24, 0.16) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 0 0 var(--gallery-pad) rgba(244, 236, 216, 0.18);
  z-index: 1;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  padding: var(--gallery-pad);
  object-fit: contain;
  object-position: center center;
  display: block;
  position: relative;
  z-index: 2;
  filter: saturate(1.04) contrast(1.02);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(42, 31, 24, 0.12);
}

.gallery-item:hover img {
  transform: none;
  filter: saturate(1.1) contrast(1.04);
}

@media (max-width: 1024px) {
  .gallery-grid,
  .gallery-page .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-item,
  .gallery-item.feature,
  .gallery-item.tall,
  .gallery-item.med,
  .gallery-item.wide,
  .gallery-item.span-1,
  .gallery-item.span-2,
  .gallery-page .gallery-item,
  .gallery-page .gallery-item.feature,
  .gallery-page .gallery-item.tall,
  .gallery-page .gallery-item.med,
  .gallery-page .gallery-item.wide {
    grid-column: span 3;
    aspect-ratio: 4 / 3;
  }

  .gallery-item.feature,
  .gallery-item:nth-child(6n + 1),
  .gallery-page .gallery-item.feature,
  .gallery-page .gallery-item:nth-child(6n + 1) {
    grid-column: span 6;
    aspect-ratio: 16 / 10;
  }

  .gallery-item[data-gallery-orientation="portrait"] {
    aspect-ratio: 4 / 5;
  }
}

/* Premium puzzle mosaic gallery */
.gallery-section,
.gallery-page {
  position: relative;
  padding-inline: clamp(18px, 4vw, 64px);
}

.gallery-section::before,
.gallery-page::before {
  opacity: 0.24;
}

.gallery-grid {
  --gallery-gap: clamp(10px, 1vw, 16px);
  --gallery-row: clamp(12px, 0.9vw, 16px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: var(--gallery-row);
  grid-auto-flow: dense;
  gap: var(--gallery-gap);
  width: min(100%, 1560px);
  margin-inline: auto;
  align-items: stretch;
}

.gallery-item,
.gallery-item.feature,
.gallery-item.tall,
.gallery-item.med,
.gallery-item.wide,
.gallery-item.span-1,
.gallery-item.span-2 {
  position: relative;
  display: block;
  grid-column: span 3;
  grid-row: span 18;
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 236, 216, 0.88), rgba(190, 164, 108, 0.28)),
    var(--cream);
  box-shadow:
    0 20px 44px rgba(42, 31, 24, 0.13),
    inset 0 0 0 1px rgba(255, 248, 232, 0.28);
  cursor: zoom-in;
  transform: translateZ(0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item::before {
  display: none;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(42, 31, 24, 0.03) 0%, transparent 48%, rgba(42, 31, 24, 0.2) 100%),
    radial-gradient(circle at 48% 18%, rgba(255, 246, 224, 0.18), transparent 45%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 232, 0.18),
    inset 0 -56px 76px rgba(42, 31, 24, 0.16);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.07) contrast(1.03) brightness(1.01);
  transform: scale(1.004);
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.gallery-item--large,
.gallery-item.feature,
.gallery-grid .gallery-item:nth-child(12n + 1) {
  grid-column: span 6;
  grid-row: span 30;
}

.gallery-item--wide,
.gallery-item.wide,
.gallery-grid .gallery-item:nth-child(12n + 5),
.gallery-grid .gallery-item:nth-child(12n + 10) {
  grid-column: span 6;
  grid-row: span 18;
}

.gallery-item--tall,
.gallery-item.tall,
.gallery-grid .gallery-item:nth-child(12n + 2),
.gallery-grid .gallery-item:nth-child(12n + 7),
.gallery-grid .gallery-item:nth-child(12n + 11) {
  grid-column: span 3;
  grid-row: span 30;
}

.gallery-item--medium,
.gallery-item.med,
.gallery-grid .gallery-item:nth-child(12n + 3),
.gallery-grid .gallery-item:nth-child(12n + 4),
.gallery-grid .gallery-item:nth-child(12n + 6),
.gallery-grid .gallery-item:nth-child(12n + 8),
.gallery-grid .gallery-item:nth-child(12n + 9),
.gallery-grid .gallery-item:nth-child(12n) {
  grid-column: span 3;
  grid-row: span 18;
}

.gallery-item--small,
.gallery-grid .gallery-item:nth-child(12n + 9) {
  grid-column: span 3;
  grid-row: span 15;
}

.gallery-page {
  padding-top: clamp(36px, 5vw, 76px);
}

.gallery-page .gallery-grid {
  max-width: 1640px;
}

.gallery-page .gallery-item--large,
.gallery-page .gallery-item:nth-child(9n + 1) {
  grid-column: span 6;
  grid-row: span 32;
}

.gallery-page .gallery-item--tall,
.gallery-page .gallery-item:nth-child(9n + 2),
.gallery-page .gallery-item:nth-child(9n + 5),
.gallery-page .gallery-item:nth-child(9n + 7) {
  grid-column: span 3;
  grid-row: span 31;
}

.gallery-page .gallery-item--wide,
.gallery-page .gallery-item:nth-child(9n + 9) {
  grid-column: span 6;
  grid-row: span 18;
}

.gallery-page .gallery-item:nth-child(9n + 4),
.gallery-page .gallery-item:nth-child(9n + 8) {
  grid-column: span 3;
  grid-row: span 20;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 62px rgba(42, 31, 24, 0.2),
    inset 0 0 0 1px rgba(255, 248, 232, 0.32);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.05) brightness(1.03);
}

.gallery-grid .gallery-item:nth-child(1) img,
.gallery-grid .gallery-item:nth-child(5) img,
.gallery-grid .gallery-item:nth-child(9) img,
.gallery-grid .gallery-item:nth-child(14) img {
  object-position: center 48%;
}

.gallery-grid .gallery-item:nth-child(2) img,
.gallery-grid .gallery-item:nth-child(8) img,
.gallery-grid .gallery-item:nth-child(11) img {
  object-position: center 42%;
}

.gallery-grid .gallery-item:nth-child(6) img,
.gallery-grid .gallery-item:nth-child(7) img,
.gallery-grid .gallery-item:nth-child(13) img {
  object-position: center 56%;
}

.gallery-grid .gallery-item:nth-child(10) img,
.gallery-grid .gallery-item:nth-child(12) img,
.gallery-grid .gallery-item:nth-child(16) img,
.gallery-grid .gallery-item:nth-child(17) img {
  object-position: center 45%;
}

@media (max-width: 1024px) {
  .gallery-section,
  .gallery-page {
    padding-inline: clamp(16px, 3vw, 34px);
  }

  .gallery-grid,
  .gallery-page .gallery-grid {
    --gallery-row: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-item,
  .gallery-item.feature,
  .gallery-item.tall,
  .gallery-item.med,
  .gallery-item.wide,
  .gallery-item--large,
  .gallery-item--wide,
  .gallery-item--tall,
  .gallery-item--medium,
  .gallery-item--small,
  .gallery-page .gallery-item,
  .gallery-page .gallery-item--large,
  .gallery-page .gallery-item--wide,
  .gallery-page .gallery-item--tall,
  .gallery-page .gallery-item--medium,
  .gallery-page .gallery-item--small,
  .gallery-page .gallery-grid .gallery-item:nth-child(n) {
    grid-column: span 3;
    grid-row: span 20;
  }

  .gallery-item--large,
  .gallery-item.feature,
  .gallery-grid .gallery-item:nth-child(6n + 1),
  .gallery-page .gallery-item--large,
  .gallery-page .gallery-item:nth-child(6n + 1) {
    grid-column: span 6;
    grid-row: span 28;
  }

  .gallery-item--wide,
  .gallery-item.wide,
  .gallery-page .gallery-item--wide,
  .gallery-page .gallery-grid .gallery-item--wide {
    grid-column: span 6;
    grid-row: span 18;
  }
}

@media (max-width: 640px) {
  .gallery-section,
  .gallery-page {
    padding-inline: 14px;
  }

  .gallery-grid,
  .gallery-page .gallery-grid {
    --gallery-row: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-item,
  .gallery-item.feature,
  .gallery-item.tall,
  .gallery-item.med,
  .gallery-item.wide,
  .gallery-item--large,
  .gallery-item--wide,
  .gallery-item--tall,
  .gallery-item--medium,
  .gallery-item--small,
  .gallery-page .gallery-item,
  .gallery-page .gallery-item--large,
  .gallery-page .gallery-item--wide,
  .gallery-page .gallery-item--tall,
  .gallery-page .gallery-item--medium,
  .gallery-page .gallery-item--small,
  .gallery-grid .gallery-item:nth-child(n),
  .gallery-page .gallery-grid .gallery-item:nth-child(n) {
    grid-column: span 2;
    grid-row: span 22;
  }

  .gallery-grid .gallery-item:nth-child(3n + 2),
  .gallery-grid .gallery-item:nth-child(3n + 3),
  .gallery-page .gallery-grid .gallery-item:nth-child(3n + 2),
  .gallery-page .gallery-grid .gallery-item:nth-child(3n + 3) {
    grid-column: span 1;
    grid-row: span 24;
  }

  .gallery-item--large,
  .gallery-item:nth-child(5n + 1),
  .gallery-page .gallery-item--large,
  .gallery-page .gallery-item:nth-child(5n + 1),
  .gallery-page .gallery-grid .gallery-item--large,
  .gallery-page .gallery-grid .gallery-item:nth-child(5n + 1) {
    grid-column: span 2;
    grid-row: span 26;
  }

  .gallery-item::after {
    box-shadow:
      inset 0 0 0 1px rgba(255, 248, 232, 0.16),
      inset 0 -42px 58px rgba(42, 31, 24, 0.13);
  }
}

/* Section image mapping refinements */
.hero-image {
  object-position: center 58%;
}

.story-img-main {
  object-position: center center;
}

.dish-card:nth-child(5) .dish-card-img-wrap img {
  object-position: center 40%;
}

.courtyard-image {
  background-position: center 28%;
}

@media (max-width: 1024px) {
  .hero-image {
    object-position: center 56%;
  }

  .courtyard-image {
    background-position: center 22%;
  }
}
