/* =========================================================
   ATASH Mediterranean & Italian — stylesheet
   Palette: terracotta / olive / cream (warm, cozy, trendy)
   ========================================================= */

:root {
  --cream: #FBF3E7;
  --cream-alt: #F3E6D2;
  --cream-deep: #EADCC3;
  --charcoal: #2B241C;
  --charcoal-soft: #4A4038;
  --terracotta: #C1552F;
  --terracotta-dark: #A03F1F;
  --terracotta-light: #E8815C;
  --olive: #6E7C3F;
  --olive-dark: #4F5A2C;
  --olive-light: #97A85F;
  --gold: #C99A3C;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-soft: 0 10px 30px rgba(43, 36, 28, 0.10);
  --shadow-strong: 0 20px 50px rgba(43, 36, 28, 0.22);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--charcoal);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--terracotta-dark);
  margin: 0 0 .6em;
}

.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.section-sub { color: var(--charcoal-soft); font-size: 1.02rem; }

section { padding: 5.5rem 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(193, 85, 47, .35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(193, 85, 47, .45); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--cream);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-ghost {
  background: var(--cream-alt);
  color: var(--charcoal);
}
.btn-ghost:hover { background: var(--cream-deep); }
.btn-order {
  background: linear-gradient(135deg, var(--olive), var(--olive-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(110, 124, 63, .35);
}
.btn-order:hover { box-shadow: 0 14px 30px rgba(110, 124, 63, .45); }
.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--olive-dark);
  color: var(--cream);
  text-align: center;
  font-size: .82rem;
  padding: .5rem 1rem;
  letter-spacing: .02em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 243, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,36,28,.08);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(43,36,28,.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .85rem 24px;
}

.brand { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.brand-mark { color: var(--terracotta); display: inline-flex; }
.brand-mark img { display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .04em;
  color: var(--charcoal);
}
.brand-text small { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--olive-dark); white-space: nowrap; }

.main-nav { display: flex; gap: 1.5rem; }
.main-nav a {
  font-size: .92rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--charcoal-soft);
  position: relative;
  padding: .3rem 0;
}
.nav-order-link { display: none; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  transition: width .2s ease;
}
.main-nav a:hover { color: var(--charcoal); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--terracotta-dark); }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.header-phone {
  display: none;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--charcoal-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 100% at 50% 0%, #7A3B22 0%, #4A2415 45%, #2B1A10 100%);
  color: var(--cream);
  text-align: center;
  padding: 8rem 0 6rem;
}
.hero-swirls { position: absolute; inset: 0; opacity: .18; color: var(--terracotta-light); pointer-events: none; }
.hero-swirls svg:first-child { position: absolute; top: -120px; left: -160px; width: 480px; height: 480px; }
.hero-swirls svg:last-child { position: absolute; bottom: -160px; right: -160px; width: 560px; height: 560px; }

.hero-embers { position: absolute; inset: 0; pointer-events: none; }
.hero-embers span {
  position: absolute;
  bottom: -20px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .8;
  animation: rise 9s linear infinite;
}
.hero-embers span:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-embers span:nth-child(2) { left: 24%; animation-delay: 2s; background: var(--terracotta-light); }
.hero-embers span:nth-child(3) { left: 42%; animation-delay: 4s; }
.hero-embers span:nth-child(4) { left: 61%; animation-delay: 1s; background: var(--terracotta-light); }
.hero-embers span:nth-child(5) { left: 78%; animation-delay: 3s; }
.hero-embers span:nth-child(6) { left: 90%; animation-delay: 5s; background: var(--terracotta-light); }

@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: .9; }
  100% { transform: translateY(-90vh) scale(.4); opacity: 0; }
}

.hero-inner { position: relative; z-index: 3; max-width: 760px; margin: 0 auto; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: #fff;
  margin-bottom: .3em;
}
.hero h1 span { display: block; font-size: .42em; font-weight: 500; color: var(--cream-deep); margin-top: .25em; letter-spacing: .02em; }
.hero-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(251,243,231,.88);
  max-width: 560px;
  margin: 0 auto 2.2rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .88rem;
  color: rgba(251,243,231,.8);
}
.hero-meta-item { display: flex; align-items: center; gap: .45rem; }
#heroOpenStatus.open { color: #9FE0A0; font-weight: 600; }
#heroOpenStatus.closed { color: #F0A6A6; font-weight: 600; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(251,243,231,.75);
  animation: bob 2.2s ease-in-out infinite;
  z-index: 3;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.hero .reveal { opacity: 1; transform: none; } /* hero content shows immediately */

