/* ============================================================
   VIVA Rooftop & Restaurant — design system
   Palette and type per VIVA Brand Style Guide
   ============================================================ */

:root {
  --charcoal: #141414;
  --charcoal-soft: #1d1c1a;
  --cream: #faf6f0;
  --cream-dim: #e9e2d6;
  --teal: #2e6f62;
  --teal-light: #7cc0b0;
  --sunset: #ff6b35;
  --coral: #ff8a66;
  --gold: #e8b04b;
  --dusk: #43285c;
  --ink-muted: #4a4a45;       /* muted text on light */
  --cream-muted: #b8b2a8;     /* muted text on dark */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 72rem;
  --radius: 16px;
  --nav-h: 4.5rem;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); }
@media (max-width: 63.99rem) { html { scroll-padding-bottom: 5.5rem; } }   /* clear the sticky action bar */
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-light); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0 0 1rem; }
p { margin: 0 0 1rem; max-width: 72ch; }
:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px;
  box-shadow: 0 0 0 6px rgba(20, 20, 20, 0.9);   /* two-tone ring: visible on light chapter skies too */
}
::selection { background: var(--sunset); color: var(--charcoal); }

/* visually hidden (screen-reader only) */
.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;
}
.skip-link {
  position: fixed; top: 0.6rem; left: 0.6rem; z-index: 120;
  transform: translateY(-300%);
  background: var(--charcoal); color: var(--cream);
  padding: 0.7rem 1.2rem; border-radius: 10px;
  border: 2px solid var(--gold);
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { transform: none; }

/* film grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 40;   /* below nav/action bar so chrome stays crisp */
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- shared ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { position: relative; padding-block: clamp(4.5rem, 11vh, 8rem); }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.h-display { font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -0.015em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--cream-muted); }
.on-light .lead { color: var(--ink-muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 3rem; padding: 0.8rem 1.75rem;
  border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.btn-primary { background: var(--sunset); color: var(--charcoal); }
.btn-primary:hover { background: var(--coral); box-shadow: 0 6px 30px rgba(255, 107, 53, 0.35); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250, 246, 240, 0.55); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(250, 246, 240, 0.08); }
.btn-small { min-height: 2.5rem; padding: 0.45rem 1.2rem; font-size: 0.9rem; }

/* ghosted Italian watermark */
.watermark {
  position: absolute; inset-inline: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 1; white-space: nowrap;
  color: currentColor; opacity: 0.045;
  pointer-events: none; user-select: none;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

/* scroll reveals — hidden state only when JS is present (html.js set inline in <head>) */
.js .rv { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease, transform 600ms ease; }
.js .rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 120ms; }
.rv-d2 { transition-delay: 240ms; }
.rv-d3 { transition-delay: 360ms; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  background: rgba(20, 20, 20, 0.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250, 246, 240, 0.08);
  transition: background-color 250ms ease;
}
.nav-inner {
  max-width: var(--container); margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  min-height: var(--nav-h);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo img { height: 3.4rem; width: auto; }
.nav-links { display: none; align-items: center; gap: 1.6rem; margin-left: auto; list-style: none; padding: 0; }
.nav-links a {
  color: var(--cream); text-decoration: none; font-size: 0.95rem; font-weight: 500;
  padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
.nav-links a:hover { color: var(--gold); border-color: var(--gold); }
.nav-cta { margin-left: auto; }
@media (min-width: 64rem) {
  .nav-links { display: flex; }
  .nav-cta { margin-left: 0; }
  .nav-burger { display: none; }
}

/* mobile menu (no-JS friendly) */
.nav-burger { position: relative; margin-left: auto; }
.nav-burger > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 10px;
  color: var(--cream);
}
.nav-burger > summary::-webkit-details-marker { display: none; }
.nav-burger[open] > summary { background: rgba(250, 246, 240, 0.1); }
.nav-burger-list {
  position: absolute; right: 0; top: calc(100% + 0.6rem);
  min-width: 13rem;
  background: var(--charcoal-soft);
  border: 1px solid rgba(250, 246, 240, 0.12);
  border-radius: 14px;
  padding: 0.5rem;
  list-style: none; margin: 0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.nav-burger-list a {
  display: block; padding: 0.7rem 1rem; border-radius: 9px;
  color: var(--cream); text-decoration: none; font-weight: 500;
  transition: background-color 180ms ease;
}
.nav-burger-list a:hover { background: rgba(250, 246, 240, 0.08); color: var(--gold); }
@media (min-width: 64rem) { .nav-burger { display: none; } }

/* mobile sticky action bar */
.action-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 50;
  display: flex; gap: 0.6rem;
  padding: 0.6rem max(0.75rem, env(safe-area-inset-right)) max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  background: rgba(20, 20, 20, 0.88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(250, 246, 240, 0.1);
}
.action-bar .btn { flex: 1; white-space: nowrap; font-size: 0.95rem; padding-inline: 1rem; }
@media (min-width: 64rem) { .action-bar { display: none; } }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
  padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.55) 0%, rgba(20, 20, 20, 0.15) 38%, rgba(20, 20, 20, 0.82) 100%);
}
.hero-inner { padding-bottom: clamp(2.5rem, 7vh, 5.5rem); }
@media (max-width: 63.99rem) { .hero-inner { padding-bottom: 7rem; } }   /* clear the sticky action bar */
.hero-logo { width: clamp(7.5rem, 14vw, 11rem); margin-bottom: 1.5rem; filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45)); }
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6.75rem);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.02;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}
.hero h1 .line { display: block; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 44ch; color: var(--cream-dim);
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.25rem; }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 246, 240, 0.22);
  font-size: 0.95rem;
}
.trust-strip a {
  color: var(--cream); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.trust-strip a:hover { color: var(--gold); }
.trust-strip .star { color: var(--gold); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%);
  display: none;
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none;
}
@media (min-width: 64rem) {
  .scroll-cue { display: inline-flex; flex-direction: column; align-items: center; gap: 0.4rem; }
  .scroll-cue svg { animation: cue-bob 2.2s ease-in-out infinite; }
}
@keyframes cue-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* hero load-in */
@media (prefers-reduced-motion: no-preference) {
  .hero-logo, .hero h1 .line, .hero-sub, .hero-ctas, .trust-strip {
    animation: rise-in 800ms cubic-bezier(0.22, 0.8, 0.3, 1) both;
  }
  .hero h1 .line:nth-child(1) { animation-delay: 120ms; }
  .hero h1 .line:nth-child(2) { animation-delay: 260ms; }
  .hero-sub { animation-delay: 420ms; }
  .hero-ctas { animation-delay: 540ms; }
  .trust-strip { animation-delay: 680ms; }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}

