/* Lakeside Table — demo restaurant site. Self-contained, CSP-clean (no inline). */

@font-face {
  font-family: "Playfair Display";
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/playfair-latin-var.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/inter-latin-var.woff2") format("woff2");
}

:root {
  --ink: #17130e;
  --ink-2: #201a13;
  --paper: #1b1510;
  --cream: #f4ecdd;
  --muted: #b6ac99;
  --gold: #c99f4a;
  --gold-soft: #e0c079;
  --line: rgba(244, 236, 221, 0.14);
  --gold-line: rgba(201, 159, 74, 0.22);
  --maxw: 1120px;
  --ease-lux: cubic-bezier(0.22, 0.61, 0.21, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; line-height: 1.1; }
::selection { background: rgba(201, 159, 74, 0.4); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Cinematic cohesion: faint film grain + vignette over the whole page. */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%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");
  background-size: 160px 160px;
  opacity: 0.05;
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 89; pointer-events: none;
  background: radial-gradient(125% 105% at 50% 42%, transparent 58%, rgba(6, 4, 2, 0.32));
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 0.6rem + 2.5vw, 2.5rem); }
.eyebrow {
  font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: 0.28em;
  font-size: 0.72rem; font-weight: 600; color: var(--gold); margin-bottom: 0.9rem;
}
.section { padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem); }

/* Ornament: hairline — diamond — hairline */
.orn {
  display: flex; align-items: center; justify-content: center; gap: 0.85rem;
  color: var(--gold); font-size: 0.5rem; line-height: 1;
}
.orn::before, .orn::after { content: ""; width: 54px; height: 1px; }
.orn::before { background: linear-gradient(90deg, transparent, rgba(201, 159, 74, 0.75)); }
.orn::after { background: linear-gradient(270deg, transparent, rgba(201, 159, 74, 0.75)); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95em 1.9em; border-radius: 2px; cursor: pointer;
  border: 1px solid var(--gold); color: var(--ink); background: var(--gold);
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s, transform .2s;
}
.btn:hover { background: var(--gold-soft); border-color: var(--gold-soft); box-shadow: 0 6px 24px rgba(201, 159, 74, 0.25); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(244,236,221,0.4); }
.btn--ghost:hover { background: rgba(244,236,221,0.08); color: var(--cream); border-color: rgba(244,236,221,0.65); box-shadow: none; }
@media (prefers-reduced-motion: no-preference) { .btn:active { transform: translateY(1px); } }

