/* ============================================================
   Cooking with Shabba — Luxury Private Dining
   ============================================================ */

:root {
  /* Neutral near-black + gold (original PRD palette). The warm "stone" variant is
     preserved in styles.warm.css — to revert, copy it back over styles.css. */
  --bg-deep:   #080808;  /* deepest — footer / hero base */
  --bg:        #0A0A0A;  /* near-black — main (PRD background) */
  --bg-alt:    #0F0F0F;  /* alt section tone (PRD) */
  --surface:   #141414;  /* lightest panel (PRD surface ~#111) */
  --text:      #F5F0E8;
  --text-mute: #A89F90;
  --gold:      #C9A84C;
  --gold-mute: #8B7236;

  --hair: rgba(201, 168, 76, 0.18);  /* gold hairline */

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "DM Sans", -apple-system, sans-serif;

  --maxw: 1180px;
  --gut:  clamp(1.4rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

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

/* Subtle film-grain — gives every section a textured, hand-finished feel
   instead of flat colour. Fixed, pointer-through, sits below the nav. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Shared section bits ---------- */
.section-kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.2rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Image unveil — photos settle into place (scale + fade) as they enter view.
   Targets the direct <img> child so caption/overlay siblings are untouched.
   Containers that already clip (gallery cells, menu media) hide the overscan. */
.reveal-img > img {
  opacity: 0;
  transform: scale(1.09);
  transition: opacity 1.1s var(--ease), transform 1.4s var(--ease);
  will-change: opacity, transform;
}
.reveal-img.is-visible > img { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-img > img { opacity: 1; transform: none; transition: none; }
}

/* Parallax drift — full-bleed photos move slower than the page as you scroll.
   JS sets the transform each frame; this is the resting/no-JS fallback. */
@media (prefers-reduced-motion: reduce) {
  [data-parallax] { transform: none !important; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;   /* above the mobile overlay (55) so the burger stays clickable to close */
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(139, 114, 54, 0.28);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.5s var(--ease);
}
.nav.is-scrolled .nav__inner { padding-top: 1.05rem; padding-bottom: 1.05rem; }

.nav__brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-variant: small-caps;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--gold); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  border: 1px solid var(--gold-mute);
  color: var(--gold) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 1px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: var(--bg-deep) !important; border-color: var(--gold); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 60;
}
.nav__burger span {
  width: 26px; height: 1.5px;
  background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.overlay.is-open { opacity: 1; pointer-events: auto; }
.overlay__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.overlay__links a {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.overlay__links a:hover { color: var(--gold); }
.overlay__cta {
  margin-top: 1rem;
  font-family: var(--sans) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold-mute);
  color: var(--gold);
  padding: 0.9rem 2rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: url("../images/hero.jpg?v=2") center/cover no-repeat;
  transform: scale(1.05);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.32) 45%, rgba(10,10,10,0.55) 100%),
    radial-gradient(120% 80% at 70% 30%, transparent 30%, rgba(8,8,8,0.62) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: clamp(5.5rem, 12vh, 8rem) var(--gut) clamp(3rem, 8vh, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__logo {
  width: clamp(112px, 13vw, 168px);
  height: auto;
  margin-bottom: clamp(1.1rem, 2.6vh, 1.8rem);
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.55));
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title span { display: block; font-size: clamp(4rem, 14.5vw, 11rem); }
.hero__title-with {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 4.4rem) !important;
  color: var(--text-mute);
  margin: 0;
}
.hero__title-gold { color: var(--gold); }

.hero__tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 2.2rem auto 2.8rem;
  max-width: 640px;
}
.hero__tagline .rule {
  flex: 0 0 auto;
  width: 64px; height: 1px;
  background: var(--gold);
}
.hero__tagline p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: var(--text);
  font-weight: 400;
}
.hero__cta {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 1.05rem 2.6rem;
  border-radius: 1px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), letter-spacing 0.4s var(--ease);
}
.hero__cta:hover { background: var(--gold); color: var(--bg-deep); letter-spacing: 0.26em; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vh, 9rem) 0;   /* no side padding so the image bleeds to the edge */
  background:
    radial-gradient(70% 60% at 12% 28%, rgba(201,168,76,0.06), transparent 60%),
    var(--bg);
}
.about__grid {
  display: grid;
  grid-template-columns: clamp(260px, 42vw, 560px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
/* Media bleeds off the left edge and dissolves into the page on its inner edge */
.about__media {
  position: relative;
  align-self: stretch;
  min-height: clamp(380px, 56vh, 560px);
  overflow: hidden;            /* clip the reveal's scale(1.09) overscan so the image
                                  never spills past the edge fade during the animation */
}
.about__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%; /* keep the head — the subject sits high in frame */
  filter: contrast(1.02) brightness(0.97);
}
.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 52%, var(--bg) 99%),
    linear-gradient(0deg, rgba(8,8,8,0.6) 0%, transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, transparent 16%);
}
.about__body {
  padding-right: var(--gut);
  max-width: 600px;
}
.about__creds {
  position: absolute;
  left: clamp(1.2rem, 3vw, 2.2rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  z-index: 2;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  gap: 0.7rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.about__creds .dot { color: var(--gold-mute); }

/* Small colour food detail overlapping the portrait — ties the chef to the
   food and adds an art-directed, layered "magazine" feel. */
.about__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1.6rem;
}
.about__body p:not(.section-kicker):not(.about__heading) {
  color: var(--text-mute);
  margin-bottom: 1.2rem;
  max-width: 46ch;
}

.about__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.18;
  max-width: 20ch;
  margin: clamp(3.5rem, 9vh, 7rem) var(--gut) 0 auto;
  text-align: right;
  position: relative;
}

