/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #180f26;
  --bg-2:      #201530;
  --bg-3:      #2a1c3e;
  --bg-card:   #281b3c;
  --violet:    #6b3fa0;
  --violet-2:  #3d2259;
  --violet-glow: #9b6fd6;
  --ink:       #f4ecdd;
  --ink-soft:  rgba(244, 236, 221, .78);
  --ink-mute:  rgba(244, 236, 221, .52);
  --gold:      #d99a46;
  --gold-2:    #b97b2c;
  --gold-light:#f1cf94;
  --line:      rgba(244, 236, 221, .14);
  --line-gold: rgba(217, 154, 70, .35);
  --shadow:    rgba(10, 4, 18, .55);

  --serif:  "Cinzel", "Cormorant Garamond", Georgia, serif;
  --script: "Cormorant Garamond", Georgia, serif;
  --sans:   "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --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: 84px;
  --container: 1240px;
}

/* =============================================================
   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;
  scroll-padding-top: var(--nav-h);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  position: relative;
}

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.08; font-family: var(--serif); font-weight: 600; }
::selection { background: var(--gold); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 10000;
  padding: .6rem 1rem; background: var(--gold); color: var(--bg);
  border-radius: 8px; font-weight: 500; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.kicker {
  display: block; font-family: var(--sans); font-weight: 500; font-size: .72rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1rem;
}
.kicker-center { text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  color: var(--ink);
  max-width: 20ch;
}
.reviews .section-title, .galeria .section-title,
.reservas .section-title, .carta .section-title {
  text-align: center; margin-inline: auto;
}

.section-note {
  color: var(--ink-mute);
  font-size: 1.02rem;
  max-width: 56ch;
  margin-top: 1rem;
}
.reviews .section-note, .galeria .section-note,
.reservas .section-note, .carta .section-note {
  text-align: center; margin-inline: auto;
}

section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); }

/* reveal-on-scroll */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .85s var(--ease-soft), transform .85s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.9rem;
  font-family: var(--sans); font-weight: 500; font-size: .92rem;
  letter-spacing: .04em;
  border-radius: 999px;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), background-color .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-2));
  color: #241205;
  box-shadow: 0 14px 30px -12px rgba(217, 154, 70, .55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(217, 154, 70, .68); }
.btn-ghost {
  border: 1px solid var(--line-gold);
  color: var(--ink);
  background: rgba(244, 236, 221, .04);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(217, 154, 70, .12); transform: translateY(-3px); }
.btn-sm { padding: .6rem 1.3rem; font-size: .82rem; }
.btn-lg { padding: 1.15rem 2.6rem; font-size: 1rem; margin-top: 1rem; }

