/* ==========================================================================
   AURÉLIA — Modern Fine Dining · styles.css
   A dark, editorial, cinematic design system.
   Palette: obsidian black / champagne brass / deep emerald / ivory.
   Type: Cormorant Garamond (high-contrast serif) + Jost (geometric sans).
   NO emoji — all iconography is inline stroked SVG.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
---------------------------------------------------------------------------- */
:root {
  /* Color */
  --obsidian:   #0a0b0c;   /* page background, near-black cool */
  --ink:        #101214;   /* raised sections */
  --surface:    #16191b;   /* cards */
  --surface-2:  #1e2225;
  --ivory:      #f2ede3;   /* primary text */
  --ivory-dim:  #a6a094;   /* muted text */
  --champagne:  #c6a86a;   /* primary metallic accent (brass gold) */
  --champagne-bright: #e7d3a3;
  --emerald:    #3c7561;   /* botanical secondary accent */
  --wine:       #7c3141;   /* rare tertiary pop */
  --line:       rgba(242, 237, 227, 0.10);
  --line-strong:rgba(242, 237, 227, 0.20);

  /* Fluid type scale */
  --step--2: clamp(0.7rem, 0.66rem + 0.15vw, 0.78rem);
  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.95rem);
  --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.3rem + 2.6vw, 3.1rem);
  --step-3:  clamp(2.6rem, 1.6rem + 4.6vw, 5rem);
  --step-hero: clamp(3rem, 1rem + 11vw, 12rem);

  /* Fonts */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Layout / motion */
  --gutter: clamp(1.3rem, 5vw, 6.5rem);
  --section-y: clamp(4.5rem, 11vw, 11rem);
  --maxw: 1360px;
  --radius: 6px;               /* tighter, more architectural than the cafe */
  --ease: cubic-bezier(0.19, 1, 0.22, 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;
  letter-spacing: 0.01em;
  color: var(--ivory);
  background: var(--obsidian);
  -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.05;
  letter-spacing: 0.005em;
}

/* Fine film grain for cinematic texture */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; 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='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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; }

/* Editorial "chapter" eyebrow */
.kicker {
  font-family: var(--font-body);
  font-size: var(--step--2);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 400;
  display: inline-flex; align-items: center; gap: 1rem;
}
.kicker::before { content: ""; width: 46px; height: 1px; background: currentColor; opacity: 0.6; }
.kicker.center { justify-content: center; }

.lede { color: var(--ivory-dim); max-width: 54ch; font-size: var(--step-1); font-weight: 300; line-height: 1.6; }

/* Thin champagne divider */
.rule { height: 1px; background: var(--line); border: 0; }

.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(--champagne); color: var(--obsidian); padding: 0.7rem 1.2rem; font-weight: 500; transition: top 0.2s; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 1px solid var(--champagne-bright); outline-offset: 4px; }

/* Section heading pattern */
.h-display { font-size: var(--step-3); line-height: 1; }
.h-display em { font-style: italic; color: var(--champagne); }

/* SVG icon sizing (all icons inherit currentColor + stroke) */
.ico {
  width: 1em; height: 1em; display: inline-block;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ----------------------------------------------------------------------------
   4. BUTTONS (underline-reveal + fill styles, no rounded pills — architectural)
---------------------------------------------------------------------------- */
.btn {
  --bg: var(--champagne); --fg: var(--obsidian);
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1.9rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-weight: 500; font-size: var(--step--1);
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.5s;
  will-change: transform;
}
.btn__label { position: relative; z-index: 1; }
.btn .ico { width: 1.1em; height: 1.1em; stroke-width: 1.6; position: relative; z-index: 1; }
.btn::after { /* fill sweep */
  content: ""; position: absolute; inset: 0; background: var(--champagne-bright);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); z-index: 0;
}
.btn:hover::after { transform: scaleX(1); }
.btn:hover { box-shadow: 0 20px 50px -20px rgba(198,168,106,0.5); }
.btn--ghost {
  --bg: transparent; --fg: var(--ivory);
  border: 1px solid var(--line-strong);
}
.btn--ghost::after { background: var(--champagne); }
.btn--ghost:hover { color: var(--obsidian); border-color: var(--champagne); box-shadow: none; }
.btn--lg { padding: 1.15rem 2.3rem; }

