/* ============================================================
   THE ARK — thearkfacility.com rebuild
   Deep-ink nautical theme · glass surfaces · editorial athletic type
   ============================================================ */

:root {
  --ink-0: #060607;
  --ink-1: #0a0a0c;
  --ink-2: #101013;
  --ink-3: #151518;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --muted: #a2a2a8;
  --faint: #6f6f76;
  --navy: #3a3a40;
  --sky: #d6d6db;
  --sky-bright: #ffffff;
  --gold: #e9e9ec;
  --gold-soft: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-serif: "Fraunces", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--ink-0);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(255, 255, 255, 0.3); color: #fff; }

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

/* ---------- ambient background ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--ink-0);
}
.ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* faint chevron watermark echoing the hull mark */
.ambient-mark {
  position: fixed;
  right: -12vw;
  top: 8vh;
  width: 58vw;
  max-width: 900px;
  opacity: 0.03;
  z-index: -1;
  pointer-events: none;
  filter: invert(1);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink-0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s var(--ease), border-radius 0.9s var(--ease);
}
#preloader.lift {
  transform: translateY(-100%);
  border-radius: 0 0 50% 50% / 0 0 6% 6%;
}
#preloader.gone { display: none; }

.pre-inner { text-align: center; }

.pre-mark {
  width: 130px;
  height: auto;
  margin: 0 auto 26px;
  position: relative;
}
.pre-mark svg { width: 100%; height: auto; display: block; overflow: visible; }
.pre-mark .plank {
  opacity: 0;
  transform: translateX(var(--from, -46px)) translateY(-8px);
  animation: plankIn 0.85s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes plankIn {
  60% { opacity: 1; }
  100% { opacity: 1; transform: translateX(0) translateY(0); }
}
.pre-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 150%;
  height: 1px;
  transform: translateX(-50%) scaleX(0);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: waterline 1.1s var(--ease) 0.9s forwards;
}
@keyframes waterline { to { transform: translateX(-50%) scaleX(1); } }

.pre-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 1.4em;
  text-indent: 1.4em; /* balance tracking */
  text-transform: uppercase;
  color: var(--text);
  opacity: 0;
  animation: wordIn 1.2s var(--ease) 1.05s forwards;
}
@keyframes wordIn {
  from { opacity: 0; letter-spacing: 1.4em; }
  to { opacity: 1; letter-spacing: 0.42em; text-indent: 0.42em; }
}
.pre-tag {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.7s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 6, 8, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-brand img { height: 30px; width: auto; }
.nav-brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 100px;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--text);
  color: var(--ink-0);
  font-size: 13.5px;
  font-weight: 600;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25); }
.nav-cta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6, 6, 8, 0.82);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  backdrop-filter: blur(28px) saturate(150%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 52px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.55s ease, color 0.3s;
}
.mobile-menu.open a { transform: translateY(0); opacity: 1; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text); }
.mobile-menu .mm-cta { color: var(--gold); border-bottom: none; }
body.menu-open { overflow: hidden; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.gold { color: var(--gold); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; line-height: 0.98; letter-spacing: 0.005em; }
.h-hero { font-size: clamp(56px, 9.5vw, 128px); }
.h-xl { font-size: clamp(44px, 6.5vw, 84px); }
.h-lg { font-size: clamp(34px, 4.6vw, 58px); }
.h-md { font-size: clamp(26px, 3.2vw, 38px); }

.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
}

.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); line-height: 1.7; }
.body-copy { color: var(--muted); }
.body-copy strong { color: var(--text); font-weight: 600; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  transition: transform 0.28s var(--ease), box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}
.btn svg { transition: transform 0.28s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-solid { background: var(--text); color: var(--ink-0); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255, 255, 255, 0.28); }
.btn-glass {
  background: var(--glass);
  border: 1px solid var(--line-strong);
  color: var(--text);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.btn-glass:hover { transform: translateY(-2px); background: var(--glass-strong); border-color: rgba(255, 255, 255, 0.25); }
.btn-gold { background: var(--gold); color: var(--ink-0); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255, 255, 255, 0.3); }
.btn-text {
  padding: 0;
  border-radius: 0;
  color: var(--sky);
  gap: 8px;
}
.btn-text:hover { color: var(--sky-bright); }