/* ============================================================
   2. STORY — pre-dawn
   ============================================================ */
.story {
  background: linear-gradient(180deg, #101018 0%, #181a26 60%, #1e2233 100%);
  color: var(--cream);
  overflow: hidden;
}
.story .watermark { top: 0.5rem; }
.story-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 64rem) { .story-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; } }
.story-copy p { color: var(--cream-dim); }
.pull-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.35;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem; margin: 1.75rem 0;
}
.story-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   3. A DAY ABOVE — sticky sky chapters
   ============================================================ */
.day-above { position: relative; }
.chapter {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
/* contrast scrim behind chapter copy on the light gradient zones */
.ch-dawn::before, .ch-sunset::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16, 12, 20, 0.55) 0%, rgba(16, 12, 20, 0.28) 45%, transparent 78%);
  pointer-events: none;
}
.chapter-inner { position: relative; z-index: 1; }
.ch-dawn .chapter-time, .ch-sunset .chapter-time,
.ch-dawn .chapter-name, .ch-sunset .chapter-name {
  text-shadow: 0 2px 24px rgba(16, 12, 20, 0.35);
}
.ch-dawn .btn-ghost, .ch-sunset .btn-ghost { background: rgba(16, 12, 20, 0.3); border-color: rgba(250, 246, 240, 0.75); }
.ch-dawn .btn-ghost:hover, .ch-sunset .btn-ghost:hover { background: rgba(16, 12, 20, 0.5); }
@media (min-width: 64rem) {
  .chapter { position: sticky; top: 0; }   /* sky wipe: each time of day covers the last */
}
.chapter-inner { width: 100%; }
.chapter-time {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.95; letter-spacing: -0.03em;
  opacity: 0.92; margin: 0;
}
.chapter-name {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  margin: 0.75rem 0 1rem;
}
.chapter-desc { font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 46ch; margin-bottom: 1.75rem; }
.chapter-tag {
  position: absolute; top: calc(var(--nav-h) + 1rem); right: clamp(1.25rem, 4vw, 2.5rem);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.9; z-index: 1;
  text-shadow: 0 1px 12px rgba(16, 12, 20, 0.4);
}
.ch-day .chapter-tag { color: #122f3c; text-shadow: none; }

.ch-dawn {
  background: linear-gradient(180deg, #2b3a67 0%, #8c6b8f 45%, #e8a87c 78%, #f5d9a0 100%);
  color: var(--cream);
}
.ch-dawn .chapter-desc { color: rgba(250, 246, 240, 0.92); }
.ch-day {
  background: linear-gradient(180deg, #2e86ab 0%, #8fd0ec 55%, #eaf6fa 100%);
  color: #122f3c;
}
.ch-day .chapter-desc { color: #1d4a5c; }
.ch-sunset {
  background: linear-gradient(180deg, var(--dusk) 0%, #c2426e 48%, var(--coral) 82%, var(--gold) 100%);
  color: var(--cream);
}
.ch-night {
  background: linear-gradient(180deg, #0b0b10 0%, #161420 55%, #2a1f33 100%);
  color: var(--cream);
}
.ch-night::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 38%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(232, 176, 75, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.ch-day .btn-ghost { color: #122f3c; border-color: rgba(18, 47, 60, 0.55); }
.ch-day .btn-ghost:hover { border-color: #122f3c; background: rgba(18, 47, 60, 0.08); }

/* ============================================================
   4. LA CUCINA — night holds from here down
   ============================================================ */
.cucina { background: var(--charcoal); overflow: hidden; }
.cucina .watermark { top: 1rem; }
.dish-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.5rem;
}
.dish {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--charcoal-soft);
  min-height: 15rem;
}
.dish img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 500ms ease, opacity 500ms ease;
}
.dish:hover img { transform: scale(1.045); }
.dish-low img { object-position: center 72%; }   /* lifestyle shots: plate sits in the lower third */
.dish-label {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  height: 100%; min-height: inherit;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 10, 0.85) 100%);
}
.dish-label h3 { font-size: clamp(1.1rem, 1.8vw, 1.45rem); margin: 0; }
.dish-label span { font-size: 0.85rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
@media (min-width: 64rem) {
  .dish-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 11rem; }
  .d-1 { grid-column: span 7; grid-row: span 2; }
  .d-2 { grid-column: span 5; grid-row: span 2; }
  .d-3 { grid-column: span 4; grid-row: span 2; }
  .d-4 { grid-column: span 4; grid-row: span 2; }
  .d-5 { grid-column: span 4; grid-row: span 2; }
  .d-6 { grid-column: span 12; grid-row: span 2; }
}
.badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 1rem; border-radius: 999px;
  border: 1px solid rgba(124, 192, 176, 0.4);
  color: var(--teal-light); font-size: 0.88rem; font-weight: 500;
}
.cucina-cta { margin-top: 2.5rem; }

/* ============================================================
   5. THE ROOFTOP
   ============================================================ */
.rooftop { background: var(--charcoal-soft); overflow: hidden; }
.rooftop .watermark { bottom: 0.5rem; }
.rooftop-grid { display: grid; gap: 3rem; align-items: center; margin-top: 2.5rem; }
@media (min-width: 64rem) { .rooftop-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.rooftop-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45); }
.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.6rem; list-style: none; padding: 0; margin: 0 0 1.75rem; }
.amenities li { display: flex; gap: 0.85rem; align-items: flex-start; }
.amenities svg { flex: none; width: 1.6rem; height: 1.6rem; color: var(--teal-light); margin-top: 0.15rem; }
.amenities strong { display: block; font-weight: 600; }
.amenities small { color: var(--cream-muted); font-size: 0.88rem; }
.location-line { color: var(--cream-muted); font-size: 0.98rem; border-top: 1px solid rgba(250,246,240,0.12); padding-top: 1.25rem; }

/* ============================================================
   6. REVIEWS
   ============================================================ */
.reviews { background: var(--charcoal); }
.rating-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
.rating-badge {
  display: block; text-align: center; text-decoration: none;
  padding: 1.5rem 1rem; border-radius: var(--radius);
  background: var(--charcoal-soft);
  border: 1px solid rgba(250, 246, 240, 0.1);
  color: var(--cream);
  transition: border-color 200ms ease, transform 200ms ease;
}
.rating-badge:hover { border-color: var(--gold); }
.rating-badge .score { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--gold); display: block; }
.rating-badge .src { font-size: 0.9rem; font-weight: 600; display: block; margin-top: 0.3rem; }
.rating-badge .cnt { font-size: 0.8rem; color: var(--cream-muted); }
.quote-cards { display: grid; gap: 1rem; }
@media (min-width: 64rem) { .quote-cards { grid-template-columns: repeat(3, 1fr); } }
.quote-card {
  padding: 1.5rem; border-radius: var(--radius);
  border: 2px dashed rgba(232, 176, 75, 0.45);
  color: var(--cream-muted); font-size: 0.95rem;
}
.quote-card .stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 0.6rem; }

