/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f4efe6;
  --bg-2:      #e8dfd0;
  --paper:     #ffffff;
  --ink:       #1c1917;
  --ink-soft:  #332e29;
  --ink-mute:  #746a5e;
  --accent:    #b85c3a;
  --accent-2:  #4a5d3a;
  --cream:     #f4efe6;
  --line:      rgba(28, 25, 23, 0.12);
  --line-soft: rgba(28, 25, 23, 0.07);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif: "Fraunces", "Iowan Old Style", Georgia, 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;
  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -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; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 500;
}
em { font-style: italic; color: var(--accent); }
::selection { background: var(--accent); color: var(--cream); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 720px) { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-2);
}
.kicker::before {
  content: ""; width: 20px; height: 1px; background: var(--accent-2);
}

.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: .9rem; }
.section-head p { margin-top: 1.1rem; font-size: 1.08rem; color: var(--ink-mute); max-width: 42ch; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .45s var(--ease-out), background .3s var(--ease-out), box-shadow .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: var(--cream);
  box-shadow: 0 10px 24px -10px rgba(184, 92, 58, .55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(184, 92, 58, .6); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-sm { padding: .7rem 1.3rem; font-size: .85rem; }

/* =============================================================
   5. Custom cursor
   ============================================================= */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none; opacity: 0;
  transition: opacity .25s var(--ease-out);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  transform: translate3d(-50%, -50%, 0);
}
.cursor-ring {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--ink);
  mix-blend-mode: difference;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .25s var(--ease-out), width .3s var(--ease-out), height .3s var(--ease-out);
}
.cursor-dot.is-ready, .cursor-ring.is-ready { opacity: 1; }
.cursor-ring.is-hover { width: 54px; height: 54px; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(244, 239, 230, .92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-color: var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand strong { font-family: var(--serif); font-size: 1.2rem; letter-spacing: -.01em; }
.nav-brand span { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }

.nav-links { display: none; align-items: center; gap: 2.1rem; }
.nav-links a {
  position: relative; font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--accent); transition: right .35s var(--ease-out);
}
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-actions .btn-ghost { display: none; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-actions .btn-ghost { display: inline-flex; }
}

.nav-burger {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%;
}
.nav-burger span, .nav-burger::before, .nav-burger::after {
  content: ""; display: block; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .2s;
}
.nav-burger { display: grid; gap: 5px; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger.is-open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:last-child { transform: translateY(-6.5px) rotate(-45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger span:nth-child(2) { width: 20px; }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 490;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem 1.5rem;
  transform: translateY(-8px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu a {
  display: block; font-family: var(--serif); font-size: 2rem;
  padding-block: .5rem; border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: 1.75rem; width: 100%; }
@media (min-width: 960px) { .mobile-menu { display: none; } }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.08);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,.4) 0%, rgba(28,25,23,.3) 45%, rgba(28,25,23,.88) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream);
}
.hero-meta {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(244,239,230,.85);
  margin-bottom: 1.4rem;
}
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero-meta .dot.is-open { background: #7fae5a; }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.85;
  max-width: 16ch;
  color: var(--cream);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 4px 10px rgba(0,0,0,.85), 0 10px 40px rgba(0,0,0,.7);
}
.hero-title em { color: var(--cream); }
.hero-title-main {
  display: inline-block;
  font-size: clamp(3.2rem, 8.6vw, 6.6rem);
  color: var(--accent);
  text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 4px 10px rgba(0,0,0,.85), 0 10px 40px rgba(0,0,0,.75);
}
.hero-sub {
  margin-top: 1.4rem; max-width: 40ch;
  font-size: 1.1rem; color: rgba(244,239,230,.86);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-foot {
  display: flex; flex-wrap: wrap; gap: .9rem 1.6rem;
  margin-top: 2.8rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(244,239,230,.2);
  font-size: .86rem; color: rgba(244,239,230,.75);
}
.hero-foot span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-scroll {
  position: absolute; right: clamp(1.25rem, 3vw, 2.5rem); bottom: 2rem; z-index: 2;
  display: none; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(244,239,230,.7); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 34px; background: rgba(244,239,230,.5);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@media (min-width: 720px) { .hero-scroll { display: flex; } }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================================
   8. Manifesto / story
   ============================================================= */
.manifesto .container {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .manifesto .container { grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 4rem; }
}
.manifesto-figure { position: relative; border-radius: 20px; overflow: clip; aspect-ratio: 4/5; }
.manifesto-figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.manifesto-figure:hover img { transform: scale(1.05); }
.manifesto-text .kicker { margin-bottom: 1.1rem; }
.manifesto-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.manifesto-text p { margin-top: 1.4rem; font-size: 1.12rem; color: var(--ink-mute); max-width: 46ch; }
.manifesto-text p + p { margin-top: 1rem; }
.manifesto-stats { display: flex; gap: 2.5rem; margin-top: 2.2rem; flex-wrap: wrap; }
.stat-num {
  font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.6rem); color: var(--accent);
  display: block; font-weight: 500;
}
.stat-label { font-size: .82rem; color: var(--ink-mute); margin-top: .2rem; }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee-wrap {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding-block: 1.4rem;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--ink-soft);
  padding-inline: 1.6rem;
  white-space: nowrap;
  display: flex; align-items: center; gap: 1.6rem;
}
.marquee-track span::after { content: "✳"; font-style: normal; font-size: .9rem; color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================================
   10. Menu bento
   ============================================================= */
.menu-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
  .menu-card.is-big { grid-column: span 4; grid-row: span 2; }
  .menu-card:not(.is-big) { grid-column: span 2; grid-row: span 1; }
}

.menu-card {
  position: relative; overflow: clip; border-radius: 20px;
  min-height: 280px;
  isolation: isolate;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  box-shadow: 0 1px 0 var(--line);
}
.menu-card.is-big { min-height: 380px; }
.menu-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out), filter .5s var(--ease-out);
  z-index: 0;
}
.menu-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(28,25,23,.05) 0%, rgba(28,25,23,.72) 100%);
}
.menu-card::after {
  content: ""; position: absolute; inset: -1px; z-index: 1; opacity: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(184,92,58,.55), transparent 65%);
  transition: opacity .4s var(--ease-out); mix-blend-mode: screen;
}
.menu-card-body {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  color: var(--cream);
}
.menu-card-eyebrow { font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(244,239,230,.8); }
.menu-card h3 { color: var(--cream); font-size: 1.5rem; margin-top: .4rem; }
.menu-card.is-big h3 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-card p { margin-top: .6rem; font-size: .92rem; color: rgba(244,239,230,.82); max-width: 34ch; }