/* ---------- glass card ---------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}
.glass-hover { transition: transform 0.4s var(--ease), border-color 0.4s ease, background 0.4s ease; }
.glass-hover:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  background: var(--glass-strong);
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
  transition-delay: var(--rd, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
}
.hero-sub {
  padding: 160px 0 72px;
  min-height: auto;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-bright);
  margin-bottom: 30px;
}
.hero .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }

/* staggered load-in for hero children */
.hero-stagger > * {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
  animation: heroIn 1.1s var(--ease) forwards;
  animation-delay: calc(var(--hs, 0) * 0.12s + var(--hero-base, 0.15s));
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--sky), transparent);
  animation: drip 2s var(--ease) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 760px), (max-height: 760px) {
  .scroll-hint { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.015);
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
}
.marquee-track span::after { content: "◆"; font-size: 9px; color: var(--gold); opacity: 0.7; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-cell {
  background: rgba(10, 10, 13, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 40px 34px 36px;
  transition: background 0.35s ease;
}
.stat-cell:hover { background: rgba(21, 21, 24, 0.8); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
  color: var(--text);
}
.stat-num sup { font-size: 0.45em; color: var(--gold); margin-left: 2px; }
.stat-label { margin-top: 10px; font-size: 13px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
@media (max-width: 900px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-band { grid-template-columns: 1fr; } }

/* ============================================================
   EDITORIAL SPLIT SECTIONS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.split.rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.split-sticky { position: sticky; top: 120px; }
@media (max-width: 900px) {
  .split, .split.rev { grid-template-columns: 1fr; }
  .split-sticky { position: static; }
}

/* numbered editorial list rows */
.edit-rows { display: flex; flex-direction: column; }
.edit-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease);
}
.edit-row:first-child { border-top: 1px solid var(--line); }
.edit-row:hover { padding-left: 10px; }
.edit-row .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--faint);
  line-height: 1.15;
}
.edit-row:hover .num { color: var(--gold); }
.edit-row h3 { font-size: 24px; margin-bottom: 8px; letter-spacing: 0.03em; }
.edit-row p { color: var(--muted); font-size: 15px; max-width: 60ch; }
@media (max-width: 600px) { .edit-row { grid-template-columns: 48px 1fr; gap: 16px; } }

/* ============================================================
   SPORT PANELS (home) — big editorial rows with court art
   ============================================================ */
