/* ============================================================
   Vive el Momento — cinematic direct booking site
   Neon-noir tropical: near-black ink, warm sand type,
   neon coral for the brand, teal for signals.
   ============================================================ */

:root {
  /* Background: deep ocean blue (hue ~205°) — the measured complement of
     the photos' dominant warm travertine/wood tones (hue ~25°), and the
     Caribbean blue already living in the pool and bedding shots. */
  --ink: #0d161c;
  --ink-2: #15232e;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(242, 234, 217, 0.16);
  --sand: #f4edde;
  --sand-dim: rgba(244, 237, 222, 0.74);
  --neon: #ff4d7e;
  --neon-soft: rgba(255, 77, 126, 0.45);
  --teal: #2dd6c1;
  --gold: #c9a35f;
  /* The real sign above the bed: warm champagne script + cool white caps */
  --sign: #fff3d6;
  --sign-glow: rgba(255, 205, 120, 0.55);

  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-sign: "Dancing Script", "Brush Script MT", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--sand);
  font-family: var(--font-ui);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img, canvas, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); }

.skip-link { position: absolute; left: -999px; z-index: 300; background: var(--neon); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 0; top: 0; }

.kicker {
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.7rem;
  font-weight: 600; color: var(--sand-dim); margin-bottom: 1rem;
}
.kicker--neon { color: var(--neon); text-shadow: 0 0 18px var(--neon-soft); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem; transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__brand {
  font-family: var(--font-sign); font-weight: 600; font-size: clamp(3.4rem, 9vw, 5.4rem);
  line-height: 1.05; text-align: center; color: var(--sign);
  text-shadow: 0 0 12px var(--sign-glow), 0 0 44px var(--sign-glow), 0 0 90px var(--sign-glow);
  animation: neonFlicker 3.2s linear infinite;
}
@keyframes neonFlicker {
  0%, 62%, 66%, 100% { opacity: 1; }
  63%, 65% { opacity: 0.55; }
}
.loader__bar {
  width: min(260px, 60vw); height: 2px; background: rgba(242, 234, 217, 0.14);
  border-radius: 2px; overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--teal));
  transition: width 0.25s var(--ease);
}
.loader__hint { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sand-dim); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem clamp(1rem, 4vw, 2.2rem);
  background: linear-gradient(180deg, rgba(10, 18, 24, 0.85), rgba(10, 18, 24, 0));
  transform: translateY(-110%); transition: transform 0.5s var(--ease);
}
.nav.is-visible { transform: none; }
.nav__brand { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.nav__cta {
  font-size: 0.85rem; font-weight: 600; padding: 0.55rem 1.2rem; border-radius: 100px;
  border: 1px solid var(--neon); color: #fff; background: rgba(255, 77, 126, 0.12);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav__cta:hover { background: var(--neon); box-shadow: 0 0 24px var(--neon-soft); }

/* ---------- Act I: descent ---------- */
.descent { height: 560vh; position: relative; }
.descent__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
#descent-canvas { width: 100%; height: 100%; }

.descent__arrival {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; pointer-events: none;  /* opacity driven by scroll */
}
.descent__fallback { position: absolute; inset: 0; }
.descent__fallback img, .descent__fallback video { width: 100%; height: 100%; object-fit: cover; }
.descent__play {
  position: absolute; left: 50%; bottom: 18%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  background: none; border: none; color: #fff; cursor: pointer; z-index: 3;
}
.descent__play-ring {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.5rem; padding-left: 5px;
  background: rgba(10, 18, 24, 0.55); border: 1.5px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px); transition: transform 0.3s var(--ease), border-color 0.3s;
}
.descent__play:hover .descent__play-ring { transform: scale(1.08); border-color: var(--neon); }
.descent__play-label { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }

.descent__overlay { position: absolute; inset: 0; pointer-events: none; }
.descent__stage {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 1.4rem; opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.descent__stage.is-on { opacity: 1; transform: none; }
.brand-neon {
  font-family: var(--font-sign); font-weight: 600;
  font-size: clamp(4.4rem, 13vw, 9rem); line-height: 1.0; color: var(--sign);
  text-shadow: 0 0 10px var(--sign-glow), 0 0 36px var(--sign-glow), 0 0 100px var(--sign-glow);
}
.brand-neon-sub {
  margin-top: 0.9rem; font-size: clamp(0.8rem, 1.8vw, 1.05rem); font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase; color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 0 26px rgba(255, 255, 255, 0.45);
}
.descent__sub { margin-top: 1.4rem; font-size: clamp(0.95rem, 2.2vw, 1.2rem); color: var(--sand); opacity: 0.85; text-shadow: 0 1px 12px rgba(0,0,0,0.7); }
.line-lg {
  font-family: var(--font-display); font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  color: #fff; text-shadow: 0 2px 26px rgba(0, 0, 0, 0.75);
}
.descent__hint {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75); animation: hintPulse 2.4s var(--ease) infinite;
}
@keyframes hintPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }
.descent__hint.is-gone { animation: none; opacity: 0; transition: opacity 0.5s var(--ease); }