/* Back-to-Southtowns pill (marks this as a demo) */
.demo-bar {
  position: fixed; z-index: 200; left: 50%; bottom: 1rem; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: rgba(15, 12, 9, 0.93); color: #f4ecdd;
  border: 1px solid rgba(244,236,221,0.22); border-radius: 999px;
  padding: 0.45rem 0.5rem 0.45rem 1.05rem; font-family: "Inter", sans-serif; font-size: 0.82rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); max-width: calc(100vw - 1.6rem);
}
@media (min-width: 760px) {
  .demo-bar { left: auto; right: 1.4rem; bottom: 1.4rem; transform: none; font-size: 0.9rem; }
}
.demo-bar b { color: var(--gold-soft); font-weight: 600; }
.demo-bar .lbl { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.demo-exit {
  display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap;
  background: #BE4E15; color: #fff; text-decoration: none;
  border-radius: 999px; padding: 0.55rem 1.1rem; font-weight: 600;
  transition: background .2s, transform .15s;
}
.demo-exit:hover { background: #a94012; color: #fff; }
.demo-exit:active { transform: translateY(1px); }

/* Header */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.1rem clamp(1.1rem, 0.6rem + 2.5vw, 2.5rem);
  transition: background .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(rgba(13, 10, 6, 0.55), transparent);
}
.site-head.scrolled { background: rgba(20, 16, 11, 0.92); border-bottom-color: var(--line); padding-block: 0.7rem; }
@supports (backdrop-filter: blur(10px)) {
  .site-head.scrolled { background: rgba(20, 16, 11, 0.78); backdrop-filter: blur(12px); }
}
.brand { font-family: "Playfair Display", serif; font-size: 1.5rem; letter-spacing: 0.02em; color: var(--cream); }
.brand span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a.link { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); position: relative; }
.nav a.link::after { content:""; position:absolute; left:0; bottom:-4px; height:1px; width:100%; background: var(--gold); transform: scaleX(0); transform-origin:left; transition: transform .25s; }
.nav a.link:hover::after, .nav a.link[aria-current="page"]::after { transform: scaleX(1); }
.nav a.link[aria-current="page"] { color: var(--gold-soft); }
.nav .btn { padding: 0.6em 1.2em; }
.nav-toggle { display: none; background: none; border: 1px solid rgba(244,236,221,0.35); color: var(--cream); border-radius: 2px; padding: 0.5rem 0.7rem; cursor: pointer; font-size: 0.8rem; letter-spacing: 0.1em; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: grid; place-items: center; text-align: center;
  padding: 7rem 1.25rem 5rem; overflow: hidden; background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.video-toggle {
  position: absolute; z-index: 3; right: 1.2rem; bottom: 1.2rem;
  background: rgba(15,11,7,0.55); color: #eee6d6; border: 1px solid rgba(238,230,214,0.4);
  border-radius: 999px; padding: 0.5rem 1.05rem; font: inherit; font-size: 0.8rem;
  letter-spacing: 0.06em; cursor: pointer; backdrop-filter: blur(4px);
}
.video-toggle:hover { background: rgba(15,11,7,0.8); color: #fff; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 30%, rgba(15,11,7,0.38), rgba(15,11,7,0.8));
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 9rem; pointer-events: none; z-index: 1;
  background: linear-gradient(transparent, var(--ink));
}
.hero-inner { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { font-size: clamp(2.8rem, 1.6rem + 5.5vw, 5.6rem); font-weight: 600; letter-spacing: 0.01em; text-wrap: balance; text-shadow: 0 3px 40px rgba(0,0,0,0.45); }
.hero .orn { margin-top: 1.5rem; }
.hero p.lead { max-width: 34ch; margin: 1.3rem auto 2.2rem; color: #eee6d6; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem); }
.hero .cta-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
  padding-bottom: 2.4rem; z-index: 2;
}
.scroll-hint::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 1px; height: 1.9rem;
  background: linear-gradient(rgba(201,159,74,0.85), transparent);
}

/* Split-text hero title (demo.js [data-splittext] hook) */
.st-ch {
  display: inline-block; white-space: pre;
  opacity: 0; transform: translateY(0.32em);
  animation: st-in 0.9s var(--ease-lux) both;
}
@keyframes st-in { to { opacity: 1; transform: none; } }

/* Cinematic scroll-driven parallax (progressively enhanced) */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .hero-media img {
      scale: 1.14; transform-origin: center bottom;
      animation: media-drift linear both;
      animation-timeline: view();
      animation-range: exit 0% exit 100%;
    }
    .hero-inner {
      animation: hero-depart linear both;
      animation-timeline: view();
      animation-range: exit 5% exit 70%;
    }
    .pb-media img {
      scale: 1.16; transform-origin: center bottom;
      animation: media-drift linear both;
      animation-timeline: view();
      animation-range: exit 0% exit 100%;
    }
  }
}
@keyframes media-drift { from { translate: 0 0; } to { translate: 0 12%; } }
@keyframes hero-depart { to { opacity: 0; transform: translateY(-42px); } }

/* Intro (two-column) */
.intro { display: grid; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); align-items: center; }
@media (min-width: 800px) { .intro { grid-template-columns: 1fr 1fr; } }
.intro h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
.intro p { color: var(--muted); margin-top: 1.2rem; max-width: 52ch; line-height: 1.75; }
.intro p.lede::first-letter {
  font-family: "Playfair Display", serif; font-size: 3.1em; line-height: 0.82;
  float: left; padding: 0.08em 0.14em 0 0; color: var(--gold-soft);
}
.intro .photo { position: relative; border-radius: 3px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.intro .photo::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(244,236,221,0.22); pointer-events: none; }
.intro .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-lux); }
@media (prefers-reduced-motion: no-preference) { .intro .photo:hover img { transform: scale(1.04); } }

/* Menu */
.menu { background: var(--ink-2); }
.menu h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }

/* Printed-menu sheet frame */
.menu-sheet {
  position: relative; background: var(--paper);
  border: 1px solid var(--gold-line);
  padding: clamp(1.8rem, 0.6rem + 4.5vw, 4.4rem) clamp(1.15rem, 0.2rem + 4vw, 3.8rem);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.menu-sheet::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(244,236,221,0.08); pointer-events: none; }

/* Menu masthead — like the top of a printed card */
.sheet-head { text-align: center; margin-bottom: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); }
.sheet-head .orn { margin-bottom: 1.5rem; }
.sheet-brand { font-family: "Playfair Display", serif; font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.3rem); line-height: 1.15; }
.sheet-brand span { color: var(--gold); }
.sheet-sub {
  font-size: 0.68rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--muted); margin: 0.7rem 0 1.6rem;
}
.menu-intro { text-align: center; max-width: 52ch; margin: 0 auto 1.1rem; color: var(--muted); font-family: "Playfair Display", serif; font-style: italic; font-size: 1.15rem; }
.menu-legend { text-align: center; color: var(--muted); font-size: 0.8rem; letter-spacing: 0.1em; }
.menu-legend b { color: var(--gold-soft); font-weight: 600; }