/* Text link with animated underline */
.tlink { position: relative; color: var(--champagne); font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.6rem; }
.tlink::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.tlink:hover::after { transform: scaleX(1); }

/* ----------------------------------------------------------------------------
   5. CUSTOM CURSOR
---------------------------------------------------------------------------- */
.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: 46px; height: 46px; border: 1px solid var(--champagne); border-radius: 50%; transform: translate(-50%,-50%); transition: width .35s, height .35s, background-color .35s, opacity .35s; display: block; }
  .cursor-dot { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; width: 5px; height: 5px; background: var(--champagne-bright); border-radius: 50%; transform: translate(-50%,-50%); display: block; }
  .cursor.is-hover { width: 74px; height: 74px; background: rgba(198,168,106,0.10); }
  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.6rem var(--gutter); transition: background-color .6s var(--ease), padding .6s var(--ease), border-color .6s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { padding-block: 1rem; }
/* 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(10,11,12,0.78);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.nav__brand { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; z-index: 1001; padding-left: 0.26em; }
.nav__brand span { color: var(--champagne); }
.nav__links { display: none; gap: 2.6rem; align-items: center; }
.nav__links a { font-size: var(--step--2); font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-dim); position: relative; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: var(--champagne); transition: width .4s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ivory); }
.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: 1px; background: var(--ivory); transition: transform .45s var(--ease), opacity .3s; }
.nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer { position: fixed; inset: 0; z-index: 1000; background: var(--ink); display: flex; flex-direction: column; justify-content: center; gap: 0.3rem; padding: var(--gutter); transform: translateY(-100%); transition: transform .7s 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(--ivory); padding-block: 0.25rem; }
.nav__drawer a:hover { color: var(--champagne); }
.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 (3D liquid surface)
---------------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.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: radial-gradient(120% 90% at 50% 0%, #241b10 0%, var(--obsidian) 65%),
              url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1600&q=70") center/cover; }
.hero.no-webgl .hero__fallback { opacity: 0.9; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,11,12,0.5) 0%, rgba(10,11,12,0.2) 45%, rgba(10,11,12,0.92) 100%); }
.hero__inner { position: relative; z-index: 2; text-align: center; width: 100%; padding-block: 9rem 5rem; }
.hero__title { font-size: var(--step-hero); line-height: 0.9; 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(--champagne); }
.hero__tag { margin: 1.8rem auto 0; max-width: 46ch; color: var(--ivory-dim); font-size: var(--step-1); font-weight: 300; }
.hero__actions { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero__meta { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 2rem; z-index: 3; display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; color: var(--ivory-dim); font-size: var(--step--2); letter-spacing: 0.18em; text-transform: uppercase; }
.hero__meta .stars { color: var(--champagne); letter-spacing: 0.3em; }
.hero__scroll { display: inline-flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.hero__scroll span { width: 1px; height: 42px; background: linear-gradient(var(--champagne), 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. REVEAL PRIMITIVES
---------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(34px); 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; }

/* Line-by-line mask reveal for big headings */
.reveal-lines .line { display: block; overflow: hidden; }
.reveal-lines .line > span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.reveal-lines.is-in .line > span { transform: none; }

/* ----------------------------------------------------------------------------
   9. ABOUT / STORY (kept dark — editorial two-column)
---------------------------------------------------------------------------- */
.about { background: var(--ink); }
.about__grid { display: grid; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.about__media figcaption { margin-top: 0.9rem; font-size: var(--step--2); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory-dim); }
.about__title { font-size: var(--step-3); max-width: 15ch; margin-block: 1.4rem 1.6rem; }
.about__body { font-size: var(--step-1); color: var(--ivory-dim); font-weight: 300; max-width: 56ch; }
.about__body strong { color: var(--ivory); font-weight: 400; }
.about__sign { font-family: var(--font-display); font-style: italic; font-size: 1.9rem; color: var(--champagne); margin-top: 1.6rem; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.6rem; }
.about__stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--ivory); line-height: 1; }
.about__stat .lbl { font-size: var(--step--2); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-dim); margin-top: 0.4rem; }
@media (min-width: 900px) { .about__grid { grid-template-columns: 0.85fr 1.15fr; } }