/* ---------- Act II: walkthrough ----------
   Editorial rows: every photo is visible in FULL at all times.
   Portrait photos pair up side by side; landscape and the closing
   sunrise get a row of their own. */
.walkthrough {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1.2rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: clamp(3.5rem, 10vh, 7rem);
}
.wt-row { display: grid; gap: clamp(1.2rem, 3vw, 2.4rem); align-items: start; }
.wt-row--duo { grid-template-columns: 1fr 1fr; }
.wt-row--solo { justify-items: center; }
.wt-row--solo .wt-item { width: 100%; max-width: 900px; }
.wt-row--solo .wt-item--portrait { max-width: min(100%, 64vh); }
.wt-item { margin: 0; }
.wt-fig {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background-size: cover; background-position: center;   /* blur-up placeholder */
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.wt-fig img { width: 100%; height: auto; display: block; }
.wt-cap { padding: 1.1rem 0.2rem 0; }
.wt-cap .kicker { margin-bottom: 0.35rem; }
.wt-cap h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: #fff; }
.wt-cap p { margin-top: 0.35rem; color: var(--sand-dim); font-size: 0.95rem; max-width: 36rem; }
@media (max-width: 700px) {
  .wt-row--duo { grid-template-columns: 1fr; }
  .wt-row--solo .wt-item--portrait { max-width: 100%; }
}

/* ---------- Stops ---------- */
.stop { padding: clamp(5rem, 14vh, 9rem) clamp(1.2rem, 5vw, 3rem); max-width: var(--maxw); margin: 0 auto; }
.stop__intro { max-width: 700px; margin-bottom: clamp(2rem, 6vh, 3.4rem); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* 3D tour banner */
.tour-banner {
  display: block; position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); min-height: 340px;
  background-image: linear-gradient(100deg, rgba(10,18,24,0.88) 30%, rgba(10,18,24,0.25) 75%),
                    var(--tour-banner-img, none);
  background-size: cover; background-position: center right;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.tour-banner:hover { border-color: var(--sign); box-shadow: 0 0 40px rgba(255, 205, 120, 0.18); }
.tour-banner__inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; gap: 0.5rem; padding: clamp(1.4rem, 5vw, 3rem); max-width: 34rem;
}
.tour-banner__title { font-family: var(--font-display); font-size: clamp(1.7rem, 4.4vw, 2.7rem); color: #fff; }
.tour-banner__sub { color: var(--sand-dim); font-size: 0.95rem; }
.tour-banner__btn {
  margin-top: 1.1rem; align-self: flex-start; padding: 0.8rem 1.6rem; border-radius: 100px;
  background: var(--neon); color: #fff; font-weight: 600; font-size: 0.95rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.tour-banner:hover .tour-banner__btn { box-shadow: 0 0 28px var(--neon-soft); transform: translateY(-1px); }

/* Rooftop */
.rooftop-grid { display: grid; gap: 0.9rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .rooftop-grid { grid-template-columns: repeat(3, 1fr); } .rooftop-card--wide { grid-column: span 2; } }
.rooftop-card {
  position: relative; border-radius: 14px; overflow: hidden; min-height: 260px;
  background-size: cover; background-position: center; border: 1px solid var(--line);
}
.rooftop-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,18,24,0) 40%, rgba(10,18,24,0.82) 100%); }
.rooftop-card figcaption { position: absolute; left: 0; bottom: 0; right: 0; z-index: 2; padding: 1.2rem 1.3rem; display: flex; flex-direction: column; }
.rooftop-card strong { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; color: #fff; }
.rooftop-card span { font-size: 0.88rem; color: var(--sand-dim); }

/* Gallery */
.gallery {
  display: flex; gap: 0.9rem; overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 calc(-1 * clamp(1.2rem, 5vw, 3rem));
  padding: 0.4rem clamp(1.2rem, 5vw, 3rem) 1.2rem;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--neon) transparent;
}
.gallery figure {
  flex: 0 0 auto; width: min(72vw, 400px); aspect-ratio: 3/4; border-radius: 14px;
  overflow: hidden; position: relative; scroll-snap-align: center; cursor: pointer;
  background-size: cover; background-position: center; border: 1px solid var(--line);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery figure:hover img { transform: scale(1.045); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.9rem 1.1rem; font-size: 0.9rem;
  color: #fff; background: linear-gradient(180deg, rgba(10,18,24,0), rgba(10,18,24,0.75));
}
.gallery__hint { text-align: center; font-size: 0.78rem; color: var(--sand-dim); }

/* Location */
.location { max-width: 620px; }
.location__list { list-style: none; }
.location__list li { display: flex; align-items: baseline; gap: 0.7rem; padding: 0.65rem 0; border-bottom: 1px dashed rgba(242, 234, 217, 0.12); }
.location__place { font-family: var(--font-display); font-size: 1.15rem; }
.location__dots { flex: 1; }
.location__dist { color: var(--teal); font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
.location__note { margin-top: 1.2rem; font-size: 0.85rem; color: var(--sand-dim); }

/* Proof */
.stop--proof { text-align: center; }
.proof__score { font-family: var(--font-display); font-size: clamp(2.6rem, 8vw, 4.4rem); }
.proof__score span { color: var(--gold); font-size: 0.45em; letter-spacing: 0.18em; vertical-align: 0.35em; }
.proof__label { color: var(--sand-dim); font-size: 0.92rem; margin-top: 0.2rem; }
.proof__quotes { display: grid; gap: 0.9rem; grid-template-columns: 1fr; margin-top: 2.2rem; text-align: left; }
@media (min-width: 760px) { .proof__quotes { grid-template-columns: repeat(3, 1fr); } }
.proof__quotes blockquote {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.4rem; font-family: var(--font-display); font-style: italic; font-size: 1.02rem;
}
.proof__quotes cite { display: block; margin-top: 0.8rem; font-family: var(--font-ui); font-style: normal; font-size: 0.8rem; color: var(--sand-dim); }

/* ---------- Booking ---------- */
.book { padding: clamp(5rem, 14vh, 9rem) clamp(1.2rem, 5vw, 3rem); max-width: var(--maxw); margin: 0 auto; }
.book__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 880px) { .book__grid { grid-template-columns: 1.05fr 0.95fr; align-items: start; } }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.2rem, 3vw, 1.8rem); }

