:root {
  --ink: #1a1d23;
  --muted: #5b6470;
  --bg: #f7f6f3;
  --card: #ffffff;
  --accent: #c2410c;      /* burnt orange — peak/adventure */
  --accent-2: #0e7490;    /* teal */
  --line: #e4e2dc;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.06);
  --maxw: 1100px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}
a { color: var(--accent-2); }

.wip-banner {
  background: repeating-linear-gradient(45deg, #fde68a, #fde68a 14px, #fcd34d 14px, #fcd34d 28px);
  color: #5b4500;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .95rem;
  border-bottom: 1px solid #eab308;
}
.wip-banner strong { letter-spacing: .02em; }

.site-header {
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem 1.25rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand .logo { display: block; border-radius: 12px; }
.wordmark { font-weight: 800; font-size: 1.25rem; line-height: 1.1; display: flex; flex-direction: column; }
.tagline { font-weight: 500; font-size: .72rem; color: var(--muted); letter-spacing: .03em; text-transform: lowercase; }

main { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem 3rem; }

.hero { padding: 2.2rem 0 1.2rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 .6rem; letter-spacing: -.02em; }
.hero .lede { font-size: 1.18rem; color: var(--ink); max-width: 60ch; margin: 0 0 1rem; }
.hero .coming-soon { color: var(--muted); max-width: 62ch; margin: 0; }

.rides { margin: 2.2rem 0; }
.rides h2 { font-size: 1.35rem; display: flex; align-items: baseline; gap: .6rem; margin: 0 0 1rem; }
.rides h2 .count { font-size: .82rem; font-weight: 600; color: #fff; background: var(--accent); padding: .12rem .5rem; border-radius: 999px; }

.grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow); transition: transform .12s ease, box-shadow .12s ease;
  display: flex; flex-direction: column;
  /* cards are <button>s (open the inline player) — reset native button chrome */
  appearance: none; -webkit-appearance: none; font: inherit; text-align: left;
  padding: 0; cursor: pointer; width: 100%;
}
.card:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 2px; }
.card:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,.12), 0 16px 36px rgba(0,0,0,.1); }
.thumb { position: relative; aspect-ratio: 16 / 9; background: #111; overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb .play {
  position: absolute; inset: 0; margin: auto; width: 46px; height: 46px;
  display: grid; place-items: center; color: #fff; font-size: 1.1rem;
  background: rgba(194,65,12,.92); border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.4);
  opacity: .92; transition: transform .12s ease;
}
.card:hover .play { transform: scale(1.12); }
.caption {
  padding: .6rem .7rem .75rem; font-size: .86rem; line-height: 1.35; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.site-footer {
  max-width: var(--maxw); margin: 0 auto; padding: 1.6rem 1.25rem 2.4rem;
  border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem;
}
.site-footer .family a { color: var(--muted); text-decoration: none; }
.site-footer .family a:hover { color: var(--accent); }

/* ── Inline player lightbox ───────────────────────────────────────────── */
.player-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(12,14,18,.82); backdrop-filter: blur(3px);
  display: grid; place-items: center; padding: 4vmin;
}
.player-overlay[hidden] { display: none; }
.player-close {
  position: absolute; top: 1rem; right: 1.1rem; z-index: 2;
  width: 44px; height: 44px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 1.6rem; line-height: 1;
}
.player-close:hover { background: rgba(255,255,255,.28); }
.player-stage { width: min(92vw, 900px); }
/* landscape default (16:9) */
.player-frame {
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.5);
}
/* vertical shorts (9:16) — constrain by height so it fits the viewport */
.player-stage.vertical { width: auto; }
.player-stage.vertical .player-frame {
  aspect-ratio: 9 / 16; height: min(82vh, 720px); width: auto; margin: 0 auto;
}
.player-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player-caption { color: #e8e8e8; text-align: center; margin: .8rem 0 0; font-size: .95rem; }
