/* ═══════════════════════════════════════════════════════════════
   fachwerk · Restaurant Bergisch Neukirchen
   Design system — dark timber, candlelight gold, shutter green
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* palette sampled directly from the restaurant's own facade photos */
  --ink:        #14100a;   /* aged timber, near black   */
  --ink-2:      #1b160f;   /* raised surfaces           */
  --ink-3:      #241e16;   /* cards on dark             */
  --ink-blue:   #222c31;   /* night sky over the roof   */
  --cream:      #f5edde;   /* rendered wall             */
  --cream-2:    #ece0ca;
  --paper:      #faf5ea;
  --gold:       #c8a15a;   /* candlelight               */
  --gold-soft:  #e4cb92;
  --gold-deep:  #9d7b39;
  --ember:      #b8752b;   /* warm lamp glow            */
  --green:      #2f7a5c;   /* the emerald shutters      */
  --green-soft: #3f9370;
  --green-deep: #1b4736;
  --wine:       #8c3b34;
  --text:       #f0e8da;
  --text-dim:   #b8ac98;
  --text-ink:   #211a11;
  --text-ink-dim: #5c5342;

  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script:"Italianno", "Brush Script MT", cursive;

  --nav-h: 76px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,.55);
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-smooth: cubic-bezier(.4,0,.15,1);
}

/* ── base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }

body.no-scroll { overflow: hidden; }

.container { width: min(1180px, calc(100% - 2 * clamp(20px, 4vw, 48px))); margin-inline: auto; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--gold); color: var(--ink); font-weight: 700;
  padding: 10px 18px; border-radius: 8px; transition: top .25s;
}
.skip-link:focus { top: 12px; }

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

/* ── preloader ───────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  background: var(--ink);
  transition: opacity .7s var(--ease-out), visibility .7s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-house { width: clamp(84px, 12vw, 120px); color: var(--gold); overflow: visible; }
.pl-stroke {
  stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 260; stroke-dashoffset: 260;
  animation: plDraw 1.6s var(--ease-out) forwards;
}
.pl-stroke:nth-child(2) { animation-delay: .15s; }
.pl-stroke:nth-child(3) { animation-delay: .35s; }
.pl-stroke:nth-child(4) { animation-delay: .45s; }
.pl-stroke:nth-child(5) { animation-delay: .55s; }
.pl-stroke:nth-child(6) { animation-delay: .65s; }
.pl-stroke:nth-child(7) { animation-delay: .8s; }
.pl-stroke:nth-child(8) { animation-delay: .1s; }
@keyframes plDraw { to { stroke-dashoffset: 0; } }
.preloader-word {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: .12em; color: var(--cream);
  margin-top: 18px; opacity: 0; animation: plFade .8s .5s var(--ease-out) forwards;
}
.preloader-sub {
  font-size: .78rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold);
  margin-top: 6px; opacity: 0; animation: plFade .8s .8s var(--ease-out) forwards;
}
@keyframes plFade { to { opacity: 1; } }

/* ── scroll progress ─────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 210;
  background: transparent; pointer-events: none;
}
#scrollProgressBar {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  transform-origin: 0 0; transform: scaleX(0);
}

/* ── navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .45s var(--ease-out), box-shadow .45s, backdrop-filter .45s;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px -18px rgba(0,0,0,.8);
}
.nav-inner {
  width: min(1320px, calc(100% - 40px)); margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 34px; color: var(--gold); flex: none; transition: transform .4s var(--ease-spring); }
.brand:hover .brand-mark { transform: translateY(-2px) rotate(-3deg); }
.brand-word {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: .06em;
  color: var(--cream); line-height: 1; display: flex; flex-direction: column; gap: 3px;
}
.brand-word small {
  font-family: var(--sans); font-size: .58rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.nav-links { display: flex; gap: clamp(14px, 2.2vw, 30px); }
.nav-links a {
  position: relative; font-size: .86rem; font-weight: 600; letter-spacing: .08em;
  padding: 8px 2px; color: var(--text);
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-soft); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* language switcher */
.lang { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 12px; border-radius: 999px;
  border: 1px solid rgba(233,220,190,.25);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  transition: border-color .3s, background .3s;
}
.lang-btn:hover { border-color: var(--gold); background: rgba(201,163,92,.08); }
.lang-globe svg { width: 15px; height: 15px; display: block; color: var(--gold); }
.lang-caret { width: 9px; transition: transform .3s; }
.lang.open .lang-caret { transform: rotate(180deg); }
.lang-list {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 190px;
  background: var(--ink-2); border: 1px solid rgba(233,220,190,.14);
  border-radius: var(--radius); padding: 8px; z-index: 20;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(-8px) scale(.97); pointer-events: none;
  transition: opacity .28s var(--ease-out), transform .28s var(--ease-out);
}
.lang.open .lang-list { opacity: 1; transform: none; pointer-events: auto; }
.lang-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px; font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: background .2s, color .2s;
}
.lang-list li:hover { background: rgba(201,163,92,.12); color: var(--gold-soft); }
.lang-list li[aria-selected="true"] { color: var(--gold); font-weight: 700; }
.lang-flag { font-size: 1rem; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  font-size: .85rem; font-weight: 700; letter-spacing: .06em;
  transition: transform .3s var(--ease-spring), box-shadow .3s, background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-lg { padding: 16px 30px; font-size: .92rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #221a0d;
  box-shadow: 0 10px 30px -10px rgba(201,163,92,.5);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.55) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
}
.btn-gold:hover::before { transform: translateX(120%); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(201,163,92,.65); }
.btn-ghost {
  border: 1px solid rgba(233,220,190,.35); color: var(--cream);
  background: rgba(20,16,11,.25);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 250; }
.burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease-out), visibility .4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-links a {
  font-family: var(--serif); font-size: clamp(1.7rem, 6vw, 2.4rem); font-weight: 500;
  padding: 6px 18px; color: var(--cream);
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .3s;
}
.mobile-links a:hover { color: var(--gold-soft); }
.mobile-links a.btn { font-family: var(--sans); font-size: .95rem; margin-top: 18px; color: #221a0d; }
.mobile-menu.open .mobile-links a { opacity: 1; transform: none; }
.mobile-menu.open .mobile-links a:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .mobile-links a:nth-child(2) { transition-delay: .14s; }
.mobile-menu.open .mobile-links a:nth-child(3) { transition-delay: .2s; }
.mobile-menu.open .mobile-links a:nth-child(4) { transition-delay: .26s; }
.mobile-menu.open .mobile-links a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.open .mobile-links a:nth-child(6) { transition-delay: .38s; }
.mobile-menu-foot { text-align: center; font-size: .85rem; color: var(--text-dim); }
.mobile-menu-foot a { color: var(--gold); font-weight: 700; letter-spacing: .06em; }

/* ── hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 20px 90px;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  animation: kenburns 26s ease-in-out infinite alternate;
  filter: saturate(1.05) brightness(.96);
}
@keyframes kenburns {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.14) translateY(-2%); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(18,14,9,.92) 20%, transparent 60%),
    radial-gradient(150% 100% at 50% -20%, rgba(10,8,6,.75) 25%, transparent 60%),
    linear-gradient(180deg, rgba(14,11,8,.62), rgba(14,11,8,.35) 40%, rgba(14,11,8,.86));
}
.hero-grain {
  position: absolute; inset: -50%; z-index: -1; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .06 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-4%,-6%); }
  20% { transform: translate(-10%,4%); } 30% { transform: translate(6%,-8%); }
  40% { transform: translate(-4%,12%); } 50% { transform: translate(-10%,6%); }
  60% { transform: translate(12%,0); } 70% { transform: translate(0,10%); }
  80% { transform: translate(-12%,0); } 90% { transform: translate(8%,4%); }
}
.hero-embers { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin-inline: auto; }
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: clamp(.62rem, 1.6vw, .78rem); font-weight: 700;
  letter-spacing: .38em; text-transform: uppercase; color: var(--gold-soft);
}
.eyebrow-line { width: clamp(24px, 6vw, 60px); height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow-line:last-child { transform: scaleX(-1); }
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(4.2rem, 14vw, 9.5rem);
  line-height: .95; letter-spacing: .02em; color: var(--cream);
  margin: 10px 0 0;
  text-shadow: 0 10px 60px rgba(0,0,0,.55);
}
.hero-word { display: inline-block; }
.hero-script {
  font-family: var(--script); font-size: clamp(1.9rem, 5vw, 3rem);
  color: var(--gold-soft); line-height: 1.1; margin-top: 2px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero-lead {
  max-width: 620px; margin: 18px auto 0;
  font-size: clamp(.95rem, 2.4vw, 1.08rem); font-weight: 400; color: #ded3bd;
  text-wrap: balance;
}
.hero-rotator { margin-top: 18px; height: 34px; overflow: hidden; }
.rotator-label {
  display: inline-block;
  font-family: var(--serif); font-style: italic; font-size: 1.45rem; color: var(--gold);
  transition: transform .5s var(--ease-out), opacity .5s;
}
.rotator-label.out { transform: translateY(-120%); opacity: 0; transition-duration: .35s; }
.rotator-label.in  { transform: translateY(120%); opacity: 0; transition: none; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600; letter-spacing: .05em;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(20,16,11,.55); border: 1px solid rgba(233,220,190,.18);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.chip svg { width: 13px; height: 13px; color: var(--gold); }
.chip-status .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #58c98a; position: relative; flex: none;
}
.chip-status .pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid #58c98a; animation: pulse 2s ease-out infinite;
}
.chip-status.closed .pulse { background: #d68a5c; }
.chip-status.closed .pulse::after { border-color: #d68a5c; }
@keyframes pulse { from { transform: scale(.6); opacity: 1; } to { transform: scale(1.6); opacity: 0; } }
.chip-small { font-size: .7rem; padding: 6px 12px; }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .64rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-soft); z-index: 1;
}
.hero-scroll-line {
  width: 1px; height: 46px; overflow: hidden; position: relative;
  background: rgba(233,220,190,.2);
}
.hero-scroll-line::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--gold); animation: scrollLine 2s var(--ease-out) infinite;
}
@keyframes scrollLine { to { top: 110%; } }

/* hero entrance */
.reveal-hero { opacity: 0; transform: translateY(26px); filter: blur(6px); }
body.loaded .reveal-hero {
  animation: heroIn 1s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroIn { to { opacity: 1; transform: none; filter: none; } }

/* ── marquee ─────────────────────────────────────────────────── */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-block: 1px solid rgba(201,163,92,.25);
  background: var(--ink-2);
  padding: 16px 0;
  position: relative; z-index: 2;
}
.marquee-track { display: inline-flex; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic; letter-spacing: .14em;
  color: var(--text-dim); padding: 0 26px; display: inline-flex; align-items: center; gap: 26px;
  text-transform: uppercase;
}
.marquee-item::after { content: "✦"; color: var(--gold); font-style: normal; font-size: .8rem; }

/* ── generic sections ────────────────────────────────────────── */
.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
/* skip rendering work for off-screen sections (keeps scroll buttery) */
.signature, .experience, .awards, .reviews, .faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
.section-cream { background: var(--cream); color: var(--text-ink); }
.section-eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.section-cream .section-eyebrow { color: var(--green); }
.section-cream .section-eyebrow::before { background: var(--green); }
.section-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.12; letter-spacing: .01em;
  max-width: 700px; text-wrap: balance;
}
.section-sub { margin-top: 16px; max-width: 560px; color: var(--text-dim); font-size: 1.02rem; }
.section-cream .section-sub { color: var(--text-ink-dim); }
.lead { font-size: 1.08rem; font-weight: 500; margin-top: 20px; }

