/* ==========================================================================
   Café Mellow — design system
   Warm artisan cafe. Light by default, warm dark on preference or toggle.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --cream:        #FBF7F1;
  --cream-2:      #F4ECE2;
  --sand:         #E9DDCE;
  --paper:        #FFFEFB;

  /* Ink */
  --espresso:     #241811;
  --cocoa:        #4A3427;
  --mocha:        #6E5647;
  --muted:        #8B7563;

  /* Accents — taken from the Café Mellow brand sheet */
  --brand-orange: #EA7C25;   /* primary   */
  --brand-wine:   #55152B;   /* secondary */
  --brand-ink:    #1D1D1D;
  --caramel:      #EA7C25;
  --caramel-deep: #C9631A;
  --berry:        #55152B;
  --leaf:         #4F7A46;

  /* Semantic */
  --bg:           var(--cream);
  --bg-alt:       var(--cream-2);
  --surface:      var(--paper);
  --surface-2:    #FFFFFF;
  --text:         var(--espresso);
  --text-soft:    var(--mocha);
  --text-faint:   var(--muted);
  --line:         rgba(36, 24, 17, 0.12);
  --line-soft:    rgba(36, 24, 17, 0.07);
  --accent:       var(--brand-orange);
  --accent-ink:   #FFFFFF;
  --accent-hover: var(--caramel-deep);
  --accent-soft:  color-mix(in srgb, var(--brand-orange) 12%, transparent);
  --veg:          var(--leaf);
  --shadow-sm:    0 1px 2px rgba(36, 24, 17, .06), 0 2px 8px rgba(36, 24, 17, .05);
  --shadow-md:    0 4px 12px rgba(36, 24, 17, .07), 0 16px 40px rgba(36, 24, 17, .08);
  --shadow-lg:    0 8px 24px rgba(36, 24, 17, .10), 0 32px 80px rgba(36, 24, 17, .12);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Rhythm */
  --step--1: clamp(.82rem, .80rem + .10vw, .90rem);
  --step-0:  clamp(1rem, .97rem + .16vw, 1.09rem);
  --step-1:  clamp(1.2rem, 1.13rem + .34vw, 1.42rem);
  --step-2:  clamp(1.45rem, 1.31rem + .68vw, 1.9rem);
  --step-3:  clamp(1.75rem, 1.49rem + 1.28vw, 2.6rem);
  --step-4:  clamp(2.1rem, 1.62rem + 2.4vw, 3.6rem);
  --step-5:  clamp(2.5rem, 1.6rem + 4.4vw, 5.2rem);

  --gutter: clamp(1.15rem, .7rem + 2vw, 2.5rem);
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --header-h: 74px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:         #17100B;
    --bg-alt:     #1F1610;
    --surface:    #221811;
    --surface-2:  #2A1E16;
    --text:       #F6EEE3;
    --text-soft:  #D2BFAC;
    --text-faint: #A38F7C;
    --line:       rgba(246, 238, 227, 0.14);
    --line-soft:  rgba(246, 238, 227, 0.08);
    --accent:     #F2903D;
    --accent-ink: #1B1209;
    --accent-hover: #FFA556;
    --accent-soft: color-mix(in srgb, #F2903D 16%, transparent);
    --berry:      #C25E7C;
    --veg:        #7BAA6C;
    --shadow-sm:  0 1px 2px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.3);
    --shadow-md:  0 4px 12px rgba(0,0,0,.4), 0 16px 40px rgba(0,0,0,.4);
    --shadow-lg:  0 8px 24px rgba(0,0,0,.45), 0 32px 80px rgba(0,0,0,.5);
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg:         #17100B;
  --bg-alt:     #1F1610;
  --surface:    #221811;
  --surface-2:  #2A1E16;
  --text:       #F6EEE3;
  --text-soft:  #D2BFAC;
  --text-faint: #A38F7C;
  --line:       rgba(246, 238, 227, 0.14);
  --line-soft:  rgba(246, 238, 227, 0.08);
  --accent:     #F2903D;
  --accent-ink: #1B1209;
  --accent-hover: #FFA556;
  --accent-soft: color-mix(in srgb, #F2903D 16%, transparent);
  --berry:      #C25E7C;
  --veg:        #7BAA6C;
  --shadow-sm:  0 1px 2px rgba(0,0,0,.4), 0 2px 8px rgba(0,0,0,.3);
  --shadow-md:  0 4px 12px rgba(0,0,0,.4), 0 16px 40px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 24px rgba(0,0,0,.45), 0 32px 80px rgba(0,0,0,.5);
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }
:where(h1, h2, h3, h4) { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -.015em; text-wrap: balance; }
p { text-wrap: pretty; }
ul[class] { list-style: none; padding: 0; }

:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: .7rem 1.1rem; border-radius: var(--radius-pill); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - var(--gutter) * 2, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--alt { background: var(--bg-alt); }
.stack > * + * { margin-top: 1rem; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .7;
}
.eyebrow--center::after {
  content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .7;
}
.h-xl { font-size: var(--step-5); }
.h-lg { font-size: var(--step-4); }
.h-md { font-size: var(--step-3); }
.h-sm { font-size: var(--step-2); }
.lede { font-size: var(--step-1); color: var(--text-soft); line-height: 1.55; }
.muted { color: var(--text-soft); }
.faint { color: var(--text-faint); font-size: var(--step--1); }
.center { text-align: center; }
.section-head { max-width: 62ch; }
.section-head.center { margin-inline: auto; }
.section-head > * + * { margin-top: .8rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent); --btn-fg: var(--accent-ink); --btn-bd: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.5rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  font-weight: 600; font-size: var(--step-0); letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { --btn-bg: var(--accent-hover); --btn-bd: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--line); box-shadow: none; }
.btn--ghost:hover { --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--accent); box-shadow: var(--shadow-sm); }
.btn--sm { padding: .55rem 1.05rem; font-size: var(--step--1); }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 40px; height: 40px; flex: none; display: block; }
.brand__text { display: grid; line-height: 1; }
.brand__name { font-family: var(--font-body); font-size: 1.22rem; font-weight: 600; letter-spacing: -.015em; text-transform: lowercase; color: var(--text); }
.brand__tag { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); margin-top: .3rem; }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  position: relative; text-decoration: none; padding: .5rem .78rem; border-radius: var(--radius-pill);
  font-size: .95rem; font-weight: 500; color: var(--text-soft);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav a:hover { color: var(--text); background: var(--line-soft); }
.nav a[aria-current="page"] { color: var(--text); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .78rem; right: .78rem; bottom: .22rem;
  height: 2px; border-radius: 2px; background: var(--accent);
}

.header__actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; border: 1.5px solid var(--line); background: transparent;
  cursor: pointer; transition: border-color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
}
.icon-btn:hover { border-color: var(--accent); transform: translateY(-1px); }
.icon-btn svg { width: 19px; height: 19px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; }
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; }
}

