/* ============================================================
   BUSINESS AND FUN — styles.css
   Archetype: Editorial Adventure Premium (Dark Navy)
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:        #060D1A;
  --navy-2:      #0A1628;
  --navy-3:      #0F1F38;
  --sky:         #1E9EFF;
  --sky-dim:     rgba(30,158,255,.15);
  --orange:      #FF6B35;
  --orange-dim:  rgba(255,107,53,.12);
  --gold:        #F4C842;
  --gold-dim:    rgba(244,200,66,.10);
  --cream:       #F0EDE8;
  --cream-2:     #C8C4BE;
  --cream-3:     rgba(240,237,232,.55);
  --ink:         #F0EDE8;
  --ink-mute:    rgba(240,237,232,.55);
  --line:        rgba(240,237,232,.10);
  --line-strong: rgba(240,237,232,.22);

  --nav-h:       72px;
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--navy);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  cursor: none;
}

@media (hover: none) {
  body { cursor: auto; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: inherit; font: inherit; color: inherit; }

/* ── Typography scale ──────────────────────────────────────── */
.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-mono    { font-family: 'Space Mono', 'Courier New', monospace; }

/* ── Aurora background ─────────────────────────────────────── */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(30,158,255,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(255,107,53,.07) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 90%, rgba(244,200,66,.05) 0%, transparent 50%);
  animation: auroraShift 40s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { opacity: .6; transform: scale(1) translateY(0); }
  50%  { opacity: 1;  transform: scale(1.08) translateY(-2%); }
  100% { opacity: .7; transform: scale(1.03) translateY(1%); }
}

.grain-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* ── All content above aurora ──────────────────────────────── */
.nav, .hero, .splash, .cursor, .side-mark,
.marquee-strip, .section-about, .section-destinations,
.section-services, .section-gallery, .section-groups,
.section-quote, .footer, .mobile-nav {
  position: relative;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   SPLASH
══════════════════════════════════════════════════════════════ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* CSS safety: hide at 4.5s even if JS fails */
  animation: splashSafety .01s 4.5s forwards;
  transition: opacity .6s var(--ease-out), clip-path .7s var(--ease-in-out);
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.splash-logo {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  overflow: hidden;
}
.splash-word, .splash-amp {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(60px);
  animation: splashWordIn .7s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * .18s + .2s);
}
.splash-amp {
  color: var(--sky);
  font-style: italic;
}
@keyframes splashWordIn {
  to { opacity: 1; transform: translateY(0); }
}

.splash-bar {
  width: min(280px, 60vw);
  height: 1px;
  background: var(--line-strong);
  overflow: hidden;
}
.splash-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sky), var(--orange));
  width: 0;
  animation: splashFill 2.8s var(--ease-out) .8s forwards;
}
@keyframes splashFill {
  to { width: 100%; }
}

.splash-sub {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: 0;
  animation: splashWordIn .5s var(--ease-out) 1.2s forwards;
}

/* ══════════════════════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
  will-change: transform;
}
.cursor.is-ready { opacity: 1; }

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(240,237,232,.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out),
              border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.cursor.is-hover .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--sky);
  background: rgba(30,158,255,.06);
}
.cursor.is-wa .cursor-ring {
  border-color: #25D366;
  background: rgba(37,211,102,.08);
}
.cursor.is-cta .cursor-ring {
  border-color: var(--orange);
  background: rgba(255,107,53,.08);
}

.cursor-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Space Mono', monospace;
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
}
.cursor.is-hover .cursor-label { opacity: 1; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   SIDE MARK
══════════════════════════════════════════════════════════════ */
.side-mark {
  position: fixed;
  right: -1px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: .75rem;
  pointer-events: none;
}
.side-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}
.side-text {
  font-family: 'Space Mono', monospace;
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  white-space: nowrap;
}