/* scroll reveals */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
.reveal.visible { opacity: 1; transform: none; }

/* ── story ───────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.story-media { position: relative; }
.framed { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.framed img { aspect-ratio: 4/4.6; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease-out); }
.framed:hover img { transform: scale(1.045); }
.framed-border {
  position: absolute; inset: 14px; border: 1px solid rgba(244,236,221,.5);
  border-radius: calc(var(--radius-lg) - 8px); pointer-events: none;
}
.story-badge {
  position: absolute; right: -18px; bottom: 34px;
  display: flex; flex-direction: column-reverse; align-items: center; gap: 2px;
  background: linear-gradient(150deg, var(--green), var(--green-deep));
  color: var(--cream); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: 0 18px 40px -14px rgba(29,71,55,.7);
  font-size: .62rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  rotate: 3deg;
}
.story-badge-year { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; letter-spacing: .04em; line-height: 1; }
.story-copy p.section-eyebrow { margin-bottom: 14px; }
.story-copy > p:not(.section-eyebrow) { margin-top: 18px; color: var(--text-dim); }
.story-copy .lead { color: var(--text); }
.story-features { margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 26px; }
.story-features li { display: flex; gap: 14px; align-items: flex-start; }
.feat-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(201,163,92,.1); border: 1px solid rgba(201,163,92,.3); color: var(--gold);
}
.feat-icon svg { width: 22px; height: 22px; }
.story-features strong { display: block; font-size: .95rem; letter-spacing: .02em; color: var(--cream); }
.story-features span:not(.feat-icon) { font-size: .84rem; color: var(--text-dim); line-height: 1.5; display: block; margin-top: 2px; }
.counters {
  margin-top: 38px; padding-top: 30px; border-top: 1px solid rgba(233,220,190,.14);
  display: flex; gap: clamp(26px, 5vw, 60px); flex-wrap: wrap;
}
.counter-num {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 700; color: var(--gold);
  line-height: 1; display: block; font-variant-numeric: tabular-nums;
}
.counter-label { font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); margin-top: 8px; display: block; }

/* ── signature cards ─────────────────────────────────────────── */
.sig-grid {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px);
}
.sig-card {
  background: #fffdf7; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 14px 44px -18px rgba(36,29,19,.35);
  transition: transform .45s var(--ease-out), box-shadow .45s;
  transform-style: preserve-3d; will-change: transform;
}
.sig-card:hover { box-shadow: 0 30px 70px -24px rgba(36,29,19,.5); }
.sig-media { overflow: hidden; aspect-ratio: 16/10.5; position: relative; }
.sig-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(20,15,9,.28));
}
.sig-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.sig-card:hover .sig-media img { transform: scale(1.07); }
.sig-body { padding: 22px 24px 26px; position: relative; }
.sig-tag {
  display: inline-block; font-size: .62rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); background: rgba(46,107,82,.1); border: 1px solid rgba(46,107,82,.25);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 12px;
}
.sig-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--text-ink); line-height: 1.15; }
.sig-body p { font-size: .88rem; color: var(--text-ink-dim); margin-top: 8px; }
.sig-price {
  display: inline-block; margin-top: 14px;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--gold-deep);
}