/* ============================================================
   7. EXPERIENCES
   ============================================================ */
.experiences { background: var(--charcoal-soft); overflow: hidden; }
.experiences .watermark { top: 1rem; }
.exp-grid { display: grid; gap: 1.1rem; margin-top: 2.5rem; }
@media (min-width: 64rem) { .exp-grid { grid-template-columns: repeat(3, 1fr); } }
.exp-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(250, 246, 240, 0.09);
  display: flex; flex-direction: column;
}
.exp-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.exp-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.exp-card:hover .exp-media img { transform: scale(1.045); }
.exp-media-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.exp-media-ph svg { width: 3.2rem; height: 3.2rem; color: var(--gold); opacity: 0.9; }
.ph-music { background: linear-gradient(135deg, #2a1f33 0%, var(--dusk) 100%); }
.ph-celebrate { background: linear-gradient(135deg, #1d3a34 0%, var(--teal) 100%); }
.exp-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.exp-body h3 { margin: 0; font-size: 1.35rem; }
.exp-body p { color: var(--cream-muted); font-size: 0.95rem; flex: 1; }
.exp-body .btn { align-self: flex-start; }

/* ============================================================
   8. VISIT
   ============================================================ */
.visit { background: var(--charcoal); }
.visit-grid { display: grid; gap: 2.5rem; margin-top: 2.5rem; }
@media (min-width: 64rem) { .visit-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(250, 246, 240, 0.12); min-height: 20rem; }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 20rem; border: 0; }
.info-block h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.info-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 0.9rem; }
.info-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--cream-dim); }
.info-list svg { flex: none; width: 1.35rem; height: 1.35rem; color: var(--teal-light); margin-top: 0.2rem; }
.info-list a { color: var(--cream); text-decoration-color: rgba(250,246,240,0.4); }
.info-list a:hover { color: var(--gold); }