@media (max-width: 1023px) {
  .side-mark { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(6,13,26,.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-mute);
  border-radius: 4px;
  transition: color .25s, background .25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .8rem; right: .8rem;
  height: 1px;
  background: var(--sky);
  transform: scaleX(0);
  transition: transform .3s var(--ease-out);
  transform-origin: left;
}
.nav-link:hover, .nav-link.is-active { color: var(--cream); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.nav-num {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  color: var(--sky);
  opacity: .7;
  letter-spacing: .05em;
}

.nav-cta {
  flex-shrink: 0;
  padding: .5rem 1.25rem;
  background: var(--sky);
  color: var(--navy) !important;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .25s, transform .2s var(--ease-out), box-shadow .25s;
}
.nav-cta:hover {
  background: #40b0ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,158,255,.3);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  transition: transform .35s var(--ease-out), opacity .25s;
  transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(6,13,26,.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.mobile-nav.is-open { opacity: 1; pointer-events: all; }

.mobile-nav-links { display: flex; flex-direction: column; gap: .25rem; text-align: center; }
.mobile-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .75rem 2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 400;
  color: var(--cream-2);
  transition: color .25s;
}
.mobile-nav-link:hover, .mobile-nav-cta { color: var(--sky); }
.mobile-num {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  color: var(--sky);
  opacity: .6;
}

.mobile-nav-footer {
  text-align: center;
  color: var(--ink-mute);
  font-size: .85rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
}

/* ══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   Gotcha A.4.5: reveal[data-split] must never be invisible
══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gotcha A.4.5 — defensive CSS: data-split elements always visible */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

.split-word {
  display: inline-block;
  overflow: hidden;
}
.split-word-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.is-visible .split-word-inner,
.split-word.is-visible .split-word-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.75rem;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: transform .2s var(--ease-out), box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--sky);
  color: var(--navy);
  font-weight: 600;
}
.btn-primary:hover { background: #40b0ff; box-shadow: 0 12px 32px rgba(30,158,255,.3); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--cream-2); background: rgba(240,237,232,.06); }

.btn-outline {
  background: transparent;
  color: var(--sky);
  border: 1px solid var(--sky);
}
.btn-outline:hover { background: var(--sky-dim); box-shadow: 0 8px 24px rgba(30,158,255,.2); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.75rem;
  background: #25D366;
  color: #fff;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: transform .2s var(--ease-out), box-shadow .2s, background .2s;
}
.btn-whatsapp:hover { background: #20bd59; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.3); }
.btn--full { width: 100%; justify-content: center; }
.btn--submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem 2rem; }

/* Section numbers (watermark style) */
.section-num {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--sky);
  opacity: .7;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero:hover .hero-img { transform: scale(1.02); }
.hero-veil {
  position: absolute;
  inset: 0;
  background: rgba(6,13,26,.65);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,13,26,.9) 0%, rgba(6,13,26,.3) 70%),
    linear-gradient(to top, rgba(6,13,26,.8) 0%, transparent 50%);
}

.hero-content {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
  animation: dotPulse 2.5s ease-in-out infinite;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.2rem, 9vw, 8rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--cream);
  max-width: 14ch;
}
.hero-title-em {
  display: block;
  color: var(--sky);
  font-style: italic;
  margin-left: clamp(1.5rem, 5vw, 5rem);
  opacity: .92;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--cream-2);
  max-width: 40ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  opacity: .5;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%  { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}
.scroll-text {
  font-family: 'Space Mono', monospace;
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-2);
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════════ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6,13,26,.6);
  backdrop-filter: blur(8px);
}
.marquee-strip--inverse { background: rgba(10,22,40,.8); }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  padding: .85rem 0;
  animation: marqueeRun 28s linear infinite;
}
.marquee-track--rtl { animation: marqueeRunRtl 22s linear infinite; }

@keyframes marqueeRun    { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRunRtl { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.marquee-item, .marquee-dest {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-2);
  padding: 0 .5rem;
  white-space: nowrap;
}
.marquee-dest {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .85rem;
  letter-spacing: .06em;
  font-style: italic;
  color: var(--cream);
}
.marquee-sep {
  color: var(--sky);
  padding: 0 .35rem;
  opacity: .6;
  font-size: .7rem;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT — SECCIÓN 01
══════════════════════════════════════════════════════════════ */
.section-about {
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--navy-2);
  border-top: 1px solid var(--line);
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
  align-items: start;
}

.about-number {
  position: absolute;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  line-height: 1;
  color: var(--sky);
  opacity: .04;
  pointer-events: none;
  user-select: none;
  top: -2rem;
  left: clamp(1.5rem, 6vw, 6rem);
  z-index: 0;
}

/* Collage */
.about-collage {
  position: relative;
  height: min(520px, 70vw);
  grid-column: 1;
}
.collage-photo {
  position: absolute;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,.5);
}
.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transition: transform .6s var(--ease-out), filter .4s;
}
.collage-photo:hover img { transform: scale(1.04); filter: saturate(1.2); }