/* ── chef band ───────────────────────────────────────────────── */
.chef { position: relative; padding: clamp(110px, 16vw, 190px) 0; overflow: hidden; }
.chef-bg { position: absolute; inset: 0; }
.chef-bg img { width: 100%; height: 115%; object-fit: cover; object-position: center 30%; will-change: transform; }
.chef-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,12,8,.93) 25%, rgba(16,12,8,.55) 60%, rgba(16,12,8,.35));
}
.chef-content { position: relative; max-width: 760px; margin-left: clamp(20px, 8vw, 120px); }
.chef-quotemark { width: 54px; color: var(--gold); opacity: .9; margin-bottom: 24px; }
.chef blockquote p {
  font-family: var(--serif); font-size: clamp(1.4rem, 3.4vw, 2.1rem); font-weight: 500;
  font-style: italic; line-height: 1.4; color: var(--cream); text-wrap: balance;
}
.chef blockquote footer { margin-top: 26px; display: flex; flex-direction: column; gap: 2px; }
.chef blockquote strong { font-family: var(--serif); font-size: 1.2rem; letter-spacing: .05em; color: var(--gold-soft); }
.chef blockquote footer span { font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--text-dim); }

/* ── menu ────────────────────────────────────────────────────── */
.menu-toolbar {
  margin-top: clamp(30px, 5vw, 48px);
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.menu-search {
  flex: 1 1 300px; max-width: 420px;
  display: flex; align-items: center; gap: 12px;
  background: var(--ink-3); border: 1px solid rgba(233,220,190,.16);
  border-radius: 999px; padding: 12px 20px;
  transition: border-color .3s, box-shadow .3s;
}
.menu-search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,163,92,.12); }
.menu-search svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.menu-search input { flex: 1; background: none; border: 0; outline: 0; color: var(--text); font: inherit; font-size: .92rem; }
.menu-search input::placeholder { color: var(--text-dim); }
.menu-legend { display: flex; align-items: center; gap: 8px; font-size: .74rem; color: var(--text-dim); flex-wrap: wrap; }
.menu-legend > span:not(.badge) { margin-right: 10px; }
.badge {
  display: inline-grid; place-items: center; min-width: 21px; height: 21px; padding: 0 5px;
  border-radius: 6px; font-size: .62rem; font-weight: 800; letter-spacing: .02em;
}
.badge-veg   { background: rgba(88,160,110,.18); color: #7fce9f; border: 1px solid rgba(88,160,110,.45); }
.badge-vegan { background: rgba(120,180,90,.16); color: #a2d77e; border: 1px solid rgba(120,180,90,.4); }
.badge-genuss{ background: rgba(201,163,92,.15); color: var(--gold-soft); border: 1px solid rgba(201,163,92,.45); }

.menu-tabs-wrap { margin-top: 26px; position: sticky; top: calc(var(--nav-h) + 4px); z-index: 60; }
.menu-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding: 10px;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(233,220,190,.12); border-radius: 16px;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: none; padding: 9px 17px; border-radius: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; color: var(--text-dim);
  transition: background .3s, color .3s;
  white-space: nowrap;
}
.menu-tab:hover { color: var(--gold-soft); background: rgba(201,163,92,.08); }
.menu-tab.active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
  color: #221a0d;
}
.menu-panel { margin-top: clamp(28px, 5vw, 44px); min-height: 300px; }
.menu-group + .menu-group { margin-top: 46px; }
.menu-group-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-soft);
  letter-spacing: .04em; display: flex; align-items: center; gap: 18px;
}
.menu-group-title::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(201,163,92,.4), transparent); }
.menu-group-note { font-size: .82rem; color: var(--text-dim); font-style: italic; margin-top: 4px; }
.menu-items { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 44px; }
.menu-item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 13px 10px; border-radius: 12px;
  transition: background .25s;
  animation: itemIn .55s var(--ease-out) backwards;
  animation-delay: calc(var(--i, 0) * 28ms);
}
@keyframes itemIn { from { opacity: 0; transform: translateY(14px); } }
.menu-item:hover { background: rgba(233,220,190,.045); }
.menu-item-row { display: flex; align-items: baseline; gap: 10px; }
.menu-item-name {
  font-family: var(--serif); font-size: 1.13rem; font-weight: 700; letter-spacing: .03em; color: var(--cream);
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.menu-item-name .badge { translate: 0 -1px; }
.menu-dots { flex: 1; border-bottom: 1px dotted rgba(233,220,190,.28); transform: translateY(-4px); min-width: 20px; }
.menu-item-price { font-family: var(--serif); font-size: 1.08rem; font-weight: 700; color: var(--gold); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item-desc { font-size: .84rem; color: var(--text-dim); line-height: 1.55; max-width: 52ch; }
.menu-variants { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 4px; }
.menu-variant { font-size: .8rem; color: var(--text-dim); }
.menu-variant b { color: var(--gold); font-weight: 700; font-variant-numeric: tabular-nums; }
.menu-empty { text-align: center; padding: 60px 0; color: var(--text-dim); font-style: italic; }
.menu-note { margin-top: 44px; font-size: .78rem; color: var(--text-dim); max-width: 640px; }

/* ── experience ──────────────────────────────────────────────── */
.exp-grid { margin-top: clamp(40px, 6vw, 60px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 32px); }
.exp-card {
  background: #fffdf7; border-radius: var(--radius-lg); padding: 36px 30px;
  box-shadow: 0 14px 44px -18px rgba(36,29,19,.3);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  position: relative; overflow: hidden;
}
.exp-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
}
.exp-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -22px rgba(36,29,19,.45); }
.exp-card:hover::before { transform: scaleX(1); }
.exp-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(46,107,82,.1); border: 1px solid rgba(46,107,82,.28); color: var(--green);
  margin-bottom: 20px;
}
.exp-icon svg { width: 30px; height: 30px; }
.exp-card h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--text-ink); }
.exp-card p { font-size: .9rem; color: var(--text-ink-dim); margin-top: 10px; }

