/* ============================================================
   THE DROP — Design tokens
   ============================================================ */
:root {
  --gold: #2596be;
  --gold-light: #4eb3d6;
  --gold-dark: #1c7593;
  --gold-glow: rgba(37, 150, 190, 0.35);

  --black: #0A0A0A;
  --black-warm: #111111;
  --black-card: #161616;
  --black-elev: #1c1c1c;
  --hairline: rgba(245, 242, 237, 0.08);
  --hairline-strong: rgba(245, 242, 237, 0.16);

  --white: #F5F2ED;
  --white-dim: rgba(245, 242, 237, 0.6);
  --white-muted: rgba(245, 242, 237, 0.35);
  --white-faint: rgba(245, 242, 237, 0.12);

  --section-pad-y: clamp(80px, 10vw, 140px);
  --section-pad-x: clamp(24px, 5vw, 80px);
  --max-w: 1200px;

  --display: "Bebas Neue", "Oswald", "Impact", sans-serif;
  --sans: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "Menlo", "Courier New", monospace;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Grain overlay */
body { --grain: 0.04; }
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }

::selection { background: var(--gold); color: var(--black); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--gold);
}
.eyebrow.centered {
  justify-content: center;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 2px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-top: 24px;
}

.section-title .gold { color: var(--gold); }
.section-title em { font-style: normal; color: var(--gold); }

.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 620px;
  line-height: 1.7;
  margin-top: 28px;
}

.tiny-mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white-muted);
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.section {
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
}
.section.alt { background: var(--black-warm); }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header.center {
  text-align: center;
}
.section-header.center .eyebrow {
  justify-content: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
}

.btn-ghost {
  border-color: rgba(245, 242, 237, 0.25);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-dark);
  transition: gap .3s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-link:hover { gap: 18px; color: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px clamp(24px, 5vw, 60px);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav .nav-logo { justify-self: start; }
.nav .nav-links { justify-self: center; }
.nav .nav-cta { justify-self: end; }
.nav .nav-hamburger { justify-self: end; }
.nav.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--hairline);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 100%;
  filter: brightness(1.2);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--black) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

.nav-hamburger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-hamburger span:nth-child(1) { width: 28px; margin-left: auto; }
.nav-hamburger span:nth-child(2) { width: 20px; margin-left: auto; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  transform: translateX(100%);
  transition: transform .5s var(--ease-out);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--section-pad-x) 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(37, 150, 190, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(37, 150, 190, 0.10), transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #08101a 50%, #0a0a0a 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'><defs><pattern id='p' x='0' y='0' width='80' height='80' patternUnits='userSpaceOnUse'><line x1='0' y1='80' x2='80' y2='0' stroke='%232596be' stroke-width='0.4' opacity='0.08'/></pattern></defs><rect width='1200' height='800' fill='url(%23p)'/></svg>");
  opacity: 0.6;
}
.hero-bg::after {
  /* vignette */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.7) 100%);
}
.hero-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  z-index: 1;
  pointer-events: none;
}
.hero-video-placeholder .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--white-muted);
  padding: 6px 10px;
  border: 1px solid var(--hairline-strong);
  background: rgba(0,0,0,0.4);
  text-transform: uppercase;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  padding: 8px 20px;
  border: 1px solid var(--gold-dark);
}
.hero-eyebrow .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-logo {
  margin: 0 auto;
  width: min(560px, 80vw);
  filter: drop-shadow(0 8px 40px rgba(0,0,0,0.6));
}
.hero-tagline {
  font-family: var(--sans);
  font-weight: 200;
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 28px;
}
.hero-tagline .amp {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  padding: 0 4px;
}
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hero-meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--white-muted);
  text-transform: uppercase;
}
.hero-meta .sep { color: var(--gold); }

.hero-ctas {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--white-muted);
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold-light));
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* hero waveform decoration */
.hero-waveform {
  position: absolute;
  left: 0; right: 0;
  bottom: 24%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  opacity: 0.12;
  pointer-events: none;
}
.hero-waveform span {
  width: 3px;
  background: var(--gold);
  animation: wave 1.6s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { height: 8px; }
  50% { height: 60px; }
}