/* ============================================================
   IMAGE BAND — the full-bleed lifestyle/brand strip. This is now the
   only band; the food photos live in the gallery + the menu intro (a
   letterbox strip cropped those near-square shots badly). This
   near-square at-home scene still works full-bleed.
   ============================================================ */
.band {
  position: relative;
  overflow: hidden;
  height: clamp(280px, 46vh, 460px);
  --edge-top: var(--bg);      /* fades to match the section above … */
  --edge-bot: var(--bg-alt);  /* … and the section below */
}
/* Lifestyle/brand band — sits between the gallery (--bg) and reviews (--bg-alt).
   Taller so the near-square scene (chef up top, the food + branded laptop down on
   the coffee table) can both read instead of landing on the empty sofa middle. */
.band--lifestyle {
  height: clamp(420px, 78vh, 760px);
  --edge-top: var(--bg);       /* gallery above is --bg again */
  --edge-bot: var(--bg-alt);
}
/* bias the crop high so his head/face reads at the top (the table/laptop scene
   sits lower in the near-square frame and trims off the bottom on short bands) */
.band--lifestyle .band__img { object-position: center 14%; }
.band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(0.94);
}
.band__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.12) 35%, rgba(8,8,8,0.55) 100%),
    radial-gradient(120% 100% at 50% 50%, transparent 38%, rgba(8,8,8,0.55));
}
/* Top & bottom dissolve into the adjacent section colour — the woven effect */
.band::before,
.band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: clamp(64px, 22%, 180px);
  z-index: 2;
  pointer-events: none;
}
.band::before { top: 0;    background: linear-gradient(var(--edge-top), transparent); }
.band::after  { bottom: 0; background: linear-gradient(transparent, var(--edge-bot)); }

/* Lifestyle band is a near-square scene — widen the clear centre of the scrim and
   ease the top/bottom fades so his face (top-left) and the laptop (bottom-right)
   stay bright instead of dissolving into the vignette. */