.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
.cal__month { font-family: var(--font-display); font-size: 1.2rem; }
.cal__nav {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: none; color: var(--sand); font-size: 1.2rem; cursor: pointer; transition: border-color 0.25s, color 0.25s;
}
.cal__nav:hover:not(:disabled) { border-color: var(--neon); color: var(--neon); }
.cal__nav:disabled { opacity: 0.3; cursor: default; }
.cal { width: 100%; border-collapse: collapse; text-align: center; table-layout: fixed; }
.cal th { font-size: 0.68rem; font-weight: 600; color: var(--sand-dim); text-transform: uppercase; letter-spacing: 0.08em; padding-bottom: 0.5rem; }
.cal td { padding: 2px; }
.cal button, .cal .cal-cell {
  width: 100%; aspect-ratio: 1; display: grid; place-items: center; border-radius: 10px;
  border: none; background: none; color: var(--sand); font: inherit; font-size: 0.9rem;
}
.cal button { cursor: pointer; border: 1px solid transparent; transition: border-color 0.2s, background 0.2s; }
.cal button:hover { border-color: var(--teal); }
.cal .is-booked { color: rgba(242, 234, 217, 0.28); text-decoration: line-through; }
.cal .is-past { color: rgba(242, 234, 217, 0.18); }
.cal .is-sel { background: rgba(45, 214, 193, 0.16); border: 1px solid var(--teal) !important; }
.cal .is-edge { background: var(--teal); color: var(--ink); font-weight: 600; }
.cal__legend { display: flex; gap: 1.2rem; justify-content: center; font-size: 0.75rem; color: var(--sand-dim); margin-top: 0.8rem; }
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 5px; }
.dot--free { border: 1px solid var(--sand-dim); }
.dot--busy { background: rgba(242, 234, 217, 0.25); }
.dot--sel { background: var(--teal); }
.cal__status { text-align: center; font-size: 0.78rem; color: var(--sand-dim); margin-top: 0.7rem; }

.quote { border-bottom: 1px solid var(--line); padding-bottom: 1.1rem; margin-bottom: 1.1rem; }
.quote__dates { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.7rem; }
.quote__lines div { display: flex; justify-content: space-between; padding: 0.22rem 0; font-size: 0.95rem; color: var(--sand-dim); }
.quote__lines .quote__total { border-top: 1px dashed var(--line); margin-top: 0.5rem; padding-top: 0.6rem; color: var(--sand); font-weight: 600; font-size: 1.06rem; }
#quote-vs-airbnb dd { color: var(--sand-dim); text-decoration: line-through; }
#quote-savings dd { color: var(--teal); font-weight: 700; }
.quote__footnote { font-size: 0.72rem; color: var(--sand-dim); margin-top: 0.5rem; line-height: 1.4; }
.quote__empty { font-size: 0.92rem; color: var(--sand-dim); margin-bottom: 1.2rem; }