.nav-toggle { display: none; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-grid; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.6rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav a[aria-current="page"]::after { left: 1rem; right: auto; width: 18px; bottom: .55rem; }
  .header__actions .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(3rem, 1.5rem + 7vw, 7rem) clamp(3rem, 2rem + 5vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -20%; height: 70vh; z-index: -1;
  background:
    radial-gradient(48% 55% at 22% 30%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%),
    radial-gradient(42% 50% at 82% 12%, color-mix(in srgb, var(--berry) 14%, transparent), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__grid {
  display: grid; gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.02fr .98fr; } }
.hero__copy > * + * { margin-top: 1.15rem; }
.hero h1 { font-size: var(--step-5); font-weight: 600; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.hero .lede { max-width: 46ch; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, .6rem + 2vw, 2.6rem); margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); }
.hero__stat strong { display: block; font-family: var(--font-display); font-size: var(--step-2); line-height: 1; }
.hero__stat span { font-size: var(--step--1); color: var(--text-faint); letter-spacing: .04em; }

.hero__art { position: relative; }
.hero__art-main {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; background: var(--sand);
}
.hero__art-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__art-chip {
  position: absolute; left: -6px; bottom: 22px;
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: .85rem 1.1rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .7rem; max-width: 78%;
}
.hero__art-chip svg { width: 30px; height: 30px; color: var(--accent); flex: none; }
.hero__art-chip b { display: block; font-size: .95rem; }
.hero__art-chip span { font-size: var(--step--1); color: var(--text-faint); }
@media (min-width: 900px) { .hero__art-chip { left: -34px; } }

/* Open / closed pill */
.status-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem .85rem .38rem .6rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--surface);
  font-size: var(--step--1); font-weight: 600;
}
.status-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-faint); flex: none; }
.status-pill.is-open .status-pill__dot { background: var(--leaf); box-shadow: 0 0 0 4px color-mix(in srgb, var(--leaf) 22%, transparent); }
.status-pill.is-closed .status-pill__dot { background: var(--berry); box-shadow: 0 0 0 4px color-mix(in srgb, var(--berry) 20%, transparent); }
.status-pill small { font-weight: 500; color: var(--text-faint); }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line-soft); background: var(--bg-alt);
  overflow: hidden; padding-block: .9rem;
}
.marquee__track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display); font-size: var(--step-1); font-style: italic;
  color: var(--text-soft); white-space: nowrap; display: flex; align-items: center; gap: 2.5rem;
}
.marquee span::after { content: "✦"; color: var(--accent); font-style: normal; font-size: .7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: clamp(1rem, .6rem + 1.4vw, 1.75rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card__media { aspect-ratio: 5 / 4; background: var(--sand); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body h3 { font-size: var(--step-1); }
.card__body p { color: var(--text-soft); font-size: .95rem; }
.card__foot { margin-top: auto; padding-top: .6rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.price { font-family: var(--font-display); font-weight: 600; font-size: var(--step-1); }

.feature {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem; display: grid; gap: .65rem; align-content: start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--step-1); }
.feature p { color: var(--text-soft); font-size: .95rem; }

/* ---------- Split ---------- */
.split { display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse .split__media { order: 2; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--sand); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__copy > * + * { margin-top: 1rem; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; position: relative; padding-left: 1.6rem; }
.timeline::before { content: ""; position: absolute; left: 5px; top: .6rem; bottom: .6rem; width: 2px; background: var(--line); border-radius: 2px; }
.timeline li { position: relative; padding: 0 0 1.7rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -1.6rem; top: .45rem;
  width: 12px; height: 12px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline b { display: block; font-family: var(--font-display); font-size: var(--step-1); }
.timeline time { font-size: var(--step--1); letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.timeline p { color: var(--text-soft); font-size: .95rem; margin-top: .25rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.quote {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 1.7rem 1.5rem 1.4rem; position: relative;
}
.quote::before {
  content: "”"; position: absolute; top: -.05em; right: .45rem;
  font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--accent); opacity: .22;
}
.quote p { font-size: 1.02rem; color: var(--text); }
.quote footer { margin-top: 1rem; display: flex; align-items: center; gap: .7rem; }
.quote__avatar {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: color-mix(in srgb, var(--accent) 20%, transparent); color: var(--accent-hover);
  font-weight: 700; font-family: var(--font-display);
}
.quote cite { font-style: normal; font-weight: 600; font-size: .95rem; display: block; }
.stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: .7rem; }
.stars svg { width: 16px; height: 16px; }

/* ---------- Menu page ---------- */
.menu-toolbar {
  position: sticky; top: var(--header-h); z-index: 40;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  padding-block: .9rem;
}
.menu-toolbar__row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.search {
  position: relative; flex: 1 1 240px; min-width: 200px;
}
.search input {
  width: 100%; padding: .7rem 2.4rem .7rem 2.6rem;
  border-radius: var(--radius-pill); border: 1.5px solid var(--line);
  background: var(--surface); color: var(--text);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent); }
.search__icon { position: absolute; left: .9rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--text-faint); pointer-events: none; }
.search__clear {
  position: absolute; right: .55rem; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; cursor: pointer; color: var(--text-faint);
  width: 28px; height: 28px; border-radius: 50%; display: none; place-items: center;
}
.search__clear.is-visible { display: grid; }
.search__clear:hover { background: var(--line-soft); color: var(--text); }

.chip-row { display: flex; gap: .5rem; overflow-x: auto; padding-block: .2rem; scrollbar-width: thin; }
.chip-row::-webkit-scrollbar { height: 4px; }
.chip-row::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.chip {
  flex: none; padding: .45rem 1rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line); background: transparent; color: var(--text-soft);
  font-size: var(--step--1); font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip[aria-pressed="true"], .chip.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.menu-section { padding-top: clamp(2rem, 1.2rem + 2vw, 3.2rem); }
.menu-section__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.4rem; }
.menu-section__head h2 { font-size: var(--step-3); }
.menu-section__head span { font-size: var(--step--1); color: var(--text-faint); white-space: nowrap; }
.menu-section__head::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.dish-list { display: grid; gap: .2rem; }
.dish {
  display: grid; grid-template-columns: 1fr auto; gap: .35rem 1.2rem;
  padding: 1.05rem .4rem; border-bottom: 1px dashed var(--line-soft);
  align-items: start;
}
.dish:last-child { border-bottom: 0; }
.dish__name { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: 1.04rem; flex-wrap: wrap; }
.dish__desc { grid-column: 1 / 2; color: var(--text-soft); font-size: .92rem; margin-top: .1rem; }
.dish__price { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; white-space: nowrap; }
.dish__actions { grid-column: 2; justify-self: end; margin-top: .4rem; }
.dish__add {
  border: 1.5px solid var(--line); background: transparent; color: var(--text-soft);
  border-radius: var(--radius-pill); padding: .3rem .8rem; font-size: .8rem; font-weight: 600; cursor: pointer;
  transition: all .18s var(--ease);
}
.dish__add:hover { border-color: var(--accent); color: var(--accent); }
.dish__add.is-added { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: .16rem .5rem; border-radius: 5px; white-space: nowrap;
}
.tag--best { background: color-mix(in srgb, var(--accent) 20%, transparent); color: var(--accent-hover); }
.tag--new { background: color-mix(in srgb, var(--berry) 16%, transparent); color: var(--berry); }
.tag--eggless { background: color-mix(in srgb, var(--leaf) 16%, transparent); color: var(--veg); }
.tag--must { background: color-mix(in srgb, var(--brand-wine) 14%, transparent); color: var(--berry); }
.tag--pick { background: color-mix(in srgb, var(--text) 9%, transparent); color: var(--text-soft); }
:root[data-theme="dark"] .tag--must { color: #E79AB4; }
:root[data-theme="dark"] .tag--best { color: var(--accent); }

.veg-mark {
  width: 14px; height: 14px; border: 1.6px solid var(--veg); border-radius: 3px;
  display: inline-grid; place-items: center; flex: none;
}
.veg-mark::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--veg); }

.empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-soft); }
.empty-state svg { width: 46px; height: 46px; margin: 0 auto 1rem; color: var(--text-faint); }