.flag-icon {
  width: 20px; height: 14px; border-radius: 2px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(244,236,221,.25);
}

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   5. Cursor
   ============================================================= */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  display: none; opacity: 0; transition: opacity .3s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform; }
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--gold-light); border-radius: 50%; }
.cursor-ring {
  width: 30px; height: 30px; margin: -15px; border: 1px solid var(--gold);
  border-radius: 50%; transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), opacity .35s;
}
.cursor.is-interactive .cursor-ring { width: 50px; height: 50px; margin: -25px; opacity: .6; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   6. Ambient dust canvas
   ============================================================= */
.dust-canvas {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; mix-blend-mode: screen;
}

/* =============================================================
   7. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10001;
  background: radial-gradient(ellipse at 50% 40%, var(--bg-3), var(--bg) 70%);
  display: grid; place-items: center;
  transition: opacity .9s var(--ease-soft), clip-path 1.1s var(--ease-soft);
  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-inner { display: grid; place-items: center; gap: .9rem; text-align: center; }
.splash-logo { width: 70px; height: auto; animation: splashFloat 2.6s ease-in-out infinite; }
@keyframes splashFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.splash-line { width: 1px; height: 26px; background: linear-gradient(var(--gold), transparent); }
.splash-word { font-family: var(--serif); letter-spacing: .35em; font-size: .9rem; color: var(--gold-light); text-transform: uppercase; }

/* =============================================================
   8. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(26, 16, 40, .82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: 1rem; width: 100%; }
.nav-zone { display: flex; align-items: center; gap: 1.8rem; }
.nav-zone-left { justify-self: start; }
.nav-zone-right { justify-self: end; }
.nav-brand { display: flex; align-items: center; gap: .6rem; justify-self: center; }
.nav-brand-mark { filter: drop-shadow(0 0 10px rgba(217, 154, 70, .35)); }
.nav-brand-word { font-family: var(--serif); font-size: 1.05rem; letter-spacing: .22em; color: var(--ink); }
.nav-links { display: none; gap: 1.8rem; }
.nav-links a {
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-zone-right .btn-ghost { display: none; }

.nav-burger {
  width: 40px; height: 40px; display: grid; place-items: center; gap: 5px;
}
.nav-burger span { display: block; width: 20px; height: 1px; background: var(--ink); transition: transform .35s var(--ease-out), opacity .35s; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 190;
  background: rgba(26, 16, 40, .98);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
  display: grid; place-items: center;
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; gap: 1.7rem; text-align: center; }
.nav-mobile a { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-zone-right .btn-ghost { display: inline-flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none; }
}

/* =============================================================
   9. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: min(78svh, 660px);
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  padding-top: calc(var(--nav-h) + 1.25rem);
  padding-bottom: 1.25rem;
  overflow: clip;
  isolation: isolate;
}

.hero-mystic { background: radial-gradient(ellipse 120% 90% at 50% 22%, var(--violet-2) 0%, var(--bg) 58%); }

.hero-scene {
  position: absolute; bottom: 0; z-index: -2;
  width: min(46vw, 420px); aspect-ratio: 430 / 838;
  opacity: .78;
}
.hero-scene img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 46%, #000 80%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 46%, #000 80%, transparent 100%);
}
.hero-scene-left {
  left: 0;
  -webkit-mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 55%, transparent 100%);
}
.hero-scene-right {
  right: 0;
  -webkit-mask-image: linear-gradient(270deg, #000 55%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 55%, transparent 100%);
}
@media (max-width: 720px) {
  .hero-scene { width: 58vw; opacity: .55; }
}
@media (max-width: 539px) {
  .hero-scene-left { display: none; }
  .hero-scene-right { width: 60vw; }
}

.hero-smoke-field {
  position: absolute; inset: 0; z-index: -2; pointer-events: none; mix-blend-mode: screen; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 20%, #000 42%, #000 58%, transparent 80%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 20%, #000 42%, #000 58%, transparent 80%, transparent 100%);
}
.smoke {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,236,221,.4) 0%, rgba(180,140,220,.3) 45%, transparent 72%);
  filter: blur(26px);
  opacity: .32;
}
.smoke-a { width: 30%; height: 50%; top: 4%; left: 24%; animation: smokeDriftA 16s ease-in-out infinite; }
.smoke-b { width: 26%; height: 44%; top: 10%; right: 22%; left: auto; animation: smokeDriftB 21s ease-in-out infinite; animation-delay: -4s; }
.smoke-c { width: 34%; height: 34%; bottom: 30%; left: 34%; animation: smokeDriftC 18s ease-in-out infinite; animation-delay: -9s; }
@keyframes smokeDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .25; }
  50% { transform: translate(6%, -6%) scale(1.15); opacity: .42; }
}
@keyframes smokeDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .3; }
  50% { transform: translate(-8%, 5%) scale(1.12); opacity: .16; }
}
@keyframes smokeDriftC {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .22; }
  50% { transform: translate(-5%, -8%) scale(1.22); opacity: .38; }
}
@media (prefers-reduced-motion: reduce) {
  .smoke-a, .smoke-b, .smoke-c { animation-duration: 40s; }
}

.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 78%, rgba(107, 63, 160, .3), transparent 65%),
    linear-gradient(180deg, rgba(14, 8, 22, .5) 0%, rgba(14, 8, 22, .1) 22%, rgba(14, 8, 22, .55) 78%, var(--bg) 100%);
}

.hero-center {
  position: relative; z-index: 1;
  max-width: 720px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.hero-title-center { max-width: 100%; }
.hero-title-center img {
  width: min(90vw, 620px); height: auto;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,.55)) drop-shadow(0 0 34px rgba(217, 154, 70, .3));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
                       linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
              linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  mask-composite: intersect;
  mix-blend-mode: screen;
}
@media (min-width: 720px) { .hero-title-center img { width: min(60vw, 750px); } }
@media (min-width: 540px) { .hero-title-center { letter-spacing: .03em; } }

.hero-subtitle {
  margin-top: -.4rem;
  font-family: var(--sans); font-weight: 500; font-size: .9rem;
  letter-spacing: .5em; text-transform: uppercase; color: var(--gold-light);
  text-indent: .5em;
}

.hero-divider { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; color: var(--gold); }
.hero-divider span { width: 46px; height: 1px; background: linear-gradient(90deg, transparent, var(--line-gold)); }
.hero-divider span:last-child { background: linear-gradient(90deg, var(--line-gold), transparent); }
.hero-divider i { font-style: normal; font-size: .7rem; }

.hero-sub-center {
  font-family: var(--script); font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink-soft);
  max-width: 42ch; margin-top: 1.5rem;
}
.hero-sub-center em { font-style: italic; color: var(--gold-light); }

.hero-actions-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.3rem; }
.hero-actions-ornament { display: block; margin-top: 1.3rem; font-style: normal; color: var(--gold); opacity: .7; font-size: .8rem; }

/* hero video — small floating card under the copy, centered */
.hero-video-float {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  width: min(60vw, 168px); margin-inline: auto;
}
.hero-video-frame {
  position: relative; width: 100%; aspect-ratio: 9 / 16;
  border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.75), 0 0 0 1px rgba(217,154,70,.08);
  isolation: isolate;
}
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-smoke {
  position: absolute; pointer-events: none; z-index: 2; mix-blend-mode: screen;
  border-radius: 50%; filter: blur(22px);
  background: radial-gradient(circle, rgba(217,154,70,.5), transparent 70%);
}
.hero-video-smoke-1 { width: 65%; height: 30%; top: -8%; left: -10%; animation: smokeDriftA 14s ease-in-out infinite; }
.hero-video-smoke-2 { width: 55%; height: 26%; bottom: -8%; right: -10%; animation: smokeDriftB 19s ease-in-out infinite; }
.hero-video-caption { font-family: var(--script); font-style: italic; color: var(--gold-light); font-size: .92rem; text-align: center; }

