
/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --lemon:       #F2C12E;
  --lemon-deep:  #7A5A00;   /* use for text on light bg – WCAG AA compliant */
  --lemon-light: #FDF5C7;
  --lemon-pale:  #FEFAE8;
  --green:       #0F0F0F;   /* remapped → near-black primary */
  --green-mid:   #1C1C1C;   /* remapped → charcoal secondary */
  --green-light: #3D6B50;   /* NEW — lighter green accent touches */
  --green-pale:  #E8F0EC;   /* NEW — very subtle green tint bg */
  --cream:       #FEF6E4;
  --warm-white:  #FFFDF6;
  --charcoal:    #1C1C1C;
  --text-body:   #1A1A1A;
  --text-muted:  #6A5E50;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;
  --ease-out:     cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 68px;
  --subpage-hero-h: 52vh;
  --subpage-hero-min-h: 380px;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--warm-white);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ═══════════════════════════════════════════
   PROPOSAL BANNER
═══════════════════════════════════════════ */
.proposal-banner {
  background: var(--charcoal); color: #fff;
  text-align: center; padding: 8px 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  line-height: 1.45;
}
.proposal-banner span { color: var(--lemon); }

/* ═══════════════════════════════════════════
   NAVIGATION — smart hide + mobile
═══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: var(--green);
  height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  box-shadow: 0 2px 24px rgba(0,0,0,.4), 0 1px 0 rgba(61,107,80,.35);
  transition: transform .35s var(--ease-out);
}
.nav.hidden { transform: translateY(-100%); }

.nav-logo {
  display: flex; align-items: center;
  width: 168px; height: calc(var(--nav-h) - 18px);
  flex-shrink: 0;
}
.nav-logo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: contain; object-position: left center;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.28));
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--lemon); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-social { display: flex; gap: 14px; align-items: center; }
.nav-social a {
  color: rgba(255,255,255,.55);
  display: flex; align-items: center;
  transition: color .2s;
}
.nav-social a:hover { color: var(--lemon); }
.nav-social svg { width: 18px; height: 18px; }

.btn-reserve {
  background: var(--lemon); color: var(--green);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 20px; white-space: nowrap;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.btn-reserve:hover { background: #fff; transform: translateY(-1px); }

/* Hamburger */
.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; padding: 6px;
  z-index: 1001;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--lemon);
  transition: transform .3s, opacity .3s;
  display: block;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Book button — calendar icon, always visible next to burger ≤1024px */
.btn-reserve-mobile {
  display: none;
  width: 36px; height: 36px;
  background: var(--lemon);
  color: var(--green);
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
  border-radius: 0;
}
.btn-reserve-mobile:hover { background: #fff; }
.btn-reserve-mobile svg { width: 16px; height: 16px; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 800;
  background: var(--green);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s var(--ease-out), visibility 0s linear .3s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600; font-style: italic;
  color: #fff; letter-spacing: -.01em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--lemon); }
.mobile-menu .mobile-reserve {
  background: var(--lemon); color: var(--green);
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; padding: 14px 36px;
  margin-top: 12px;
}
.mobile-social {
  display: flex; gap: 24px; margin-top: 8px;
}
.mobile-social a { color: rgba(255,255,255,.5); }
.mobile-social svg { width: 22px; height: 22px; }

/* ═══════════════════════════════════════════
   SHARED TOKENS
═══════════════════════════════════════════ */
.label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--lemon-deep);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.label::before { content: ''; width: 24px; height: 1px; background: currentColor; display: block; }
.label.on-dark { color: var(--lemon); }
.label.on-dark::before { background: var(--lemon); }
.label.center { justify-content: center; }
.label.center::before { display: none; }

.heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600; font-style: italic;
  color: var(--green); line-height: 1.05;
  letter-spacing: -.01em;
}
.limoncello-heading-highlight { color: var(--lemon); }
.heading.on-dark { color: #fff; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lemon); color: var(--green);
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 15px 34px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover { background: var(--lemon-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(242,193,46,.35); }

.dietary-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 9px 13px;
  border: 1px solid rgba(242,193,46,.35);
  background: rgba(242,193,46,.1);
  color: var(--lemon);
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.dietary-badge.on-light {
  margin-top: 12px;
  border-color: rgba(61,107,80,.18);
  background: rgba(61,107,80,.07);
  color: var(--green);
}
.dietary-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.4); color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 15px 34px;
  transition: border-color .2s, color .2s;
}
.btn-outline-white:hover { border-color: var(--lemon); color: var(--lemon); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-light);
  border-bottom: 2px solid var(--green-light);
  padding-bottom: 3px;
  transition: gap .2s;
}
.btn-text:hover { gap: 14px; }
.btn-text::after { content: '→'; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative; height: 86vh; min-height: 600px; max-height: 860px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  transition: transform 9s ease-out;
  transform: scale(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,.82) 100%);
}
.hero-bg.loaded { transform: scale(1); }
.hero-bg picture,
.menu-hero-bg picture,
.about-page-hero-bg picture,
.contact-hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 72px 80px;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--lemon); margin-bottom: 22px;
  animation: fadeUp .8s var(--ease-out) .2s both;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--lemon); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 600; font-style: italic;
  color: #fff; line-height: .92;
  letter-spacing: -.02em; margin-bottom: 28px;
  animation: fadeUp .9s var(--ease-out) .35s both;
}
.hero-title em { color: var(--lemon); white-space: nowrap; }
.hero-mobile-break { white-space: nowrap; }
.hero-sub {
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,.72); line-height: 1.8;
  max-width: 420px; margin-bottom: 44px;
  animation: fadeUp 1s var(--ease-out) .5s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) .65s both;
}

