/* =========================================================
   LUNA DINING — stylesheet
   Palette: cream · dark olive · warm beige · gold
   Type: Cormorant Garamond (display) + Jost (UI/body)
   ========================================================= */

:root {
  --cream:        #f7f1e4;
  --cream-soft:   #faf6ec;
  --beige:        #e7dcc6;
  --beige-deep:   #d8c9ab;
  --olive:        #3a4031;
  --olive-deep:   #2b3024;
  --olive-soft:   #525a44;
  --gold:         #c2a05a;
  --gold-bright:  #d4b873;
  --ink:          #2c2a23;
  --muted:        #6f6a5c;

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-ui: "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-soft: 0 18px 50px -24px rgba(43, 48, 36, 0.45);
  --shadow-lift: 0 30px 70px -30px rgba(43, 48, 36, 0.6);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--ff-ui);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--olive-deep); }

/* ---------- Shared ---------- */
.section { padding: clamp(4.5rem, 11vw, 9rem) var(--gutter); position: relative; }

.eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: var(--gold-bright); }

.section__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--olive-deep);
}
.section__title em { font-style: italic; color: var(--gold); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.05rem 2.2rem;
  border-radius: 100px;
  position: relative;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.btn--gold {
  background: var(--gold);
  color: var(--olive-deep);
  box-shadow: 0 14px 34px -16px rgba(194, 160, 90, 0.9);
}
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(194, 160, 90, 0.95); }
.btn--ghost {
  color: var(--cream);
  border: 1px solid rgba(247, 241, 228, 0.5);
}
.btn--ghost:hover { background: rgba(247, 241, 228, 0.12); border-color: var(--cream); transform: translateY(-3px); }

/* =========================================================
   PAGE VEIL (load + transition)
   ========================================================= */
.page-veil {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--olive-deep);
  display: grid; place-items: center;
  transition: transform 1s var(--ease) 0.25s;
}
.page-veil.is-gone { transform: translateY(-101%); }
.veil-mark {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(14px);
  animation: veilIn 1s var(--ease) 0.15s forwards;
}
.page-veil.is-gone .veil-mark { opacity: 0; transition: opacity 0.4s ease; }
@keyframes veilIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 1500;
  transition: width 0.1s linear;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 0.7rem 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav.is-scrolled {
  background: rgba(247, 241, 228, 0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(58, 64, 49, 0.08), 0 10px 30px -22px rgba(43, 48, 36, 0.5);
}

.nav__brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--ff-display); }
.nav__brand-mark { color: var(--gold); font-size: 1.5rem; line-height: 1; }
.nav__brand-text { font-size: 1.5rem; letter-spacing: 0.02em; color: var(--cream); transition: color 0.5s var(--ease); }
.nav__brand-text em { font-style: italic; color: var(--gold); }
.nav.is-scrolled .nav__brand-text { color: var(--olive-deep); }

.nav__links { display: flex; gap: 2.1rem; }
.nav__links a {
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); font-weight: 400; position: relative; padding: 0.3rem 0;
  transition: color 0.4s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--gold-bright); }
.nav.is-scrolled .nav__links a { color: var(--olive); }
.nav.is-scrolled .nav__links a:hover { color: var(--gold); }

.nav__cta {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  padding: 0.75rem 1.5rem; border-radius: 100px;
  border: 1px solid var(--gold); color: var(--cream);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: var(--olive-deep); transform: translateY(-2px); }
.nav.is-scrolled .nav__cta { color: var(--olive-deep); }
.nav.is-scrolled .nav__cta:hover { color: var(--olive-deep); background: var(--gold); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1100; }
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); transition: all 0.4s var(--ease); transform-origin: center; }
.nav.is-scrolled .nav__toggle span { background: var(--olive-deep); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 7rem var(--gutter) 5rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: -8% 0 -8% 0; z-index: 0; will-change: transform; }
.hero__img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(43,48,36,0.82) 0%, rgba(43,48,36,0.45) 42%, rgba(43,48,36,0.15) 75%),
    linear-gradient(0deg, rgba(43,48,36,0.55), rgba(43,48,36,0.05) 40%);
}

