/* ==========================================================================
   TERRA — Kitchen & Garden · styles.css
   A LIGHT, sunlit, editorial design system.
   Palette: warm bone/paper · deep olive · terracotta · warm ink.
   Type: Fraunces (warm, soft-contrast display serif) + Outfit (geometric sans).
   Iconography: inline stroked SVG (no emoji).
   Distinct layouts vs. the dark demos: split hero, overlapping-image story,
   hover-preview index list, quote wall.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
---------------------------------------------------------------------------- */
:root {
  /* Light palette */
  --bone:      #f4eee2;   /* page background, warm ivory */
  --paper:     #fbf8f1;   /* raised light surfaces / cards */
  --sand:      #e9dfcc;   /* muted panels */
  --sand-deep: #ded1b8;
  --ink:       #2a2620;   /* primary text, warm near-black */
  --ink-soft:  #6d655a;   /* muted text */
  --olive:     #47562f;   /* primary accent — deep herb green */
  --olive-bright: #6d7f47;
  --terra:     #bd5b34;   /* secondary accent — terracotta */
  --terra-soft:#d98a63;
  --gold:      #b98f4a;   /* rare warm metallic detail */
  --line:      rgba(42, 38, 32, 0.14);
  --line-soft: rgba(42, 38, 32, 0.08);

  /* Fluid type scale */
  --step--2: clamp(0.72rem, 0.68rem + 0.15vw, 0.8rem);
  --step--1: clamp(0.84rem, 0.8rem + 0.2vw, 0.96rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem);
  --step-2:  clamp(1.9rem, 1.35rem + 2.5vw, 3rem);
  --step-3:  clamp(2.6rem, 1.7rem + 4.4vw, 5rem);
  --step-hero: clamp(2.9rem, 1.2rem + 9.5vw, 9.5rem);

  /* Fonts */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", "Helvetica Neue", Arial, sans-serif;

  /* Layout / motion */
  --gutter: clamp(1.3rem, 5vw, 6rem);
  --section-y: clamp(4.5rem, 10vw, 10rem);
  --maxw: 1340px;
  --radius: 14px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------------------
   2. RESET / BASE
---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }

/* Very soft grain for warmth (much lighter than the dark demos) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.03; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------------------
   3. UTILITIES
---------------------------------------------------------------------------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }

.kicker {
  font-family: var(--font-body);
  font-size: var(--step--2); letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--terra); font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.9rem;
}
.kicker::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: 0.8; }
.kicker.center { justify-content: center; }
.kicker.olive { color: var(--olive); }

.lede { color: var(--ink-soft); max-width: 54ch; font-size: var(--step-1); font-weight: 300; line-height: 1.6; }
.h-display { font-size: var(--step-3); }
.h-display em { font-style: italic; color: var(--terra); }
.serif-italic { font-family: var(--font-display); font-style: italic; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -60px; z-index: 10000; background: var(--olive); color: var(--paper); padding: 0.7rem 1.2rem; border-radius: 8px; font-weight: 600; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; border-radius: 4px; }

.ico { width: 1em; height: 1em; display: inline-block; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }

/* ----------------------------------------------------------------------------
   4. BUTTONS (soft pill, olive/terra, subtle lift)
---------------------------------------------------------------------------- */
.btn {
  --bg: var(--olive); --fg: var(--paper);
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.8rem; background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-weight: 500; font-size: var(--step--1);
  letter-spacing: 0.03em; border-radius: 100px; position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  will-change: transform;
}
.btn__label { position: relative; z-index: 1; }
.btn .ico { width: 1.15em; height: 1.15em; stroke-width: 1.7; position: relative; z-index: 1; }
.btn::after { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--olive-bright); transform: translateY(101%); transition: transform 0.45s var(--ease); }
.btn:hover::after { transform: translateY(0); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(71,86,47,0.5); }
.btn--terra { --bg: var(--terra); }
.btn--terra::after { background: var(--terra-soft); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border: 1px solid var(--line); }
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: var(--paper); border-color: var(--ink); }
.btn--lg { padding: 1.15rem 2.2rem; }