/* ---------- Placeholder "photography" tiles ---------- */
.img-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-align: center;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, var(--olive-light), var(--olive) 55%, var(--olive-dark));
  color: rgba(255,255,255,.92);
  padding: 1.5rem;
  overflow: hidden;
  isolation: isolate;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 2px, transparent 2px 14px);
  z-index: -1;
}
.img-placeholder span {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  opacity: .9;
}
.img-placeholder.alt { background: linear-gradient(155deg, var(--terracotta-light), var(--terracotta) 55%, var(--terracotta-dark)); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}
.about-media { position: relative; }
.img-placeholder.tall { aspect-ratio: 4/5; }
.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.about-copy p { color: var(--charcoal-soft); margin: 0 0 1.1rem; }
.about-copy em { color: var(--terracotta-dark); font-style: normal; font-weight: 600; }

.about-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--cream-deep);
}
.about-stats strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--terracotta-dark); }
.about-stats span { font-size: .82rem; color: var(--charcoal-soft); }

/* ---------- Menu ---------- */
.menu { background: var(--cream-alt); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.menu-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.img-placeholder.menu-img { aspect-ratio: 4/3; border-radius: 0; }
img.menu-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.menu-card-body { padding: 1.4rem; }
.menu-card-body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.menu-card-body p { font-size: .88rem; color: var(--charcoal-soft); margin: 0 0 .9rem; }

.tag-row { display: flex; gap: .4rem; flex-wrap: wrap; }
.badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  padding: .3rem .65rem;
  border-radius: 999px;
  letter-spacing: .02em;
}
.badge-gf { background: #EFE3F7; color: #6B3FA0; }
.badge-v { background: #E4EFD4; color: var(--olive-dark); }
.badge-vg { background: #D8F0E1; color: #1F7A4C; }

.diet-strip {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.6rem 0 2.4rem;
}
.diet-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  color: var(--charcoal-soft);
  font-size: .86rem;
  font-weight: 500;
  padding: .55rem 1.1rem;
  border-radius: 999px;
}
.diet-pill svg { color: var(--olive); }

.menu-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.filter-btn {
  padding: .55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--cream-deep);
  background: var(--cream);
  color: var(--charcoal-soft);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--terracotta); color: var(--terracotta-dark); }
.filter-btn.active { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item .img-placeholder { position: absolute; inset: 0; border-radius: 0; }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item .gallery-overlay,
.masonry-item .gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(43,36,28,0);
  opacity: 0;
  transition: opacity .25s ease, background .25s ease;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; background: rgba(43,36,28,.45); }
.gallery-item .gallery-overlay strong,
.masonry-item .gallery-overlay strong { font-family: var(--font-display); font-size: 1.05rem; }
.gallery-item .gallery-overlay span,
.masonry-item .gallery-overlay span { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; opacity: .85; margin-top: .3rem; }
.gallery-item[hidden] { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 15, 10, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  padding: 2rem;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  overflow: hidden;
  transform: scale(.92);
  transition: transform .25s ease;
}
.lightbox.open .lightbox-content { transform: scale(1); }
.lightbox-content img { display: block; max-width: 90vw; max-height: 85vh; width: auto; height: auto; border-radius: var(--radius-md); }
.lightbox-content .img-placeholder { width: min(560px, 90vw); aspect-ratio: 4/3; border-radius: var(--radius-md); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 24px; right: 24px; width: 44px; height: 44px; font-size: 1.6rem; line-height: 1; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.1rem; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 2.2rem;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.review-stars { display: flex; gap: .2rem; color: var(--gold); margin-bottom: 1.1rem; }
.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
  margin: 0 0 1.4rem;
  flex-grow: 1;
}
.review-quote::before { content: '\201C'; }
.review-quote::after { content: '\201D'; }
.review-author {
  font-weight: 600;
  color: var(--terracotta-dark);
  font-size: .9rem;
  letter-spacing: .02em;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-deep);
}
.reviews-cta { text-align: center; margin-top: 2.6rem; }