.has-halo { position: relative; isolation: isolate; }
.has-halo::before {
  content: ""; position: absolute; inset: -2px; z-index: -1; border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(217,154,70,.45), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.has-halo:hover::before { opacity: 1; }

.hero-stats {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem;
  position: relative; z-index: 1;
}
.hero-stats-center { justify-content: center; }
.hero-stat {
  display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
  transition: opacity .35s;
}
.hero-stat:hover { opacity: .78; }
.hero-stat-platform { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.hero-stat-score { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); }
.hero-stat-stars { color: var(--gold); font-size: .82rem; letter-spacing: .1em; }
.hero-stat-ribbon {
  padding: .3rem .8rem; border-radius: 999px;
  background: rgba(217,154,70,.14); border: 1px solid var(--line-gold);
  font-size: .7rem; letter-spacing: .02em; color: var(--gold-light); white-space: nowrap;
}
.hero-stat-divider { width: 1px; height: 28px; background: var(--line); display: none; }
@media (min-width: 540px) { .hero-stat-divider { display: block; } }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid var(--line-gold); border-radius: 20px;
  display: none;
}
.hero-scroll span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 4px; margin-left: -2px;
  background: var(--gold); border-radius: 50%; animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { top: 8px; opacity: 1; } 80% { top: 24px; opacity: 0; } 100% { top: 24px; opacity: 0; } }
@media (min-width: 720px) { .hero-scroll { display: block; } }

/* =============================================================
   10. Social proof
   ============================================================= */
.proof { padding-top: 4rem; padding-bottom: 4rem; }
.proof-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .proof-grid { grid-template-columns: 1fr 1fr; } }