.menu-grid { display: grid; gap: 3rem; }
.menu-stack { display: grid; gap: clamp(2.4rem, 1.8rem + 2vw, 3.2rem); align-content: start; }
@media (min-width: 760px) {
  .menu-grid { grid-template-columns: 1fr 1fr; column-gap: 0; }
  .menu-stack:first-child { padding-right: clamp(2rem, 4vw, 4rem); }
  .menu-stack:last-child { border-left: 1px solid rgba(244,236,221,0.08); padding-left: clamp(2rem, 4vw, 4rem); }
}
.menu-col h3 {
  display: flex; align-items: center; gap: 1.1rem;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
}
.menu-col h3::before, .menu-col h3::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.col-note { text-align: center; color: var(--muted); font-size: 0.85rem; font-style: italic; margin: -0.9rem 0 1.4rem; }
.dish { display: grid; grid-template-columns: 1fr auto; gap: 0.2rem 0.65rem; align-items: baseline; margin-bottom: 1.65rem; }
.dish:last-child { margin-bottom: 0; }
.dish .name { font-family: "Playfair Display", serif; font-size: 1.18rem; display: flex; align-items: baseline; flex-wrap: wrap; column-gap: 0.5rem; }
.dish .name::after {
  content: ""; flex: 1; min-width: 1.6rem; align-self: baseline;
  border-bottom: 1px dotted rgba(201,159,74,0.4); margin-bottom: 0.28em;
}
.dish .name .mk { align-self: center; }
.dish .price { font-family: "Playfair Display", serif; font-size: 1.12rem; color: var(--gold-soft); font-variant-numeric: lining-nums; transition: color .3s; }
.dish:hover .price { color: var(--gold); }
.dish .desc { grid-column: 1 / -1; color: var(--muted); font-size: 0.9rem; padding-right: 3rem; }
@media (max-width: 640px) { .dish .desc { padding-right: 0; } }
.mk {
  font-family: "Inter", sans-serif; font-style: normal; font-size: 0.58rem; letter-spacing: 0.12em;
  color: var(--gold-soft); border: 1px solid rgba(201,159,74,0.4); border-radius: 3px;
  padding: 0.08rem 0.34rem; text-transform: uppercase; white-space: nowrap;
}

/* Gallery — editorial mosaic */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 43vw; grid-auto-flow: dense; gap: 0.8rem; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 16.5vw, 235px); gap: 0.9rem; } }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 3px; cursor: zoom-in; position: relative; background: var(--ink-2); }
.gallery-grid figure.big { grid-column: span 2; grid-row: span 2; }
.gallery-grid figure.wide { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-lux), filter 1.1s var(--ease-lux); }
@media (prefers-reduced-motion: no-preference) {
  .gallery-grid figure:hover img, .gallery-grid figure:focus-within img { transform: scale(1.06); }
}
.gallery-grid figure::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid rgba(244,236,221,0.5);
  opacity: 0; transition: opacity .45s ease; pointer-events: none;
}
.gallery-grid figure:hover::after, .gallery-grid figure:focus-within::after { opacity: 1; }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 1; pointer-events: none;
  padding: 2.6rem 1.15rem 0.95rem; text-align: left;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: #f2ead9;
  background: linear-gradient(transparent, rgba(9, 6, 3, 0.82));
  opacity: 0; translate: 0 8px; transition: opacity .5s ease, translate .5s var(--ease-lux);
}
.gallery-grid figure:hover figcaption, .gallery-grid figure:focus-within figcaption { opacity: 1; translate: 0 0; }
.gallery-hint { text-align: center; color: var(--muted); font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 2.4rem; }

/* Visit */
.visit { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .visit { grid-template-columns: 1fr 1fr; } }
.visit h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin-bottom: 1.2rem; }
.visit dl { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem 1.5rem; color: var(--muted); }
.visit dt { color: var(--gold-soft); font-weight: 600; letter-spacing: 0.06em; }
.visit .card { background: var(--ink-2); border: 1px solid var(--line); border-radius: 3px; padding: 2rem; align-self: start; }
.visit .card p { color: var(--muted); }
.visit .card .big { font-family: "Playfair Display", serif; font-size: 1.6rem; color: var(--cream); margin-bottom: 0.4rem; }

/* CTA band */
.cta {
  text-align: center;
  background: linear-gradient(rgba(15,11,7,0.74), rgba(15,11,7,0.84)), url("/img/examples/lakeside-table/g1.jpg") center/cover no-repeat;
}
.cta h2 { font-size: clamp(2rem, 1.5rem + 2.6vw, 3.4rem); }
.cta p { color: #eee6d6; max-width: 40ch; margin: 1rem auto 2rem; }

/* Footer */
.site-foot { border-top: 1px solid var(--line); padding-block: 3.2rem 3.4rem; text-align: center; color: var(--muted); font-size: 0.9rem; }
.site-foot .wrap::before { content: "\25C6"; display: block; color: rgba(201,159,74,0.55); font-size: 0.5rem; margin-bottom: 1.3rem; }
.site-foot .brand { font-size: 1.45rem; display: inline-block; margin-bottom: 0.7rem; }
.site-foot p { margin-block: 0.15rem; }

/* Reveal (pure CSS, safe fallback) */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal { animation: rise both; animation-timeline: view(); animation-range: entry 0% cover 18%; }
  }
}
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* Staggered reveal groups (enhance.js sets --i per child + adds .go in view).
   Gated on html.enh so the page never hides content without JS. */