.tlink { position: relative; font-weight: 500; font-size: var(--step--1); letter-spacing: 0.02em; color: var(--olive); display: inline-flex; align-items: center; gap: 0.5rem; }
.tlink::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1.5px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.tlink:hover::after { transform: scaleX(1); }

/* ----------------------------------------------------------------------------
   5. CURSOR (subtle on light)
---------------------------------------------------------------------------- */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; width: 44px; height: 44px; border: 1.5px solid var(--olive); border-radius: 50%; transform: translate(-50%,-50%); transition: width .35s, height .35s, background-color .35s; display: block; }
  .cursor-dot { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; width: 5px; height: 5px; background: var(--terra); border-radius: 50%; transform: translate(-50%,-50%); display: block; }
  .cursor.is-hover { width: 70px; height: 70px; background: rgba(71,86,47,0.08); }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ----------------------------------------------------------------------------
   6. NAV
---------------------------------------------------------------------------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.4rem var(--gutter); transition: background-color .5s var(--ease), padding .5s var(--ease), box-shadow .5s, border-color .5s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { padding-block: 0.85rem; }
/* Blur/tint on a pseudo-element, NOT the nav: backdrop-filter on the nav would
   make it the containing block for its position:fixed mobile drawer, breaking
   the drawer's off-screen hide. */
.nav.is-scrolled::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(244,238,226,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; z-index: 1001; }
.nav__brand span { color: var(--terra); }
.nav__links { display: none; gap: 2.4rem; align-items: center; }
.nav__links a { font-size: var(--step--1); font-weight: 400; letter-spacing: 0.03em; color: var(--ink-soft); position: relative; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--terra); transition: width .4s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { display: none; }

.nav__toggle { display: flex; flex-direction: column; gap: 6px; z-index: 1001; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .45s var(--ease), opacity .3s; }
.nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__drawer { position: fixed; inset: 0; z-index: 1000; background: var(--paper); display: flex; flex-direction: column; justify-content: center; gap: 0.3rem; padding: var(--gutter); transform: translateY(-100%); transition: transform .65s var(--ease); }
.nav.menu-open .nav__drawer { transform: translateY(0); }
.nav__drawer a { font-family: var(--font-display); font-style: italic; font-size: clamp(2rem, 10vw, 3.6rem); color: var(--ink); padding-block: 0.25rem; }
.nav__drawer a:hover { color: var(--terra); }
.nav__drawer .btn { margin-top: 1.8rem; align-self: flex-start; font-style: normal; }

@media (min-width: 960px) { .nav__links, .nav__cta { display: flex; } .nav__toggle, .nav__drawer { display: none; } }