.proof-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: .6rem;
  padding: 2.2rem 2rem; border-radius: 20px;
  background: linear-gradient(165deg, rgba(244,236,221,.06), rgba(244,236,221,.015));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .5s var(--ease-soft), border-color .4s, box-shadow .5s var(--ease-soft);
}
.proof-card:hover { transform: translateY(-6px); border-color: var(--line-gold); box-shadow: 0 26px 50px -22px rgba(217,154,70,.35); }
.proof-card::after {
  content: ""; position: absolute; inset: -40% -10% auto -10%; height: 70%;
  background: radial-gradient(ellipse, rgba(217,154,70,.16), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.proof-card-top { display: flex; align-items: baseline; gap: .9rem; }
.proof-card-platform { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }
.proof-card-score { font-family: var(--serif); font-size: 2.6rem; color: var(--ink); }
.proof-card-stars { color: var(--gold); letter-spacing: .12em; }
.proof-ribbon {
  margin-top: .5rem; display: inline-block; padding: .5rem 1rem; border-radius: 999px;
  background: rgba(217,154,70,.14); border: 1px solid var(--line-gold);
  font-size: .78rem; letter-spacing: .03em; color: var(--gold-light);
}

/* =============================================================
   11. Reviews
   ============================================================= */
.reviews .section-note a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.container-wide { max-width: 900px; }

.rmarq { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.rmarq-row { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); }
.rmarq-row { display: flex; gap: 1.1rem; }
.rmarq-track {
  display: flex; gap: 1.1rem; flex-shrink: 0;
  animation: rmarqLeft 62s linear infinite;
}
.rmarq-row-b .rmarq-track { animation-name: rmarqRight; animation-duration: 68s; }
.rmarq-row:hover .rmarq-track { animation-play-state: paused; }
@keyframes rmarqLeft { to { transform: translateX(-100%); } }
@keyframes rmarqRight { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .rmarq-track { animation-duration: 160s; }
}

.rmarq-card {
  flex: 0 0 auto; width: min(78vw, 300px);
  padding: 1.3rem 1.4rem; border-radius: 16px;
  background: var(--bg-card); border: 1px solid var(--line);
  transition: transform .4s var(--ease-soft), border-color .4s;
}
.rmarq-card:hover { transform: translateY(-4px); border-color: var(--line-gold); }
.rmarq-top { display: flex; align-items: center; gap: .7rem; }
.rmarq-avatar {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-2));
  border: 1px solid rgba(255,255,255,.18);
}
.rmarq-avatar svg { width: 19px; height: 19px; fill: rgba(36, 18, 5, .82); }
.rmarq-avatar-v1 { background: linear-gradient(135deg, var(--gold-light), var(--gold-2)); }
.rmarq-avatar-v2 { background: linear-gradient(135deg, #e8b4ac, #b6473c); }
.rmarq-avatar-v3 { background: linear-gradient(135deg, #a9c98f, #4f9d58); }
.rmarq-avatar-v4 { background: linear-gradient(135deg, #8fb8d6, #3d5a9e); }
.rmarq-avatar-v5 { background: linear-gradient(135deg, #8fd6ce, #2f8f8a); }
.rmarq-avatar-v6 { background: linear-gradient(135deg, #a9c4e0, #4a90c4); }
.rmarq-avatar-v2 svg, .rmarq-avatar-v3 svg, .rmarq-avatar-v4 svg, .rmarq-avatar-v5 svg, .rmarq-avatar-v6 svg { fill: rgba(10, 10, 8, .78); }
.rmarq-id { flex: 1 1 auto; min-width: 0; }
.rmarq-name { font-family: var(--serif); font-size: .86rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rmarq-platform { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); }
.rmarq-stars { flex: 0 0 auto; color: var(--gold); font-size: .74rem; letter-spacing: .06em; }
.rmarq-title { margin-top: .8rem; font-family: var(--script); font-style: italic; color: var(--gold-light); font-size: 1rem; }
.rmarq-text {
  margin-top: .35rem; font-size: .86rem; color: var(--ink-soft);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* =============================================================
   12. Historia
   ============================================================= */
.historia { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); overflow: clip; }
.historia-smoke {
  position: absolute; inset: -10% -10% -10% 40%; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(217,154,70,.12), transparent 70%);
  filter: blur(60px);
}
.historia .container { position: relative; z-index: 1; }
.historia .section-title, .historia .section-note { text-align: center; margin-inline: auto; }
.historia .section-title { max-width: 22ch; }

.elf-grid {
  display: grid; gap: 1.2rem; margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .elf-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .elf-grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; } }

.elf-card { aspect-ratio: 3 / 4.4; }
.elf-card .duende-name { font-size: 1.05rem; }
.elf-card .duende-name span { display: block; font-family: var(--sans); font-size: .68rem; letter-spacing: .04em; color: var(--ink-mute); margin-top: .2rem; }
.elf-card .duende-reveal-copy { padding: 1.1rem; }
.elf-card .duende-drink { font-size: 1rem; }
.elf-card .duende-intention { font-family: var(--script); font-style: italic; font-size: .84rem; color: var(--ink-soft); margin-top: .3rem; }

/* =============================================================
   13. Duendes
   ============================================================= */
.duende-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px -22px rgba(0,0,0,.7);
  transition: box-shadow .5s var(--ease-soft), border-color .5s;
}
.duende-card:hover, .duende-card.is-open { border-color: var(--duende-accent); box-shadow: 0 30px 60px -20px color-mix(in srgb, var(--duende-accent) 45%, transparent); }

.duende-face, .duende-reveal { position: absolute; inset: 0; }
.duende-face img, .duende-reveal img { width: 100%; height: 100%; object-fit: cover; }
.duende-face-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 11, 30,.05) 0%, rgba(20, 11, 30,.15) 45%, rgba(20, 11, 30,.92) 100%);
}
.duende-name {
  position: absolute; left: 1.3rem; right: 1.3rem; bottom: 1.3rem;
  font-size: 1.25rem; color: var(--ink);
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}
.duende-face { transition: opacity .55s var(--ease-soft); }

.duende-reveal {
  opacity: 0; pointer-events: none;
  transition: opacity .55s var(--ease-soft);
}
.duende-reveal img { filter: brightness(.6) saturate(1.1); }
.duende-reveal-copy {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; gap: .35rem;
  background: linear-gradient(180deg, transparent 20%, rgba(14,8,22,.55) 55%, rgba(14,8,22,.95) 100%);
}
.duende-drink { font-family: var(--serif); font-size: 1.15rem; color: var(--duende-accent, var(--gold)); }
.duende-ingredients { font-size: .82rem; color: var(--ink-soft); }
.duende-intention { font-family: var(--script); font-style: italic; font-size: .92rem; color: var(--ink-soft); margin-top: .2rem; }
.duende-price { margin-top: .4rem; font-size: .82rem; letter-spacing: .06em; color: var(--gold-light); }

.duende-card:hover .duende-face,
.duende-card.is-open .duende-face { opacity: 0; }
.duende-card:hover .duende-reveal,
.duende-card.is-open .duende-reveal { opacity: 1; pointer-events: auto; }

/* =============================================================
   13b. El ritual (tarot steps)
   ============================================================= */
.ritual { position: relative; background: var(--bg); overflow: clip; }
.ritual-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(107, 63, 160, .22), transparent 70%);
}
.ritual-title, .ritual-note { text-align: center; margin-inline: auto; }

.ritual-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2.4rem 1.6rem; margin-top: 3.5rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) { .ritual-grid { grid-template-columns: repeat(4, 1fr); gap: 1.6rem; } }

.ritual-step { display: flex; flex-direction: column; align-items: center; text-align: center; }

.tarot-card {
  position: relative; width: 100%; max-width: 220px; aspect-ratio: 3 / 4.6;
  border-radius: 18px;
  background: #0d0716;
  border: 1px solid var(--line-gold);
  box-shadow: 0 20px 45px rgba(10,4,18,.55);
  overflow: hidden;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s;
}
.tarot-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-soft), filter .6s;
  filter: saturate(1.05);
}
.ritual-step:hover .tarot-card img { transform: scale(1.06); }
.tarot-card::before {
  content: ""; position: absolute; inset: 7px; border: 1px solid rgba(217,154,70,.35); border-radius: 12px;
  pointer-events: none; z-index: 2;
}
.tarot-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13,7,22,.6) 0%, transparent 26%, transparent 58%, rgba(13,7,22,.95) 100%),
    linear-gradient(180deg, color-mix(in srgb, var(--tarot-accent, var(--violet-glow)) 35%, transparent), transparent 40%);
  mix-blend-mode: multiply;
}
.ritual-step:hover .tarot-card {
  transform: translateY(-6px);
  border-color: var(--tarot-accent);
  box-shadow: 0 30px 60px -20px color-mix(in srgb, var(--tarot-accent) 45%, transparent);
}
.tarot-numeral {
  position: absolute; z-index: 3; top: .9rem; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: .74rem;
  letter-spacing: .3em; color: var(--gold-light); text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}