.hero__content { position: relative; z-index: 3; max-width: 700px; }
.hero__eyebrow {
  font-size: 0.78rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 1.8rem; font-weight: 400;
}
.hero__title {
  font-family: var(--ff-display); color: var(--cream);
  font-size: clamp(3rem, 9vw, 7rem); line-height: 0.98; font-weight: 500;
  letter-spacing: -0.015em; margin-bottom: 1.8rem;
}
.hero__title em { font-style: italic; color: var(--gold-bright); }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.hero.is-in .reveal-line:nth-child(1) > span { transition-delay: 0.45s; transform: translateY(0); }
.hero.is-in .reveal-line:nth-child(2) > span { transition-delay: 0.58s; transform: translateY(0); }

.hero__lede {
  color: rgba(247, 241, 228, 0.86); font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 33em; margin-bottom: 2.4rem; font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* floating signature chips */
.hero__signatures { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.sig-chip {
  position: absolute; width: clamp(140px, 15vw, 210px);
  border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lift);
  will-change: transform;
}
.sig-chip img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.sig-chip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 0.9rem 0.7rem; color: var(--cream);
  font-family: var(--ff-display); font-style: italic; font-size: 1.05rem;
  background: linear-gradient(0deg, rgba(43,48,36,0.85), transparent);
}
.sig-chip:nth-child(1) { top: 18%; right: 7%; }
.sig-chip--2 { bottom: 12%; right: 21%; width: clamp(120px, 12vw, 170px); }

.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  color: rgba(247,241,228,0.7); font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 44px; background: rgba(247,241,228,0.4); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--gold-bright); animation: scrollDrop 2.2s var(--ease) infinite;
}
@keyframes scrollDrop { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* =========================================================
   REVEAL ANIMATIONS (scroll)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* staggered children within a revealed group */
.story__stats.reveal.is-in .stat { animation: rise 0.8s var(--ease) backwards; }
.story__stats .stat:nth-child(2) { animation-delay: 0.12s; }
.story__stats .stat:nth-child(3) { animation-delay: 0.24s; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }

/* image reveal — clip + zoom */
.reveal-img { position: relative; overflow: hidden; border-radius: var(--radius); }
.reveal-img img { transform: scale(1.18); transition: transform 1.4s var(--ease); }
.reveal-img::after {
  content: ""; position: absolute; inset: 0; background: var(--cream);
  transform-origin: bottom; transform: scaleY(1); transition: transform 1.1s var(--ease);
}
.reveal-img.is-in img { transform: scale(1); }
.reveal-img.is-in::after { transform: scaleY(0); }

/* =========================================================
   STORY
   ========================================================= */
.story { background: var(--cream); }
.story__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center;
}
.story__media { aspect-ratio: 4/5; box-shadow: var(--shadow-soft); }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__media-tag {
  position: absolute; bottom: 1.4rem; left: 1.4rem; z-index: 2;
  background: var(--olive-deep); color: var(--gold-bright);
  font-family: var(--ff-display); font-style: italic; font-size: 1.1rem;
  padding: 0.6rem 1.1rem; border-radius: 100px; box-shadow: var(--shadow-soft);
}
.story__text { color: var(--muted); margin-bottom: 1.2rem; max-width: 38em; font-size: 1.02rem; }
.story__text:first-of-type { margin-top: 1.8rem; }

.story__stats { display: flex; gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.6rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--ff-display); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--olive-deep); line-height: 1; }
.stat__label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; }

/* =========================================================
   FEATURED — CAROUSEL
   ========================================================= */