/* corner ticks */
.hero-tick {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold-dark);
  z-index: 2;
}
.hero-tick.tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.hero-tick.tr { top: 20px; right: 20px; border-left: none; border-bottom: none; }
.hero-tick.bl { bottom: 20px; left: 20px; border-right: none; border-top: none; }
.hero-tick.br { bottom: 20px; right: 20px; border-left: none; border-top: none; }

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted {
  padding: 60px var(--section-pad-x);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--black);
}
.trusted-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.trusted-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.trusted-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.trusted-track {
  display: flex;
  align-items: center;
  gap: 72px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.trusted-track .logo {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--white);
  opacity: 0.5;
  transition: opacity .25s var(--ease);
  white-space: nowrap;
}
.trusted-track .logo:hover { opacity: 1; }
.trusted-track .logo .sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  display: block;
  margin-top: 2px;
  opacity: 0.7;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .trusted-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .trusted-marquee { width: 100%; }
}

/* ============================================================
   AUDIENCE TILES
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.audience-tile {
  background: var(--black);
  padding: 56px 44px;
  position: relative;
  cursor: pointer;
  transition: background .35s var(--ease), transform .35s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.audience-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .5s var(--ease-out);
}
.audience-tile:hover { background: var(--black-card); transform: translateY(-4px); }
.audience-tile:hover::before { width: 100%; }

.audience-tile .num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 28px;
}
.audience-tile h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 38px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.audience-tile p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}
.audience-tile .arrow-link {
  margin-top: 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .3s var(--ease);
}
.audience-tile:hover .arrow-link { gap: 18px; }

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

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience-intro {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.experience-intro .copy p {
  font-size: 17px;
  color: var(--white-dim);
  margin-top: 18px;
  line-height: 1.8;
}
.experience-intro .copy p + p { margin-top: 14px; }
.experience-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--black-card);
  overflow: hidden;
}
.experience-image .caption {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  z-index: 2;
}
.experience-image .corner-num {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--white-muted);
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.process-step {
  padding: 56px 40px;
  border-right: 1px solid var(--hairline);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step .num {
  font-family: var(--display);
  font-size: 88px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}
.process-step h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.process-step p {
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .experience-intro { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--hairline); }
}

/* ============================================================
   PLACEHOLDER (striped) — for any image slot
   ============================================================ */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 18px,
      rgba(37, 150, 190, 0.055) 18px 19px
    ),
    radial-gradient(ellipse at 30% 20%, rgba(37, 150, 190, 0.06), transparent 60%),
    var(--black-card);
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px dashed rgba(37, 150, 190, 0.22);
  pointer-events: none;
}

/* ============================================================
   LINEUP
   ============================================================ */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lineup-card {
  background: var(--black-card);
  border: 1px solid var(--hairline);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.lineup-card:hover { transform: translateY(-4px); border-color: var(--gold-dark); }
.lineup-photo {
  aspect-ratio: 1/1;
  position: relative;
}
.lineup-photo .role-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  text-transform: uppercase;
}
.lineup-info {
  padding: 22px 22px 26px;
}
.lineup-info .name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 2px;
}
.lineup-info .role {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.lineup-footer {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
  gap: 16px;
}
.lineup-footer p {
  color: var(--white-dim);
  font-size: 14px;
  max-width: 540px;
}

@media (max-width: 1000px) {
  .lineup-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lineup-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WATCH + LISTEN
   ============================================================ */
.feature-video {
  aspect-ratio: 16/9;
  max-width: 1100px;
  margin: 0 auto 60px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--hairline);
}
.feature-video .play-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: transform .35s var(--ease), background .25s var(--ease);
  z-index: 2;
}
.feature-video:hover .play-circle {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
}
.feature-video:hover .play-circle .triangle {
  border-left-color: var(--black);
}
.feature-video .play-circle .triangle {
  width: 0; height: 0;
  border-left: 18px solid var(--gold);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
  transition: border-left-color .25s var(--ease);
}
.feature-video .meta {
  position: absolute;
  bottom: 18px; left: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.feature-video .meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--white-dim);
  text-transform: uppercase;
}
.feature-video .meta .sep { color: var(--gold); }

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
.audio-card, .stats-card {
  background: var(--black-card);
  border: 1px solid var(--hairline);
  padding: 32px;
}
.audio-card .label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.audio-card .title {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 2px;
}
.audio-card .source {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.audio-player {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.audio-play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.audio-play-btn:hover { background: var(--gold-light); transform: scale(1.05); }
.audio-play-btn .tri {
  width: 0; height: 0;
  border-left: 10px solid var(--black);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 3px;
}
.audio-play-btn.playing .tri {
  border-left: none;
  width: 10px; height: 10px;
  background: var(--black);
}
.audio-info {
  flex: 1;
}
.audio-info .track {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.audio-info .duration {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--white-muted);
  margin-top: 4px;
}
.audio-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  flex: 1.4;
}
.audio-bars span {
  display: block;
  width: 3px;
  background: var(--white-faint);
  border-radius: 1px;
  transition: background .2s var(--ease);
}
.audio-bars.playing span {
  background: var(--gold);
  animation: wave 1.2s ease-in-out infinite;
}

.stats-card .title {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.stats-list { display: grid; gap: 18px; }
.stats-list .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 14px;
}
.stats-list .row:last-child { border-bottom: none; padding-bottom: 0; }
.stats-list .row .num {
  font-family: var(--display);
  font-size: 42px;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.stats-list .row .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--white-dim);
  text-transform: uppercase;
  text-align: right;
}

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