/* Order tray */
.tray {
  position: fixed; left: 50%; bottom: 1.1rem; transform: translate(-50%, 140%);
  z-index: 90; width: min(100% - 2rem, 560px);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: .9rem 1rem; display: flex; align-items: center; gap: .8rem;
  transition: transform .3s var(--ease);
}
.tray.is-visible { transform: translate(-50%, 0); }
.tray__count {
  width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink); font-weight: 700;
}
.tray__info { flex: 1; min-width: 0; }
.tray__info b { display: block; font-size: .95rem; }
.tray__info span { font-size: var(--step--1); color: var(--text-faint); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tray__clear { border: 0; background: transparent; color: var(--text-faint); cursor: pointer; text-decoration: underline; font-size: var(--step--1); }
.tray__clear:hover { color: var(--text); }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3 240px; column-gap: clamp(.6rem, .3rem + 1vw, 1.1rem); }
.gallery-item {
  break-inside: avoid; margin-bottom: clamp(.6rem, .3rem + 1vw, 1.1rem);
  border-radius: var(--radius); overflow: hidden; cursor: zoom-in;
  border: 0; padding: 0; background: var(--sand); display: block; width: 100%;
  position: relative;
}
.gallery-item img { width: 100%; transition: transform .5s var(--ease), filter .3s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,24,17,.45), transparent 45%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(20, 13, 9, .93); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem);
}
.lightbox[open], .lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .18s var(--ease);
}
.lightbox__nav:hover { background: rgba(255,255,255,.2); }
.lightbox__nav--prev { left: clamp(.6rem, 2vw, 2rem); }
.lightbox__nav--next { right: clamp(.6rem, 2vw, 2rem); }
.lightbox__close { position: absolute; top: clamp(.8rem, 2vw, 1.6rem); right: clamp(.8rem, 2vw, 1.6rem); }
.lightbox__counter { position: absolute; bottom: clamp(.8rem, 2vw, 1.6rem); left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: var(--step--1); letter-spacing: .1em; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .38rem; }
.field label { font-size: var(--step--1); font-weight: 600; letter-spacing: .03em; }
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem .95rem; border-radius: var(--radius);
  border: 1.5px solid var(--line); background: var(--surface); color: var(--text);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 16%, transparent);
}
.field__hint { font-size: .78rem; color: var(--text-faint); }
.field__error { font-size: .78rem; color: var(--berry); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--berry); }
.field.has-error .field__error { display: block; }
.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.form-note {
  padding: .85rem 1rem; border-radius: var(--radius); font-size: .9rem;
  border: 1px solid var(--line); background: var(--bg-alt); display: none;
}
.form-note.is-visible { display: block; }
.form-note.is-success { border-color: color-mix(in srgb, var(--leaf) 45%, transparent); background: color-mix(in srgb, var(--leaf) 10%, transparent); }
.form-note.is-error { border-color: color-mix(in srgb, var(--berry) 45%, transparent); background: color-mix(in srgb, var(--berry) 9%, transparent); }

/* ---------- Info panels ---------- */
.info-list { display: grid; gap: 1.2rem; }
.info-item { display: flex; gap: .95rem; align-items: flex-start; }
.info-item svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: .22rem; }
.info-item b { display: block; font-size: .95rem; }
.info-item a, .info-item p { color: var(--text-soft); font-size: .95rem; text-decoration: none; }
.info-item a:hover { color: var(--accent); text-decoration: underline; }

.panel {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(1.3rem, .8rem + 1.6vw, 2.2rem);
}
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: clamp(280px, 40vh, 440px); border: 0; }

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table th, .hours-table td { text-align: left; padding: .5rem 0; border-bottom: 1px dashed var(--line-soft); font-weight: 500; }
.hours-table th { color: var(--text-soft); font-weight: 500; }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--accent); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--espresso); color: #F6EEE3;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 1.4rem + 3vw, 4rem) clamp(1.4rem, .8rem + 3vw, 3.5rem);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(60% 90% at 15% 10%, color-mix(in srgb, var(--caramel) 45%, transparent), transparent 65%),
              radial-gradient(50% 80% at 88% 88%, color-mix(in srgb, var(--berry) 40%, transparent), transparent 65%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: var(--step-4); }