.collage-photo--a {
  width: 55%;
  height: 65%;
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-2deg);
}
.collage-photo--b {
  width: 50%;
  height: 55%;
  top: 15%;
  right: 0;
  z-index: 2;
  transform: rotate(2.5deg);
}
.collage-photo--c {
  width: 48%;
  height: 50%;
  bottom: 0;
  left: 25%;
  z-index: 4;
  transform: rotate(-1deg);
}
.collage-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sky);
  color: var(--navy);
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  padding: .4rem;
}

/* About content */
.about-content {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.about-aside {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-aside::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--sky);
}
.about-aside-text {
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sky);
}

.about-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  max-width: 26ch;
}
.about-title em { color: var(--sky); font-style: italic; }

.about-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin: 0;
}

.about-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cream);
  font-weight: 400;
}
.about-text {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--ink-mute);
}

.about-defs {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.about-def {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.about-def dt {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  opacity: .7;
  flex-shrink: 0;
  min-width: 90px;
}
.about-def dd {
  font-size: .9rem;
  color: var(--cream-2);
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-collage { grid-column: 1; height: min(380px, 60vw); }
  .about-content { grid-column: 1; }
}

/* ══════════════════════════════════════════════════════════════
   DESTINATIONS — SECCIÓN 02
══════════════════════════════════════════════════════════════ */
.section-destinations {
  background: var(--navy);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

/* Header sticky inside destination section */
.dest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
  background: rgba(6,13,26,.92);
  backdrop-filter: blur(16px);
}
.dest-header-left { display: flex; align-items: center; gap: 1.25rem; }
.dest-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -.01em;
}
.dest-header-right { display: flex; align-items: center; gap: 1.5rem; }
.dest-progress {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: .05em;
}
.dest-current { color: var(--sky); }
.dest-sep { color: var(--ink-mute); margin: 0 .15rem; }
.dest-total { color: var(--ink-mute); }
.dest-hint {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--ink-mute);
}
.dest-hint-mobile { display: none; }

/* Track wrapper — clips the overflow */
.dest-track-wrapper {
  overflow: hidden;
}

/* Desktop: horizontal scroll via GSAP pin */
.dest-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

/* Mobile: native touch scroll */
@media (max-width: 767px) {
  .dest-track-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dest-track-wrapper::-webkit-scrollbar { display: none; }
  .dest-track { width: max-content; }
  .dest-hint-desktop { display: none; }
  .dest-hint-mobile { display: inline; }
}

/* Individual destination card */
.dest-card {
  width: 100vw;
  min-height: calc(100vh - var(--nav-h) - 3.5rem);
  min-height: calc(100svh - var(--nav-h) - 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .dest-card {
    width: 100vw;
    min-height: calc(100svh - var(--nav-h) - 3.5rem);
    grid-template-columns: 1fr;
    grid-template-rows: 55% 45%;
    scroll-snap-align: start;
  }
}

.dest-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* SVG wrap — left half on desktop, top on mobile */
.dest-svg-wrap {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

@media (max-width: 767px) {
  .dest-svg-wrap { grid-column: 1; grid-row: 1; padding: 2rem 1.5rem; }
}

.dest-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
}

/* SVG stroke animation — starts hidden, traces on .is-drawing */
.dest-svg line,
.dest-svg polyline,
.dest-svg polygon,
.dest-svg path,
.dest-svg circle,
.dest-svg rect {
  stroke-dasharray: var(--len, 2000);
  stroke-dashoffset: var(--len, 2000);
  transition: stroke-dashoffset 1.8s var(--ease-out);
}
/* Delay for layered elements */
.dest-svg *:nth-child(2)  { transition-delay: .05s; }
.dest-svg *:nth-child(3)  { transition-delay: .10s; }
.dest-svg *:nth-child(4)  { transition-delay: .15s; }
.dest-svg *:nth-child(5)  { transition-delay: .20s; }
.dest-svg *:nth-child(6)  { transition-delay: .25s; }
.dest-svg *:nth-child(7)  { transition-delay: .30s; }
.dest-svg *:nth-child(8)  { transition-delay: .35s; }
.dest-svg *:nth-child(9)  { transition-delay: .40s; }
.dest-svg *:nth-child(10) { transition-delay: .45s; }
.dest-svg *:nth-child(11) { transition-delay: .50s; }
.dest-svg *:nth-child(12) { transition-delay: .55s; }
.dest-svg *:nth-child(n+13) { transition-delay: .6s; }

.dest-card.is-drawing .dest-svg line,
.dest-card.is-drawing .dest-svg polyline,
.dest-card.is-drawing .dest-svg polygon,
.dest-card.is-drawing .dest-svg path,
.dest-card.is-drawing .dest-svg circle,
.dest-card.is-drawing .dest-svg rect {
  stroke-dashoffset: 0;
}

/* Destination card content — right half */
.dest-card-content {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 3rem 2rem;
  gap: 1rem;
  background: rgba(6,13,26,.55);
  backdrop-filter: blur(4px);
}
@media (max-width: 767px) {
  .dest-card-content {
    grid-column: 1;
    grid-row: 2;
    padding: 1.5rem;
    gap: .75rem;
    background: rgba(6,13,26,.8);
    overflow-y: auto;
  }
}

.dest-series-badge {
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--dest-color, var(--sky));
  border: 1px solid var(--dest-color, var(--sky));
  padding: .2rem .6rem;
  border-radius: 2px;
  display: inline-block;
}