.tarot-banner {
  position: absolute; z-index: 3; left: 1rem; right: 1rem; bottom: 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.tarot-banner span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line-gold)); }
.tarot-banner span:last-child { background: linear-gradient(90deg, var(--line-gold), transparent); }
.tarot-banner h3 {
  font-family: var(--serif); font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

.ritual-step-lead { margin-top: 1.3rem; font-family: var(--serif); font-size: 1.05rem; color: var(--gold-light); }
.ritual-step-desc { margin-top: .4rem; font-size: .86rem; color: var(--ink-soft); line-height: 1.6; max-width: 24ch; }

@media (max-width: 640px) {
  .tarot-card { max-width: 165px; }
}

/* =============================================================
   13c. Música en vivo
   ============================================================= */
.live {
  position: relative; overflow: clip;
  min-height: min(64svh, 560px);
  display: flex; align-items: center; justify-content: center;
}
.live-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.live-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,7,22,.7) 0%, rgba(13,7,22,.32) 35%, rgba(13,7,22,.5) 65%, rgba(13,7,22,.95) 100%),
    radial-gradient(ellipse 60% 55% at 50% 42%, rgba(107, 63, 160, .22), transparent 70%);
}
.live-inner { position: relative; z-index: 1; max-width: 620px; margin-inline: auto; text-align: center; padding-block: 4rem; }
.live-inner .section-title, .live-inner .section-note { text-align: center; margin-inline: auto; }
.live-days { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.live-days span {
  font-family: var(--serif); font-size: .84rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--line-gold); border-radius: 999px;
  padding: .6rem 1.5rem; background: rgba(217, 154, 70, .1);
  transition: background .35s, border-color .35s, transform .35s var(--ease-soft);
}
.live-days span:hover { background: rgba(217, 154, 70, .2); border-color: var(--gold); transform: translateY(-2px); }