.res-form { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); margin-bottom: 0.9rem; }
.res-form .field-full { grid-column: 1 / -1; }
.res-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--cream-dim); }
.res-form input, .res-form select {
  width: 100%; min-height: 2.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(250, 246, 240, 0.22);
  background: var(--charcoal-soft);
  color: var(--cream);
  font: inherit;
}
.res-form input:focus, .res-form select:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: transparent; }
.res-form input::placeholder { color: var(--cream-muted); opacity: 1; }
html:not(.js) .res-form { display: none; }   /* the WhatsApp composer needs JS; the direct link below remains */
.res-form input::-webkit-calendar-picker-indicator { filter: invert(0.9); }
.form-note { font-size: 0.85rem; color: var(--cream-muted); }
.form-note a { color: var(--teal-light); }

/* FAQ */
.faq { margin-top: 3.5rem; }
.faq-item {
  border: 1px solid rgba(250, 246, 240, 0.12);
  border-radius: 12px;
  margin-bottom: 0.7rem;
  background: var(--charcoal-soft);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-weight: 600; font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display); font-size: 1.5rem; line-height: 1;
  color: var(--gold); flex: none;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.3rem 1.2rem; color: var(--cream-muted); }
.faq-item .faq-a p { margin: 0; }

/* ============================================================
   9. FOOTER
   ============================================================ */