.band--lifestyle .band__scrim {
  background:
    linear-gradient(180deg, rgba(8,8,8,0.32) 0%, rgba(8,8,8,0.04) 40%, rgba(8,8,8,0.5) 100%),
    radial-gradient(140% 120% at 50% 50%, transparent 62%, rgba(8,8,8,0.42));
}
.band--lifestyle::before { height: clamp(44px, 13%, 110px); }
.band--lifestyle::after  { height: clamp(52px, 15%, 130px); }

.band__line {
  position: absolute;
  z-index: 3;
  left: var(--gut);
  bottom: clamp(1.4rem, 5vh, 2.6rem);
  max-width: 28ch;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  color: var(--text);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.band__line .rule {
  flex: 0 0 auto;
  width: 52px; height: 1px;
  background: var(--gold);
}

/* ============================================================
   MENU
   ============================================================ */
.menu {
  /* sits on --bg-alt (about above is --bg) + a gold hairline so the menu's start
     still reads now that the old --bg-alt "At the Table" feature before it is gone */
  background: var(--bg-alt);
  border-top: 1px solid rgba(139, 114, 54, 0.18);
  /* no top padding so the intro photo's top edge meets the section boundary;
     no side padding so it bleeds left. Bottom padding keeps the list off the edge. */
  padding: 0 0 clamp(5rem, 12vh, 9rem);
  overflow: hidden;
}
/* Signature dish photo paired with the menu heading. The photo fills a tall panel
   that bleeds to the LEFT page edge and to the section's top edge, and dissolves
   into the section on its inner edge; the heading + intro sit to the right. */
.menu__intro {
  display: grid;
  grid-template-columns: clamp(260px, 40vw, 540px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
  min-height: clamp(440px, 64vh, 620px);
  margin-bottom: clamp(3.5rem, 8vh, 6rem);
}
.menu__media {
  position: relative;
  align-self: stretch;
  overflow: hidden;            /* clip the reveal's scale(1.09) overscan */
}
.menu__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: contrast(1.04) brightness(0.96) saturate(1.04);
}
/* dissolve only the inner (right) edge; top/bottom stay hard to the edges */
.menu__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(270deg, var(--bg-alt) 1%, transparent 44%);
}
.menu__head {
  align-self: center;
  padding-right: var(--gut);
  max-width: 48ch;
}
.menu__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.menu__intro-line {
  margin-top: 1.5rem;
  color: var(--text-mute);
  max-width: 42ch;
}
/* list + note are constrained and padded (the section has no side padding) */
.menu__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}
.menu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(2rem, 5vw, 4rem);
}
.menu__list { list-style: none; }
.menu__item {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(139, 114, 54, 0.22);
  transition: padding 0.4s var(--ease);
}
.menu__item:hover { padding-left: 0.6rem; }
.menu__item:hover .menu__name { color: var(--gold); }
.menu__no {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold-mute);
  min-width: 2ch;
}
.menu__name {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  transition: color 0.35s var(--ease);
}
.menu__note {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-mute);
  font-size: 0.95rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  /* --bg (menu above is now --bg-alt) + a gold hairline so the gallery's start
     still reads — keeps the bg / bg-alt / bg alternation across about/menu/gallery */
  background: var(--bg);
  border-top: 1px solid rgba(139, 114, 54, 0.18);
  padding: clamp(5rem, 12vh, 9rem) var(--gut);
}
.gallery__head {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
}
.gallery__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-auto-rows: clamp(175px, 26vh, 250px);
  gap: 18px;
}
.gallery__cell {
  position: relative;
  overflow: hidden;
}
.gallery__cell--tall { grid-row: span 2; }
.gallery__cell--wide { grid-column: span 2; }
.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.6s var(--ease), opacity 1.1s var(--ease);
  filter: brightness(0.95);
}
/* Portrait tiles — pull the crop up so Shabba's face is the focus; cover
   otherwise centre-crops to the torso and cuts the head off. */