/* =============================================================
   14. Árbol
   ============================================================= */
.arbol { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.arbol-grid { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 960px) { .arbol-grid { grid-template-columns: .9fr 1.1fr; } }
.arbol-figures { position: relative; }
.arbol-figure-main {
  border-radius: 22px; width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.arbol-figure-small {
  position: absolute; width: 46%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 16px; border: 4px solid var(--bg);
  bottom: -8%; right: -8%;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.7);
}
.arbol-text { color: var(--ink-soft); margin-top: 1.1rem; max-width: 52ch; }
.arbol-motto {
  margin-top: 1.6rem; font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--gold-light); letter-spacing: .04em;
}

/* =============================================================
   15. Reservas / Carta (placeholders)
   ============================================================= */
.reservas, .carta { text-align: center; }
.reservas { background: var(--bg-2); overflow: clip; }
.reservas-smoke {
  position: absolute; inset: -20% 0 0 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(217,154,70,.14), transparent 70%);
  filter: blur(50px);
}
.reservas-inner, .carta-inner { max-width: 640px; margin-inline: auto; position: relative; z-index: 1; }
.carta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.8rem; }

/* =============================================================
   15b. Redes sociales
   ============================================================= */
.social { position: relative; overflow: clip; background: var(--bg); padding-block: 6rem; }
.social-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 78% 45%, rgba(155, 111, 214, .35), transparent 68%),
    radial-gradient(ellipse 40% 40% at 15% 20%, rgba(107, 63, 160, .25), transparent 70%);
  filter: blur(10px);
}
.social-inner {
  position: relative; z-index: 1; display: grid; gap: 3rem;
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) { .social-inner { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.social-copy .section-note { margin-bottom: 0; }
.social-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.social-icon { width: 18px; height: 18px; fill: currentColor; flex: none; }

.social-phones {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 420px; padding-block: 1rem;
}
.social-phone {
  position: absolute; width: 230px; aspect-ratio: 9 / 19.5;
  border-radius: 34px; border: 8px solid #150c22; background: #0c0714;
  overflow: hidden; box-shadow: 0 30px 60px rgba(10, 4, 18, .6), 0 0 0 1px rgba(217,154,70,.15);
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), border-color .55s;
  will-change: transform;
}
.social-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform .6s var(--ease-soft); }
.social-phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 46%; height: 22px; background: #150c22; border-radius: 0 0 14px 14px; z-index: 2;
}
.social-phone-ig {
  transform: rotate(-7deg) translate(-58px, 10px);
  z-index: 2;
}
.social-phone-tt {
  transform: rotate(6deg) translate(58px, -18px);
  z-index: 1;
}
.social-phone-ig:hover {
  transform: rotate(-2deg) translate(-58px, 4px) scale(1.06);
  border-color: rgba(217, 154, 70, .7);
  box-shadow: 0 30px 70px rgba(10, 4, 18, .65), 0 0 40px rgba(217, 154, 70, .35), 0 0 0 1px rgba(217,154,70,.4);
  z-index: 3;
}
.social-phone-tt:hover {
  transform: rotate(2deg) translate(58px, -24px) scale(1.06);
  border-color: rgba(155, 111, 214, .7);
  box-shadow: 0 30px 70px rgba(10, 4, 18, .65), 0 0 40px rgba(155, 111, 214, .4), 0 0 0 1px rgba(155,111,214,.4);
  z-index: 3;
}
.social-phone:hover img { transform: scale(1.04); }