@media (hover: hover) and (pointer: fine) {
  .menu-card:hover { transform: perspective(900px) rotateX(3deg) rotateY(-4deg) translateY(-4px); box-shadow: 0 26px 50px -18px rgba(28,25,23,.4); }
  .menu-card:hover::after { opacity: 1; }
  .menu-card:hover img { transform: scale(1.08); }
}

.menu-cta { margin-top: 2.2rem; text-align: center; color: var(--ink-mute); font-size: .95rem; }
.menu-cta a { color: var(--accent); font-weight: 600; }
.menu-cta a:hover { text-decoration: underline; }

/* =============================================================
   11. Espais (wide editorial)
   ============================================================= */
.espais-figure { position: relative; border-radius: 20px; overflow: clip; aspect-ratio: 16/9; margin-top: 2.5rem; }
.espais-figure img { width: 100%; height: 100%; object-fit: cover; }
.espais-cols { display: grid; gap: 1.75rem; margin-top: 2.5rem; }
@media (min-width: 720px) { .espais-cols { grid-template-columns: repeat(3, 1fr); } }
.espais-col h4 { font-family: var(--sans); font-size: .95rem; font-weight: 600; color: var(--ink); }
.espais-col p { margin-top: .5rem; font-size: .92rem; color: var(--ink-mute); }