.featured { background: var(--olive-deep); color: var(--cream); overflow: hidden; }
.featured__head {
  max-width: var(--maxw); margin: 0 auto 3rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.featured .eyebrow { color: var(--gold-bright); }
.featured .section__title { color: var(--cream); }

.featured__nav { display: flex; gap: 0.8rem; }
.carousel-btn {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(247,241,228,0.28);
  display: grid; place-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.carousel-btn svg { width: 22px; height: 22px; fill: none; stroke: var(--cream); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.carousel-btn:hover svg { stroke: var(--olive-deep); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; transform: none; background: none; border-color: rgba(247,241,228,0.28); }
.carousel-btn:disabled svg { stroke: var(--cream); }

.carousel {
  max-width: none; margin: 0 calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel.is-dragging .dish-card { pointer-events: none; }

.carousel__track { display: flex; gap: clamp(1.2rem, 2.5vw, 2rem); padding: 0.5rem 0 1rem; width: max-content; }

.dish-card {
  scroll-snap-align: center;
  width: clamp(260px, 30vw, 380px);
  flex: 0 0 auto;
  background: var(--olive); border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.dish-card__media { overflow: hidden; aspect-ratio: 4/3.4; }
.dish-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dish-card:hover .dish-card__media img { transform: scale(1.08); }
.dish-card__body { padding: 1.6rem 1.6rem 1.9rem; position: relative; }
.dish-card__index {
  position: absolute; top: -1.7rem; right: 1.4rem;
  font-family: var(--ff-display); font-style: italic; font-size: 2.4rem;
  color: var(--gold); opacity: 0.85;
}
.dish-card__body h3 { font-family: var(--ff-display); font-size: 1.55rem; font-weight: 500; color: var(--cream); margin-bottom: 0.5rem; }
.dish-card__body p { color: rgba(247,241,228,0.62); font-size: 0.9rem; line-height: 1.55; margin-bottom: 1rem; }
.dish-card__price { font-family: var(--ff-display); font-size: 1.4rem; font-style: italic; color: var(--gold-bright); }

.carousel__progress { max-width: var(--maxw); margin: 1.8rem auto 0; height: 2px; background: rgba(247,241,228,0.15); border-radius: 2px; }
.carousel__progress-bar { display: block; height: 100%; width: 20%; background: var(--gold); border-radius: 2px; transition: width 0.15s linear, margin-left 0.15s linear; }

/* =========================================================
   INTERACTIVE MENU
   ========================================================= */
.menu { background: var(--beige); }
.menu__head { max-width: var(--maxw); margin: 0 auto 2.5rem; text-align: center; }
.menu__head .section__title { margin: 0 auto; }

.menu__tabs {
  max-width: var(--maxw); margin: 0 auto 3rem;
  display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap;
}
.menu-tab {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  padding: 0.75rem 1.5rem; border-radius: 100px; color: var(--olive-soft);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.3s var(--ease);
}
.menu-tab:hover { color: var(--olive-deep); transform: translateY(-2px); }
.menu-tab.is-active { background: var(--olive-deep); color: var(--cream); }

.menu__panels { max-width: 880px; margin: 0 auto; position: relative; }
.menu-panel { display: none; }
.menu-panel.is-active { display: block; }

.menu-list { display: flex; flex-direction: column; }
.menu-item {
  padding: 1.5rem 1.2rem; border-bottom: 1px solid rgba(58,64,49,0.14);
  cursor: pointer; position: relative;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease), transform 0.45s var(--ease);
  border-radius: 6px;
  animation: itemIn 0.6s var(--ease) backwards;
}
@keyframes itemIn { from { opacity: 0; transform: translateY(14px); } }
.menu-item:nth-child(1) { animation-delay: 0.02s; }
.menu-item:nth-child(2) { animation-delay: 0.09s; }
.menu-item:nth-child(3) { animation-delay: 0.16s; }
.menu-item:nth-child(4) { animation-delay: 0.23s; }
.menu-item:hover { background: var(--cream-soft); padding-left: 1.8rem; transform: translateX(4px); }
.menu-item__head { display: flex; align-items: baseline; gap: 0.8rem; }
.menu-item h4 {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 500; color: var(--olive-deep);
  flex: 0 0 auto; transition: color 0.4s var(--ease);
}
.menu-item:hover h4 { color: var(--gold); }
.menu-item__dots { flex: 1 1 auto; border-bottom: 1px dotted rgba(58,64,49,0.35); transform: translateY(-4px); }
.menu-item__price { font-family: var(--ff-display); font-style: italic; font-size: 1.4rem; color: var(--gold); flex: 0 0 auto; }
.menu-item p { color: var(--muted); font-size: 0.92rem; margin-top: 0.4rem; max-width: 46em; }

/* hover preview floater */
.menu-preview {
  position: fixed; top: 0; left: 0; z-index: 900;
  width: 230px; height: 280px; border-radius: 8px; overflow: hidden;
  pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(0.85) rotate(-3deg);
  box-shadow: var(--shadow-lift); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.menu-preview.is-visible { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-3deg); }
.menu-preview img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   CHEF
   ========================================================= */
.chef { background: var(--cream); }
.chef__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center;
}
.chef__media { aspect-ratio: 4/5; box-shadow: var(--shadow-soft); }
.chef__media img { width: 100%; height: 100%; object-fit: cover; }
.chef__role { font-family: var(--ff-display); font-style: italic; font-size: 1.3rem; color: var(--gold); margin: 0.4rem 0 1.6rem; }
.chef__text { color: var(--muted); margin-bottom: 1.2rem; max-width: 36em; font-size: 1.04rem; }
.chef__sign { font-family: var(--ff-display); font-style: italic; font-size: 2.4rem; color: var(--olive-deep); margin-top: 1rem; }

/* =========================================================
   RESERVATION CTA
   ========================================================= */
.reserve { position: relative; overflow: hidden; text-align: center; color: var(--cream); }
.reserve__bg { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.reserve__bg img { width: 100%; height: 100%; object-fit: cover; }
.reserve__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(43,48,36,0.78), rgba(43,48,36,0.86)); }
.reserve__content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.reserve__title { font-family: var(--ff-display); font-weight: 500; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1.04; color: var(--cream); margin-bottom: 1.2rem; }
.reserve__title em { font-style: italic; color: var(--gold-bright); }
.reserve__lede { color: rgba(247,241,228,0.82); max-width: 40em; margin: 0 auto 2.6rem; font-size: 1.05rem; }

.reserve__form {
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 1rem; align-items: end;
  background: rgba(247,241,228,0.08); border: 1px solid rgba(247,241,228,0.18);
  backdrop-filter: blur(6px);
  padding: 1.4rem; border-radius: 14px; max-width: 720px; margin: 0 auto;
}
.field { display: flex; flex-direction: column; text-align: left; gap: 0.4rem; }
.field label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bright); }
.field input, .field select {
  font-family: var(--ff-ui); font-size: 0.95rem; color: var(--cream);
  background: rgba(43,48,36,0.55); border: 1px solid rgba(247,241,228,0.22);
  padding: 0.85rem 1rem; border-radius: 8px; width: 100%;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: rgba(43,48,36,0.75); }