@media (prefers-reduced-motion: no-preference) {
  .enh [data-stagger] > * {
    opacity: 0; transform: translateY(26px);
    transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux);
    transition-delay: calc(var(--i, 0) * 110ms);
  }
  .enh [data-stagger].go > * { opacity: 1; transform: none; }
}

/* Mobile nav — full-height drawer with serif links */
@media (max-width: 800px) {
  .nav-toggle { display: inline-block; position: relative; z-index: 2; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.9rem;
    background: rgba(16, 12, 8, 0.97); padding: 2.4rem; transform: translateX(100%);
    transition: transform .45s var(--ease-lux); border-left: 1px solid var(--line);
  }
  @supports (backdrop-filter: blur(10px)) {
    .nav { background: rgba(16, 12, 8, 0.88); backdrop-filter: blur(16px); }
  }
  .site-head[data-open="true"] .nav { transform: none; box-shadow: -30px 0 70px rgba(0,0,0,0.55); }
  .nav a.link { font-family: "Playfair Display", serif; font-size: 1.55rem; text-transform: none; letter-spacing: 0.02em; }
  .nav a.link::after { bottom: -2px; }
  .nav .btn { margin-top: 0.6rem; }
  @media (prefers-reduced-motion: no-preference) {
    .nav a { opacity: 0; translate: 18px 0; transition: opacity .45s ease, translate .45s var(--ease-lux); }
    .site-head[data-open="true"] .nav a { opacity: 1; translate: 0 0; }
    .site-head[data-open="true"] .nav a:nth-child(1) { transition-delay: .08s; }
    .site-head[data-open="true"] .nav a:nth-child(2) { transition-delay: .14s; }
    .site-head[data-open="true"] .nav a:nth-child(3) { transition-delay: .2s; }
    .site-head[data-open="true"] .nav a:nth-child(4) { transition-delay: .26s; }
    .site-head[data-open="true"] .nav a:nth-child(5) { transition-delay: .32s; }
  }
  @media (prefers-reduced-motion: reduce) { .nav { transition: none; } }
}

/* ============ Multi-page additions ============ */

/* Sub-page banner (shorter than the home hero) */
.page-banner {
  position: relative; overflow: hidden; text-align: center; background: var(--ink);
  padding: clamp(9rem, 7rem + 6vw, 11.5rem) 1.25rem clamp(4.6rem, 3.4rem + 3vw, 6rem);
}
.pb-media { position: absolute; inset: 0; z-index: 0; }
.pb-media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--banner-pos, center 45%); }
.pb-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(13,10,6,0.62), rgba(16,12,8,0.66) 52%, var(--ink));
}
.pb-inner { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(2.4rem, 1.6rem + 3.5vw, 4rem); text-shadow: 0 3px 40px rgba(0,0,0,0.45); }
.page-banner .eyebrow { color: var(--gold-soft); }
.page-banner .orn { margin-top: 1.5rem; }
.page-banner--gallery { --banner-pos: center 62%; }
.page-banner--story { --banner-pos: center 58%; }
.page-banner--reserve { --banner-pos: center 38%; }

/* Featured dishes (home) */
.featured-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.dish-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; }
.dish-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1s var(--ease-lux); }
@media (prefers-reduced-motion: no-preference) {
  .dish-card:hover { transform: translateY(-4px); border-color: rgba(201,159,74,0.4); box-shadow: 0 20px 44px rgba(0,0,0,0.45); }
  .dish-card:hover img { transform: scale(1.05); }
}
.dish-card .dc-body { padding: 1.3rem 1.4rem 1.6rem; }
.dish-card .dc-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish-card h3 { font-size: 1.3rem; }
.dish-card .price { font-family: "Playfair Display", serif; color: var(--gold-soft); font-size: 1.25rem; }
.dish-card p { color: var(--muted); margin-top: 0.4rem; font-size: 0.94rem; }