.hero-bar {
  position: absolute; bottom: 0; right: 0;
  background: var(--lemon);
  display: grid;
  grid-template-columns: 1.35fr .8fr 1fr;
  width: min(820px, calc(100% - 80px));
  animation: fadeUp .9s var(--ease-out) .8s both;
}
.hero-bar-item {
  padding: 16px 20px; text-align: center;
  border-left: 1px solid rgba(0,0,0,.12);
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-bar-item:first-child { border-left: none; }
.hero-bar-lbl {
  font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 3px;
}
.hero-bar-val {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; color: var(--green);
}
.hero-hours-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 6px;
}
.hero-hours-row {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 8px;
  text-align: left;
}
.hero-hours-period {
  color: var(--green-mid);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-hours-time {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
  padding: 112px 0;
  background: var(--green-pale);  /* light green tint — the signature touch */
  position: relative; overflow: hidden;
}
.about::after {
  content: '"'; position: absolute;
  top: -80px; right: 60px;
  font-family: var(--font-display);
  font-size: 360px; font-style: italic;
  color: rgba(242,193,46,.07); line-height: 1;
  pointer-events: none;
}
.about-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 72px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
}
.about-body {
  font-size: 16px; line-height: 1.9;
  color: var(--text-muted); margin: 24px 0 36px;
}
.about-hours {
  display: flex; gap: 36px;
  padding: 24px 0; margin-bottom: 36px;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.about-hours-day { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.about-hours-time { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--green-light); }

.about-img-wrap { position: relative; z-index: 1; padding-bottom: 24px; padding-right: 24px; }
.about-img-wrap::before { content: ""; position: absolute; top: 24px; left: 24px; right: 0; bottom: 0; border: 1.5px solid var(--green); opacity: 0.12; border-radius: 4px; z-index: 0; }
.about-img-main {
  width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: center;
  border-radius: 4px;
  box-shadow: 16px 24px 64px rgba(27, 56, 41, 0.08);
  filter: sepia(0.08) saturate(0.98);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  display: block;
  font-family: var(--font-display); font-style: italic;
  color: rgba(255,255,255,.3); font-size: 18px; text-align: center;
  position: relative; z-index: 2;
}
.about-badge {
  position: absolute; bottom: -12px; left: -12px; z-index: 3;
  background: var(--lemon); padding: 24px 20px; width: 148px;
}
.about-badge-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--green); line-height: 1; }
.about-badge-text { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-top: 5px; line-height: 1.4; }
.text-nowrap { white-space: nowrap; }

/* ═══════════════════════════════════════════
   MENU TEASER — SVG icons, no emojis
═══════════════════════════════════════════ */
.menu-teaser {
  background: var(--green); padding: 96px 0;
  position: relative; overflow: hidden;
}
.menu-teaser::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(242,193,46,.07) 0%, transparent 58%);
  pointer-events: none;
}
.menu-teaser-inner { max-width: 1160px; margin: 0 auto; padding: 0 72px; }
.menu-teaser-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 56px;
  flex-wrap: wrap; gap: 24px;
}

.menu-cats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
}
.menu-cat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px 28px; position: relative;
  overflow: hidden;
  transition: background .3s, border-color .3s;
  cursor: pointer;
}
.menu-cat::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--lemon);
  transform: scaleX(0); transition: transform .3s var(--ease-out);
  transform-origin: left;
}
.menu-cat:hover { background: rgba(242,193,46,.07); border-color: rgba(242,193,46,.2); }
.menu-cat:hover::after { transform: scaleX(1); }