/* ----------------------------------------------------------------------------
   10. EXPERIENCE / SERVICES (SVG icons, elegant bordered grid)
---------------------------------------------------------------------------- */
.experience-svc { background: var(--obsidian); }
.svc__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 3.5rem; }
.svc__head h2 { font-size: var(--step-3); max-width: 13ch; }
.svc__grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (min-width: 640px) { .svc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc__grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  position: relative; padding: 2.6rem 2rem 2.8rem;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; isolation: isolate; transition: color .5s;
}
.svc::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 120% at 0% 0%, var(--surface-2), var(--surface)); opacity: 0; transition: opacity .55s var(--ease); }
.svc:hover::before { opacity: 1; }
.svc__num { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.2em; color: var(--champagne); }
.svc__icon { color: var(--champagne); margin: 1.1rem 0 1.2rem; }
.svc__icon .ico { width: 40px; height: 40px; stroke-width: 1.2; transition: transform .6s var(--ease); }
.svc:hover .svc__icon .ico { transform: translateY(-4px) scale(1.05); }
.svc__title { font-size: var(--step-1); margin-bottom: 0.5rem; }
.svc__desc { font-size: var(--step--1); color: var(--ivory-dim); }
.svc__line { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--champagne); transition: width .5s var(--ease); }
.svc:hover .svc__line { width: 100%; }

/* ----------------------------------------------------------------------------
   11. SIGNATURE DISHES (dark cards, 3D tilt, price leaders)
---------------------------------------------------------------------------- */
.signature { background: var(--ink); }
.signature__head { text-align: center; display: grid; justify-items: center; gap: 1.1rem; margin-bottom: 3.8rem; }
.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: 1080px) { .dishes { grid-template-columns: repeat(3, 1fr); } }

.dish { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); transform-style: preserve-3d; transition: transform .3s var(--ease), border-color .5s, box-shadow .5s; will-change: transform; }
.dish:hover { border-color: var(--line-strong); box-shadow: 0 50px 90px -50px rgba(0,0,0,0.9); }
.dish__media { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); filter: saturate(1.05); }
.dish:hover .dish__media img { transform: scale(1.07); }
.dish__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,11,12,0.85)); }
.dish__body { position: absolute; inset: auto 0 0 0; padding: 1.6rem 1.6rem 1.7rem; transform: translateZ(50px); }
.dish__course { font-size: var(--step--2); letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); }
.dish__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-top: 0.4rem; }
.dish__name { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.05; }
.dish__price { font-family: var(--font-display); font-size: var(--step-1); color: var(--champagne); white-space: nowrap; }
.dish__desc { font-size: var(--step--1); color: var(--ivory-dim); margin-top: 0.5rem; max-width: 34ch; }
.dish__glow { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(320px circle at var(--mx,50%) var(--my,50%), rgba(198,168,106,0.16), transparent 60%); }
.dish:hover .dish__glow { opacity: 1; }
.signature__cta { text-align: center; margin-top: 3.4rem; }

/* ----------------------------------------------------------------------------
   12. CINEMATIC SCROLL STORY
---------------------------------------------------------------------------- */
.cinema { position: relative; background: #070809; overflow: clip; }
.cinema__bg { position: absolute; inset: 0; z-index: 0; }
.cinema__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; transform: scale(1.18); }
.cinema__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 15%, #070809 82%); }
.cinema__steps { position: relative; z-index: 2; padding: var(--section-y) var(--gutter); }
.cinema__step { min-height: 78svh; display: grid; place-items: center; text-align: center; }
.cinema__step p { font-family: var(--font-display); font-size: var(--step-2); max-width: 22ch; margin-inline: auto; line-height: 1.2; }
.cinema__step .k { font-style: italic; color: var(--champagne); }