.sport-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.sport-panel:last-child { border-bottom: none; }
.sport-panel .court-art { order: var(--art-order, 0); }
.sport-kicker {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sport-panel h3 { font-size: clamp(36px, 4.4vw, 60px); margin-bottom: 18px; }
.sport-panel .lead { font-size: 16.5px; }
.sport-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.sport-meta span {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 900px) {
  .sport-panel { grid-template-columns: 1fr; }
  .sport-panel .court-art { order: -1; }
}

/* court art frames */
.court-art {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(120, 120, 128, 0.14), rgba(10, 10, 13, 0.6) 55%);
  padding: clamp(24px, 3.5vw, 44px);
  position: relative;
  overflow: hidden;
}
.court-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 260px at 70% 10%, rgba(255, 255, 255, 0.12), transparent 65%);
  pointer-events: none;
}
.court-art svg { width: 100%; height: auto; display: block; }
.court-art .line { stroke: rgba(255, 255, 255, 0.55); stroke-width: 1.6; fill: none; }
.court-art .line-soft { stroke: rgba(255, 255, 255, 0.22); stroke-width: 1.2; fill: none; }
.court-art .line-gold { stroke: rgba(255, 255, 255, 0.75); stroke-width: 1.6; fill: none; }
.court-art .fill-soft { fill: rgba(255, 255, 255, 0.06); }
.court-art text {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  fill: var(--faint);
}
/* draw-in when revealed */
.court-art .draw { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.reveal.in .court-art .draw, .court-art.in .draw { animation: draw 2.4s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ============================================================
   PILLARS (More than a facility)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar {
  padding: 34px 28px 30px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.pillar .p-word {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
}
.pillar h3 { font-size: 26px; letter-spacing: 0.03em; }
.pillar p { font-size: 14px; color: var(--muted); }
@media (max-width: 1000px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================
   QUOTE / MISSION BAND
   ============================================================ */
.mission-band { text-align: center; padding: clamp(90px, 12vw, 160px) 0; position: relative; }
.mission-band .big-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.25;
  max-width: 20ch;
  margin: 0 auto;
  color: var(--text);
}
.mission-band .big-quote em { color: var(--gold); font-style: italic; }
.mission-band .attribution { margin-top: 26px; font-size: 12.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--faint); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 6px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
}
.faq-q:hover { color: var(--sky-bright); }
.faq-q .fx {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s;
}
.faq-q .fx::before { content: "+"; font-size: 18px; font-weight: 400; line-height: 1; }
.faq-item.open .faq-q .fx { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--ink-0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a p { padding: 0 6px 28px; color: var(--muted); max-width: 68ch; }

/* ============================================================
   STAFF CARDS
   ============================================================ */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.staff-card { padding: 36px 32px; }
.staff-initials {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(140deg, rgba(120, 120, 128, 0.5), rgba(120, 120, 128, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--sky-bright);
  margin-bottom: 22px;
}
.staff-card h3 { font-size: 27px; letter-spacing: 0.03em; }
.staff-role { font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 6px 0 16px; font-weight: 600; }
.staff-card p { font-size: 14.5px; color: var(--muted); }
.staff-contact { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.staff-contact a { font-size: 14px; color: var(--sky); transition: color 0.25s; }
.staff-contact a:hover { color: var(--sky-bright); }

/* ============================================================
   PATHWAY CARDS (find your path)
   ============================================================ */
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.path-card { padding: 38px 32px; display: flex; flex-direction: column; min-height: 300px; }
.path-card .path-step {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.path-card h3 { font-size: 28px; margin-bottom: 12px; letter-spacing: 0.02em; }
.path-card p { font-size: 14.5px; color: var(--muted); flex-grow: 1; }
.path-card .btn-text { margin-top: 24px; font-size: 14px; }
@media (max-width: 900px) { .path-grid { grid-template-columns: 1fr; } .path-card { min-height: 0; } }

/* ============================================================
   TEAM TIER CARDS (basketball)
   ============================================================ */
.tier-stack { display: flex; flex-direction: column; gap: 20px; }
.tier {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(34px, 4vw, 52px);
}
.tier.flagship { border-color: rgba(255, 255, 255, 0.35); }
.tier.flagship::before { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent); }
.tier-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--sky-bright);
  margin-bottom: 18px;
}
.tier.flagship .tier-tag { background: var(--gold-soft); border-color: rgba(255, 255, 255, 0.4); color: var(--gold); }
.tier h3 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 14px; }
.tier .body-copy { font-size: 15px; }
.tier-facts { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--line); padding-left: clamp(20px, 3vw, 40px); }
.tier-fact { padding: 14px 0; border-bottom: 1px solid var(--line); }
.tier-fact:last-of-type { border-bottom: none; }
.tier-fact .tf-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.tier-fact .tf-value { font-size: 15px; color: var(--text); margin-top: 3px; }
.tier-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
@media (max-width: 860px) {
  .tier { grid-template-columns: 1fr; }
  .tier-facts { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 10px; }
}

/* ============================================================
   CHECK LIST (differentiators)
   ============================================================ */
.check-cols { columns: 2; column-gap: 48px; }
.check-cols li {
  break-inside: avoid;
  display: flex;
  gap: 14px;
  padding: 13px 0;
  font-size: 15.5px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.check-cols li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23d9b36a' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 720px) { .check-cols { columns: 1; } }

/* ============================================================
   TIMELINE (seasonal rhythm / launch)
   ============================================================ */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--navy), rgba(255, 255, 255, 0.5));
}
.tl-item { position: relative; padding: 0 0 42px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ink-0);
  border: 2px solid var(--sky);
}
.tl-item.gold::before { border-color: var(--gold); background: var(--gold); box-shadow: 0 0 14px rgba(255, 255, 255, 0.3); }
.tl-item h3 { font-size: 24px; margin-bottom: 8px; letter-spacing: 0.03em; }
.tl-item .tl-when { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.tl-item p { color: var(--muted); font-size: 15px; max-width: 62ch; }

/* ============================================================
   CTA FINALE
   ============================================================ */
.finale {
  text-align: center;
  padding: clamp(90px, 12vw, 170px) 0;
  position: relative;
  overflow: hidden;
}
.finale .h-xl { max-width: 14ch; margin: 0 auto; }
.finale .lead { max-width: 52ch; margin: 22px auto 0; }
.finale .hero-actions { justify-content: center; }

/* ============================================================
   FORMS (launch list)
   ============================================================ */
.signup-row {
  display: flex;
  gap: 12px;
  max-width: 560px;
  padding: 8px;
  border-radius: 100px;
}
.signup-row input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  padding: 10px 10px 10px 20px;
}
.signup-row input::placeholder { color: var(--faint); }
.signup-row .btn { padding: 13px 26px; flex-shrink: 0; }
.signup-note { margin-top: 14px; font-size: 13px; color: var(--faint); }
@media (max-width: 520px) {
  .signup-row { flex-direction: column; border-radius: var(--radius); padding: 12px; }
  .signup-row .btn { justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(60px, 8vw, 110px);
  background: linear-gradient(rgba(10, 10, 13, 0.4), rgba(6, 6, 8, 0.9));
}
.foot-main {
  display: grid;
  grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.6fr));
  gap: clamp(32px, 4vw, 64px);
  padding: clamp(56px, 7vw, 90px) 0 56px;
}
.foot-brand img { height: 44px; margin-bottom: 20px; }
.foot-brand .foot-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  max-width: 26ch;
  line-height: 1.5;
}
.foot-col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 20px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 14.5px; color: var(--muted); transition: color 0.25s, padding-left 0.3s var(--ease); }
.foot-col a:hover { color: var(--text); padding-left: 4px; }
.foot-col address { font-style: normal; font-size: 14.5px; color: var(--muted); line-height: 1.8; }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--faint);
}
.foot-bottom a { color: var(--faint); transition: color 0.25s; }
.foot-bottom a:hover { color: var(--text); }
.foot-verse { font-family: var(--font-serif); font-style: italic; }
@media (max-width: 960px) { .foot-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-main { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE TRANSITIONS
   ============================================================ */
body.page-exit { animation: pageOut 0.28s ease forwards; }
@keyframes pageOut { to { opacity: 0; transform: translateY(-10px); } }
main { animation: pageInFade 0.5s ease; }
@keyframes pageInFade { from { opacity: 0; } }

/* ============================================================
   SECTION SPACING
   ============================================================ */
.sec { padding: clamp(70px, 9vw, 130px) 0; }
.sec-tight { padding: clamp(48px, 6vw, 80px) 0; }
.sec-head { margin-bottom: clamp(40px, 5vw, 68px); max-width: 760px; }
.sec-head .h-lg, .sec-head .h-xl { margin: 16px 0 18px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

/* big vertical side label */
.side-label {
  position: absolute;
  top: 130px;
  right: -8px;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--faint);
  opacity: 0.55;
}
@media (max-width: 1100px) { .side-label { display: none; } }

/* utility */
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; } .mt-4 { margin-top: 64px; }
.mb-2 { margin-bottom: 24px; }
.max-60 { max-width: 60ch; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }

/* ============================================================
   PHOTO ART FRAMES (real photography)
   ============================================================ */
.photo-art {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.photo-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.photo-art:hover img { transform: scale(1.07); }
.photo-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,6,8,0) 55%, rgba(6,6,8,0.55));
  pointer-events: none;
}
.photo-art .pa-label {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.photo-art.tall img { aspect-ratio: 4 / 5; }

/* ============================================================
   HERO MEDIA BACKGROUNDS
   ============================================================ */
.hero { overflow: hidden; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-media img, .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  animation: heroMediaIn 2.4s var(--ease);
}
@keyframes heroMediaIn { from { opacity: 0; transform: scale(1.06); } }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,8,0.82), rgba(6,6,8,0.35) 65%, rgba(6,6,8,0.55)),
    linear-gradient(180deg, rgba(6,6,8,0.55), transparent 30%, rgba(6,6,8,0.6) 78%, var(--ink-0));
}