/* ── awards ──────────────────────────────────────────────────── */
.awards { background: linear-gradient(180deg, var(--ink), var(--ink-2)); }
.awards-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.awards-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.awards-list li { display: flex; gap: 14px; align-items: baseline; font-size: .96rem; color: var(--text); }
.awards-list li > span:first-child { color: var(--gold); }
.awards-copy > p:not(.section-eyebrow) { margin-top: 18px; color: var(--text-dim); }
.awards-media { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.awards-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); rotate: -1.5deg; transition: rotate .4s var(--ease-spring), transform .4s var(--ease-spring); }
.awards-img:hover { rotate: 0deg; transform: scale(1.02); }
.awards-badge { width: 150px; filter: drop-shadow(0 12px 24px rgba(0,0,0,.5)); }

/* ── contact ─────────────────────────────────────────────────── */
.contact { background: var(--ink); }
.contact-grid {
  margin-top: clamp(36px, 6vw, 56px);
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
}
.contact-card {
  background: var(--ink-3); border: 1px solid rgba(233,220,190,.12);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px);
}
.contact-card h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--cream); }
.contact-card > p { color: var(--text-dim); font-size: .92rem; margin-top: 10px; }
.contact-phone {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 22px;
  font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: var(--gold);
  transition: color .3s;
}
.contact-phone:hover { color: var(--gold-soft); }
.contact-phone svg { width: 30px; height: 30px; }
.contact-mail { display: block; margin-top: 6px; color: var(--text-dim); font-size: .9rem; transition: color .3s; }
.contact-mail:hover { color: var(--gold-soft); }
.hours { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(233,220,190,.12); }
.hours-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.hours-head h4 { font-size: .78rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.hours-list { margin-top: 16px; display: flex; flex-direction: column; }
.hours-list > div {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 8px 10px; border-radius: 8px; font-size: .9rem;
}
.hours-list dt { color: var(--text-dim); }
.hours-list dd { font-variant-numeric: tabular-nums; color: var(--text); }
.hours-list > div.today { background: rgba(201,163,92,.1); }
.hours-list > div.today dt, .hours-list > div.today dd { color: var(--gold-soft); font-weight: 700; }
.contact-map { display: flex; flex-direction: column; gap: 18px; }
.map-frame {
  position: relative; flex: 1; min-height: 320px;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink-3) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23262019' stroke-width='1'/%3E%3C/svg%3E");
  border: 1px solid rgba(233,220,190,.12);
  display: grid; place-items: center;
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.02); }
.contact-address { font-style: normal; font-size: .92rem; color: var(--text-dim); line-height: 1.7; }
.contact-address strong { color: var(--cream); }
.contact-map > .btn { align-self: flex-start; }
.map-load { align-self: center; justify-self: center; }