/* ----------------------------------------------------------------------------
   13. GALLERY (interactive grid + lightbox)
---------------------------------------------------------------------------- */
.gallery { background: var(--obsidian); }
.gallery__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 2.6rem; }
.gallery__head h2 { font-size: var(--step-3); }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; grid-auto-flow: dense; }
@media (min-width: 760px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; cursor: pointer; background: var(--surface); }
.gallery__item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery__item.wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 759px) { .gallery__item.tall { aspect-ratio: 1; grid-row: auto; } }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s; }
.gallery__item:hover img { transform: scale(1.09); filter: brightness(0.7); }
.gallery__item .plus { position: absolute; inset: 0; display: grid; place-items: center; color: var(--ivory); opacity: 0; transition: opacity .4s; }
.gallery__item .plus .ico { width: 30px; height: 30px; }
.gallery__item:hover .plus { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; background: rgba(6,7,8,0.96); backdrop-filter: blur(8px); 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 50px 130px rgba(0,0,0,0.8); }
.lightbox__close, .lightbox__nav { position: absolute; color: var(--ivory); width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-strong); 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.08); }
.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: var(--ivory-dim); font-size: var(--step--1); letter-spacing: 0.1em; }

/* ----------------------------------------------------------------------------
   14. TESTIMONIALS (editorial quote carousel)
---------------------------------------------------------------------------- */
.reviews { background: var(--ink); overflow: hidden; }
.reviews__inner { text-align: center; max-width: 60ch; margin-inline: auto; }
.reviews__quote-mark { font-family: var(--font-display); font-size: 6rem; line-height: 0.5; color: var(--champagne); opacity: 0.5; }
.reviews__track { position: relative; min-height: 15rem; }
.review { position: absolute; inset: 0; opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); pointer-events: none; }
.review.is-active { opacity: 1; transform: none; position: relative; pointer-events: auto; }
.review__stars { color: var(--champagne); letter-spacing: 0.35em; margin-bottom: 1.4rem; }
.review__quote { font-family: var(--font-display); font-size: var(--step-2); font-style: italic; line-height: 1.3; color: var(--ivory); }
.review__who { margin-top: 1.6rem; font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory-dim); }
.review__who b { color: var(--champagne); font-weight: 400; }
.reviews__dots { display: flex; gap: 0.7rem; justify-content: center; margin-top: 2.4rem; }
.reviews__dots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--line-strong); transition: background .3s, border-color .3s; }
.reviews__dots button.is-active { background: var(--champagne); border-color: var(--champagne); }

/* ----------------------------------------------------------------------------
   15. LOCATION & HOURS + RESERVE STRIP
---------------------------------------------------------------------------- */
.location { background: var(--obsidian); }
.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.8rem; }
.location__list { display: grid; gap: 1.5rem; }
.location__row { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.location__row .ri { color: var(--champagne); }
.location__row .ri .ico { width: 22px; height: 22px; }
.location__row .label { font-size: var(--step--2); letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); margin-bottom: 0.3rem; }
.hours { display: grid; gap: 0.35rem; margin-top: 0.4rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; color: var(--ivory-dim); font-size: var(--step--1); }
.hours .closed { color: var(--wine); }
.map { border-radius: var(--radius); overflow: hidden; min-height: 340px; position: relative; background: linear-gradient(135deg, var(--surface-2), var(--ink)); border: 1px solid var(--line); display: grid; place-items: center; text-align: center; }
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(0.4) invert(0.9) contrast(0.9); }
.map__ph { padding: 2rem; color: var(--ivory-dim); }
.map__ph .pin { color: var(--champagne); }
.map__ph .pin .ico { width: 40px; height: 40px; margin-inline: auto; }