/* ----------------------------------------------------------------------------
   7. HERO — split layout (text + 3D still-life), light
---------------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background:
  radial-gradient(90% 80% at 85% 15%, #fbf3e2 0%, var(--bone) 55%); }
.hero__canvas { position: absolute; inset: 0; z-index: 0; }
.hero__canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.hero__fallback { position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity .6s; background: center/contain no-repeat url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&w=1200&q=70"); background-position: right center; }
.hero.no-webgl .hero__fallback { opacity: 0.9; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 9rem 6rem; display: grid; gap: 2rem; }
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; } .hero__copy { max-width: 42rem; } }
.hero__title { font-size: var(--step-hero); line-height: 0.94; letter-spacing: -0.02em; margin-top: 1.4rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title em { font-style: italic; color: var(--terra); }
.hero__tag { margin-top: 1.6rem; max-width: 42ch; color: var(--ink-soft); font-size: var(--step-1); font-weight: 300; }
.hero__actions { margin-top: 2.2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero__note { margin-top: 2.4rem; display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; color: var(--ink-soft); font-size: var(--step--1); }
.hero__note .stars { color: var(--gold); letter-spacing: 0.2em; }
.hero__spacer { display: none; } /* right column is the 3D canvas area on desktop */
.hero__scroll { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft); }
.hero__scroll span { width: 1px; height: 40px; background: linear-gradient(var(--olive), transparent); animation: scrollpulse 2.2s var(--ease) infinite; }
@keyframes scrollpulse { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ----------------------------------------------------------------------------
   8. REVEALS
---------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ----------------------------------------------------------------------------
   9. MARQUEE
---------------------------------------------------------------------------- */
.marquee { overflow: hidden; white-space: nowrap; border-block: 1px solid var(--line); background: var(--olive); color: var(--bone); }
.marquee__track { display: inline-flex; gap: 3rem; padding-block: 0.9rem; animation: marquee 30s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 3.5vw, 2rem); display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "❋"; color: var(--terra-soft); font-style: normal; font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------------------
   10. ABOUT / STORY — overlapping images (editorial)
---------------------------------------------------------------------------- */
.about { background: var(--bone); }
.about__grid { display: grid; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
@media (min-width: 900px) { .about__grid { grid-template-columns: 1fr 1fr; } }
.about__media { position: relative; min-height: 420px; }
.about__media .m1 { width: 74%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.about__media .m2 { position: absolute; right: 0; bottom: -1.5rem; width: 46%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 8px solid var(--bone); box-shadow: 0 30px 60px -30px rgba(42,38,32,0.35); }
.about__badge { position: absolute; top: -1.2rem; left: -1.2rem; width: 116px; height: 116px; border-radius: 50%; background: var(--terra); color: var(--paper); display: grid; place-items: center; text-align: center; font-family: var(--font-display); font-style: italic; font-size: 0.95rem; line-height: 1.15; padding: 1rem; transform: rotate(-8deg); box-shadow: 0 16px 34px -14px rgba(189,91,52,0.6); }
.about__title { font-size: var(--step-3); max-width: 15ch; margin-block: 1.3rem 1.5rem; }
.about__body { font-size: var(--step-1); color: var(--ink-soft); font-weight: 300; max-width: 54ch; }
.about__body strong { color: var(--ink); font-weight: 500; }
.about__sign { font-family: var(--font-display); font-style: italic; font-size: 1.8rem; color: var(--olive); margin-top: 1.4rem; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.about__stat .num { font-family: var(--font-display); font-size: clamp(2.3rem, 6vw, 3.4rem); color: var(--olive); line-height: 1; }
.about__stat .lbl { font-size: var(--step--2); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.4rem; }

/* ----------------------------------------------------------------------------
   11. EXPERIENCE — hover-preview index list (signature interaction)
---------------------------------------------------------------------------- */
.xp { background: var(--paper); }
.xp__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 2.5rem; }
.xp__head h2 { font-size: var(--step-3); max-width: 13ch; }
.xlist { border-top: 1px solid var(--line); }
.xrow { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; padding: 1.7rem 0.5rem; border-bottom: 1px solid var(--line); transition: padding .5s var(--ease), color .4s; }
.xrow__num { font-family: var(--font-display); font-size: var(--step--1); color: var(--terra); }
.xrow__mid { display: flex; flex-direction: column; gap: 0.15rem; }
.xrow__title { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.4rem); line-height: 1.05; transition: transform .5s var(--ease), color .4s; }
.xrow__desc { font-size: var(--step--1); color: var(--ink-soft); max-width: 52ch; }
.xrow__ico { color: var(--olive); opacity: 0.55; transition: transform .5s var(--ease), opacity .4s, color .4s; }
.xrow__ico .ico { width: 30px; height: 30px; stroke-width: 1.2; }
.xrow:hover { padding-inline: 1.4rem; }
.xrow:hover .xrow__title { transform: translateX(6px); color: var(--olive); }
.xrow:hover .xrow__ico { opacity: 1; transform: translateX(-4px) rotate(-8deg); color: var(--terra); }
.xrow__icon-inline { display: none; }
/* Inline thumbnails on mobile/touch (where the floating preview is disabled) */
.xrow__thumb { display: none; width: 100%; border-radius: var(--radius); margin-top: 1rem; aspect-ratio: 16/9; object-fit: cover; grid-column: 1 / -1; }

/* Floating preview image that follows the cursor (desktop, JS-driven) */
.xpreview { position: fixed; top: 0; left: 0; z-index: 40; width: 300px; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; pointer-events: none; opacity: 0; transform: translate(-50%, -50%) scale(0.85); transition: opacity .4s var(--ease), transform .4s var(--ease); box-shadow: 0 30px 60px -20px rgba(42,38,32,0.4); }
.xpreview img { width: 100%; height: 100%; object-fit: cover; }
.xpreview.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }

@media (max-width: 700px) {
  .xrow { grid-template-columns: auto 1fr; }
  .xrow__ico { display: none; }
  .xrow__thumb { display: block; }
}

/* ----------------------------------------------------------------------------
   12. SIGNATURE DISHES — light cards, tilt, terracotta price
---------------------------------------------------------------------------- */
.signature { background: var(--bone); }
.signature__head { text-align: center; display: grid; justify-items: center; gap: 1rem; margin-bottom: 3.5rem; }
.signature__head h2 { font-size: var(--step-3); }
.dishes { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .dishes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .dishes { grid-template-columns: repeat(3, 1fr); } }

.dish { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); border: 1px solid var(--line-soft); transform-style: preserve-3d; transition: transform .3s var(--ease), box-shadow .5s; will-change: transform; }
.dish:hover { box-shadow: 0 40px 70px -40px rgba(42,38,32,0.4); }
.dish__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.07); }
.dish__tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: var(--paper); color: var(--olive); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 0.75rem; border-radius: 100px; }
.dish__body { padding: 1.5rem 1.6rem 1.7rem; transform: translateZ(40px); }
.dish__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish__name { font-family: var(--font-display); font-size: var(--step-1); }
.dish__price { font-family: var(--font-display); font-size: var(--step-1); color: var(--terra); white-space: nowrap; }
.dish__desc { font-size: var(--step--1); color: var(--ink-soft); margin-top: 0.4rem; }
.dish__glow { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(189,91,52,0.12), transparent 60%); }
.dish:hover .dish__glow { opacity: 1; }
.signature__cta { text-align: center; margin-top: 3.2rem; }