.footer {
  background: #0e0e0e;
  border-top: 1px solid rgba(250, 246, 240, 0.08);
  padding-block: 3.5rem 7rem;   /* bottom space for mobile action bar */
  color: var(--cream-muted);
  font-size: 0.92rem;
}
@media (min-width: 64rem) { .footer { padding-bottom: 3.5rem; } }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 64rem) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; } }
.footer-logo { height: 4.5rem; width: auto; margin-bottom: 1rem; }
.footer-echo { font-family: var(--font-display); font-style: italic; color: var(--cream-dim); font-size: 1.1rem; }
.footer .footer-heading { color: var(--cream); font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer a { color: var(--cream-muted); text-decoration: none; transition: color 180ms ease; }
.footer a:hover { color: var(--gold); }
.footer ul.footer-social { display: flex; gap: 0.9rem; margin-top: 1.1rem; }
.footer-social a { display: inline-flex; padding: 0.55rem; border: 1px solid rgba(250, 246, 240, 0.18); border-radius: 50%; color: var(--cream-muted); transition: color 180ms ease, border-color 180ms ease, background 180ms ease; }
.footer-social a:hover { color: var(--gold); border-color: var(--gold); background: rgba(232, 176, 75, 0.08); }
.footer-social svg { width: 1.15rem; height: 1.15rem; display: block; }
.footer-legal {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 246, 240, 0.08);
  font-size: 0.82rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
}
.footer-legal .credit a { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-legal .credit a:hover { text-decoration: underline; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vh, 5rem));
  padding-bottom: clamp(2rem, 5vh, 3rem);
  background: linear-gradient(180deg, #2a1f33 0%, var(--charcoal) 100%);
}
.menu-section { border-bottom: 1px solid rgba(250, 246, 240, 0.08); padding-block: 3rem; }
.menu-section h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.menu-section .menu-intro { color: var(--cream-muted); font-size: 0.98rem; margin-bottom: 1.75rem; }
.menu-items { display: grid; gap: 1.1rem; }
@media (min-width: 48rem) { .menu-items { grid-template-columns: repeat(2, 1fr); gap: 1.1rem 3rem; } }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 0.2rem 1rem; }
.menu-item .name { font-weight: 600; color: var(--cream); }
.menu-item .price { color: var(--gold); font-weight: 600; white-space: nowrap; }
.menu-item .desc { grid-column: 1 / -1; color: var(--cream-muted); font-size: 0.9rem; }
.menu-item.placeholder { opacity: 0.55; border: 1px dashed rgba(232, 176, 75, 0.35); border-radius: 10px; padding: 0.7rem 0.9rem; }

/* ---------- menu course chips (sticky section nav) ---------- */
.menu-toc {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: rgba(20, 20, 20, 0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250, 246, 240, 0.08);
}
.menu-toc-track {
  display: flex; gap: 0.5rem; align-items: center;
  max-width: var(--container); margin-inline: auto;
  padding: 0.65rem clamp(1rem, 4vw, 2rem);
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.menu-toc-track::-webkit-scrollbar { display: none; }
.menu-toc a {
  flex: 0 0 auto;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-muted); text-decoration: none;
  padding: 0.38rem 0.85rem; border: 1px solid rgba(250, 246, 240, 0.16); border-radius: 999px;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}
.menu-toc a:hover { color: var(--gold); border-color: rgba(232, 176, 75, 0.5); }
.menu-toc a.on {
  color: var(--charcoal); background: var(--gold); border-color: var(--gold); font-weight: 600;
}

/* ---------- course headers: ghost numerals + arch art ---------- */
.menu-section { position: relative; scroll-margin-top: 3rem; }   /* stacks with html scroll-padding-top to clear nav + chip bar */
.menu-section::before {
  content: attr(data-course);
  position: absolute; top: 1.1rem; left: -0.35rem; z-index: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(5rem, 11vw, 8.5rem); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1px rgba(232, 176, 75, 0.22);
  pointer-events: none; user-select: none; -webkit-user-select: none;
}
.course-head { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 1.25rem; align-items: end; margin-bottom: 1.6rem; padding-top: 2.2rem; }
.course-head.with-art { grid-template-columns: 1fr auto; }
.course-head h2 { margin-bottom: 0.5rem; }
.course-head h2::after {
  content: ""; display: block; width: 3rem; height: 1px; margin-top: 0.8rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.course-head .menu-intro { margin-bottom: 0; max-width: 42rem; }
.course-art {
  margin: 0; align-self: start;
  width: clamp(7.5rem, 20vw, 13rem); aspect-ratio: 4 / 5;
  border-radius: 999px 999px 18px 18px; overflow: hidden;
  outline: 1px solid rgba(232, 176, 75, 0.4); outline-offset: 5px;
  transform: rotate(1.5deg);
}
.course-art img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   THE ASCENT — intro overlay (injected by JS only)
   ============================================================ */
.ascent {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  background: var(--charcoal);
  cursor: pointer;
  transition: transform 450ms cubic-bezier(0.7, 0, 0.3, 1);
}
.ascent.up { transform: translateY(-100%); }
.ascent img { width: clamp(9rem, 22vw, 14rem); }
.ascent-floor {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--gold); letter-spacing: 0.06em;
  min-width: 3ch; text-align: center;
}
.ascent-hint { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream-muted); }

/* ============================================================
   MOTION SAFETY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .chapter { position: relative !important; }
}