/* SVG icon container */
.menu-cat-icon {
  width: 44px; height: 44px; margin-bottom: 18px;
  color: var(--lemon); opacity: .85;
}
.menu-cat-icon svg { width: 100%; height: 100%; }
.menu-cat-name { font-family: var(--font-display); font-size: 24px; font-weight: 600; font-style: italic; color: #fff; margin-bottom: 8px; line-height: 1.1; }
.menu-cat-desc { font-size: 12px; font-weight: 400; color: rgba(255,255,255,.45); line-height: 1.65; }

.menu-teaser-cta {
  text-align: center; margin-top: 52px;
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   PHOTO STRIP — static affordance (no hover-only)
═══════════════════════════════════════════ */
.photo-strip { padding: 80px 0 0; background: var(--warm-white); overflow: hidden; }
.photo-strip-header {
  max-width: 1160px; margin: 0 auto 44px;
  padding: 0 72px;
  display: flex; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 300px 260px;
  gap: 4px;
}
.photo-cell { position: relative; overflow: hidden; background: var(--lemon-light); }
.photo-cell.tall { grid-row: span 2; }
.photo-cell img, .photo-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
  display: block;
}
.photo-placeholder {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px;
  font-style: italic; color: rgba(255,255,255,.3); text-align: center;
  padding: 12px;
}
.graphic-tile { background: var(--green); display: flex; text-decoration: none; color: var(--lemon); transition: background .3s; }
.graphic-tile:hover { background: var(--green-mid); }
.graphic-tile-inner { border: 1px solid rgba(242, 193, 46, 0.15); border-radius: 2px; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 16px; background-image: linear-gradient(rgba(242,193,46,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(242,193,46,0.04) 1px, transparent 1px); background-size: 24px 24px; background-position: center center; }
.graphic-tile-icon { width: 44px; height: 44px; margin-bottom: 20px; stroke-width: 1.2; }
.graphic-tile-text { font-family: var(--font-display); font-size: 36px; font-style: italic; line-height: 1; margin-bottom: 12px; }
.graphic-tile-sub { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; font-weight: 600; color: rgba(255,255,255,0.6); }
.graphic-tile-sub span { display: inline-block; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }
.photo-cell:hover img, .photo-cell:hover .photo-placeholder { transform: scale(1.05); }

/* Static overlay — always visible at low opacity, brightens on hover */
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.60) 0%, transparent 55%);
  opacity: .6;
  transition: opacity .3s;
}
.photo-cell:hover .photo-overlay { opacity: 1; }

/* Instagram badge — ALWAYS visible (static affordance, not hover-only) */
.photo-ig-badge {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .06em;
  opacity: .8; /* always visible */
  transition: opacity .25s;
}
.photo-cell:hover .photo-ig-badge { opacity: 1; }
.photo-ig-badge svg { width: 13px; height: 13px; }

/* Social strip */
.social-strip {
  background: var(--lemon);
  padding: 24px 72px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.social-strip-text {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600; font-style: italic;
  color: var(--green);
}
.social-strip-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 7px;
  background: var(--green); color: var(--lemon);
  padding: 11px 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  transition: background .2s;
}
.social-link:hover { background: var(--charcoal); color: #fff; }
.social-link svg { width: 15px; height: 15px; }
.social-link.reserve-link { background: var(--cream); color: var(--green); }
.social-link.reserve-link:hover { background: var(--charcoal); color: #fff; }

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.reviews { padding: 88px 0; background: var(--lemon-pale); }
.reviews-inner { max-width: 1160px; margin: 0 auto; padding: 0 72px; }
.reviews-header { text-align: center; margin-bottom: 44px; }
.reviews-slider { position: relative; overflow: hidden; }
.reviews-viewport { overflow: hidden; max-width: 100%; contain: paint; transition: height .35s var(--ease-out); }
.reviews-track {
  display: flex;
  gap: 28px;
  align-items: stretch;
  transition: transform .55s var(--ease-out);
  will-change: transform;
}
.review-card {
  background: #fff;
  padding: 32px 30px;
  border-top: 3px solid var(--lemon);
  flex: 0 0 calc((100% - 56px) / 3);
  height: 390px;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--lemon-deep); font-size: 15px; letter-spacing: 2px; margin-bottom: 18px; }
.review-quote {
  font-family: var(--font-display); font-size: 18px; font-style: italic;
  line-height: 1.55; color: var(--text-body); margin-bottom: 24px; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--lemon); flex-shrink: 0; }