/* ----------------------------------------------------------------------------
   13. CINEMATIC BAND — full-bleed image with light overlay + parallax
---------------------------------------------------------------------------- */
.cinema { position: relative; overflow: clip; background: var(--sand); }
.cinema__bg { position: absolute; inset: 0; z-index: 0; }
.cinema__bg img { width: 100%; height: 100%; object-fit: cover; }
.cinema__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(244,238,226,0.2), rgba(42,38,32,0.35)); }
.cinema__steps { position: relative; z-index: 2; padding: var(--section-y) var(--gutter); }
.cinema__step { min-height: 72svh; display: grid; place-items: center; text-align: center; }
.cinema__step p { font-family: var(--font-display); font-size: var(--step-2); color: var(--paper); max-width: 22ch; margin-inline: auto; line-height: 1.2; text-shadow: 0 2px 30px rgba(42,38,32,0.4); }
.cinema__step .k { font-style: italic; color: var(--terra-soft); }

/* ----------------------------------------------------------------------------
   14. GALLERY (masonry-ish grid + lightbox)
---------------------------------------------------------------------------- */
.gallery { background: var(--paper); }
.gallery__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 2.5rem; }
.gallery__head h2 { font-size: var(--step-3); }
.gallery__grid { columns: 2; column-gap: 1rem; }
@media (min-width: 760px) { .gallery__grid { columns: 3; } }
@media (min-width: 1100px) { .gallery__grid { columns: 4; } }
.gallery__item { display: block; width: 100%; margin-bottom: 1rem; break-inside: avoid; position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--sand); }
.gallery__item img { width: 100%; height: auto; transition: transform 1s var(--ease), filter .5s; }
.gallery__item:hover img { transform: scale(1.06); filter: brightness(0.92); }
.gallery__item .plus { position: absolute; inset: 0; display: grid; place-items: center; color: var(--paper); opacity: 0; transition: opacity .4s; }
.gallery__item .plus .ico { width: 30px; height: 30px; }
.gallery__item::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(71,86,47,0.0); transition: background .4s; }
.gallery__item:hover::before { background: rgba(71,86,47,0.18); }
.gallery__item:hover .plus { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; background: rgba(30,26,20,0.9); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; padding: var(--gutter); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.lightbox__close, .lightbox__nav { position: absolute; color: var(--paper); width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); transition: background .3s; }
.lightbox__close .ico, .lightbox__nav .ico { width: 22px; height: 22px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.12); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 1.2rem; } .lightbox__nav.next { right: 1.2rem; }
.lightbox__caption { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: var(--step--1); letter-spacing: 0.05em; }

