/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #140f0a;
  --bg-2:       #1c150e;
  --card:       #201810;
  --card-hover: #261c13;
  --ink:        #f3ece0;
  --ink-soft:   #d9cdb8;
  --ink-mute:   #a2917a;
  --accent:     #c98a4a;
  --accent-ink: #140f0a;
  --sage:       #7c8a5c;
  --line:       rgba(243, 236, 224, .12);
  --line-soft:  rgba(243, 236, 224, .07);

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  text-wrap: balance; line-height: 1.04; letter-spacing: -0.01em;
  font-family: var(--display); font-weight: 600; color: var(--ink);
}
em { font-style: italic; color: var(--accent); font-weight: 500; }
::selection { background: var(--accent); color: var(--accent-ink); }

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

/* Fondo fijo de vídeo (secuencia de fotogramas atada al scroll) */
.bg-video-layer {
  position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;
  background: var(--bg);
}
.bg-video-layer canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* Legibilidad del texto suelto (fuera de tarjetas con fondo propio) sobre el vídeo.
   Tema oscuro con texto claro: el halo va en negro. */
:is(main, .footer) :is(h1, h2, h3, h4, p, a, span):not(.card *, .testi-card *, .menu-item *, .chat-mock *, .chat-panel *, .gallery-item *) {
  text-shadow: 0 2px 8px rgba(0,0,0,.6), 0 0 26px rgba(0,0,0,.5);
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--accent); color: var(--accent-ink);
  z-index: 9999; border-radius: 8px; font-weight: 700;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 960px) { .container { padding-inline: 2rem; } }

.kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-family: var(--sans);
}

section { position: relative; }
.section-pad { padding-block: clamp(4rem, 9vw, 7.5rem); }
/* Translúcido en vez de opaco: con el vídeo de fondo, una sección opaca lo taparía del todo */
.section-alt { background: rgba(28, 21, 14, .93); }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-top: .8rem; max-width: 22ch; font-style: italic; font-weight: 500; }
.section-lede { color: var(--ink-mute); max-width: 54ch; margin-top: .9rem; font-size: 1.02rem; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem; border-radius: 10px; font-weight: 600; font-size: .95rem;
  font-family: var(--sans);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 0 0 rgba(201,138,74,0); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(201,138,74,.45); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* Nav */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; border-bottom: 1px solid transparent;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out);
}
.nav.is-scrolled { background: rgba(20, 15, 10, .85); backdrop-filter: blur(14px); border-color: var(--line-soft); }
@supports not (backdrop-filter: blur(1px)) {
  .nav.is-scrolled { background: rgba(20, 15, 10, .97); }
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.nav-brand { font-family: var(--display); font-style: italic; font-size: 1.4rem; font-weight: 600; letter-spacing: -0.01em; display: flex; align-items: center; gap: .5rem; color: var(--ink); }
.nav-brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.nav-links { display: none; align-items: center; gap: 1.9rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { position: relative; padding: .25rem 0; font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; padding: .65rem 1.25rem; font-size: .86rem; } }
.nav-burger { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--ink); }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger svg { width: 20px; height: 20px; }

.nav-mobile { position: fixed; inset: 0; z-index: 250; background: var(--bg); display: grid; place-items: center; clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease-soft); }
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
.nav-mobile-list a { font-family: var(--display); font-style: italic; font-size: 1.8rem; font-weight: 600; color: var(--ink); }
.nav-mobile-close { position: absolute; top: 1.4rem; right: 1.4rem; width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); }

/* Pillars */
.pillars { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar-num { font-family: var(--display); font-weight: 600; color: var(--accent); font-size: 1.3rem; margin-bottom: .5rem; font-style: italic; }
.pillar h3 { font-size: 1.05rem; margin-bottom: .5rem; font-style: normal; }
.pillar p { color: var(--ink-mute); font-size: .92rem; }

/* Stats bar */
.stats-bar { padding-block: clamp(2.2rem, 5vw, 3.4rem); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats-grid { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat { text-align: center; }
@media (min-width: 720px) { .stat { text-align: left; } }
.stat-value { font-family: var(--display); font-style: italic; font-weight: 600; color: var(--accent); font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; }
.stat-label { color: var(--ink-mute); font-size: .88rem; margin-top: .6rem; max-width: 26ch; margin-inline: auto; }
@media (min-width: 720px) { .stat-label { margin-inline: 0; } }

/* Steps */
.steps-grid { display: grid; gap: 2rem; margin-top: 3rem; }
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(1, 1fr); } }
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; font-style: normal; }
.step p { color: var(--ink-mute); font-size: .92rem; max-width: 34ch; }