/* ── hero rating chip ────────────────────────────────────────── */
.chip-link { transition: border-color .3s, background .3s, transform .3s; }
.chip-link:hover { border-color: var(--gold); background: rgba(201,163,92,.12); transform: translateY(-1px); }
.chip-stars { color: var(--gold); letter-spacing: 1px; font-size: .72rem; }

/* ── reviews ─────────────────────────────────────────────────── */
.reviews { --lift: 0; }
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 30px; justify-content: space-between; margin-top: 8px; }
.rating-summary { display: flex; align-items: center; gap: 14px; }
.rating-stars { position: relative; display: inline-block; font-size: 1.4rem; line-height: 1; letter-spacing: 3px; }
.rating-stars .stars-track { color: rgba(46,107,82,.24); }
.rating-stars .stars-fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: var(--gold); }
.rating-meta { display: inline-flex; align-items: baseline; gap: 4px; font-family: var(--serif); }
.rating-meta strong { font-size: 2rem; font-weight: 700; color: var(--text-ink); }
.rating-meta span { font-size: 1rem; color: var(--text-ink-dim); }
.rating-platforms {
  margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px;
}
.rating-platform {
  display: flex; align-items: baseline; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: #fffdf7; border: 1px solid rgba(46,107,82,.18);
  box-shadow: 0 6px 20px -12px rgba(36,29,19,.4);
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
}
.rating-platform:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -14px rgba(36,29,19,.5); border-color: var(--green); }
.rating-platform strong { font-family: var(--serif); font-size: 1.15rem; color: var(--green); font-weight: 700; }
.rating-platform span { font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--text-ink-dim); }
.reviews-grid {
  margin-top: clamp(30px, 5vw, 46px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 26px);
}
.review-card {
  background: #fffdf7; border-radius: var(--radius-lg); padding: 28px 26px;
  box-shadow: 0 14px 40px -20px rgba(36,29,19,.32);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .4s var(--ease-out), box-shadow .4s;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: "\201C"; position: absolute; top: -18px; right: 14px;
  font-family: var(--serif); font-size: 6rem; color: rgba(46,107,82,.08); line-height: 1;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 26px 55px -24px rgba(36,29,19,.45); }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.review-card blockquote { font-family: var(--serif); font-size: 1.24rem; line-height: 1.42; color: var(--text-ink); font-style: italic; }