/* ----------------------------------------------------------------------------
   15. TESTIMONIALS — quote wall (staggered cards)
---------------------------------------------------------------------------- */
.reviews { background: var(--olive); color: var(--bone); }
.reviews .kicker { color: var(--terra-soft); }
.reviews__head { text-align: center; margin-bottom: 3.5rem; }
.reviews__head h2 { font-size: var(--step-3); color: var(--bone); }
.reviews__wall { columns: 1; column-gap: 1.4rem; }
@media (min-width: 700px) { .reviews__wall { columns: 2; } }
@media (min-width: 1040px) { .reviews__wall { columns: 3; } }
.review { break-inside: avoid; margin-bottom: 1.4rem; background: rgba(251,248,241,0.06); border: 1px solid rgba(251,248,241,0.14); border-radius: var(--radius); padding: 1.8rem 1.7rem; }
.review__stars { color: var(--gold); letter-spacing: 0.25em; margin-bottom: 0.9rem; }
.review__quote { font-family: var(--font-display); font-style: italic; font-size: var(--step-1); line-height: 1.35; color: var(--paper); }
.review__who { margin-top: 1.2rem; font-size: var(--step--1); letter-spacing: 0.04em; color: var(--sand); }
.review__who b { color: var(--terra-soft); font-weight: 500; font-style: normal; }

/* ----------------------------------------------------------------------------
   16. LOCATION & HOURS
---------------------------------------------------------------------------- */
.location { background: var(--bone); }
.location__grid { display: grid; gap: 2.5rem; }
@media (min-width: 920px) { .location__grid { grid-template-columns: 1fr 1fr; } }
.location__info h2 { font-size: var(--step-3); margin-block: 1.2rem 1.6rem; }
.location__list { display: grid; gap: 1.4rem; }
.location__row { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.location__row .ri { color: var(--terra); }
.location__row .ri .ico { width: 22px; height: 22px; }
.location__row .label { font-size: var(--step--2); letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.3rem; font-weight: 500; }
.hours { display: grid; gap: 0.35rem; margin-top: 0.4rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; color: var(--ink-soft); font-size: var(--step--1); }
.hours .closed { color: var(--terra); }
.map { border-radius: var(--radius-lg); overflow: hidden; min-height: 340px; position: relative; background: linear-gradient(135deg, var(--sand), var(--sand-deep)); border: 1px solid var(--line); display: grid; place-items: center; text-align: center; }
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.map__ph { padding: 2rem; color: var(--ink-soft); }
.map__ph .pin { color: var(--terra); }
.map__ph .pin .ico { width: 40px; height: 40px; margin-inline: auto; }

/* ----------------------------------------------------------------------------
   17. FOOTER
---------------------------------------------------------------------------- */
.footer { background: var(--ink); color: var(--sand); padding-block: clamp(3.5rem, 8vw, 6rem) 2rem; }
.footer__top { display: grid; gap: 2.6rem; }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper); }
.footer__brand span { color: var(--terra-soft); }
.footer__tag { margin-top: 1rem; max-width: 34ch; font-size: var(--step--1); color: var(--sand-deep); }
.footer h4 { font-family: var(--font-body); font-weight: 500; font-size: var(--step--2); letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra-soft); margin-bottom: 1.2rem; }
.footer__col a { display: block; padding-block: 0.4rem; color: var(--sand-deep); font-size: var(--step--1); transition: color .3s, transform .3s; }
.footer__col a:hover { color: var(--paper); transform: translateX(5px); }
.footer__socials { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer__socials a { width: 46px; height: 46px; border: 1px solid rgba(251,248,241,0.18); border-radius: 50%; display: grid; place-items: center; color: var(--sand); transition: background .3s, color .3s, border-color .3s; }
.footer__socials a .ico { width: 18px; height: 18px; }
.footer__socials a:hover { background: var(--terra); color: var(--paper); border-color: var(--terra); }
.footer__newsletter { display: flex; gap: 0.5rem; margin-top: 1rem; border-bottom: 1px solid rgba(251,248,241,0.25); }
.footer__newsletter input { flex: 1; background: transparent; border: 0; padding: 0.7rem 0.2rem; color: var(--paper); font: inherit; font-size: var(--step--1); }
.footer__newsletter input::placeholder { color: var(--sand-deep); }
.footer__newsletter input:focus { outline: none; }
.footer__newsletter button { color: var(--terra-soft); letter-spacing: 0.1em; text-transform: uppercase; font-size: var(--step--2); font-weight: 500; }
.footer__bottom { margin-top: 3.4rem; padding-top: 1.5rem; border-top: 1px solid rgba(251,248,241,0.14); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--step--2); letter-spacing: 0.06em; color: var(--sand-deep); }