/* ============================================================
   FILTERS (shared)
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 14px 22px;
  position: relative;
  transition: color .25s var(--ease);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.filter-tab:hover { color: var(--white); }
.filter-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.filter-tab .count {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--white-muted);
  margin-left: 6px;
  letter-spacing: 1.5px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.gallery-item .meta {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-item:hover .meta { opacity: 1; }
.gallery-item .meta .cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.gallery-item .meta .where {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 1.5px;
  margin-top: 6px;
}
.gallery-item .corner-tag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--white-muted);
  padding: 4px 8px;
  background: rgba(0,0,0,0.5);
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.gallery-item:hover .corner-tag { color: var(--gold); }
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package {
  background: var(--black-card);
  border: 1px solid var(--hairline);
  padding: 44px 36px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.package:hover { transform: translateY(-4px); border-color: var(--gold-dark); }
.package.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(37, 150, 190, 0.06), transparent 60%), var(--black-card);
}
.package .badge {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 14px;
}
.package .tier-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.package .name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 42px;
  letter-spacing: 2px;
  margin-top: 14px;
}
.package .tag {
  color: var(--white-dim);
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.6;
}
.package .divider {
  height: 1px;
  background: var(--hairline);
  margin: 28px 0 24px;
}
.package ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}
.package li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.55;
}
.package li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.package .pkg-cta {
  display: block;
  text-align: center;
  padding: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid var(--hairline-strong);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.package .pkg-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.package.featured .pkg-cta { background: var(--gold); color: var(--black); border-color: var(--gold); }
.package.featured .pkg-cta:hover { background: var(--gold-light); border-color: var(--gold-light); }

.packages-footer {
  margin-top: 36px;
  text-align: center;
  color: var(--white-muted);
  font-size: 13px;
}

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

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--black-card);
  border: 1px solid var(--hairline);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--gold-dark); }
.testimonial .quote-mark {
  font-family: var(--display);
  font-size: 64px;
  color: var(--gold);
  line-height: 0.4;
  height: 28px;
  margin-bottom: 22px;
}
.testimonial .quote {
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  flex: 1;
}
.testimonial .attribution {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.testimonial .author {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 1.5px;
}
.testimonial .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}
.testimonial .detail {
  margin-top: 10px;
  font-size: 12px;
  color: var(--white-muted);
  line-height: 1.5;
}

.testimonials-loadmore {
  margin-top: 40px;
  text-align: center;
}
.testimonial[hidden] { display: none; }

@media (max-width: 1000px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EVENTS
   ============================================================ */
.events-list {
  border-top: 1px solid var(--hairline);
}
.event-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 28px 12px;
  border-bottom: 1px solid var(--hairline);
  transition: transform .35s var(--ease), border-color .35s var(--ease), padding-left .35s var(--ease);
  cursor: default;
}
.event-row:hover {
  padding-left: 24px;
  border-bottom-color: var(--gold-dark);
}
.event-date {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.event-date .day {
  font-family: var(--display);
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
}
.event-date .stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-date .mo {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 2px;
}
.event-date .yr {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--white-muted);
  letter-spacing: 1.5px;
}
.event-info .title {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 1.5px;
}
.event-info .where {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white-dim);
  margin-top: 6px;
  text-transform: uppercase;
}
.event-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--hairline-strong);
  color: var(--white-dim);
}
.event-tag.private { color: var(--gold); border-color: var(--gold-dark); }
.event-tag.public { color: var(--white); border-color: var(--hairline-strong); }