.section-head-c { text-align: center; margin-bottom: 3rem; }
.section-head-c h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); }
.section-head-c h2::after {
  content: ""; display: block; width: 56px; height: 1px; margin: 1.15rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Reviews (home) */
.reviews { background: var(--ink-2); }
.reviews-grid { display: grid; gap: 1.8rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.review {
  position: relative; border: 1px solid rgba(201,159,74,0.2); border-radius: 4px;
  padding: 2.7rem 2.3rem 2.4rem;
  background: linear-gradient(168deg, rgba(201,159,74,0.07), rgba(255,255,255,0.012) 55%);
  transition: border-color .4s, transform .4s, box-shadow .4s;
}
@media (prefers-reduced-motion: no-preference) {
  .review:hover { border-color: rgba(201,159,74,0.42); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
}
.review::before {
  content: "\201C"; position: absolute; top: 1rem; right: 1.5rem;
  font-family: "Playfair Display", serif; font-size: 4.6rem; line-height: 1;
  color: rgba(201,159,74,0.22); pointer-events: none;
}
.stars { color: var(--gold); letter-spacing: 6px; font-size: 0.88rem; margin-bottom: 1.2rem; }
.review p { font-family: "Playfair Display", serif; font-size: 1.12rem; line-height: 1.72; color: #e9e0cf; }
.review .who { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--gold-line); color: var(--gold-soft); font-family: "Playfair Display", serif; font-size: 1.05rem; }
.review .who span { display: block; color: var(--muted); font-family: "Inter", sans-serif; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.3rem; }

/* Gallery teaser strip (home) */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
@media (max-width: 640px) { .strip { grid-template-columns: repeat(2, 1fr); } }
.strip a { display: block; overflow: hidden; border-radius: 3px; }
.strip img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 3px; transition: transform 1.1s var(--ease-lux); }
@media (prefers-reduced-motion: no-preference) { .strip a:hover img { transform: scale(1.07); } }
.center { text-align: center; }
.center-cta { text-align: center; margin-top: 2.4rem; }

/* Reservation form */
.rz {
  position: relative; max-width: 640px; margin-inline: auto;
  background: var(--paper); border: 1px solid var(--gold-line); border-radius: 5px;
  padding: clamp(1.9rem, 1.2rem + 3vw, 3.2rem);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.rz::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(244,236,221,0.07); border-radius: 3px; pointer-events: none; }
.rz h3 { font-size: 1.35rem; margin-bottom: 1.4rem; }
.rz .form-head { text-align: center; margin-bottom: 2.3rem; }
.rz .form-head .eyebrow { margin-bottom: 0.5rem; }
.rz .form-head h2 { font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem); }
.rz .form-head .orn { margin-top: 1.1rem; }
.rz .row { display: grid; gap: 0 1.3rem; }
@media (min-width: 560px) { .rz .row.two { grid-template-columns: 1fr 1fr; } }
.rz label { display: block; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 0.5rem; font-weight: 600; }
.rz input, .rz select {
  width: 100%; font: inherit; color: var(--cream); background: #14100a;
  border: 1px solid var(--line); border-radius: 3px; padding: 0.9rem 1rem;
  color-scheme: dark; caret-color: var(--gold);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.rz select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c99f4a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.rz input:hover, .rz select:hover { border-color: rgba(244,236,221,0.32); }
.rz input:focus, .rz select:focus { outline: none; border-color: var(--gold); background: #171208; box-shadow: 0 0 0 3px rgba(201,159,74,0.16); }
.rz .field { margin-bottom: 1.45rem; }
.rz .btn { width: 100%; justify-content: center; margin-top: 0.7rem; padding: 1.05em 2.2em; }
.rz .btn:disabled { opacity: 0.55; cursor: default; box-shadow: none; }
.rz .note { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; text-align: center; }
.rz-msg { display: none; margin-top: 1.3rem; padding: 1.1rem 1.3rem; border-radius: 3px; background: rgba(201,159,74,0.12); border: 1px solid rgba(201,159,74,0.4); color: var(--gold-soft); font-size: 0.95rem; }
.rz-msg.show { display: block; }
.rz-msg.show::before { content: "\25C6"; font-size: 0.5rem; vertical-align: 0.3em; margin-right: 0.6rem; color: var(--gold); }
@media (prefers-reduced-motion: no-preference) {
  .rz-msg.show { animation: msg-in .5s var(--ease-lux); }
}
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } }

/* Reserve page layout: form + info rail */
.reserve-grid { display: grid; gap: 1.8rem; align-items: start; max-width: 1020px; margin-inline: auto; }
@media (min-width: 940px) { .reserve-grid { grid-template-columns: 1.15fr 0.85fr; gap: 2.2rem; } }
.reserve-grid .rz { max-width: none; margin: 0; }
.info-col { display: grid; gap: 1.4rem; align-content: start; }
.info-card { border: 1px solid var(--line); background: var(--ink-2); border-radius: 5px; padding: 2rem 2.2rem 2.1rem; transition: border-color .35s; }
.info-card:hover { border-color: rgba(201,159,74,0.35); }
.info-card h3 {
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.info-card p { color: var(--muted); }
.info-card .open-badge { margin: 0 0 0.9rem; }
.info-card .tel { display: inline-block; font-family: "Playfair Display", serif; font-size: 1.55rem; color: var(--cream); transition: color .25s; }
.info-card .tel:hover { color: var(--gold-soft); }
.info-card .tel-note { font-size: 0.88rem; margin-top: 0.35rem; }
.info-card .maps-link { color: var(--gold-soft); font-size: 0.9rem; font-weight: 600; }
.info-card .maps-link:hover { color: var(--gold); }

/* Lightbox */
.lb-lock { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; background: rgba(8,6,4,0.94); padding: 2rem; opacity: 0; transition: opacity .25s ease; }
.lightbox.open { display: grid; opacity: 1; }
.lb-stage { display: grid; gap: 0.9rem; justify-items: center; max-width: 100%; }
.lb-img { max-width: 90vw; max-height: 82vh; border-radius: 3px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
@media (prefers-reduced-motion: no-preference) {
  .lightbox.open .lb-img { animation: lb-in .4s var(--ease-lux); }
}
@keyframes lb-in { from { opacity: 0; transform: scale(0.965); } }
.lb-cap { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }
.lightbox .close { position: absolute; top: 1.1rem; right: 1.4rem; background: none; border: none; color: var(--cream); font-size: 2.1rem; cursor: pointer; line-height: 1; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer;
  background: rgba(0,0,0,0.4); border: 1px solid rgba(244,236,221,0.25);
  color: var(--cream); font-size: 1.7rem; line-height: 1; display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.lb-nav:hover { background: rgba(201,159,74,0.4); border-color: var(--gold); }
.lb-prev { left: clamp(0.5rem, 2vw, 2rem); }
.lb-next { right: clamp(0.5rem, 2vw, 2rem); }

/* Story page: kitchen principles */
.principles { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); counter-reset: principle; }
.principle {
  counter-increment: principle; position: relative;
  border: 1px solid rgba(201,159,74,0.16); border-radius: 4px;
  padding: 2.2rem 2rem 2.1rem;
  background: linear-gradient(180deg, rgba(201,159,74,0.05), rgba(255,255,255,0.012) 45%);
  transition: border-color .4s, transform .4s;
}
@media (prefers-reduced-motion: no-preference) {
  .principle:hover { border-color: rgba(201,159,74,0.4); transform: translateY(-3px); }
}
.principle::before {
  content: "0" counter(principle);
  font-family: "Playfair Display", serif; font-size: 1rem; letter-spacing: 0.2em;
  color: rgba(201,159,74,0.65); display: block; margin-bottom: 1rem;
}
.principle::after {
  content: ""; position: absolute; top: 2.55rem; left: 4.6rem; right: 2rem; height: 1px;
  background: linear-gradient(90deg, rgba(201,159,74,0.35), transparent);
}
.principle h3 { font-size: 1.35rem; color: var(--cream); margin-bottom: 0.6rem; }
.principle p { color: var(--muted); }

/* Story page: team */
.team-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.team-card {
  text-align: center; border: 1px solid var(--line); border-radius: 4px;
  padding: 2.6rem 1.8rem 2.4rem; background: rgba(255,255,255,0.012);
  transition: border-color .4s, transform .4s;
}
@media (prefers-reduced-motion: no-preference) { .team-card:hover { border-color: rgba(201,159,74,0.4); transform: translateY(-3px); } }
.team-card .mono {
  width: 64px; height: 64px; margin: 0 auto 1.3rem;
  border: 1px solid rgba(201,159,74,0.5); border-radius: 50%;
  display: grid; place-items: center; position: relative;
  font-family: "Playfair Display", serif; font-size: 1.3rem; color: var(--gold-soft); letter-spacing: 0.06em;
}
.team-card .mono::after {
  content: ""; position: absolute; inset: -7px; border: 1px solid rgba(201,159,74,0.16); border-radius: 50%;
}
.team-card .role { font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.team-card h3 { font-size: 1.45rem; margin-bottom: 0.55rem; }
.team-card p { color: var(--muted); font-size: 0.93rem; max-width: 24ch; margin-inline: auto; }

/* --- Find us: real map in a dark frame + live hours + party planner --- */
.map-grid{display:grid;gap:2.2rem;align-items:start}
@media (min-width:900px){.map-grid{grid-template-columns:1.12fr .88fr}}
.map-card{margin:0;border:1px solid var(--gold-line);border-radius:6px;overflow:hidden;background:var(--paper);box-shadow:0 26px 60px rgba(0,0,0,.4)}
.map-frame{position:relative;aspect-ratio:16/11;background:var(--ink-2)}
.map-frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0;filter:invert(0.89) hue-rotate(180deg) grayscale(0.2) contrast(0.9) brightness(0.94)}
.map-card figcaption{display:flex;justify-content:space-between;align-items:baseline;gap:1rem;flex-wrap:wrap;padding:.95rem 1.35rem;font-size:.82rem;color:var(--muted);border-top:1px solid var(--line)}
.map-card figcaption a{color:var(--gold-soft);font-weight:600;transition:color .25s}
.map-card figcaption a:hover{color:var(--gold)}
.open-badge{display:inline-block;font-weight:700;font-size:.9rem;border-radius:999px;padding:.5rem 1.1rem;margin-bottom:1.2rem;background:rgba(128,128,128,.14)}
.open-badge.is-open{background:rgba(38,145,84,.16);color:#2ea366}
.open-badge.is-closed{background:rgba(196,86,49,.16);color:#e08a63}
.calc-out{margin-top:1.3rem;padding:1.1rem 1.25rem;border-radius:3px;background:rgba(201,159,74,.08);border:1px solid rgba(201,159,74,.18);font-size:.96rem;color:#e6dccb}
.calc-out b{color:var(--gold-soft)}

/* Pull quote (press / chef's note) */
.pull-quote{position:relative;max-width:44ch;margin-inline:auto;text-align:center;padding-top:2.6rem}
.pull-quote::before{content:"\201C";position:absolute;top:-0.4rem;left:50%;transform:translateX(-50%);font-family:"Playfair Display",serif;font-size:5rem;line-height:1;color:rgba(201,159,74,.4);pointer-events:none}
.pull-quote blockquote{font-family:"Playfair Display",serif;font-size:clamp(1.45rem,1.15rem + 1.5vw,2.15rem);line-height:1.5;color:#ece3d2;text-wrap:balance}
.pull-quote .cite{margin-top:1.8rem;font-size:.72rem;letter-spacing:.28em;text-transform:uppercase;color:var(--gold);font-weight:600}
.pull-quote .cite span{display:block;margin-top:.4rem;color:var(--muted);letter-spacing:.14em;font-weight:400}
.pull-quote .orn{margin-top:1.6rem}

/* Perk cards (private dining / gift cards / wine) */
.perk-grid{display:grid;gap:1.7rem;grid-template-columns:repeat(auto-fit,minmax(min(100%,16rem),1fr))}
.perk{border:1px solid var(--line);background:rgba(255,255,255,.012);border-radius:4px;padding:2.4rem 2.1rem 2.3rem;text-align:center;transition:border-color .4s,transform .4s}
@media (prefers-reduced-motion:no-preference){.perk:hover{border-color:rgba(201,159,74,.4);transform:translateY(-3px)}}
.perk .pk-mark{width:52px;height:52px;margin:0 auto 1.3rem;border:1px solid rgba(201,159,74,.5);border-radius:50%;display:grid;place-items:center;color:var(--gold-soft);font-size:.72rem}
.perk h3{font-size:1.4rem;margin-bottom:.65rem}
.perk p{color:var(--muted);font-size:.95rem;max-width:30ch;margin-inline:auto}
.perk p a{color:var(--gold-soft);font-weight:600}
.perk p a:hover{color:var(--gold)}

/* Story timeline */
.timeline{position:relative;max-width:680px;margin-inline:auto}
.timeline::before{content:"";position:absolute;top:.5rem;bottom:.5rem;left:6.05rem;width:1px;background:linear-gradient(rgba(201,159,74,.55),rgba(201,159,74,.06))}
.tl-item{position:relative;display:grid;grid-template-columns:4.2rem 1fr;column-gap:3.6rem;margin-bottom:2.9rem}
.tl-item:last-child{margin-bottom:0}
.tl-item::before{content:"";position:absolute;left:5.87rem;top:.62rem;width:7px;height:7px;rotate:45deg;background:var(--gold)}
.tl-item .year{font-family:"Playfair Display",serif;font-size:1.5rem;color:var(--gold-soft);text-align:right;line-height:1.25}
.tl-item h3{font-size:1.28rem;margin-bottom:.4rem}
.tl-item p{color:var(--muted);max-width:46ch}
@media (max-width:560px){
  .timeline::before{left:3.75rem}
  .tl-item{grid-template-columns:2.9rem 1fr;column-gap:2.2rem;margin-bottom:2.4rem}
  .tl-item::before{left:3.57rem;top:.5rem}
  .tl-item .year{font-size:1.15rem}
}

/* FAQ (reserve) */
.faq-grid{display:grid;gap:1.7rem;grid-template-columns:repeat(auto-fit,minmax(min(100%,19rem),1fr));max-width:1020px;margin-inline:auto}
.faq{border:1px solid var(--line);background:rgba(255,255,255,.012);border-radius:4px;padding:2.1rem 2.2rem 2rem;transition:border-color .4s}
.faq:hover{border-color:rgba(201,159,74,.35)}
.faq h3{font-size:1.22rem;margin-bottom:.6rem;color:var(--cream)}
.faq h3::before{content:"\25C6";font-size:.45rem;color:var(--gold);vertical-align:.35em;margin-right:.65rem}
.faq p{color:var(--muted);font-size:.95rem}

/* CTA band variants */
.cta--menu{background-image:linear-gradient(rgba(15,11,7,.74),rgba(15,11,7,.84)),url("/img/examples/lakeside-table/dish-1.jpg")}
.cta--gallery{background-image:linear-gradient(rgba(15,11,7,.74),rgba(15,11,7,.84)),url("/img/examples/lakeside-table/g3.jpg")}
.cta--story{background-image:linear-gradient(rgba(15,11,7,.74),rgba(15,11,7,.84)),url("/img/examples/lakeside-table/plates.jpg")}
.cta--reserve{background-image:linear-gradient(rgba(15,11,7,.76),rgba(15,11,7,.86)),url("/img/examples/lakeside-table/g4.jpg")}

/* ---------- Interactive menu + demo ordering ---------- */
.order-intro { max-width: 56ch; margin: 0.9rem auto 0.4rem; color: var(--muted); }
.order-intro b { color: var(--gold-soft); font-weight: 600; }
.order-foot { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 2.4rem; font-style: italic; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 1.8rem 0 2.4rem; }
.menu-tabs .tab {
  background: transparent; color: var(--cream); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5rem 1.15rem; font: inherit; font-size: 0.88rem;
  letter-spacing: 0.04em; cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.menu-tabs .tab:hover { border-color: var(--gold); color: var(--gold-soft); }
.menu-tabs .tab.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }
.order-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .order-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .order-grid { grid-template-columns: repeat(3, 1fr); } }
.oi {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; transition: border-color 0.25s, transform 0.25s var(--ease-lux);
}
.oi:hover { border-color: var(--gold-line); }
@media (prefers-reduced-motion: no-preference) { .oi:hover { transform: translateY(-4px); } }
.oi.is-hidden { display: none; }
.oi img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.oi-body { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.1rem 1.2rem 1.25rem; flex: 1; }
.oi-top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; }
.oi-top h3 { font-size: 1.12rem; font-weight: 600; }
.oi-top .price { color: var(--gold-soft); font-weight: 600; white-space: nowrap; }
.oi-body p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.oi .add {
  align-self: flex-start; margin-top: 0.4rem; background: transparent; color: var(--gold-soft);
  border: 1px solid var(--gold-line); border-radius: 999px; padding: 0.5rem 1.1rem;
  font: inherit; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.oi .add:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.oi .add.added { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.cart-fab {
  position: fixed; z-index: 210; left: 1rem; bottom: 4.6rem;
  background: var(--gold); color: var(--ink); border: 0; border-radius: 999px;
  padding: 0.75rem 1.3rem; font: inherit; font-size: 0.92rem; font-weight: 700;
  cursor: pointer; box-shadow: 0 12px 34px rgba(0, 0, 0, 0.5);
}
@media (min-width: 700px) { .cart-fab { left: 1.4rem; bottom: 1.4rem; } }
.cart-fab:hover { background: var(--gold-soft); }
.cart-scrim { position: fixed; inset: 0; z-index: 240; background: rgba(10, 8, 5, 0.6); }
/* CSS display beats the hidden attribute — restore it explicitly. */
.cart-fab[hidden], .cart-scrim[hidden], .cart-drawer[hidden] { display: none; }
.cart-drawer {
  position: fixed; z-index: 250; top: 0; right: 0; bottom: 0; width: min(92vw, 26rem);
  background: var(--paper); border-left: 1px solid var(--gold-line);
  padding: 1.6rem 1.5rem 2rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.55);
}
.cd-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cd-head h2 { font-size: 1.35rem; }
.cd-close {
  background: transparent; border: 1px solid var(--line); color: var(--cream); border-radius: 999px;
  width: 2.3rem; height: 2.3rem; font-size: 1.25rem; line-height: 1; cursor: pointer;
}
.cd-close:hover { border-color: var(--gold); color: var(--gold-soft); }
.cd-demo { color: var(--muted); font-size: 0.86rem; border: 1px dashed var(--gold-line); border-radius: 10px; padding: 0.7rem 0.9rem; }
.cd-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.cd-items li { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; border-bottom: 1px solid var(--line); padding-bottom: 0.85rem; }
.cd-items .nm { flex: 1; font-size: 0.95rem; }
.cd-items .ln-price { color: var(--gold-soft); font-weight: 600; font-size: 0.92rem; white-space: nowrap; }
.cd-empty { color: var(--muted); font-style: italic; border-bottom: 0 !important; }
.qty { display: inline-flex; align-items: center; gap: 0.55rem; }
.qty button {
  background: transparent; border: 1px solid var(--line); color: var(--cream); border-radius: 999px;
  width: 1.7rem; height: 1.7rem; font-size: 1rem; line-height: 1; cursor: pointer;
}
.qty button:hover { border-color: var(--gold); color: var(--gold-soft); }
.qty .q { min-width: 1.2rem; text-align: center; font-weight: 600; }
.cd-totals p { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.94rem; margin: 0.3rem 0; }
.cd-totals .cd-grand { color: var(--cream); font-weight: 700; font-size: 1.05rem; border-top: 1px solid var(--gold-line); padding-top: 0.6rem; margin-top: 0.6rem; }
.cd-place { justify-content: center; }
.cd-status { color: var(--gold-soft); font-size: 0.92rem; }
.cart-drawer .btn { text-align: center; }
@media (prefers-reduced-motion: no-preference) {
  .cart-drawer { animation: cd-in 0.3s var(--ease-lux); }
  @keyframes cd-in { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }
}