/* ----------------------------------------------------------------------------
   18. SECONDARY PAGES (light header + menu + form)
---------------------------------------------------------------------------- */
.pagehead { position: relative; padding-block: clamp(8rem, 16vw, 12rem) clamp(3rem, 6vw, 5rem); text-align: center; overflow: hidden; background: radial-gradient(90% 90% at 50% 0%, #fbf3e2, var(--bone)); }
.pagehead__inner { position: relative; z-index: 2; }
.pagehead h1 { font-size: var(--step-hero); line-height: 0.94; }
.pagehead p { color: var(--ink-soft); font-size: var(--step-1); max-width: 48ch; margin: 1.1rem auto 0; font-weight: 300; }

.menupage { background: var(--bone); }
.menucat { margin-bottom: 4rem; }
.menucat__top { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--olive); padding-bottom: 0.7rem; margin-bottom: 1.5rem; gap: 1rem; }
.menucat__top h2 { font-size: var(--step-2); }
.menucat__top span { font-size: var(--step--2); letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); font-weight: 500; }
.mitem { display: grid; grid-template-columns: 1fr auto; gap: 0.3rem 1.5rem; padding-block: 1.05rem; align-items: baseline; }
.mitem + .mitem { border-top: 1px solid var(--line-soft); }
.mitem__name { font-family: var(--font-display); font-size: var(--step-1); }
.mitem__name .dot { color: var(--olive); font-size: 0.7em; }
.mitem__price { font-family: var(--font-display); font-size: var(--step-1); color: var(--terra); }
.mitem__desc { grid-column: 1 / -1; font-size: var(--step--1); color: var(--ink-soft); max-width: 62ch; }
.menunote { text-align: center; color: var(--ink-soft); font-size: var(--step--1); }

.reserve { background: var(--paper); }
.reserve__grid { display: grid; gap: 3rem; }
@media (min-width: 920px) { .reserve__grid { grid-template-columns: 0.9fr 1.1fr; } }
.form { display: grid; gap: 1.3rem; }
.form__row { display: grid; gap: 1.3rem; }
@media (min-width: 560px) { .form__row.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.5rem; }
.field label { font-size: var(--step--2); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); }
.field input, .field select, .field textarea { font: inherit; font-weight: 300; padding: 0.95rem 1.1rem; border-radius: 10px; border: 1px solid var(--line); background: var(--bone); color: var(--ink); transition: border-color .3s, box-shadow .3s; }
.field input::placeholder, .field textarea::placeholder { color: rgba(109,101,90,0.6); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--olive); box-shadow: 0 0 0 3px rgba(71,86,47,0.15); outline: none; }
.form__note { font-size: var(--step--2); color: var(--ink-soft); }
.form__success { display: none; padding: 1.1rem 1.3rem; border-radius: 10px; background: rgba(71,86,47,0.12); border: 1px solid var(--olive); color: var(--ink); }
.form__success.show { display: block; }

/* ----------------------------------------------------------------------------
   19. REDUCED MOTION
---------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__scroll span, .marquee__track { animation: none; }
  .cursor, .cursor-dot, .xpreview { display: none !important; }
  body.has-cursor { cursor: auto; }
}