/* =============================================================
   12. Social section
   ============================================================= */
.social {
  position: relative;
  color: var(--cream);
}
.social-bg { position: absolute; inset: 0; z-index: 0; }
.social-bg img { width: 100%; height: 100%; object-fit: cover; }
.social-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,25,23,.82), rgba(28,25,23,.9)); }
.social .container { position: relative; z-index: 1; }
.social .kicker { color: rgba(244,239,230,.75); }
.social .kicker::before { background: rgba(244,239,230,.75); }
.social h2 { color: var(--cream); }
.social-row {
  display: flex; flex-wrap: wrap; gap: 3rem; align-items: flex-end;
  margin-top: 2.5rem;
}
.social-count { font-family: var(--serif); font-size: clamp(3rem, 7vw, 5.5rem); color: var(--cream); line-height: 1; }
.social-count-label { margin-top: .6rem; font-size: .95rem; color: rgba(244,239,230,.75); max-width: 26ch; }
.social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-links .btn-ghost { border-color: rgba(244,239,230,.35); color: var(--cream); }
.social-links .btn-ghost:hover { border-color: var(--cream); }

/* =============================================================
   13. Hours & location
   ============================================================= */
.hours-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}
@media (min-width: 960px) { .hours-grid { grid-template-columns: 1fr 1fr; } }

.hours-card, .contact-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(1.5rem, 3vw, 2.2rem);
}
.hours-table { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-block: .85rem; border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row dt { color: var(--ink); font-weight: 600; }
.hours-row dd { color: var(--ink-mute); text-align: right; }
.status-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: var(--bg-2); font-size: .85rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.status-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.status-badge .dot.is-open { background: #4a7a2e; }
.status-badge.is-open { background: rgba(74,122,46,.12); color: #365a20; }

.contact-card address { font-style: normal; }
.contact-line {
  display: flex; align-items: flex-start; gap: .9rem;
  padding-block: .85rem; border-bottom: 1px solid var(--line-soft);
}
.contact-line:last-of-type { border-bottom: 0; }
.contact-line svg { flex-shrink: 0; margin-top: .2rem; color: var(--accent); }
.contact-line strong { display: block; font-size: .95rem; }
.contact-line span, .contact-line a { font-size: .9rem; color: var(--ink-mute); }
.contact-line a:hover { color: var(--accent); }
.contact-card .btn { margin-top: 1.5rem; width: 100%; }

.map-frame {
  margin-top: 2rem; border-radius: 20px; overflow: clip;
  border: 1px solid var(--line);
  aspect-ratio: 16/7;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85) contrast(1.02); }

/* =============================================================
   14. Footer
   ============================================================= */
.footer { background: var(--ink); color: rgba(244,239,230,.75); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-top {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(244,239,230,.14);
}
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand strong { font-family: var(--serif); font-size: 1.4rem; color: var(--cream); }
.footer-brand p { margin-top: .8rem; font-size: .92rem; max-width: 32ch; color: rgba(244,239,230,.65); }
.footer-col h5 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(244,239,230,.5); margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; font-size: .92rem; padding-block: .35rem; color: rgba(244,239,230,.8); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 1.5rem; font-size: .8rem; color: rgba(244,239,230,.5);
}
.footer-bottom a { color: rgba(244,239,230,.65); }
.footer-bottom a:hover { color: var(--accent); }

/* =============================================================
   15. Reveal system
   ============================================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal-stagger.is-visible > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* =============================================================
   18. Reserve dialog (WhatsApp booking assistant)
   ============================================================= */
.contact-tel-alt {
  display: block; text-align: center; margin-top: .8rem;
  font-size: .85rem; color: var(--ink-mute);
}
.contact-tel-alt:hover { color: var(--accent); }

.reserve-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(94vw, 480px);
  max-height: min(88vh, 720px);
  border: 0; border-radius: 24px; padding: 0;
  background: var(--paper); color: var(--ink-soft);
  box-shadow: 0 40px 80px -20px rgba(28,25,23,.45);
}
.reserve-dialog::backdrop {
  background: rgba(28,25,23,.55);
  backdrop-filter: blur(4px);
}
.reserve-dialog[open] { display: flex; flex-direction: column; animation: reserveIn .35s var(--ease-out); }
@keyframes reserveIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: none; }
}