@media (max-width: 640px) {
  .social-phones { min-height: 340px; }
  .social-phone { width: 175px; }
  .social-phone-ig { transform: rotate(-7deg) translate(-42px, 6px); }
  .social-phone-tt { transform: rotate(6deg) translate(42px, -12px); }
  .social-phone-ig:hover { transform: rotate(-2deg) translate(-42px, 0px) scale(1.05); }
  .social-phone-tt:hover { transform: rotate(2deg) translate(42px, -16px) scale(1.05); }
}

/* neon glow streaks */
.social-neon {
  position: absolute; pointer-events: none; border-radius: 999px; opacity: .5;
  filter: blur(38px); mix-blend-mode: screen; animation: socialNeonPulse 6s ease-in-out infinite;
}
.social-neon-a {
  width: 55%; height: 70px; top: 8%; right: -10%;
  background: linear-gradient(90deg, transparent, var(--violet-glow), transparent);
  transform: rotate(-16deg);
}
.social-neon-b {
  width: 45%; height: 60px; bottom: 10%; left: -8%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: rotate(12deg); animation-delay: -3s;
}
@keyframes socialNeonPulse {
  0%, 100% { opacity: .28; }
  50% { opacity: .6; }
}

/* confetti */
.social-confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.social-confetti i {
  position: absolute; top: -8%; width: 8px; height: 14px; border-radius: 2px;
  animation: confettiFall linear infinite;
  opacity: .85;
}
.social-confetti i:nth-child(1)  { left: 6%;  background: var(--gold);        animation-duration: 11s; animation-delay: -1s;  }
.social-confetti i:nth-child(2)  { left: 16%; background: var(--violet-glow); animation-duration: 14s; animation-delay: -6s;  }
.social-confetti i:nth-child(3)  { left: 26%; background: var(--gold-light);  animation-duration: 9s;  animation-delay: -3s;  }
.social-confetti i:nth-child(4)  { left: 38%; background: var(--violet);      animation-duration: 13s; animation-delay: -8s;  }
.social-confetti i:nth-child(5)  { left: 50%; background: var(--gold);        animation-duration: 10s; animation-delay: -2s;  }
.social-confetti i:nth-child(6)  { left: 61%; background: var(--violet-glow); animation-duration: 15s; animation-delay: -9s;  }
.social-confetti i:nth-child(7)  { left: 70%; background: var(--gold-light);  animation-duration: 12s; animation-delay: -4s;  }
.social-confetti i:nth-child(8)  { left: 78%; background: var(--violet);      animation-duration: 9.5s; animation-delay: -7s; }
.social-confetti i:nth-child(9)  { left: 86%; background: var(--gold);        animation-duration: 14s; animation-delay: -5s;  }
.social-confetti i:nth-child(10) { left: 92%; background: var(--violet-glow); animation-duration: 11s; animation-delay: -10s; }
.social-confetti i:nth-child(11) { left: 45%; background: var(--gold-light);  animation-duration: 16s; animation-delay: -12s; }
.social-confetti i:nth-child(12) { left: 8%;  background: var(--violet);      animation-duration: 10.5s; animation-delay: -13s; }
@keyframes confettiFall {
  0%   { transform: translateY(-10%) rotate(0deg); opacity: 0; }
  8%   { opacity: .85; }
  92%  { opacity: .85; }
  100% { transform: translateY(115vh) rotate(540deg); opacity: 0; }
}