/* ----------------------------------------------------------------------------
   16. FOOTER
---------------------------------------------------------------------------- */
.footer { background: #070809; color: var(--ivory-dim); padding-block: clamp(3.5rem, 8vw, 6.5rem) 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.24em; text-transform: uppercase; color: var(--ivory); }
.footer__brand span { color: var(--champagne); }
.footer__tag { margin-top: 1rem; max-width: 34ch; font-size: var(--step--1); }
.footer h4 { font-family: var(--font-body); font-weight: 400; font-size: var(--step--2); letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); margin-bottom: 1.3rem; }
.footer__col a { display: block; padding-block: 0.4rem; color: var(--ivory-dim); font-size: var(--step--1); transition: color .3s, transform .3s; }
.footer__col a:hover { color: var(--ivory); transform: translateX(5px); }
.footer__socials { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer__socials a { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ivory-dim); transition: background .3s, color .3s, border-color .3s; }
.footer__socials a .ico { width: 18px; height: 18px; }
.footer__socials a:hover { background: var(--champagne); color: var(--obsidian); border-color: var(--champagne); }
.footer__newsletter { display: flex; gap: 0.5rem; margin-top: 1rem; border-bottom: 1px solid var(--line-strong); }
.footer__newsletter input { flex: 1; background: transparent; border: 0; padding: 0.7rem 0.2rem; color: var(--ivory); font: inherit; font-size: var(--step--1); }
.footer__newsletter input:focus { outline: none; }
.footer__newsletter button { color: var(--champagne); letter-spacing: 0.14em; text-transform: uppercase; font-size: var(--step--2); }
.footer__bottom { margin-top: 3.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--step--2); letter-spacing: 0.1em; text-transform: uppercase; }

/* Marquee (elegant thin ticker) */
.marquee { overflow: hidden; white-space: nowrap; border-block: 1px solid var(--line); }
.marquee__track { display: inline-flex; gap: 3.5rem; padding-block: 1.1rem; animation: marquee 32s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 3.5vw, 2.1rem); color: var(--ivory-dim); display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee__track span::after { content: "◆"; color: var(--champagne); font-size: 0.5em; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------------------
   17. SECONDARY PAGE HEADER + MENU + FORM
---------------------------------------------------------------------------- */
.pagehead { min-height: 60svh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.pagehead__bg { position: absolute; inset: 0; z-index: 0; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; transform: scale(1.1); }
.pagehead::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,11,12,0.5), rgba(10,11,12,0.95)); }
.pagehead__inner { position: relative; z-index: 2; padding-block: 4.5rem; text-align: center; width: 100%; }
.pagehead h1 { font-size: var(--step-hero); line-height: 0.92; }
.pagehead p { color: var(--ivory-dim); font-size: var(--step-1); max-width: 48ch; margin: 1.1rem auto 0; font-weight: 300; }

.menupage { background: var(--obsidian); }
.menucat { margin-bottom: 4rem; }
.menucat__top { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--line); padding-bottom: 0.8rem; margin-bottom: 1.6rem; gap: 1rem; }
.menucat__top h2 { font-size: var(--step-2); }
.menucat__top span { font-size: var(--step--2); letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); }
.mitem { display: grid; grid-template-columns: 1fr auto; gap: 0.3rem 1.5rem; padding-block: 1.1rem; align-items: baseline; }
.mitem + .mitem { border-top: 1px solid var(--line); }
.mitem__name { font-family: var(--font-display); font-size: var(--step-1); color: var(--ivory); }
.mitem__price { font-family: var(--font-display); font-size: var(--step-1); color: var(--champagne); }
.mitem__desc { grid-column: 1 / -1; font-size: var(--step--1); color: var(--ivory-dim); max-width: 62ch; }
.menunote { text-align: center; color: var(--ivory-dim); font-size: var(--step--1); }

.reserve { background: var(--ink); }
.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: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-dim); }
.field input, .field select, .field textarea { font: inherit; font-weight: 300; padding: 0.95rem 1.1rem; border-radius: 3px; border: 1px solid var(--line-strong); background: var(--surface); color: var(--ivory); transition: border-color .3s, box-shadow .3s; }
.field input::placeholder, .field textarea::placeholder { color: rgba(166,160,148,0.6); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--champagne); box-shadow: 0 0 0 3px rgba(198,168,106,0.15); outline: none; }
.field select option { background: var(--surface); }
.form__note { font-size: var(--step--2); color: var(--ivory-dim); letter-spacing: 0.04em; }
.form__success { display: none; padding: 1.1rem 1.3rem; border-radius: 3px; background: rgba(60,117,97,0.16); border: 1px solid var(--emerald); color: var(--ivory); }
.form__success.show { display: block; }

/* ----------------------------------------------------------------------------
   18. 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], .reveal-lines .line > span { opacity: 1 !important; transform: none !important; }
  .hero__scroll span, .marquee__track { animation: none; }
  .cursor, .cursor-dot { display: none !important; }
  body.has-cursor { cursor: auto; }
}