.review-name { font-size: 13px; font-weight: 700; }
.review-src { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.reviews-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15,15,15,.18);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.reviews-nav:hover { background: var(--green); color: var(--lemon); border-color: var(--green); }
.reviews-nav svg { width: 17px; height: 17px; }
.reviews-dots { display: flex; align-items: center; gap: 8px; }
.reviews-dot {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  position: relative;
  transition: width .2s;
}
.reviews-dot::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: rgba(15,15,15,.24);
  transition: inset .2s, background .2s;
}
.reviews-dot.active::before { inset: 7px 4px; background: var(--green); }
.reviews-cta { text-align: center; margin-top: 52px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--green); padding: 72px 0 36px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--lemon) 30%, var(--lemon) 70%, transparent); }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 72px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-logo { margin-bottom: 18px; }
.footer-logo img {
  display: block;
  width: 228px; max-width: 100%; height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.28));
}
.footer-tag { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 24px; max-width: 240px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); transition: border-color .2s, color .2s; }
.footer-social a:hover { border-color: var(--lemon); color: var(--lemon); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--lemon); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(242,193,46,.2); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--lemon); }
/* Fix #4: Brighter Visit Us text — address & hours are core operational info */
.footer-info p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.85; margin-bottom: 4px; }
.footer-info strong { color: #fff; font-weight: 600; }
.footer-info .footer-info-val { color: rgba(255,255,255,.82); font-size: 13.5px; }
.footer-reserve-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; /* full-width CTA block */
  background: var(--lemon); color: var(--green);
  padding: 14px 20px; margin-top: 22px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  transition: background .2s;
}
.footer-reserve-btn:hover { background: #fff; }
.footer-reserve-btn svg { width: 14px; height: 14px; }
.footer-map {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242,193,46,.18);
  background: rgba(255,255,255,.04);
  min-height: 260px;
}
.footer-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  filter: grayscale(.18) contrast(1.02);
}
.footer-map-fallback {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(15,15,15,.9);
  border: 1px solid rgba(242,193,46,.22);
  color: #fff;
}
.footer-map-fallback strong {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lemon);
  margin-bottom: 3px;
}
.footer-map-fallback span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.68);
}
.footer-map-fallback a {
  flex-shrink: 0;
  background: var(--lemon);
  color: var(--green);
  padding: 11px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-map-fallback a:hover { background: #fff; }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding: 24px 72px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.28); letter-spacing: .04em; }
.footer-bottom a { color: rgba(242,193,46,.86); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.footer-bottom a:hover { color: var(--lemon); }

/* ═══════════════════════════════════════════
   PAGE BREAK BANNER
═══════════════════════════════════════════ */
.page-break {
  background: var(--charcoal); color: #fff;
  text-align: center; padding: 18px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
}
.page-break span { color: var(--lemon); }
.section-anchor { height: 0; scroll-margin-top: var(--nav-h); }

/* ═══════════════════════════════════════════
   MENU PAGE — HERO
═══════════════════════════════════════════ */
.menu-hero {
  height: var(--subpage-hero-h); min-height: var(--subpage-hero-min-h); position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
}
.menu-hero-bg {
  position: absolute; inset: 0;
}
.menu-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.92) 38%, rgba(0,0,0,.35) 100%);
}
.menu-hero-content { position: relative; z-index: 2; padding: 0 72px 64px; }
.menu-hero-title { font-family: var(--font-display); font-size: clamp(52px, 8vw, 96px); font-weight: 600; font-style: italic; color: #fff; line-height: .92; letter-spacing: -.02em; margin: 14px 0 22px; }
.menu-hero-title span { color: var(--lemon); }
.menu-hero-desc { font-size: 14px; color: rgba(255,255,255,.6); max-width: 380px; line-height: 1.75; }

/* ═══════════════════════════════════════════
   TEXT-BASED MENU
═══════════════════════════════════════════ */
.menu-section { padding: 88px 0 100px; background: var(--cream); }
.menu-section-inner { max-width: 1160px; margin: 0 auto; padding: 0 72px; }

/* Category tabs — swipeable on mobile */
.menu-tabs-wrap {
  position: relative;
  margin-bottom: 56px;
}
/* Gradient fade — visual cue: more tabs hidden to the right */
.menu-tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 2px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--cream));
  pointer-events: none;
  z-index: 2;
  transition: opacity .3s;
}
/* Hide gradient on desktop where all tabs fit */
@media (min-width: 1025px) {
  .menu-tabs-wrap::after { display: none; }
}
.menu-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid rgba(0,0,0,.1);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  padding: 14px 28px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px; cursor: pointer;
  scroll-snap-align: start;
  transition: color .2s, border-color .2s;
}
.menu-tab:hover { color: var(--green); }
.menu-tab.active { color: var(--green); border-bottom-color: var(--lemon); }

/* Menu category panels */
.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-cat-header {
  display: flex; align-items: center; gap: 28px;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.menu-cat-icon-lg { width: 52px; height: 52px; color: var(--green); opacity: .7; }
.menu-cat-icon-lg svg { width: 100%; height: 100%; }
.menu-cat-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); font-weight: 600; font-style: italic; color: var(--green); line-height: 1; }
.menu-cat-subtitle { font-size: 12px; color: var(--text-muted); letter-spacing: .1em; margin-top: 4px; }