.gallery__cell[data-lightbox="0"] img { object-position: center 9%; }   /* reading the feature */
.gallery__cell[data-lightbox="2"] img { object-position: center 12%; }  /* seated portrait */
.gallery__cell[data-lightbox="5"] img { object-position: center 22%; }  /* apron portrait */
.gallery__cell::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid transparent;
  transition: border-color 0.45s var(--ease);
  pointer-events: none;
}
.gallery__cell:hover img { transform: scale(1.06); filter: none; }
.gallery__cell:hover::after { border-color: var(--gold); }

.gallery__label {
  max-width: var(--maxw);
  margin: 2.4rem auto 0;
  color: var(--text-mute);
  font-size: 0.95rem;
}
.gallery__label a { color: var(--gold); border-bottom: 1px solid var(--gold-mute); }

/* Preview tiles are buttons that open the lightbox — reset native button look */
.gallery__cell {
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: block;
  width: 100%;
}
/* "+" zoom cue, revealed on hover/focus to signal the tile is clickable */
.gallery__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.45);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.gallery__zoom::before,
.gallery__zoom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
}
.gallery__zoom::before { width: 13px; height: 1.5px; transform: translate(-50%, -50%); }
.gallery__zoom::after  { width: 1.5px; height: 13px; transform: translate(-50%, -50%); }
.gallery__cell:hover .gallery__zoom,
.gallery__cell:focus-visible .gallery__zoom { opacity: 1; transform: none; }

.gallery__actions {
  max-width: var(--maxw);
  margin: 2.6rem auto 0;
  display: flex;
  justify-content: center;
}
.gallery__view {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-mute);
  border-radius: 1px;
  padding: 0.95rem 2.3rem;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.gallery__view:hover { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); }
.gallery__view-count {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox__stage {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid var(--hair);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  animation: lightboxIn 0.45s var(--ease) both;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: none; }
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(8, 8, 8, 0.55);
  border: 1px solid var(--gold-mute);
  border-radius: 50%;
  color: var(--gold);
  line-height: 1;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); }
.lightbox__close {
  top: clamp(0.8rem, 3vw, 1.6rem);
  right: clamp(0.8rem, 3vw, 1.6rem);
  width: 48px;
  height: 48px;
  font-size: 1.7rem;
  z-index: 2;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.9rem;
  z-index: 2;
}
.lightbox__nav--prev { left: clamp(0.6rem, 3vw, 2rem); }
.lightbox__nav--next { right: clamp(0.6rem, 3vw, 2rem); }
.lightbox__count {
  position: absolute;
  bottom: clamp(1rem, 4vh, 2rem);
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none; }
  .lightbox__img { animation: none; }
}
@media (max-width: 600px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; }
}

/* ============================================================
   REVIEWS — auto-rotating carousel
   ============================================================ */