.reserve-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-mute); font-size: .95rem;
  transition: background .25s var(--ease-out), color .25s var(--ease-out);
}
.reserve-close:hover { background: var(--bg-2); color: var(--ink); }

.reserve-head { padding: 2rem 2rem 0; }
.reserve-head h2 { font-size: 1.7rem; margin-top: .6rem; }
.reserve-sub { margin-top: .6rem; font-size: .92rem; color: var(--ink-mute); }

.reserve-steps { display: flex; gap: .5rem; padding: 1.4rem 2rem 0; }
.reserve-steps span {
  flex: 1; height: 3px; border-radius: 2px; background: var(--line);
  transition: background .3s var(--ease-out);
}
.reserve-steps span.is-active, .reserve-steps span.is-done { background: var(--accent); }

.reserve-panel { display: none; padding: 1.6rem 2rem 0; overflow-y: auto; }
.reserve-panel.is-active { display: block; }

.reserve-label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); display: block; margin-bottom: .7rem; }

.reserve-date, .reserve-input {
  width: 100%; padding: .9rem 1rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--bg);
  font: inherit; font-size: 1rem; color: var(--ink);
}
.reserve-date:focus, .reserve-input:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.reserve-hint { margin-top: .7rem; font-size: .85rem; color: var(--ink-mute); }
.reserve-hint.is-warning { color: var(--accent); font-weight: 600; }

.reserve-slots { display: flex; flex-wrap: wrap; gap: .6rem; max-height: 260px; overflow-y: auto; padding-bottom: .3rem; }
.reserve-slot {
  padding: .6rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: .9rem; font-weight: 600; color: var(--ink-soft);
  transition: all .2s var(--ease-out);
}
.reserve-slot:hover { border-color: var(--accent); }
.reserve-slot.is-selected { background: var(--accent); border-color: var(--accent); color: var(--cream); }

.reserve-stepper { display: flex; align-items: center; gap: 1.4rem; }
.reserve-step-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  font-size: 1.3rem; display: grid; place-items: center; color: var(--ink);
  transition: all .2s var(--ease-out);
}
.reserve-step-btn:hover { border-color: var(--accent); color: var(--accent); }
.reserve-step-count { font-family: var(--serif); font-size: 2rem; min-width: 2.5ch; text-align: center; }

.reserve-summary { display: flex; flex-direction: column; gap: .1rem; }
.reserve-summary li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-block: .8rem; border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
}
.reserve-summary li strong { color: var(--ink); }

.reserve-actions { display: flex; gap: .8rem; padding: 1.6rem 2rem; margin-top: auto; }
.reserve-actions .btn { flex: 1; }
[data-reserve-back] { visibility: hidden; }
[data-reserve-submit] { display: none; }

.reserve-alt { text-align: center; font-size: .85rem; color: var(--ink-mute); padding: 0 2rem 1.6rem; }
.reserve-alt a { color: var(--accent); font-weight: 600; }

@media (min-width: 540px) {
  .reserve-dialog { border-radius: 28px; }
}

/* =============================================================
   16. Responsive misc
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions .btn { flex: 1 1 auto; }
}

/* =============================================================
   17. Reduced motion — only intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll::after { animation: none; }
  .marquee-track { animation-duration: 70s; }
}