/* ---------- Hours ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hours-copy .btn { margin-top: 1.6rem; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--cream-alt);
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  margin: 1.4rem 0 .4rem;
}
.status-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #9AA35A; }
.status-badge.open .dot { background: #3F9E52; box-shadow: 0 0 0 4px rgba(63,158,82,.18); }
.status-badge.closed .dot { background: #C1552F; box-shadow: 0 0 0 4px rgba(193,85,47,.18); }

.hours-table {
  background: var(--cream-alt);
  border-radius: var(--radius-md);
  padding: .6rem 2rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: .96rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; }
.hours-row .closed { color: var(--terracotta-dark); font-weight: 600; }
.hours-row.today { color: var(--terracotta-dark); }
.hours-row.today span:first-child::before { content: '\25CF\0020'; font-size: .6rem; vertical-align: middle; }

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items: stretch;
}
.location-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: .9rem; }
.location-copy address { font-style: normal; font-size: 1.1rem; color: var(--charcoal-soft); margin-bottom: .4rem; }
.contact-line { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--terracotta-dark); margin-bottom: .6rem; }
.location-map { min-height: 380px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }

/* ---------- Contact / Reservation form ---------- */
.contact { background: var(--cream-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3.5rem;
}
.contact-facts { list-style: none; padding: 0; margin: 1.8rem 0 0; display: flex; flex-direction: column; gap: .9rem; }
.contact-facts li { display: flex; align-items: center; gap: .6rem; color: var(--charcoal-soft); font-weight: 500; }
.contact-facts svg { color: var(--terracotta); flex-shrink: 0; }

.reservation-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.form-row { margin-bottom: 1.2rem; display: grid; gap: 1rem; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-size: .84rem; font-weight: 600; color: var(--charcoal-soft); }
.form-field label small { font-weight: 400; opacity: .7; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: .94rem;
  padding: .75rem .9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-deep);
  background: #fff;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193,85,47,.15);
}
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea {
  border-color: #C0392B;
}
.field-error { font-size: .76rem; color: #C0392B; min-height: 1em; }
.form-note { font-size: .78rem; color: var(--charcoal-soft); text-align: center; margin: .9rem 0 0; opacity: .8; }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: #E4EFD4;
  color: var(--olive-dark);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.4rem;
}
.form-success svg { flex-shrink: 0; margin-top: 2px; }
.form-success p { margin: .2rem 0 0; font-size: .88rem; }
.form-success[hidden] { display: none; }

.form-error {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: #FBE1DC;
  color: var(--terracotta-dark);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.4rem;
}
.form-error svg { flex-shrink: 0; margin-top: 2px; }
.form-error p { margin: .2rem 0 0; font-size: .88rem; color: var(--charcoal-soft); }
.form-error a { color: var(--terracotta-dark); font-weight: 600; }
.form-error[hidden] { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(251,243,231,.8); padding-top: 4.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251,243,231,.12);
}
.footer-brand .brand-text strong { color: var(--cream); }
.footer-brand .brand-text small { color: var(--olive-light); }
.footer-brand p { font-size: .88rem; margin: 1rem 0 1.2rem; max-width: 260px; }
.footer-brand .brand-mark { color: var(--terracotta-light); }
.social-row { display: flex; gap: .7rem; }
.social-row a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(251,243,231,.08);
  transition: background .2s ease;
}
.social-row a:hover { background: var(--terracotta); }

.footer-col h4 { color: var(--cream); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1rem; font-family: var(--font-body); }
.footer-col a, .footer-col p { display: block; font-size: .88rem; margin-bottom: .65rem; color: rgba(251,243,231,.75); }
.footer-col a:hover { color: var(--terracotta-light); }

.footer-bottom { padding: 1.4rem 0; text-align: center; font-size: .78rem; color: rgba(251,243,231,.5); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 150;
}
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1040px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid, .hours-grid, .location-grid, .contact-grid, .reviews-grid { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 2rem; max-width: 420px; }
  .location-map { min-height: 300px; }
  .header-phone { display: none !important; }
}

@media (max-width: 840px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 6rem 2rem 2rem;
    box-shadow: -20px 0 40px rgba(0,0,0,.15);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 250;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--cream-deep); font-size: 1.05rem; }
  .main-nav a.nav-order-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    margin-top: 1.2rem;
    padding: .85rem 1.6rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    color: #fff;
    font-weight: 600;
  }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary,
  .header-actions .btn-order { display: none; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  section { padding: 3.8rem 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row.two, .form-row.three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 1.4rem; }
  .hero { min-height: 100vh; padding-top: 7rem; }
  .header-inner { padding: .7rem 20px; }
  .review-card { padding: 1.7rem 1.6rem; }
}

/* =========================================================
   Menu page
   ========================================================= */
html.menu-page { scroll-padding-top: 178px; }

.hero-compact { min-height: auto; padding: 7.5rem 0 3.2rem; }