.cta-band p { color: rgba(246,238,227,.78); max-width: 52ch; margin-inline: auto; margin-top: .8rem; }
.cta-band .btn-row { margin-top: 1.8rem; }
.cta-band .btn--ghost { --btn-fg: #F6EEE3; --btn-bd: rgba(246,238,227,.35); }
.cta-band .btn--ghost:hover { --btn-fg: #fff; --btn-bd: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line-soft); padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem) 1.6rem; margin-top: 0; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
.footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); font-weight: 700; margin-bottom: .9rem; }
.footer ul { display: grid; gap: .5rem; }
.footer a { text-decoration: none; color: var(--text-soft); font-size: .95rem; transition: color .18s var(--ease); }
.footer a:hover { color: var(--accent); }
.footer__brand p { color: var(--text-soft); font-size: .93rem; max-width: 34ch; margin-top: .8rem; }
.socials { display: flex; gap: .5rem; margin-top: 1.1rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line);
  display: grid; place-items: center; transition: all .18s var(--ease);
}
.socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer__bar {
  margin-top: 2.4rem; padding-top: 1.3rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--text-faint);
}
.footer__bar nav { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 80;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .38); text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.fab:hover { transform: scale(1.07) translateY(-2px); box-shadow: 0 10px 28px rgba(37, 211, 102, .5); }
.fab svg { width: 28px; height: 28px; }
body.has-tray .fab { bottom: 5.6rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(2.6rem, 1.6rem + 4vw, 5rem) clamp(1.5rem, 1rem + 2vw, 2.5rem); position: relative; }
.page-hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 100%; z-index: -1;
  background: radial-gradient(52% 100% at 12% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%);
}
.page-hero h1 { font-size: var(--step-4); margin-top: .7rem; }
.page-hero .lede { margin-top: .9rem; max-width: 58ch; }
.crumbs { font-size: var(--step--1); color: var(--text-faint); display: flex; gap: .45rem; align-items: center; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--accent); }

/* ---------- Reveal on scroll ---------- */
/* Only hide content when JavaScript is there to bring it back. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.img-fallback { display: grid; place-items: center; background: linear-gradient(135deg, var(--sand), var(--cream-2)); color: var(--mocha); }
.mt-lg { margin-top: clamp(1.8rem, 1rem + 2vw, 3rem); }
.mt-md { margin-top: 1.4rem; }
.nowrap { white-space: nowrap; }

/* ==========================================================================
   Photography components
   Everything below is driven by the responsive <picture> blocks that
   _build/build.mjs writes from assets/data/images.json.
   ========================================================================== */

/* <picture> is only a wrapper — let the <img> inherit the parent's layout. */
picture { display: contents; }

/* ---------- Hero: a stacked pair of photographs ---------- */
.hero__art-sub {
  position: absolute; right: -10px; top: -26px; width: 39%;
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; background: var(--sand);
  box-shadow: var(--shadow-md); border: 5px solid var(--surface);
}
.hero__art-sub img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 620px) { .hero__art-sub { display: none; } }

/* ---------- Full-bleed photo band ---------- */
.photo-band {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; place-items: center; text-align: center;
}
.photo-band img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.photo-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,8,13,.62), rgba(20,8,13,.74));
}
.photo-band__inner {
  color: #FFF6E9; padding-block: clamp(4rem, 2.5rem + 7vw, 8rem);
  width: min(100% - var(--gutter) * 2, 62ch); margin-inline: auto;
}
.photo-band__inner .eyebrow { color: #F0C79C; }
.photo-band__inner .eyebrow::before, .photo-band__inner .eyebrow--center::after { background: #F0C79C; }
.photo-band__inner h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: var(--step-4); margin-top: .6rem;
}
.photo-band__inner p { color: rgba(255,246,233,.82); margin-top: 1rem; font-size: var(--step-1); }
.photo-band__inner .btn-row { margin-top: 1.9rem; justify-content: center; }
.photo-band__inner .btn--ghost { --btn-fg: #FFF6E9; --btn-bd: rgba(255,246,233,.4); }
.photo-band__inner .btn--ghost:hover { --btn-fg: #fff; --btn-bd: #fff; }

/* ---------- Editorial mosaic ---------- */
.mosaic {
  display: grid; gap: clamp(.55rem, .3rem + .9vw, 1rem);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}
@media (min-width: 720px) { .mosaic { grid-template-columns: repeat(4, 1fr); } }
.mosaic figure {
  position: relative; overflow: hidden; margin: 0;
  border-radius: var(--radius); background: var(--sand); aspect-ratio: 1;
}
.mosaic figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.mosaic figure:hover img { transform: scale(1.045); }
.mosaic .m-tall  { grid-row: span 2; aspect-ratio: auto; }
.mosaic .m-wide  { grid-column: span 2; aspect-ratio: auto; }
@media (max-width: 719px) {
  .mosaic { grid-auto-rows: auto; }
  .mosaic .m-tall { grid-row: span 1; aspect-ratio: 1; }
  .mosaic .m-wide { aspect-ratio: 16 / 10; }
}
.mosaic figcaption {
  position: absolute; left: .7rem; bottom: .7rem;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill); padding: .35rem .8rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  color: var(--text); box-shadow: var(--shadow-sm);
}

/* ---------- Showcase tiles (custom cakes) ---------- */
.showcase {
  display: grid; gap: clamp(.8rem, .5rem + 1vw, 1.4rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}
.shot {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--radius-lg); aspect-ratio: 4 / 5;
  background: var(--sand); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.shot:hover img { transform: scale(1.05); }
.shot figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.6rem .95rem .9rem;
  color: #FFF6E9; font-weight: 600; font-size: .92rem; text-align: left;
  background: linear-gradient(180deg, transparent, rgba(20,8,13,.82));
}
.shot figcaption span { display: block; font-weight: 400; font-size: .78rem; color: rgba(255,246,233,.75); margin-top: .15rem; }

/* ---------- Flavour circles ---------- */
.flavours {
  display: grid; gap: clamp(1rem, .6rem + 1.4vw, 1.8rem);
  grid-template-columns: repeat(auto-fill, minmax(min(45%, 150px), 1fr));
}
.flavour { display: grid; justify-items: center; gap: .7rem; text-align: center; }
.flavour__img {
  width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  background: var(--sand); border: 4px solid var(--surface); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.flavour:hover .flavour__img { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md); }
.flavour__img img { width: 100%; height: 100%; object-fit: cover; }
.flavour b { font-size: .98rem; }
.flavour span { display: block; font-size: var(--step--1); color: var(--text-faint); margin-top: .1rem; }

/* ---------- Gallery filter row ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: clamp(1.4rem, 1rem + 1.5vw, 2.2rem); }

/* ---------- Captioned split media ---------- */
.split__media figcaption,
.figure-note { margin-top: .7rem; font-size: var(--step--1); color: var(--text-faint); }
figure.split__media { margin: 0; }

/* ---------- Long-form prose (policy pages) ---------- */
.prose { max-width: 74ch; }
.prose > * + * { margin-top: 1.05rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2.4rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.6rem; }
.prose p, .prose li { color: var(--text-soft); }
.prose ul, .prose ol { padding-left: 1.2rem; display: grid; gap: .5rem; }
.prose li { list-style: disc; }
.prose a { color: var(--accent); }

/* ---------- Small brand rule ---------- */
.rule-brand {
  height: 4px; width: 64px; border-radius: 4px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-wine));
}