/* Menu items grid */
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.menu-item {
  padding: 24px 28px; background: #fff;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  border-left: 3px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.menu-item:hover { border-left-color: var(--green-light); box-shadow: inset 0 0 0 1px rgba(61,107,80,.12); }
.menu-item.signature {
  border-left-color: var(--lemon);
  background: var(--lemon-pale);  /* visual anchor — pulls eye to hero dishes */
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600;
  color: var(--green); line-height: 1.15;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
/* Signature: Deep Gold bold name — elegant, not loud */
.menu-item.signature .menu-item-name {
  color: var(--lemon-deep);
  font-weight: 700;
}
/* Lemon line-art icon — replaces plain dot */
.sig-icon {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--lemon-deep); opacity: .85;
}
.sig-icon svg { width: 100%; height: 100%; }
.menu-item-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.menu-panel-note {
  margin: -18px 0 32px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--green); white-space: normal; flex-shrink: 0;
  max-width: 44%;
  text-align: right;
  line-height: 1.25;
  padding-top: 2px;
  display: block;
}
.menu-item-price-options {
  min-width: 116px;
  display: grid;
  gap: 7px;
  font-family: var(--font-body);
}
.menu-price-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(61,107,80,.14);
}
.menu-price-option:last-child { padding-bottom: 0; border-bottom: 0; }
.menu-price-label {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu-price-value {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}
/* ── B1: Tabs scroll hint arrow ── */
.tabs-scroll-hint {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--lemon); color: var(--green);
  display: none; /* hidden on desktop — shown via media query below */
  align-items: center; justify-content: center;
  pointer-events: none; z-index: 3; flex-shrink: 0;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.tabs-scroll-hint svg { width: 12px; height: 12px; }
.menu-tabs-wrap.tabs-at-end .tabs-scroll-hint { opacity: 0; transform: translateY(-50%) translateX(4px); }
@media (max-width: 1024px) {
  .tabs-scroll-hint { display: flex; }
}
/* ── C1: Floating labels ── */
.contact-form-float {
  position: relative;
}
.contact-form-float .contact-form-input,
.contact-form-float .contact-form-textarea {
  padding-top: 20px; padding-bottom: 8px;  /* room for label to float into */
}
.contact-form-float .contact-form-label {
  position: absolute;
  left: 16px; top: 14px;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  color: rgba(58,46,30,.45);
  pointer-events: none;
  transition: top .18s, font-size .18s, letter-spacing .18s, color .18s, font-weight .18s;
  line-height: 1;
}
.contact-form-float textarea ~ .contact-form-label {
  top: 16px;  /* textarea: align with top, not center */
}
/* Float up when focused or has content */
.contact-form-float .contact-form-input:focus ~ .contact-form-label,
.contact-form-float .contact-form-input:not(:placeholder-shown) ~ .contact-form-label,
.contact-form-float .contact-form-textarea:focus ~ .contact-form-label,
.contact-form-float .contact-form-textarea:not(:placeholder-shown) ~ .contact-form-label {
  top: 6px;
  font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--lemon-deep);
}
/* ── C2: Error state ── */
.contact-form-field.is-error .contact-form-input,
.contact-form-field.is-error .contact-form-textarea {
  border-color: #A03020;
  box-shadow: 0 0 0 3px rgba(160,48,32,.1);
}
.contact-form-field.is-error .contact-form-float .contact-form-label {
  color: #A03020;
}
.contact-form-field.is-error .contact-form-input:not(:placeholder-shown) ~ .contact-form-label,
.contact-form-field.is-error .contact-form-input:focus ~ .contact-form-label {
  color: #A03020;
}
.contact-form-error-msg {
  font-size: 11px; font-weight: 600;
  color: #A03020; margin-top: 6px;
  display: flex; align-items: center; gap: 5px; line-height: 1.4;
}
.contact-form-error-msg svg { flex-shrink: 0; }
/* ── D1: Footer Visit Us — breathing room ── */
.footer-info p { margin-bottom: 14px; }
/* ── Extra: Skeleton shimmer for photo strip ── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.photo-cell.loading {
  background: linear-gradient(90deg, #e8e0d4 25%, #f2ede6 50%, #e8e0d4 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
.photo-cell.loading img,
.photo-cell.loading .photo-overlay,
.photo-cell.loading .photo-ig-badge { visibility: hidden; }
/* ── Extra: Back to Top button ── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--lemon);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.28);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  cursor: pointer; border: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-page-hero {
  height: var(--subpage-hero-h); min-height: var(--subpage-hero-min-h);
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.about-page-hero-bg {
  position: absolute; inset: 0;
}
.about-page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.88) 100%);
}
.about-page-hero > div:not(.about-page-hero-bg) { padding: 0 72px 64px !important; }
.about-story { padding: 96px 0; background: var(--warm-white); }
.about-story-inner { max-width: 860px; margin: 0 auto; padding: 0 72px; }
.about-story p { font-size: 17px; line-height: 1.9; color: var(--text-muted); margin-bottom: 24px; }
.about-story p:first-of-type { font-family: var(--font-display); font-size: 24px; font-style: italic; color: var(--text-body); line-height: 1.65; }
.about-values { background: var(--green-pale); padding: 80px 0; }
.about-values-inner { max-width: 1160px; margin: 0 auto; padding: 0 72px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.value-card { background: #fff; padding: 36px 28px; border-top: 3px solid var(--lemon); }
.value-icon { width: 40px; height: 40px; color: var(--green); margin-bottom: 16px; opacity: .7; }
.value-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; font-style: italic; color: var(--green); margin-bottom: 10px; }
.value-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-page { padding: 96px 0; background: var(--warm-white); }
.contact-hero {
  position: relative;
  height: var(--subpage-hero-h);
  min-height: var(--subpage-hero-min-h);
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--green);
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
}
.contact-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(27,56,41,.96) 0%, rgba(27,56,41,.86) 45%, rgba(27,56,41,.38) 100%);
}
.contact-hero > div:not(.contact-hero-bg) {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 72px 64px !important;
}
.contact-inner { max-width: 1160px; margin: 0 auto; padding: 0 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-block { margin-bottom: 32px; }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--lemon-deep); margin-bottom: 8px; }
.contact-info-value { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--green); line-height: 1.3; }
.contact-info-sub { font-size: 13px; color: var(--text-muted); margin-top: 4px; line-height: 1.65; }
/* Tap-to-call — prominent on mobile, subtle on desktop */
.tap-call-btn {
  display: none; /* hidden desktop — plain underlined number is enough */
  margin-top: 10px;
}
.tap-call-btn a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--lemon);
  padding: 13px 24px; width: 100%;
  font-size: 14px; font-weight: 700; letter-spacing: .06em;
  justify-content: center;
}
.tap-call-btn svg { width: 18px; height: 18px; }
@media (max-width: 768px) {
  .tap-call-btn { display: block; }
}