.field select option { color: var(--ink); }
.field input::-webkit-calendar-picker-indicator { filter: invert(0.8) sepia(1) saturate(2) hue-rotate(5deg); }
.reserve__submit { width: 100%; padding: 0.95rem 1.5rem; }
.reserve__note { margin-top: 1.3rem; min-height: 1.4em; color: var(--gold-bright); font-family: var(--ff-display); font-style: italic; font-size: 1.2rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews { background: var(--cream-soft); }
.reviews__head { max-width: var(--maxw); margin: 0 auto 3.5rem; text-align: center; }
.reviews__head .section__title { margin: 0 auto; }
.reviews__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review {
  background: var(--cream); border: 1px solid rgba(58,64,49,0.1);
  padding: 2.4rem 2.1rem; border-radius: 10px; box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.review__stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1.2rem; font-size: 0.95rem; }
.review blockquote { font-family: var(--ff-display); font-size: 1.4rem; line-height: 1.4; color: var(--olive-deep); font-style: italic; margin-bottom: 1.6rem; }
.review figcaption { display: flex; flex-direction: column; }
.review figcaption strong { font-weight: 500; color: var(--ink); letter-spacing: 0.04em; }
.review figcaption span { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.08em; margin-top: 0.2rem; }

/* =========================================================
   VISIT
   ========================================================= */
.visit { background: var(--olive-deep); color: var(--cream); }
.visit__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem, 6vw, 5rem); align-items: stretch; }
.visit__media { min-height: 420px; box-shadow: var(--shadow-lift); border-radius: var(--radius); overflow: hidden; }
.visit__map { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(0.85) contrast(0.95); }
.visit .eyebrow { color: var(--gold-bright); }
.visit .section__title { color: var(--cream); }
.visit__body { display: flex; flex-direction: column; }
.visit__block { margin-top: 2.2rem; }
.visit__block:first-of-type { margin-top: 2.4rem; }
.visit__block h3 { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; font-weight: 500; }
.visit__block p { color: rgba(247,241,228,0.82); font-size: 1.05rem; line-height: 1.7; }
.visit__block a { transition: color 0.3s var(--ease); }
.visit__block a:hover { color: var(--gold-bright); }