/* ============================================================
   CINE — scroll-driven sport-to-sport video stage
   ============================================================ */
.cine { position: relative; }
.cine-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.cine-stage video, .cine-stage .cine-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 6s var(--ease);
  will-change: opacity, transform;
}
.cine-stage video.on, .cine-stage .cine-still.on { opacity: 1; transform: scale(1); }
.cine-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6,6,8,0.78), rgba(6,6,8,0.15) 55%, rgba(6,6,8,0.45)),
    linear-gradient(180deg, rgba(6,6,8,0.85), rgba(6,6,8,0.18) 28%, rgba(6,6,8,0.2) 70%, var(--ink-0));
}
.cine-hud {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(24px, 4vw, 56px);
}
.cine-hud .ch-label {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.cine-hud .ch-count {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  color: var(--faint);
}
.cine-hud .ch-track {
  flex: 1;
  height: 2px;
  max-width: 420px;
  background: rgba(255,255,255,0.14);
  border-radius: 2px;
  overflow: hidden;
}
.cine-hud .ch-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  border-radius: 2px;
}
.cine-chapters {
  position: relative;
  z-index: 4;
  margin-top: -100svh;
}
.cine-chapter {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.cine-card {
  max-width: 620px;
  padding: clamp(32px, 4vw, 52px);
  background: rgba(9, 9, 12, 0.55);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  position: relative;
  overflow: hidden;
}
.cine-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}
.cine-card h3 { font-size: clamp(38px, 4.6vw, 64px); margin: 10px 0 14px; }
.cine-card .lead { font-size: 16.5px; }
@media (max-width: 700px) {
  .cine-hud .ch-track { display: none; }
  .cine-card { margin: 0 auto; }
}

/* ============================================================
   STAFF PHOTO
   ============================================================ */
.staff-photo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  margin-bottom: 22px;
}
.staff-photo img { width: 100%; height: 100%; object-fit: cover; }

/* mission band with imagery */
.mission-band.with-bg { position: relative; overflow: hidden; }
.mission-band.with-bg .mb-media {
  position: absolute; inset: 0; z-index: -1;
}
.mission-band.with-bg .mb-media img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.32;
}
.mission-band.with-bg .mb-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink-0), rgba(6,6,8,0.45) 30%, rgba(6,6,8,0.45) 70%, var(--ink-0));
}
.cine-chapter.right { justify-content: flex-end; }
@media (max-width: 700px) { .cine-chapter.right { justify-content: center; } }