.reviews {
  background: var(--bg-alt);
  padding: clamp(5rem, 12vh, 9rem) var(--gut);
  overflow: hidden;
}
.reviews__head {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  text-align: center;
}
.reviews__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.reviews__stage {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
/* Oversized gold quote mark sitting behind the text */
.reviews__mark {
  position: absolute;
  top: clamp(-2.6rem, -5vw, -3.4rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(6rem, 16vw, 11rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
}
/* Slides are stacked; the active one fades in */
.reviews__track {
  position: relative;
  min-height: 14rem;
}
.review {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  pointer-events: none;
}
/* The active slide sits in normal flow so the track grows to its height
   (the inactive slides stay absolutely overlaid for the cross-fade) — this
   keeps a long review from overflowing onto the dots/progress bar below. */
.review.is-active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.review__text {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.35rem, 3.4vw, 2.1rem);
  line-height: 1.4;
  color: var(--text);
  max-width: 36ch;
  margin: 0 auto;
}
.review__by {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.review__name {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.review__meta {
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
/* Dot navigation */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}
.reviews__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--gold-mute);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.reviews__dot:hover { border-color: var(--gold); }
.reviews__dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}
/* Auto-rotation progress indicator — fills over each slide's interval */
.reviews__progress {
  width: min(220px, 60%);
  height: 2px;
  margin: 1.5rem auto 0;
  background: rgba(139, 114, 54, 0.22);
  overflow: hidden;
}
.reviews__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}
/* JS adds .is-running to (re)start the fill on each slide change */
.reviews__bar.is-running {
  animation: reviewProgress 6.5s linear forwards;
}
@keyframes reviewProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
/* No auto-rotation under reduced motion — hide the timer entirely */
@media (prefers-reduced-motion: reduce) {
  .reviews__progress { display: none; }
}

/* ============================================================
   TRUST
   ============================================================ */
.trust {
  background: var(--surface);
  padding: clamp(4rem, 10vh, 7rem) var(--gut);
  border-top: 1px solid rgba(139, 114, 54, 0.18);
  border-bottom: 1px solid rgba(139, 114, 54, 0.18);
}
.trust__band {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.trust__item {
  flex: 1;
  text-align: center;
}
.trust__mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.trust__item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.trust__item p {
  color: var(--text-mute);
  font-size: 0.92rem;
  max-width: 28ch;
  margin: 0 auto;
}
.trust__sep {
  width: 1px;
  background: linear-gradient(transparent, var(--gold-mute), transparent);
  flex: 0 0 auto;
}

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.enquire {
  background: var(--bg);
  padding: clamp(5rem, 12vh, 9rem) var(--gut);
}
.enquire__head {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.enquire__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.enquire__intro {
  color: var(--text-mute);
  margin-top: 0.8rem;
}
.form {
  max-width: 600px;
  margin: 0 auto;
}
.field {
  position: relative;
  margin-bottom: 2.2rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-mute);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.7rem 0;
  transition: border-color 0.4s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field label {
  position: absolute;
  left: 0; top: 0.7rem;
  color: var(--text-mute);
  font-size: 1rem;
  pointer-events: none;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease), font-size 0.35s var(--ease);
}
/* Floating label */
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field label.field__label--always {
  transform: translateY(-1.7rem);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
/* date input — color the picker */
.field input[type="date"] { color-scheme: dark; }

/* Inline validation message (e.g. guest count) */
.field__error {
  display: block;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0.35rem;
  color: #d98a7a;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.3s var(--ease), max-height 0.3s var(--ease);
}
.field__error:not(:empty) {
  max-height: 3rem;
  opacity: 1;
}
.field input[aria-invalid="true"] {
  border-bottom-color: #d98a7a;
}

.form__submit {
  display: inline-block;
  width: 100%;
  margin-top: 0.5rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 1.1rem 2rem;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.form__submit:hover { background: transparent; color: var(--gold); }

.form__note {
  margin-top: 1.6rem;
  color: var(--text-mute);
  font-size: 0.9rem;
}
.form__privacy {
  margin-top: 0.8rem;
  color: var(--text-mute);
  font-size: 0.82rem;
}
.form__privacy a { color: var(--gold); border-bottom: 1px solid var(--gold-mute); }

@media (min-width: 700px) {
  .form__submit { width: auto; min-width: 240px; }
}

/* Inline success state */
.form-success {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
  animation: successIn 0.7s var(--ease) both;
}
.form-success__rule {
  display: block;
  width: 56px; height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.form-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--gold);
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.form-success p {
  color: var(--text-mute);
  max-width: 44ch;
  margin: 0 auto;
}
@keyframes successIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .form-success { animation: none; }
}

/* ---------- Menu picker: field trigger ---------- */
.field--picker { margin-bottom: 2.2rem; }
.field__legend {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.field__legend em { font-style: normal; color: var(--gold-mute); }
.picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-mute);
  color: var(--text-mute);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
  padding: 0.7rem 0;
  cursor: pointer;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.picker-trigger:hover,
.picker-trigger:focus-visible { outline: none; border-bottom-color: var(--gold); color: var(--text); }
.picker-trigger.has-selection { color: var(--text); }
.picker-trigger__text {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* "+" cue */
.picker-trigger__icon {
  position: relative;
  flex: 0 0 auto;
  width: 16px; height: 16px;
}
.picker-trigger__icon::before,
.picker-trigger__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.picker-trigger__icon::before { width: 14px; height: 1px; }
.picker-trigger__icon::after  { width: 1px; height: 14px; }

/* ---------- Menu picker: modal ---------- */
.picker {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.picker.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.picker__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(640px, 100%);
  max-height: min(86vh, 760px);
  background: var(--bg-alt);
  border: 1px solid var(--hair);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  animation: lightboxIn 0.45s var(--ease) both;
}
.picker__close {
  position: absolute;
  top: clamp(0.8rem, 3vw, 1.3rem);
  right: clamp(0.8rem, 3vw, 1.3rem);
  width: 40px; height: 40px;
  background: rgba(8, 8, 8, 0.55);
  border: 1px solid var(--gold-mute);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.picker__close:hover { background: var(--gold); color: var(--bg-deep); border-color: var(--gold); }
.picker__head {
  text-align: center;
  margin-bottom: 1.6rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.picker__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-top: 0.3rem;
}
.picker__intro {
  color: var(--text-mute);
  font-size: 0.92rem;
  margin-top: 0.6rem;
  max-width: 42ch;
  margin-inline: auto;
}
.picker__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.6rem;
  overflow-y: auto;
  margin: 0 -0.2rem;
  padding: 0 0.2rem;
}
.picker__opt {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.1rem;
  border-bottom: 1px solid rgba(139, 114, 54, 0.2);
  color: var(--text);
  font-size: 0.98rem;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.picker__opt:hover { color: var(--gold); }
/* visually-hidden native checkbox (keeps it focusable/accessible) */
.picker__opt input {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.picker__box {
  flex: 0 0 auto;
  position: relative;
  width: 18px; height: 18px;
  border: 1px solid var(--gold-mute);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.picker__box::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid var(--bg-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.25s var(--ease);
}
.picker__opt input:checked ~ .picker__box { background: var(--gold); border-color: var(--gold); }
.picker__opt input:checked ~ .picker__box::after { transform: rotate(45deg) scale(1); }
.picker__opt input:focus-visible ~ .picker__box { outline: 2px solid var(--gold); outline-offset: 2px; }
.picker__name { flex: 1 1 auto; }
.picker__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hair);
}
.picker__clear {
  background: none;
  border: none;
  color: var(--text-mute);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.picker__clear:hover { color: var(--gold); }
.picker__done {
  background: var(--gold);
  color: var(--bg-deep);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 0.85rem 2.2rem;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.picker__done:hover { background: transparent; color: var(--gold); }
@media (max-width: 540px) {
  .picker__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HELLOFRESH
   ============================================================ */
.hf {
  background: var(--bg-alt);
  padding: clamp(3.5rem, 8vh, 5.5rem) var(--gut);
  border-top: 1px solid rgba(139, 114, 54, 0.18);
}
.hf__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hf__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hf__copy {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}
.hf__code {
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  border-bottom: 1px dashed var(--gold-mute);
}
.hf__cta {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-mute);
  padding: 0.9rem 2.2rem;
  border-radius: 1px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.hf__cta:hover { background: var(--gold); color: var(--bg-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg);
  padding: clamp(5rem, 12vh, 9rem) var(--gut);
  border-top: 1px solid rgba(139, 114, 54, 0.18);
}
.faq__head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.faq__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid rgba(139, 114, 54, 0.22);
}
.faq__item:first-child {
  border-top: 1px solid rgba(139, 114, 54, 0.22);
}
.faq__q {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  color: var(--text);
  transition: color 0.35s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold); }
/* Plus / minus icon drawn with pseudo-elements */
.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.faq__icon::before { width: 18px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 18px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.faq__a {
  padding: 0 0 1.8rem;
  color: var(--text-mute);
  max-width: 60ch;
  animation: faqIn 0.5s var(--ease) both;
}
.faq__a p { margin: 0; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .faq__a { animation: none; }
}
.faq__more {
  max-width: 760px;
  margin: 2.6rem auto 0;
  text-align: center;
  color: var(--text-mute);
  font-size: 0.95rem;
}
.faq__more a { color: var(--gold); border-bottom: 1px solid var(--gold-mute); }
.faq__more a:hover { color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-mute);
  padding: clamp(3.5rem, 8vh, 5rem) var(--gut) 2rem;
}
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  font-variant: small-caps;
  letter-spacing: 0.05em;
}
.footer__tag {
  color: var(--text-mute);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
  margin-top: 0.4rem;
}
.footer__creds {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.9rem;
}
.footer__email {
  color: var(--text);
  border-bottom: 1px solid var(--gold-mute);
  transition: color 0.3s var(--ease);
  word-break: break-word;
}
.footer__email:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: 1.2rem;
}
.footer__social a {
  color: var(--text-mute);
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}
.footer__social a:hover { color: var(--gold); transform: translateY(-3px); }

.footer__bottom {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(139, 114, 54, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-mute);
}
.footer__bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { gap: 1.6rem; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  /* The lifestyle band goes landscape on narrow screens — a tall vh band would
     squeeze the wide photo into an awkward vertical slice (cropping the subject).
     A width-based height keeps roughly the photo's own aspect, so it reads. */
  .band--lifestyle { height: clamp(260px, 68vw, 440px); }

  .about__grid { grid-template-columns: 1fr; gap: 0; }
  .about__media { min-height: clamp(300px, 52vh, 440px); }
  /* on stack the image is a full-bleed banner that fades into the copy below */
  .about__media::after {
    background:
      linear-gradient(0deg, var(--bg) 1%, transparent 30%),
      linear-gradient(0deg, rgba(8,8,8,0.55) 0%, transparent 28%),
      linear-gradient(180deg, var(--bg) 0%, transparent 16%);
  }
  .about__body { padding: 2.5rem var(--gut) 0; max-width: none; }
  .about__quote { text-align: left; margin: clamp(3rem, 8vh, 5rem) var(--gut) 0 0; max-width: 100%; }

  /* Menu intro: stack to a photo-led banner that fades into the copy below, the
     same way the about block stacks. (Drop the tall desktop min-height so the
     stacked layout sizes to its content.) */
  .menu__intro { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .menu__media {
    order: -1;                 /* photo leads on mobile */
    min-height: clamp(280px, 56vw, 420px);
  }
  .menu__head { padding: 2.4rem var(--gut) 0; max-width: none; }
  .menu__media::after {
    background:
      linear-gradient(0deg, var(--bg-alt) 1%, transparent 30%),
      linear-gradient(0deg, rgba(8,8,8,0.5) 0%, transparent 26%),
      linear-gradient(180deg, var(--bg-alt) 0%, transparent 14%);
  }

  .trust__band { flex-direction: column; gap: 2.5rem; }
  .trust__sep { width: 60%; height: 1px; margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--gold-mute), transparent); }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  /* Keep the menu in two columns on mobile (mirrors desktop), with tighter
     type so the longer dishes still fit either side of a narrow gap. */
  .menu__cols { grid-template-columns: 1fr 1fr; gap: 0 clamp(0.9rem, 4vw, 1.6rem); }
  .menu__item { gap: 0.65rem; padding: 0.85rem 0; }
  .menu__no { min-width: 1.8ch; font-size: 0.66rem; }
  .menu__name { font-size: 1.02rem; line-height: 1.25; }

  /* Pan the lifestyle band hard left so the person reads, dropping the empty
     sofa on the right (the food + branded laptop stay in frame). */
  .band--lifestyle .band__img { object-position: 0% center; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery__cell--wide { grid-column: span 2; }
  .gallery__cell--tall { grid-row: span 2; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* taller stage so longer reviews don't clip when stacked */
  .reviews__track { min-height: 19rem; }
}