/* Quick-nav */
.menu-quicknav {
  position: sticky;
  top: 64px;
  z-index: 190;
  background: rgba(251, 243, 231, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,36,28,.08);
  box-shadow: 0 6px 16px rgba(43,36,28,.06);
}
.menu-quicknav-inner {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: .8rem 24px;
  scrollbar-width: none;
  max-width: 1180px;
  margin: 0 auto;
}
.menu-quicknav-inner::-webkit-scrollbar { display: none; }
.qn-link {
  flex: 0 0 auto;
  padding: .5rem 1.05rem;
  border-radius: 999px;
  background: var(--cream-alt);
  color: var(--charcoal-soft);
  font-size: .84rem;
  font-weight: 600;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: background .2s ease, color .2s ease;
}
.qn-link:hover { background: var(--cream-deep); }
.qn-link.active { background: var(--terracotta); color: #fff; }

/* Category sections */
.menu-cat { padding: 3.6rem 0; }
.menu-cat.alt { background: var(--cream-alt); }
.menu-cat-head { max-width: 680px; margin: 0 auto 2rem; text-align: center; }
.menu-cat-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.menu-cat-sub { color: var(--charcoal-soft); font-size: .9rem; font-style: italic; margin: 0; }

.menu-list { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; display: flex; flex-direction: column; gap: 1.3rem; }
.menu-line { border-bottom: 1px dashed var(--cream-deep); padding-bottom: 1.1rem; }
.menu-line:last-child { border-bottom: none; padding-bottom: 0; }
.menu-line-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.menu-line-name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--charcoal); }
.menu-line-variant { font-family: var(--font-body); font-weight: 400; font-size: .82rem; color: var(--charcoal-soft); margin-left: .35rem; }
.menu-line-price { font-weight: 700; color: var(--terracotta-dark); font-size: 1rem; white-space: nowrap; flex-shrink: 0; text-align: right; }
.menu-line-desc { margin: .35rem 0 0; font-size: .87rem; color: var(--charcoal-soft); }

.badge-spicy { background: #FCE3D6; color: var(--terracotta-dark); margin-left: .4rem; }
.badge-note { background: var(--cream-deep); color: var(--charcoal-soft); font-style: italic; margin-left: .4rem; }

/* Signature platter spotlight */
.menu-spotlight {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(155deg, var(--olive-dark), var(--charcoal));
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.4rem;
  box-shadow: var(--shadow-strong);
}
.menu-spotlight .eyebrow { color: var(--gold); margin-bottom: .8rem; }
.menu-spotlight h3 { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin: 0 0 .8rem; display: flex; align-items: baseline; gap: .9rem; flex-wrap: wrap; }
.menu-spotlight .menu-line-price { color: var(--gold); font-size: 1.25rem; }
.menu-spotlight p { color: rgba(251,243,231,.85); margin: 0; font-size: .94rem; }
.menu-spotlight .spotlight-addon {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(251,243,231,.18);
  font-size: .88rem;
  color: var(--cream-deep);
}
.menu-spotlight .spotlight-addon strong { color: var(--gold); }

/* Fine print */
.menu-fineprint {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream-alt);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
}
.menu-fineprint h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.menu-fineprint ul { margin: 0; padding-left: 1.2rem; display: flex; flex-direction: column; gap: .55rem; }
.menu-fineprint li { font-size: .84rem; color: var(--charcoal-soft); }

@media (max-width: 640px) {
  .menu-line-top { flex-wrap: wrap; }
  .menu-spotlight { padding: 1.8rem 1.5rem; }
  .menu-spotlight h3 { font-size: 1.3rem; }
  .menu-fineprint { padding: 1.5rem 1.4rem; }
}

/* =========================================================
   Gallery page — masonry grid
   ========================================================= */
.masonry-grid {
  columns: 1;
  column-gap: 1rem;
}
.masonry-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease;
}
.masonry-item:hover { transform: translateY(-4px); }
.masonry-item .img-placeholder { border-radius: 0; height: 100%; }
.masonry-item img { display: block; width: 100%; height: auto; }
.masonry-item:hover .gallery-overlay { opacity: 1; background: rgba(43,36,28,.45); }
.masonry-item[hidden] { display: none; }

.masonry-item.ratio-square .img-placeholder { aspect-ratio: 1/1; }
.masonry-item.ratio-portrait .img-placeholder { aspect-ratio: 3/4; }
.masonry-item.ratio-tall .img-placeholder { aspect-ratio: 2/3; }
.masonry-item.ratio-landscape .img-placeholder { aspect-ratio: 4/3; }

@media (min-width: 560px) { .masonry-grid { columns: 2; } }
@media (min-width: 860px) { .masonry-grid { columns: 3; } }
@media (min-width: 1160px) { .masonry-grid { columns: 4; } }