.dest-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -.02em;
}

.dest-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(.9rem, 1.8vw, 1.1rem);
  font-style: italic;
  color: var(--dest-color, var(--sky));
}

.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  padding: 0;
}
.dest-highlights li {
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  padding: .25rem .6rem;
  border-radius: 2px;
}

.dest-desc {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--cream-2);
  max-width: 44ch;
}

.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--dest-accent, var(--gold));
  letter-spacing: .05em;
  padding: .6rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, gap .25s;
  align-self: flex-start;
}
.dest-cta:hover { border-color: var(--dest-accent, var(--gold)); gap: .75rem; }

/* ══════════════════════════════════════════════════════════════
   SERVICES — SECCIÓN 03
══════════════════════════════════════════════════════════════ */
.section-services {
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--navy-3);
  border-top: 1px solid var(--line);
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.services-number {
  position: absolute;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  opacity: .04;
  pointer-events: none;
  user-select: none;
  top: -3rem;
  right: 0;
  z-index: 0;
}

.services-header {
  max-width: 700px;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.services-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.services-title em { color: var(--orange); font-style: italic; }
.services-lead {
  font-size: 1rem;
  color: var(--ink-mute);
  max-width: 56ch;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--navy-2);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--svc-accent-rgb, 30,158,255),.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.service-card:hover { background: var(--navy-3); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  opacity: .9;
}
.service-icon svg { width: 100%; height: 100%; }

.service-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.service-desc {
  font-size: .9rem;
  color: var(--ink-mute);
  line-height: 1.65;
}
.service-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .95rem;
  font-style: italic;
  color: var(--svc-accent, var(--gold));
  border-left: 2px solid var(--svc-accent, var(--gold));
  padding-left: 1rem;
}
.service-body { flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.service-link {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--svc-accent, var(--gold));
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .25s;
  align-self: flex-start;
}
.service-link:hover { gap: .6rem; }

@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   GALLERY — SECCIÓN 04
══════════════════════════════════════════════════════════════ */
.section-gallery {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--navy);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.gallery-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  margin-bottom: 3rem;
}
.gallery-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
}
.gallery-title em { color: var(--gold); font-style: italic; }

/* Rails */
.gallery-rail {
  overflow: hidden;
  margin-bottom: 1rem;
}
.gallery-rail:last-child { margin-bottom: 0; }

.gallery-track {
  display: flex;
  width: max-content;
  gap: .8rem;
}
.gallery-track--ltr { animation: marqueeRun 30s linear infinite; }
.gallery-track--ltr.gallery-track--offset { animation: marqueeRun 45s linear infinite; animation-delay: -8s; }
.gallery-track--rtl { animation: marqueeRunRtl 35s linear infinite; }

.gallery-item {
  width: clamp(220px, 28vw, 380px);
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
  flex-shrink: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
  transition: transform .5s var(--ease-out), filter .4s;
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.2); }

.gallery-rail--slow .gallery-item { width: clamp(260px, 32vw, 420px); aspect-ratio: 3/2; }
.gallery-rail--inverse .gallery-item { width: clamp(200px, 26vw, 340px); aspect-ratio: 16/9; }

/* ══════════════════════════════════════════════════════════════
   GROUPS — SECCIÓN 05
══════════════════════════════════════════════════════════════ */
.section-groups {
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--navy-2);
  border-top: 1px solid var(--line);
}
.groups-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.groups-number {
  position: absolute;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: .04;
  pointer-events: none;
  user-select: none;
  top: -3rem;
  left: 0;
  z-index: 0;
}

.groups-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: min(600px, 70vh);
  display: flex;
  align-items: flex-end;
}