/* ==========================================================================
   Café Mellow — premium layer
   Cinematic hero, glass chrome, film grain, scroll choreography.
   Additive: delete this block and the site still works.
   ========================================================================== */

:root {
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --ring: 0 0 0 1px color-mix(in srgb, var(--text) 8%, transparent);
  --glass: color-mix(in srgb, var(--bg) 72%, transparent);
}

h1, h2, h3, .lede { text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------- Film grain: one fixed layer, costs nothing ---------- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

/* ---------- Reading-progress hairline ---------- */
.progress {
  position: fixed; inset: 0 auto auto 0; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand-orange), #F5B04F);
  z-index: 200; pointer-events: none;
}

/* ---------- Glass header ---------- */
.header {
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.header.is-stuck { box-shadow: 0 1px 0 var(--line-soft), 0 12px 32px -24px rgba(0,0,0,.5); }

/* The registered mark, set properly, wherever the name is typeset. */
.brand__name::after,
.rmark::after {
  content: "\00AE"; font-size: .46em; vertical-align: super;
  margin-left: .1em; color: var(--accent); font-weight: 500; letter-spacing: 0;
}

/* ---------- Cinematic hero ---------- */
.hero-cine {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: min(94vh, 920px);
  display: grid; align-items: end;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
}
.hero-cine__media { position: absolute; inset: 0; z-index: -2; }
.hero-cine__media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroDrift 28s var(--ease-in-out) infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1.02); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .hero-cine__media img { animation: none; } }
.hero-cine::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(12,5,8,.66) 0%, rgba(12,5,8,.20) 30%, rgba(12,5,8,.72) 70%, rgba(12,5,8,.95) 100%),
    radial-gradient(70% 60% at 16% 84%, rgba(234,124,37,.22), transparent 70%);
}
.hero-cine__inner { padding-block: clamp(3rem, 2rem + 6vw, 6.5rem); color: #FFF7EE; }
.hero-cine h1 {
  font-size: clamp(2.5rem, 1.1rem + 6.2vw, 6.2rem);
  line-height: .96; font-weight: 600; letter-spacing: -.026em;
  max-width: 17ch; text-shadow: 0 2px 40px rgba(0,0,0,.35);
}
.hero-cine h1 em { font-style: italic; font-weight: 400; color: #FFC98A; }
.hero-cine .lede { color: rgba(255,247,238,.87); max-width: 46ch; margin-top: 1.4rem; }
.hero-cine .btn-row { margin-top: 2rem; }
.hero-cine .btn--ghost {
  --btn-fg: #FFF7EE; --btn-bd: rgba(255,247,238,.42);
  backdrop-filter: blur(10px); background: rgba(255,255,255,.06);
}
.hero-cine .btn--ghost:hover { --btn-fg: #fff; --btn-bd: #fff; background: rgba(255,255,255,.14); }
.hero-cine .status-pill {
  background: rgba(255,255,255,.10); border-color: rgba(255,247,238,.28);
  color: #FFF7EE; backdrop-filter: blur(10px);
}
.hero-cine .status-pill small { color: rgba(255,247,238,.72); }
.hero-cine__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; translate: -50% 0;
  display: grid; justify-items: center; gap: .45rem;
  color: rgba(255,247,238,.6); font-size: .64rem;
  letter-spacing: .24em; text-transform: uppercase;
}
.hero-cine__scroll span { display: block; width: 1px; height: 34px; background: linear-gradient(rgba(255,247,238,.7), transparent); }

/* Word-by-word entrance */
.kinetic > span { display: inline-block; overflow: hidden; vertical-align: bottom; }
.kinetic > span > i {
  display: inline-block; font-style: inherit;
  transform: translateY(106%); opacity: 0;
  transition: transform .9s var(--ease-out), opacity .9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.kinetic.is-in > span > i { transform: none; opacity: 1; }
html:not(.js) .kinetic > span > i { transform: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) { .kinetic > span > i { transform: none; opacity: 1; } }

/* ---------- Proof bar ---------- */
.proof { border-bottom: 1px solid var(--line-soft); background: var(--surface); }
.proof__grid {
  display: grid; gap: clamp(1rem, .5rem + 2vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  padding-block: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.proof__item { display: grid; gap: .3rem; }
.proof__item strong {
  font-family: var(--font-display); font-size: var(--step-3);
  line-height: 1; font-weight: 600; letter-spacing: -.02em;
  display: flex; align-items: baseline; gap: .3rem;
}
.proof__item strong svg { width: .68em; height: .68em; color: var(--accent); translate: 0 .04em; }
.proof__item span { font-size: var(--step--1); color: var(--text-faint); line-height: 1.45; }

/* ---------- Section numbering ---------- */
.eyebrow--num { display: inline-flex; align-items: center; gap: .7rem; }
.eyebrow--num b {
  font-family: var(--font-display); font-size: .92rem; font-weight: 600;
  color: var(--accent); font-variant-numeric: tabular-nums;
}

/* ---------- Parallax bands ---------- */
.photo-band img { will-change: transform; }
.photo-band[data-parallax] img { height: 130%; top: -15%; }

/* ---------- Mosaic refinement ---------- */
.mosaic figure { box-shadow: var(--ring); }
.mosaic figcaption {
  background: rgba(20,8,13,.6); color: #FFF7EE; backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14); box-shadow: none;
}

/* ---------- Cards ---------- */
.card, .panel, .feature, .quote { box-shadow: var(--ring), var(--shadow-sm); }
.card { transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out); }
.card:hover { transform: translateY(-6px); box-shadow: var(--ring), var(--shadow-lg); }
.card__foot .btn--sm { padding-inline: .85rem; }

/* ---------- Buttons: sheen ---------- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.26) 50%, transparent 70%);
  transform: translateX(-100%);
}
.btn:hover::after { opacity: 1; animation: sheen .75s var(--ease-out); }
@keyframes sheen { to { transform: translateX(100%); } }

/* ---------- Ratings ---------- */
.rating-hero {
  display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center;
  gap: clamp(.8rem, .4rem + 1.4vw, 1.4rem); margin-bottom: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.rating-chip {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1.35rem; border-radius: var(--radius-pill);
  background: var(--surface); box-shadow: var(--ring), var(--shadow-sm);
}
.rating-chip__score { font-family: var(--font-display); font-size: var(--step-2); font-weight: 600; line-height: 1; }
.rating-chip__meta { display: grid; gap: .12rem; }
.rating-chip__meta b { font-size: .88rem; }
.rating-chip__meta span { font-size: var(--step--1); color: var(--text-faint); }
.rating-chip .stars { margin: 0 0 .18rem; }
.rating-chip .stars svg { width: 13px; height: 13px; }

.quote { border-radius: var(--radius-lg); }
.quote__badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-faint); border: 1px solid var(--line-soft);
  padding: .2rem .58rem; border-radius: var(--radius-pill); margin-left: auto;
}
.quote footer {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center; gap: .7rem;
}
.quote footer > div { min-width: 0; }
.quote__badge { margin-left: 0; white-space: nowrap; align-self: center; }
@media (max-width: 420px) {
  .quote footer { grid-template-columns: auto minmax(0, 1fr); }
  .quote__badge { grid-column: 2; justify-self: start; margin-top: .35rem; }
}

/* ---------- Ordering steps ---------- */
.steps { counter-reset: step; display: grid; gap: clamp(1rem, .6rem + 1.4vw, 1.5rem); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; padding: 1.7rem 1.4rem 1.5rem;
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--ring), var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--ring), var(--shadow-md); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-size: 2.1rem;
  line-height: 1; font-weight: 600; color: var(--accent); opacity: .9; margin-bottom: .7rem;
}
.step h3 { font-size: var(--step-1); }
.step p { color: var(--text-soft); font-size: .93rem; margin-top: .35rem; }

/* ---------- Amenity chips ---------- */
.amenities { display: flex; flex-wrap: wrap; gap: .55rem; }
.amenities.center { justify-content: center; }
.amenity {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line-soft); background: var(--surface);
  font-size: .87rem; font-weight: 500; color: var(--text-soft);
}
.amenity svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* ---------- Staggered reveal ---------- */
.js .reveal-group > * { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal-group.is-visible > * { opacity: 1; transform: none; }
.js .reveal-group.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.js .reveal-group.is-visible > *:nth-child(2) { transition-delay: 70ms; }
.js .reveal-group.is-visible > *:nth-child(3) { transition-delay: 140ms; }
.js .reveal-group.is-visible > *:nth-child(4) { transition-delay: 210ms; }
.js .reveal-group.is-visible > *:nth-child(5) { transition-delay: 280ms; }
.js .reveal-group.is-visible > *:nth-child(6) { transition-delay: 350ms; }
.js .reveal-group.is-visible > *:nth-child(n+7) { transition-delay: 420ms; }
@media (prefers-reduced-motion: reduce) { .js .reveal-group > * { opacity: 1; transform: none; } }

/* ---------- Split media polish ---------- */
.split__media { box-shadow: var(--ring), var(--shadow-lg); }

/* ---------- Marquee: wine band ---------- */
.marquee { background: var(--brand-wine); border-block: 0; }
.marquee span { color: rgba(255,247,238,.9); }
.marquee span::after { color: var(--brand-orange); }
:root[data-theme="dark"] .marquee { background: #2A0A16; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .marquee { background: #2A0A16; } }

/* ---------- Menu page polish ---------- */
.menu-toolbar { backdrop-filter: saturate(180%) blur(16px); background: var(--glass); }
.dish { transition: background .2s var(--ease-out); border-radius: var(--radius); }
.dish:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
.menu-hero-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--ring), var(--shadow-md);
}
.menu-hero-strip figure { margin: 0; aspect-ratio: 1; overflow: hidden; background: var(--sand); }
.menu-hero-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.menu-hero-strip figure:hover img { transform: scale(1.06); }
@media (max-width: 640px) { .menu-hero-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Header floats over the cinematic hero until you scroll ---------- */
body:has(.hero-cine) .header {
  background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: none; border-bottom-color: transparent;
}
body:has(.hero-cine) .header:not(.is-stuck) { color: #FFF7EE; }
body:has(.hero-cine) .header:not(.is-stuck) .brand__name,
body:has(.hero-cine) .header:not(.is-stuck) .nav a,
body:has(.hero-cine) .header:not(.is-stuck) .icon-btn { color: #FFF7EE; }
body:has(.hero-cine) .header:not(.is-stuck) .brand__tag { color: rgba(255,247,238,.62); }
body:has(.hero-cine) .header:not(.is-stuck) .nav a:hover { background: rgba(255,255,255,.13); }
body:has(.hero-cine) .header:not(.is-stuck) .icon-btn { border-color: rgba(255,247,238,.34); }
body:has(.hero-cine) .header:not(.is-stuck) .icon-btn:hover { border-color: #fff; }
body:has(.hero-cine) .header:not(.is-stuck) .nav a[aria-current="page"] { color: #fff; }
body:has(.hero-cine) .header.is-stuck {
  background: var(--glass);
  backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line-soft), 0 12px 32px -24px rgba(0,0,0,.5);
}

/* ---------- Footer legal identity ---------- */
.footer__legal {
  margin-top: .9rem; font-size: .82rem; line-height: 1.65;
  color: var(--text-faint); max-width: 34ch;
}
.footer__legal span:first-child { color: var(--text-soft); font-weight: 600; }
.footer__reg {
  margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  font-size: .8rem; color: var(--text-faint);
}
.footer__reg b {
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  font-size: .68rem; color: var(--text-faint); margin-right: .3rem;
}
.footer__reg span { font-variant-numeric: tabular-nums; }
.footer__reg a { font-size: inherit; }
.footer__bar { margin-top: 1.2rem; }

/* ---------- Legal detail block on policy pages ---------- */
.legal-card {
  border: 1px solid var(--line-soft); background: var(--bg-alt);
  border-radius: var(--radius); padding: 1.1rem 1.3rem;
  display: grid; gap: .45rem; font-size: .88rem; margin-bottom: 1.6rem;
}
.legal-card dl { display: grid; grid-template-columns: auto 1fr; gap: .35rem 1rem; margin: 0; }
.legal-card dt {
  font-size: .68rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 700; align-self: baseline;
}
.legal-card dd { margin: 0; color: var(--text-soft); }
@media (max-width: 520px) {
  .legal-card dl { grid-template-columns: 1fr; gap: .1rem .5rem; }
  .legal-card dd { margin-bottom: .5rem; }
}

/* ---------- Landmark line ---------- */
.landmark {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--accent);
}
.landmark svg { width: 16px; height: 16px; flex: none; }

@media print {
  .header, .footer, .fab, .tray, .menu-toolbar, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