.hours { display: flex; flex-direction: column; gap: 0.6rem; max-width: 360px; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid rgba(247,241,228,0.14); }
.hours li span:first-child { color: rgba(247,241,228,0.75); letter-spacing: 0.06em; }
.hours li span:last-child { color: var(--gold-bright); font-family: var(--ff-display); font-size: 1.15rem; font-style: italic; }
.hours__closed span:last-child { color: var(--muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--olive); color: var(--cream); padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter) 2rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: 3rem; }
.footer__brand { font-family: var(--ff-display); }
.footer__mark { color: var(--gold); font-size: 1.6rem; }
.footer__name { font-size: 1.7rem; margin-left: 0.5rem; }
.footer__name em { font-style: italic; color: var(--gold); }
.footer__brand p { font-family: var(--ff-ui); font-size: 0.92rem; color: rgba(247,241,228,0.62); margin-top: 0.9rem; max-width: 22em; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols h4 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; font-weight: 500; }
.footer__cols a { display: block; color: rgba(247,241,228,0.78); font-size: 0.92rem; padding: 0.32rem 0; transition: color 0.3s var(--ease), padding-left 0.3s var(--ease); }
.footer__cols a:hover { color: var(--gold-bright); padding-left: 0.4rem; }
.footer__base {
  max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.6rem;
  border-top: 1px solid rgba(247,241,228,0.14);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(247,241,228,0.55); letter-spacing: 0.04em;
}

/* =========================================================
   FLOATING RESERVE BUTTON
   ========================================================= */
.float-reserve {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 950;
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--olive-deep);
  padding: 0.95rem 1.5rem; border-radius: 100px;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  box-shadow: 0 18px 40px -14px rgba(43,48,36,0.7);
  transform: translateY(140%); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), background 0.4s var(--ease);
}
.float-reserve.is-shown { transform: translateY(0); opacity: 1; }
.float-reserve.is-hidden { transform: translateY(140%); opacity: 0; }
.float-reserve:hover { background: var(--gold-bright); }
.float-reserve__icon { width: 18px; height: 18px; fill: none; stroke: var(--olive-deep); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .story__grid, .chef__grid, .visit__grid { grid-template-columns: 1fr; }
  .story__media, .chef__media { max-width: 520px; }
  .chef__grid { gap: 2.5rem; }
  .visit__media { min-height: 320px; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; }
  .sig-chip { display: none; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
    background: var(--olive-deep);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    padding: 2rem 2.4rem;
    transform: translateX(100%); transition: transform 0.6s var(--ease);
    box-shadow: -30px 0 60px -20px rgba(0,0,0,0.5);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: var(--cream); font-size: 1.05rem; }
  .nav.is-scrolled .nav__links a { color: var(--cream); }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav__toggle.is-open span { background: var(--cream); }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .reserve__form { grid-template-columns: 1fr 1fr; }
  .reserve__submit { grid-column: 1 / -1; }
  .menu-item__head { flex-wrap: wrap; }
  .menu-item__dots { display: none; }
  .menu-item h4 { font-size: 1.3rem; }
  .footer__base { flex-direction: column; }
  .float-reserve span { display: none; }
  .float-reserve { padding: 1rem; }
  .float-reserve__icon { width: 22px; height: 22px; }
}

@media (max-width: 460px) {
  .reserve__form { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