.review-card figcaption { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 8px; }
.review-author { font-weight: 700; font-size: .9rem; color: var(--text-ink); }
.review-src { font-size: .74rem; font-weight: 600; letter-spacing: .04em; color: var(--green); padding: 3px 10px; border-radius: 999px; background: rgba(46,107,82,.1); }
.reviews-note { margin-top: 30px; font-size: .8rem; color: var(--text-ink-dim); font-style: italic; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-wrap { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 70px); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--nav-h) + 20px); }
.faq-intro > p:not(.section-eyebrow) { margin-top: 16px; color: var(--text-ink-dim); }
.faq-intro .btn { margin-top: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fffdf7; border: 1px solid rgba(36,29,19,.1); border-radius: var(--radius);
  overflow: hidden; transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: rgba(46,107,82,.3); box-shadow: 0 12px 34px -20px rgba(36,29,19,.35); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--serif); font-size: 1.28rem; font-weight: 600; color: var(--text-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex: none; width: 20px; height: 20px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px;
  background: var(--green); border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform .35s var(--ease-spring), opacity .3s;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease-smooth); }
.faq-item[open] .faq-answer { grid-template-rows: 1fr; }
.faq-answer > p { overflow: hidden; padding: 0 24px; color: var(--text-ink-dim); font-size: .96rem; line-height: 1.65; }
.faq-item[open] .faq-answer > p { padding-bottom: 22px; }

/* ── sticky mobile CTA ───────────────────────────────────────── */
.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 140;
  display: none; gap: 10px; align-items: stretch;
  padding: 8px; border-radius: 18px;
  background: color-mix(in srgb, var(--ink-2) 92%, transparent);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(201,163,92,.28);
  box-shadow: 0 16px 40px -14px rgba(0,0,0,.7);
  transform: translateY(140%); transition: transform .5s var(--ease-spring);
}
.mobile-cta.show { transform: none; }
.mobile-cta-call {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 12px; font-weight: 700; font-size: .92rem; color: #221a0d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
}
.mobile-cta-call svg { width: 18px; height: 18px; }
.mobile-cta-menu, .mobile-cta-route {
  flex: none; width: 50px; display: grid; place-items: center;
  border-radius: 12px; color: var(--gold-soft);
  background: rgba(233,220,190,.06); border: 1px solid rgba(233,220,190,.14);
}
.mobile-cta-menu svg, .mobile-cta-route svg { width: 20px; height: 20px; }

/* ── footer ──────────────────────────────────────────────────── */
.footer { background: #0d0a07; border-top: 1px solid rgba(201,163,92,.18); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(28px, 5vw, 60px);
  padding: clamp(50px, 8vw, 80px) 0 40px;
}
.footer-brand p { font-size: .88rem; color: var(--text-dim); margin-top: 18px; max-width: 34ch; }
.footer-social {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  font-size: .84rem; font-weight: 700; color: var(--text-dim); transition: color .3s;
}
.footer-social:hover { color: var(--gold-soft); }
.footer-social svg { width: 17px; height: 17px; color: var(--gold); }
.footer-col h4 { font-size: .72rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: .9rem; color: var(--text-dim); padding: 4px 0; transition: color .3s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(233,220,190,.09); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .78rem; color: var(--text-dim); }
.footer-fine { color: rgba(183,171,151,.75); }

/* ── to top ──────────────────────────────────────────────────── */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink-3); border: 1px solid rgba(201,163,92,.4); color: var(--gold);
  display: grid; place-items: center;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease-spring), background .3s;
}
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); color: var(--ink); }

/* ── responsive ──────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-cta { display: none; }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .menu-items { grid-template-columns: 1fr; gap: 4px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .story-media { max-width: 480px; }
  .story-badge { right: 8px; }
  .awards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .chef-content { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* sticky mobile CTA appears on phones/small tablets */
  .mobile-cta { display: flex; }
  .to-top { bottom: 84px; }
  body { padding-bottom: 0; }
}
@media (max-width: 640px) {
  .sig-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .story-features { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .menu-toolbar { flex-direction: column; align-items: stretch; }
  .menu-search { max-width: none; flex: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hours-list > div { font-size: .84rem; }
}
@media (max-width: 480px) {
  .brand-word { font-size: 1.25rem; }
  .brand-word small { display: none; }
}

/* ── motion preferences ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .hero-bg img { animation: none; }
  .marquee-track { animation: none; }
  .reveal, .reveal-hero { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-embers, .hero-grain { display: none; }
}