/* Tap-to-navigate — always visible, Google Maps / Apple Maps */
.tap-nav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  background: var(--lemon); color: var(--green);
  padding: 11px 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  transition: background .2s;
}
.tap-nav-btn:hover { background: var(--lemon-deep); color: #fff; }
.tap-nav-btn svg { width: 15px; height: 15px; }
@media (max-width: 768px) {
  .tap-nav-btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 13px; }
}

.contact-map {
  position: sticky; top: calc(var(--nav-h) + 24px);
  min-height: 520px;
  background: var(--green);
  overflow: hidden;
  box-shadow: 16px 24px 64px rgba(27, 56, 41, 0.08);
}
.contact-map iframe {
  width: 100%; height: 520px; display: block; border: 0;
  filter: saturate(.85) contrast(.98);
}
.contact-map-caption {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(15,15,15,.88);
  color: #fff;
  padding: 14px 16px;
}
.contact-map-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--lemon);
  line-height: 1;
  margin-bottom: 4px;
}
.contact-map-caption span { display: block; font-size: 12px; color: rgba(255,255,255,.68); line-height: 1.45; }
.contact-map-caption a {
  flex-shrink: 0;
  background: var(--lemon); color: var(--green);
  padding: 10px 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.contact-map-caption a:hover { background: #fff; }
@media (max-width: 768px) {
  .contact-map { position: relative; top: auto; min-height: 420px; order: -1; }
  .contact-map iframe { height: 420px; }
  .contact-map-caption {
    left: 12px; right: 12px; bottom: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-map-caption a { width: 100%; text-align: center; }
}
.contact-form-wrap { background: var(--cream); padding: 44px; }
.contact-form-title { font-family: var(--font-display); font-size: 30px; font-weight: 600; font-style: italic; color: var(--green); margin-bottom: 8px; }
.contact-form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.65; }
.form-placeholder { background: rgba(0,0,0,.04); border: 1px dashed rgba(0,0,0,.15); padding: 36px 24px; text-align: center; }
.form-placeholder p { font-size: 12px; color: var(--text-muted); letter-spacing: .06em; }
.form-placeholder strong { display: block; font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--green); margin-bottom: 6px; }

/* ═══════════════════════════════════════════
   CONTACT FORM — UI component spec (Fix #2)
   Defines visual state: default / focus / submit
═══════════════════════════════════════════ */
.contact-form-field { margin-bottom: 20px; }
.contact-form-label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 7px;
}
.contact-form-input,
.contact-form-textarea {
  width: 100%;
  border: 1.5px solid rgba(0,0,0,.13);
  padding: 13px 16px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--text-body); background: #fafaf8;
  outline: none; border-radius: 0;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  min-height: 48px; /* touch-friendly: 48px minimum */
}
.contact-form-input:focus,
.contact-form-textarea:focus {
  border-color: var(--lemon);   /* focus ring — lemon yellow signal */
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242,193,46,.14);
}
.contact-form-textarea { min-height: 128px; resize: vertical; line-height: 1.6; }
.contact-form-input::placeholder,
.contact-form-textarea::placeholder { color: rgba(58,46,30,.32); font-style: italic; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-spec-note {
  background: rgba(242,193,46,.07); border-left: 3px solid var(--lemon);
  padding: 13px 16px; margin-top: 20px;
}
.form-spec-note p { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.form-spec-note strong { color: var(--lemon-deep); }
@media (max-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   RESERVE CTA STRIP
═══════════════════════════════════════════ */
.reserve-cta { background: var(--green); padding: 72px 0; text-align: center; border-top: 3px solid var(--green-light); }
.reserve-cta-inner { max-width: 640px; margin: 0 auto; padding: 0 32px; }
.reserve-cta h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 600; font-style: italic; color: #fff; margin-bottom: 14px; line-height: 1.1; }
.reserve-cta h2 span { color: var(--lemon); }
.reserve-cta p { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 36px; line-height: 1.7; }
.reserve-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   DESIGN SYSTEM PANEL
═══════════════════════════════════════════ */
.ds { background: #111; padding: 72px; font-family: var(--font-body); }
.ds-row { margin-bottom: 48px; }
.ds-row h3 { font-size: 10px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.05); }
.swatches { display: flex; flex-wrap: wrap; gap: 16px; }
.swatch-block { width: 72px; height: 52px; border: 1px solid rgba(255,255,255,.06); }
.swatch-name { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 7px; }
.swatch-hex { font-size: 10px; color: rgba(255,255,255,.25); font-family: monospace; }
.wcag-note {
  background: rgba(242,193,46,.08); border-left: 3px solid var(--lemon);
  padding: 16px 20px; margin-top: 20px;
}
.wcag-note p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
.wcag-note strong { color: var(--lemon); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   ██ RESPONSIVE — MOBILE FIRST
═══════════════════════════════════════════ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .nav { padding: 0 28px; }
  .section-nav { display: none; }
  .nav-links, .nav-social { display: none; }
  .btn-reserve.desktop-only { display: none; }
  .btn-reserve-mobile { display: flex; }
  .nav-burger { display: flex; }

  .hero-content { padding: 0 40px 72px; }
  .hero-bar { display: none; } /* on mobile: show info differently */

  .about-inner { gap: 56px; padding: 0 40px; }
  .menu-teaser-inner { padding: 0 40px; }
  .menu-cats { grid-template-columns: repeat(2,1fr); }
  .photo-strip-header { padding: 0 40px; }
  .social-strip { padding: 20px 40px; }
  .reviews-inner { padding: 0 40px; }
  .reviews-track { gap: 20px; }
  .review-card { flex-basis: calc((100% - 20px) / 2); height: 370px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 0 40px; }
  .footer-bottom { padding: 20px 40px 0; }

  .menu-hero-content { padding: 0 40px 52px; }
  .about-page-hero > div:not(.about-page-hero-bg),
  .contact-hero > div:not(.contact-hero-bg) { padding: 0 40px 52px !important; }
  .menu-section-inner { padding: 0 40px; }
  .menu-items { grid-template-columns: 1fr; }

  .about-story-inner { padding: 0 40px; }
  .about-values-inner { padding: 0 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { padding: 0 40px; }

  .ds { padding: 48px 40px; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  html,
  body {
    position: relative;
    touch-action: pan-y;
  }

  .proposal-banner {
    padding: 6px 12px;
    font-size: 9px;
    letter-spacing: .12em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav { padding: 0 20px; }
  .nav-logo { width: 138px; height: 42px; }

  /* Hero */
  .hero { min-height: 86svh; height: auto; max-height: none; }
  .hero-bg,
  .hero-bg.loaded {
    transform: none;
    transition: none;
  }
  .hero-content { padding: 0 24px 44px; width: 100%; max-width: 100%; }
  .hero-title { font-size: clamp(42px, 11vw, 54px); line-height: .98; margin-bottom: 22px; max-width: calc(100vw - 48px); }
  .hero-title em { white-space: normal; }
  .hero-title .hero-mobile-break { display: block; white-space: normal; }
  .hero-sub { font-size: 14px; max-width: min(100%, 320px); line-height: 1.7; margin-bottom: 30px; }
  .dietary-badge { font-size: 9px; line-height: 1.35; letter-spacing: .1em; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions a { width: 100%; max-width: none; justify-content: center; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* About */
  .about { padding: 56px 0 88px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .about-img-wrap { order: -1; padding-right: 14px; padding-bottom: 34px; }
  .about-img-wrap::before { top: 14px; left: 14px; }
  .about-badge {
    left: 14px; bottom: 0;
    width: auto; max-width: calc(100% - 42px);
    display: flex; align-items: center; gap: 14px;
    padding: 13px 16px 14px;
    box-shadow: 0 14px 32px rgba(27, 56, 41, 0.14);
  }
  .about-badge-num { font-size: 34px; }
  .about-badge-text { max-width: 168px; margin-top: 0; font-size: 9px; line-height: 1.35; letter-spacing: .08em; }
  .about-hours { flex-direction: column; gap: 16px; }

  /* Menu teaser */
  .menu-teaser { padding: 72px 0; }
  .menu-teaser-inner { padding: 0 24px; }
  .menu-teaser-header { flex-direction: column; align-items: flex-start; }
  .menu-cats { grid-template-columns: 1fr 1fr; gap: 2px; }
  .menu-cat { padding: 24px 20px; }
  .menu-cat-icon { width: 36px; height: 36px; margin-bottom: 14px; }
  .menu-cat-name { font-size: 20px; }
  .menu-cat-desc { color: rgba(255,255,255,.72); }
  .menu-teaser-cta { flex-direction: column; }

  /* Photo grid — 2 col */
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .photo-cell.tall { grid-row: span 1; }

  /* Social strip */
  .social-strip { padding: 20px 24px; flex-direction: column; align-items: flex-start; }
  .social-strip-links { flex-direction: column; width: 100%; }
  .social-link { width: 100%; justify-content: center; }

  /* Reviews */
  .reviews { padding: 72px 0; }
  .reviews-inner { padding: 0 24px; }
  .reviews-track { gap: 16px; align-items: flex-start; }
  .review-card { flex-basis: 100%; height: auto; min-height: 0; padding: 30px 26px; }
  .review-quote {
    flex: 0 1 auto;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .reviews-controls { margin-top: 24px; }

  /* Footer */
  .footer { padding: 56px 0 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 24px; }
  .footer-map { min-height: 320px; }
  .footer-map iframe { height: 320px; }
  .footer-map-fallback {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-map-fallback a { width: 100%; text-align: center; }
  .footer-bottom { padding: 20px 24px 0; flex-direction: column; gap: 8px; }

  /* Menu page */
  .menu-hero,
  .about-page-hero,
  .contact-hero {
    height: 34svh;
    min-height: 240px;
  }
  .menu-hero-content { padding: 0 24px 34px; }
  .about-page-hero > div:not(.about-page-hero-bg),
  .contact-hero > div:not(.contact-hero-bg) { padding: 0 24px 34px !important; }
  .menu-hero-title { font-size: clamp(42px, 12vw, 58px); margin-bottom: 14px; }
  .menu-hero-desc { font-size: 13px; line-height: 1.6; max-width: 320px; }
  .menu-section { padding: 64px 0; }
  .menu-section-inner { padding: 0 24px; }
  .menu-tabs { gap: 0; margin-bottom: 40px; }
  .menu-tab { padding: 12px 18px; font-size: 10px; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-item { padding: 20px; }
  .menu-item-price { max-width: 38%; font-size: 16px; }
  .menu-item-price-options { min-width: 108px; max-width: 44%; }
  .menu-price-option { gap: 9px; }
  .menu-price-label { font-size: 9px; }
  .menu-price-value { font-size: 16px; }
  .menu-item { padding: 20px 20px; }
  .menu-item-name { font-size: 17px; }

  /* About page */
  .about-story { padding: 48px 0 64px; }
  .about-story-inner { padding: 0 24px; }
  .about-story .heading {
    font-size: clamp(34px, 10vw, 42px);
    margin-bottom: 24px !important;
  }
  .about-story p { font-size: 16px; line-height: 1.8; }
  .about-story p:first-of-type { font-size: 21px; line-height: 1.55; }
  .about-values { padding: 56px 0; }
  .about-values-inner { padding: 0 24px; }
  .values-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-page { padding: 64px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }

  /* Reserve CTA */
  .reserve-cta { padding: 56px 0; }
  .reserve-cta-btns { flex-direction: column; align-items: center; }
  .reserve-cta-btns a { width: 100%; max-width: 300px; justify-content: center; }

  /* DS */
  .ds { padding: 40px 24px; }

  /* Photo strip header */
  .photo-strip-header { padding: 0 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-bg,
  .hero-bg.loaded {
    transform: none;
    transition: none;
  }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }
  .menu-cats { grid-template-columns: 1fr; }
  .footer-social a { width: 36px; height: 36px; }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--green); }
::-webkit-scrollbar-thumb { background: var(--lemon); border-radius: 3px; }