#book-form label { display: block; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--sand-dim); margin-bottom: 0.9rem; }
#book-form .opt { opacity: 0.6; }
#book-form input, #book-form select {
  display: block; width: 100%; margin-top: 0.3rem; padding: 0.7rem 0.85rem;
  background: rgba(10, 18, 24, 0.6); border: 1px solid var(--line); border-radius: 10px;
  color: var(--sand); font: inherit; transition: border-color 0.25s;
}
#book-form input:focus, #book-form select:focus { outline: none; border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 0.8rem; }
#quote-los dd { color: var(--teal); font-weight: 600; }

.btn-neon {
  width: 100%; padding: 0.95rem 1.4rem; border-radius: 100px; border: none;
  background: var(--neon); color: #fff; font: inherit; font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: box-shadow 0.3s, transform 0.3s, opacity 0.3s;
}
.btn-neon:hover:not(:disabled) { box-shadow: 0 0 30px var(--neon-soft); transform: translateY(-1px); }
.btn-neon:disabled { opacity: 0.45; cursor: default; }
.btn-neon--secondary {
  background: rgba(45, 214, 193, 0.16); color: var(--teal);
}
.btn-neon--secondary:hover:not(:disabled) { box-shadow: 0 0 24px rgba(45, 214, 193, 0.28); }

/* Progressive payment disclosure: full payment is the primary CTA; the
   deposit option is a small text link below it, which reveals a PayPal
   box — itself followed by a smaller "save more via Wise" link. */
.pay-flow { display: flex; flex-direction: column; }
.pay-alt {
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  width: 100%; margin-top: 0.7rem; padding: 0.3rem; background: none; border: none;
  color: var(--sand-dim); font: inherit; font-size: 0.82rem; text-decoration: underline;
  text-underline-offset: 2px; cursor: pointer; transition: color 0.2s;
}
.pay-alt:hover { color: var(--teal); }
.pay-alt--nested { font-size: 0.78rem; margin-top: 0.5rem; }
.pay-alt__chevron { display: inline-block; font-size: 0.7em; transition: transform 0.25s var(--ease); }
.pay-alt.is-open .pay-alt__chevron { transform: rotate(180deg); }

.pay-box {
  margin-top: 0.9rem; padding: 1rem 1.1rem; border: 1px solid var(--line);
  border-radius: 12px; background: rgba(255, 255, 255, 0.03);
}
.pay-box--nested { border-color: rgba(45, 214, 193, 0.3); background: rgba(45, 214, 193, 0.05); }
.pay-box__breakdown { font-size: 0.92rem; color: var(--sand); margin-bottom: 0.7rem; }
.pay-box__note { font-size: 0.78rem; color: var(--sand-dim); margin-top: 0.6rem; }

.form-error { margin-top: 0.8rem; color: #ff7d9d; font-size: 0.9rem; }
.form-note { margin-top: 0.9rem; font-size: 0.78rem; color: var(--sand-dim); }

/* FAQ */
.faq { max-width: 700px; margin-top: clamp(2.5rem, 7vh, 4rem); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.05rem 0; font-family: var(--font-display);
  font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--neon); font-size: 1.3rem; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 0 1.1rem; color: var(--sand-dim); font-size: 0.95rem; max-width: 60ch; }

/* ---------- Footer ---------- */
.footer { text-align: center; padding: 3rem 1.4rem 3.6rem; color: var(--sand-dim); font-size: 0.85rem; border-top: 1px solid var(--line); }
.footer em { font-family: var(--font-sign); font-style: normal; font-size: 1.3em; color: var(--sign); text-shadow: 0 0 14px var(--sign-glow); }
.footer p + p { margin-top: 0.3rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 250; background: rgba(8, 14, 19, 0.95);
  display: grid; place-items: center; padding: clamp(0.8rem, 4vw, 2.6rem);
}
.lightbox figure { max-width: 1100px; width: 100%; text-align: center; }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 10px; }
.lightbox figcaption { margin-top: 0.9rem; color: var(--sand-dim); }
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22); color: #fff; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; transition: background 0.25s;
}
.lightbox__close { top: 1rem; right: 1rem; width: 44px; height: 44px; font-size: 1.5rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.8rem; }
.lightbox__nav--prev { left: 0.8rem; }
.lightbox__nav--next { right: 0.8rem; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--neon); }

/* ---------- Motion & tier adjustments ---------- */
body.tier-lite .descent { height: auto; }
body.tier-lite .descent__sticky { position: relative; height: 100svh; }
body.tier-lite #descent-canvas { display: none; }
body.tier-lite .descent__hint { display: none; }
body.tier-lite .descent__arrival { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .descent__stage, .scene__media img, .scene__caption { transition: none !important; opacity: 1 !important; transform: none !important; }
  .loader__brand { animation: none; }
  .descent__hint { animation: none; }
}