@media (max-width: 700px) {
  .event-row { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
  .event-row:hover { padding-left: 12px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 28px 0;
  text-align: left;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.5px;
  color: var(--white);
  transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus {
  width: 28px; height: 28px;
  position: relative;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.faq-q .plus::before {
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.faq-q .plus::after {
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding-bottom .35s var(--ease);
  color: var(--white-dim);
  font-size: 15px;
  line-height: 1.8;
  max-width: 780px;
}
.faq-item.open .faq-a {
  max-height: 280px;
  padding-bottom: 30px;
}

/* ============================================================
   PLANNERS / AGENTS
   ============================================================ */
.planners-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.planners-copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px;
  line-height: 1;
}
.planners-copy p {
  color: var(--white-dim);
  margin-top: 28px;
  max-width: 480px;
  line-height: 1.8;
}
.planners-meta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.planners-meta .chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  padding: 8px 12px;
  border: 1px solid var(--gold-dark);
  text-transform: uppercase;
}
.downloads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.download {
  background: var(--black-card);
  border: 1px solid var(--hairline);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  cursor: pointer;
  min-height: 180px;
}
.download:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(37, 150, 190, 0.06), transparent 70%), var(--black-card);
}
.download .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.download .type {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.download .size {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--white-muted);
  text-transform: uppercase;
}
.download .title {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 1.5px;
  margin-top: auto;
}
.download .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}
.download .footer .desc {
  font-size: 12px;
  color: var(--white-muted);
}
.download .arrow {
  color: var(--gold);
  font-size: 18px;
  transition: transform .3s var(--ease);
}
.download:hover .arrow { transform: translate(2px, -2px); }

@media (max-width: 1000px) {
  .planners-split { grid-template-columns: 1fr; gap: 50px; }
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.booking-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--hairline-strong);
}
.toggle-btn {
  padding: 18px 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
  border-right: 1px solid var(--hairline-strong);
  transition: background .25s var(--ease), color .25s var(--ease);
  position: relative;
}
.toggle-btn:last-child { border-right: none; }
.toggle-btn:hover { color: var(--white); }
.toggle-btn.active {
  background: var(--gold);
  color: var(--black);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.field {
  background: var(--black);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .25s var(--ease);
}
.field:focus-within { background: var(--black-warm); }
.field.full { grid-column: span 2; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}
.field label .req { color: var(--gold-light); }
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--white);
  padding: 4px 0;
  font-weight: 300;
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--white-muted);
  font-weight: 300;
}
.field select { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M0 0l5 6 5-6z' fill='%232596be'/></svg>"); background-repeat: no-repeat; background-position: right center; padding-right: 24px; }
.field select option { background: var(--black-card); color: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.field[hidden] { display: none; }

.booking-footer {
  background: var(--black);
  grid-column: span 2;
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.booking-footer .privacy {
  font-size: 12px;
  color: var(--white-muted);
  max-width: 440px;
  line-height: 1.6;
}
.booking-footer .privacy a { color: var(--gold); border-bottom: 1px solid var(--gold-dark); }

.booking-success {
  display: none;
  padding: 80px 40px;
  text-align: center;
  border: 1px solid var(--gold-dark);
  background: var(--black-card);
}
.booking-success.show { display: block; }
.booking-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.booking-success .check svg { width: 26px; height: 26px; }
.booking-success h3 {
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: 2px;
}
.booking-success p {
  color: var(--white-dim);
  margin-top: 14px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .booking-form { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
  .booking-footer { grid-column: span 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 100px var(--section-pad-x) 40px;
  border-top: 1px solid var(--hairline);
  background: var(--black);
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--hairline);
}
.footer-brand img {
  width: 180px;
  opacity: 0.85;
}
.footer-brand p {
  margin-top: 22px;
  color: var(--white-dim);
  font-size: 13px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--white-dim);
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom .credit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white-muted);
}
.footer-bottom .credit a { color: var(--gold); border-bottom: 1px solid var(--gold-dark); }
.footer-bottom .legal {
  display: flex;
  gap: 24px;
}
.footer-bottom .legal a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white-muted);
}

/* big footer wordmark */
.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(80px, 18vw, 240px);
  letter-spacing: 6px;
  color: var(--white-faint);
  line-height: 1;
  text-align: center;
  margin: 60px auto 40px;
  user-select: none;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-frame {
  max-width: 1200px;
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid var(--gold-dark);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline-strong);
  color: var(--white);
  transition: all .25s var(--ease);
  z-index: 2;
  background: rgba(0,0,0,0.5);
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { top: 50%; left: -76px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: -76px; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lightbox-meta {
  position: absolute;
  bottom: -36px;
  left: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--white-dim);
  text-transform: uppercase;
}
.lightbox-meta .counter {
  color: var(--gold);
  margin-left: 16px;
}
@media (max-width: 900px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