/* Testimonials */
.testi-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { border-radius: 18px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1.1rem; background: var(--card); border: 1px solid var(--line-soft); }
.testi-stars { color: var(--accent); letter-spacing: .12em; font-size: .95rem; }
.testi-quote { font-size: 1rem; color: var(--ink-soft); line-height: 1.55; font-style: italic; font-family: var(--display); font-weight: 400; }
.testi-author { font-size: .85rem; color: var(--ink-mute); }
.testi-author strong { color: var(--ink); font-weight: 600; font-family: var(--sans); }

/* FAQ */
.faq-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 0; font-size: 1.02rem; font-weight: 600; color: var(--ink); font-family: var(--sans); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: transform .35s var(--ease-out), border-color .3s; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--ink-soft); }
.faq-item summary .plus::before { width: 10px; height: 1.5px; }
.faq-item summary .plus::after { width: 1.5px; height: 10px; }
.faq-item[open] summary .plus { transform: rotate(45deg); border-color: var(--accent); }
.faq-item p { padding-bottom: 1.3rem; color: var(--ink-mute); max-width: 60ch; }

/* Concept */
.concept-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .concept-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; } }
.concept-figure { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 40px 70px -30px rgba(0,0,0,.6); }
.concept-figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05); }
.concept-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-block: 1rem 1.2rem; font-style: italic; font-weight: 500; }
.concept-text p { color: var(--ink-mute); max-width: 52ch; font-style: normal; }

/* Menu (tasting menu list) */
.menu-list { margin-top: 2.8rem; }
.menu-item { padding-block: 1.5rem; border-bottom: 1px solid var(--line); }
.menu-item-head { display: flex; align-items: baseline; gap: .8rem; }
.menu-item-head h3 { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.2rem; color: var(--ink); flex-shrink: 0; }
.menu-item-leader { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-6px); min-width: 1.5rem; }
.menu-item-price { font-family: var(--display); font-weight: 600; color: var(--accent); font-size: 1.1rem; white-space: nowrap; flex-shrink: 0; }
.menu-item p { color: var(--ink-mute); font-size: .92rem; margin-top: .5rem; max-width: 62ch; }
.menu-note { margin-top: 2.2rem; font-size: .85rem; color: var(--ink-mute); text-align: center; }

/* Gallery grid (sala / ambiente) */
.gallery-grid { display: grid; gap: 1.3rem; margin-top: 2.8rem; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 60px -24px rgba(0,0,0,.6); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.03); transition: transform .8s var(--ease-soft); }
.gallery-item:hover img { transform: scale(1.06); }

/* Hours */
.hours-list { display: flex; flex-direction: column; gap: .35rem; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: .84rem; color: var(--ink-mute); }

/* Footer */
.footer { border-top: 1px solid var(--line-soft); padding-block: 3rem 2rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { font-family: var(--display); font-style: italic; font-size: 1.5rem; font-weight: 600; margin-bottom: .6rem; color: var(--ink); }
.footer-col h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .8rem; font-weight: 700; font-family: var(--sans); }
.footer-col a, .footer-col p { display: block; color: var(--ink-mute); font-size: .9rem; margin-bottom: .4rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); font-size: .78rem; color: var(--ink-mute); }
.footer-bottom a:hover { color: var(--accent); }

/* =============================================================
   6. Sections
   ============================================================= */

/* Splash */
.splash { position: fixed; inset: 0; z-index: 10000; background: var(--bg); display: grid; place-items: center; transition: opacity .9s, clip-path 1.1s; animation: splashSafety .01s 4.5s forwards; }
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-mark { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 2rem; display: flex; align-items: center; gap: .6rem; color: var(--ink); }
.splash-mark .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }

/* Hero */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-h); overflow: clip;
}
.hero-inner { max-width: 44rem; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 999px;
  margin-bottom: 1.6rem; font-size: .8rem; font-weight: 600; border: 1px solid var(--line); color: var(--ink-soft);
  background: rgba(20, 15, 10, .45); backdrop-filter: blur(6px);
}
.hero-kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(201,138,74,.18); }
.hero-title { font-size: clamp(2.6rem, 6.6vw, 5rem); line-height: 1.02; margin-bottom: 1.4rem; max-width: 15ch; font-style: normal; }
.hero-title em { font-style: italic; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--ink-mute); max-width: 46ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Chat showcase */
.chat-showcase { display: grid; gap: 2.5rem; margin-top: 3rem; align-items: center; }
@media (min-width: 960px) { .chat-showcase { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.chat-mock { border-radius: 22px; padding: 1.4rem; background: var(--card); border: 1px solid var(--line-soft); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.chat-mock-header { display: flex; align-items: center; gap: .7rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft); margin-bottom: 1rem; }
.chat-mock-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: var(--accent-ink); font-weight: 600; font-size: .9rem; font-family: var(--display); font-style: italic; }
.chat-mock-name { font-weight: 700; font-size: .92rem; color: var(--ink); font-family: var(--sans); }
.chat-mock-status { font-size: .76rem; color: #22c55e; display: flex; align-items: center; gap: .35rem; }
.chat-mock-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }
.chat-mock-body { display: flex; flex-direction: column; gap: .7rem; }
.chat-bubble { max-width: 84%; padding: .7rem 1rem; border-radius: 16px; font-size: .88rem; line-height: 1.45; }
.chat-bubble.bot { background: var(--bg-2); border: 1px solid var(--line-soft); color: var(--ink-soft); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-bubble.user { background: var(--accent); color: var(--accent-ink); align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 600; }

/* Live chat widget */
.chat-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 200;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink); display: grid; place-items: center;
  box-shadow: 0 16px 36px rgba(201,138,74,.32);
  transition: transform .4s var(--ease-bounce);
}
.chat-fab:hover { transform: scale(1.07); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-fab .chat-fab-dot {
  position: absolute; top: 6px; right: 6px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--sage); border: 2px solid var(--bg); opacity: 0; transition: opacity .3s;
}
.chat-fab.has-hint .chat-fab-dot { opacity: 1; }

.chat-teaser {
  position: fixed; right: 1.4rem; bottom: 5.6rem; z-index: 199;
  max-width: 240px; padding: .8rem 1rem; border-radius: 16px; border-bottom-right-radius: 4px;
  font-size: .85rem; box-shadow: 0 16px 36px rgba(0,0,0,.4);
  background: var(--card); border: 1px solid var(--line-soft); color: var(--ink-soft);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-soft);
}
.chat-teaser.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.chat-panel {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 210;
  width: min(370px, calc(100vw - 2rem)); height: min(560px, calc(100vh - 3rem));
  border-radius: 22px; display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,.7);
  opacity: 0; transform: translateY(16px) scale(.98); pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .4s var(--ease-soft);
  background: var(--card); border: 1px solid var(--line-soft);
}
.chat-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.chat-panel-header {
  display: flex; align-items: center; gap: .8rem; padding: 1.1rem 1.2rem;
  border-bottom: 1px solid var(--line-soft); flex-shrink: 0;
}
.chat-panel-header .chat-mock-avatar { width: 38px; height: 38px; }
.chat-panel-title { font-weight: 700; font-size: .95rem; color: var(--ink); font-family: var(--sans); }
.chat-panel-status { font-size: .76rem; color: #22c55e; display: flex; align-items: center; gap: .35rem; }
.chat-panel-close { margin-left: auto; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-mute); }
.chat-panel-close:hover { background: rgba(255,255,255,.06); }

.chat-panel-body { flex: 1; overflow-y: auto; padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
.chat-panel-body .chat-bubble.bot { background: var(--bg-2); }

.chat-typing { display: inline-flex; gap: 4px; padding: .8rem 1rem; border-radius: 16px; border-bottom-left-radius: 4px; background: var(--bg-2); align-self: flex-start; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-mute); animation: typingBounce 1.1s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat-quick-replies { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0 1.2rem 1rem; flex-shrink: 0; }
.chat-quick-reply {
  font-size: .78rem; padding: .5rem .9rem; border-radius: 999px; border: 1px solid var(--line);
  background: var(--bg-2); color: var(--ink-soft); transition: all .25s var(--ease-out);
}
.chat-quick-reply:hover { border-color: var(--accent); color: var(--accent); }

.chat-action-btn {
  font-size: .8rem; font-weight: 700; padding: .55rem 1rem; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); align-self: flex-start; margin-top: -.3rem;
  font-family: var(--sans);
}
.chat-action-btn:hover { filter: brightness(1.1); }

.chat-panel-input {
  display: flex; align-items: center; gap: .6rem; padding: .9rem 1rem;
  border-top: 1px solid var(--line-soft); flex-shrink: 0;
}
.chat-panel-input input {
  flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: .7rem 1.1rem;
  background: var(--bg-2); font-family: var(--sans); font-size: .88rem; color: var(--ink);
}
.chat-panel-input input:focus { border-color: var(--accent); }
.chat-panel-input input::placeholder { color: var(--ink-mute); }
.chat-panel-send { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; flex-shrink: 0; }
.chat-panel-send:hover { filter: brightness(1.1); }
.chat-panel-send svg { width: 17px; height: 17px; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) { .hero-actions { gap: 1.2rem; } }
@media (max-width: 539px) {
  .menu-item-head { flex-wrap: wrap; }
  .menu-item-leader { display: none; }
}

/* =============================================================
   9. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .splash { animation-duration: .01s; }
}

/* =============================================================
   10. Credits page
   ============================================================= */
.page-credits { background: var(--bg); min-height: 100vh; }