.groups-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.groups-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transition: transform .8s var(--ease-out);
}
.groups-card:hover .groups-card-bg img { transform: scale(1.03); }
.groups-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,.95) 0%, rgba(6,13,26,.5) 50%, rgba(6,13,26,.2) 100%);
}

.groups-card-content {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 760px;
}

.groups-label {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}

.groups-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
}
.groups-title em { color: var(--gold); font-style: italic; }

.groups-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-2);
  max-width: 56ch;
}

.groups-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  list-style: none;
  padding: 0;
}
.groups-list li {
  font-size: .9rem;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.groups-list li::before {
  content: '→';
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   QUOTE / FORM — SECCIÓN 06
══════════════════════════════════════════════════════════════ */
.section-quote {
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 6vw, 6rem);
  background: var(--navy-3);
  border-top: 1px solid var(--line);
}

.quote-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem 6rem;
  align-items: start;
}

.quote-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1rem;
}
.quote-title em { color: var(--sky); font-style: italic; }

.quote-sub {
  font-size: 1rem;
  color: var(--ink-mute);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.form-field {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.form-prefix {
  font-family: 'Space Mono', monospace;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--sky);
  opacity: .6;
  padding: 1.25rem 1rem 1.25rem 0;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 1.5rem;
}

.form-input-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 0;
}
.form-input-wrap--split {
  flex-direction: row;
  gap: 1.5rem;
}
.form-input-wrap--split > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

label {
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

input[type="text"],
input[type="tel"],
input[type="number"] {
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: .35rem 0;
  outline: none;
  width: 100%;
  transition: color .2s;
}
input::placeholder { color: rgba(240,237,232,.3); }
input:focus { color: var(--cream); }

.form-optional {
  font-size: .55rem;
  color: var(--ink-mute);
  opacity: .6;
}

.form-alt {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--ink-mute);
  text-align: center;
}
.form-alt a {
  color: var(--sky);
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.form-alt a:hover { border-color: var(--sky); }

/* Quote aside */
.quote-aside {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-block {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.contact-label {
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sky);
  opacity: .7;
}
.contact-value {
  font-size: .9rem;
  color: var(--cream-2);
  line-height: 1.5;
  transition: color .2s;
}
a.contact-value:hover { color: var(--cream); }

@media (max-width: 900px) {
  .quote-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .quote-aside { position: static; }
  .form-input-wrap--split { flex-direction: column; gap: 0; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding-bottom: 2rem;
  overflow: hidden;
}

/* Display corriendo */
.footer-display {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  margin-bottom: 4rem;
}
.footer-display-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marqueeRun 20s linear infinite;
}
.footer-display-track span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  opacity: .06;
  white-space: nowrap;
  letter-spacing: -.02em;
}
.footer-display-sep { color: var(--sky) !important; opacity: .15 !important; }

/* Footer grid */
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
}

.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sky);
  opacity: .7;
  margin-bottom: 1.25rem;
}

.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .4rem;
}
.footer-brand-tag {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--gold);
  font-size: .95rem;
  margin-bottom: .75rem;
}
.footer-brand-city {
  font-family: 'Space Mono', monospace;
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--ink-mute);
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .85rem;
  color: var(--sky);
  margin-bottom: 1rem;
  transition: gap .25s;
}
.footer-link:hover { gap: .5rem; }

.footer-map-wrap {
  margin-top: 1rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  opacity: .85;
}
.footer-map-wrap iframe { display: block; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 1.25rem;
}
.footer-contact-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  font-size: .9rem;
  color: var(--cream-2);
  transition: color .2s;
}
.footer-contact-item:hover { color: var(--cream); }
.fc-label {
  font-family: 'Space Mono', monospace;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky);
  opacity: .7;
  flex-shrink: 0;
  min-width: 72px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--cream-2);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

/* Legal line */
.footer-legal {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding: 1.5rem clamp(1.5rem, 6vw, 6rem) 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--ink-mute);
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-link--small {
  font-family: 'Space Mono', monospace;
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--ink-mute);
  text-decoration: none;
  transition: color .2s;
}
.footer-link--small:hover { color: var(--cream-2); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLLBAR (subtle dark)
══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sky); }

/* ══════════════════════════════════════════════════════════════
   ACCESSIBILITY — focus visible
══════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION — only truly intrusive effects
══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .aurora-bg { animation: none; }
  .splash-fill { animation: none; width: 100%; }
  .gallery-track { animation: none; }
  .footer-display-track { animation: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