/* sparks */
.social-sparks { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.social-sparks i {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px 2px rgba(241, 207, 148, .8);
  animation: sparkTwinkle ease-in-out infinite;
}
.social-sparks i:nth-child(1)  { top: 15%; left: 10%; animation-duration: 3.2s; animation-delay: -.4s; }
.social-sparks i:nth-child(2)  { top: 65%; left: 20%; animation-duration: 4s;   animation-delay: -1.6s; box-shadow: 0 0 8px 2px rgba(155,111,214,.8); background: var(--violet-glow); }
.social-sparks i:nth-child(3)  { top: 35%; left: 45%; animation-duration: 3.6s; animation-delay: -2.1s; }
.social-sparks i:nth-child(4)  { top: 80%; left: 55%; animation-duration: 2.8s; animation-delay: -.8s; box-shadow: 0 0 8px 2px rgba(155,111,214,.8); background: var(--violet-glow); }
.social-sparks i:nth-child(5)  { top: 10%; left: 65%; animation-duration: 3.4s; animation-delay: -1.2s; }
.social-sparks i:nth-child(6)  { top: 50%; left: 8%;  animation-duration: 4.4s; animation-delay: -2.6s; }
.social-sparks i:nth-child(7)  { top: 25%; left: 88%; animation-duration: 3s;   animation-delay: -1.9s; box-shadow: 0 0 8px 2px rgba(155,111,214,.8); background: var(--violet-glow); }
.social-sparks i:nth-child(8)  { top: 72%; left: 92%; animation-duration: 3.8s; animation-delay: -.2s; }
.social-sparks i:nth-child(9)  { top: 45%; left: 78%; animation-duration: 3.3s; animation-delay: -3s;  }
.social-sparks i:nth-child(10) { top: 90%; left: 35%; animation-duration: 4.2s; animation-delay: -1.4s; }
@keyframes sparkTwinkle {
  0%, 100% { opacity: 0; transform: scale(.5) translateY(0); }
  50% { opacity: 1; transform: scale(1.3) translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .social-neon, .social-confetti i, .social-sparks i { animation: none; opacity: .25; }
}

/* =============================================================
   16. Galería
   ============================================================= */
.gallery-grid { display: grid; gap: 1rem; margin-top: 3rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5;
  border: 1px solid var(--line);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-soft), filter .5s; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(14,8,22,.55) 100%);
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover img { transform: scale(1.1); filter: saturate(1.15) brightness(1.03); }
.gallery-item:hover::after { opacity: 1; }

.gallery-videos { margin-top: 3rem; }
.gallery-videos-label { text-align: center; font-family: var(--script); font-style: italic; color: var(--gold-light); margin-bottom: 1.2rem; }
.gallery-videos-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 720px) { .gallery-videos-row { grid-template-columns: repeat(4, 1fr); } }
.gallery-video {
  width: 100%; aspect-ratio: 9/16; object-fit: cover; border-radius: 14px;
  border: 1px solid var(--line); background: var(--bg-3);
}

/* lightbox */
.lightbox {
  border: 0; padding: 0; max-width: 94vw; max-height: 94vh; background: transparent; overflow: visible;
}
.lightbox::backdrop { background: rgba(6, 10, 20, .88); backdrop-filter: blur(6px); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox-panel { position: relative; max-width: min(90vw, 720px); padding-top: 3.2rem; }
.lightbox img { max-width: min(90vw, 720px); max-height: 72vh; border-radius: 12px; box-shadow: 0 40px 90px -20px rgba(0,0,0,.8); }
.lightbox-caption { color: var(--ink-soft); text-align: center; margin-top: 1rem; font-size: .88rem; }
.lightbox-close {
  position: absolute; top: 0; right: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-gold); color: var(--ink); font-size: 1rem;
  background: rgba(26, 16, 40, .7);
}

/* =============================================================
   16b. Preguntas frecuentes
   ============================================================= */
.faq { background: var(--bg-2); }
.faq .section-title, .faq .section-note { text-align: center; margin-inline: auto; }
.faq-list { max-width: 760px; margin: 3rem auto 0; display: flex; flex-direction: column; }

.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: 1.5rem;
  padding: 1.4rem .4rem;
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-light); }

.faq-icon { position: relative; flex: none; width: 20px; height: 20px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--gold-light);
  transform: translate(-50%, -50%); transition: transform .35s var(--ease-soft), opacity .35s;
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; }
.faq-item[open] .faq-icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-item p {
  padding: 0 .4rem 1.5rem; margin: 0;
  font-size: .94rem; color: var(--ink-soft); line-height: 1.65; max-width: 62ch;
}
.faq-item p a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 4rem; }
.footer-inner {
  display: grid; gap: 2.4rem; padding-bottom: 3rem;
  grid-template-columns: 1fr; text-align: center;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: auto 1fr auto; text-align: left; align-items: center; }
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
@media (min-width: 720px) { .footer-brand { align-items: flex-start; } }
.footer-since { font-size: .78rem; letter-spacing: .08em; color: var(--ink-mute); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem; }
@media (min-width: 720px) { .footer-links { justify-content: center; } }
.footer-links a { font-size: .84rem; color: var(--ink-soft); }
.footer-links a:hover { color: var(--gold-light); }
.footer-meta { font-size: .84rem; color: var(--ink-mute); display: flex; flex-direction: column; gap: .5rem; align-items: center; }
@media (min-width: 720px) { .footer-meta { align-items: flex-end; } }
.footer-social a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.4rem; text-align: center; font-size: .76rem; color: var(--ink-mute); }

/* =============================================================
   18. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .dust-canvas { display: none; }
  .splash-logo { animation: none; }
  .hero-scroll span { animation: none; }
}
