/* ═══════════════════════════════════════════════════════════════
   BAM BAM PARKER — DESIGN SYSTEM
   Theme: "Inside the Pocket"
   Palette: Stage void · Cymbal gold · Violet stage light
   No: Space Grotesk · Thermometer · Motes · Starry bg · Red/black
   ═══════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@300;400;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=JetBrains+Mono:wght@300;400;500&family=Mulish:wght@300;400;500;600;700&display=swap');

/* ── CUSTOM PROPERTIES ── */
:root {
  /* COLOUR */
  --void:          #04030A;
  --stage:         #0C0B14;
  --depth:         #151225;
  --mist:          #201D30;
  --cymbal-gold:   #C49B12;
  --cymbal-bright: #E8C040;
  --cymbal-dim:    #7A6108;
  --violet-deep:   #2A1858;
  --violet-stage:  #6240A0;
  --violet-glow:   #9060F0;
  --warm-cream:    #F2EAD8;
  --white-hot:     #F8F6F2;
  --text-primary:  #E8E4DC;
  --text-mist:     #7A7688;
  --text-faint:    #3A3850;
  --ink:           #1A1525;

  /* TYPOGRAPHY */
  --font-display:  'Big Shoulders Display', sans-serif;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;
  --font-body:     'Mulish', sans-serif;

  /* SPACING (8pt grid) */
  --s1:  8px;   --s2: 16px;  --s3: 24px;  --s4: 32px;
  --s5: 40px;   --s6: 48px;  --s7: 64px;  --s8: 80px;
  --s9: 96px;   --s10: 128px;

  /* TRANSITIONS */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-expo:  cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout:    cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:      200ms;
  --dur-med:       400ms;
  --dur-slow:      700ms;
  --dur-xslow:     1200ms;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: none; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--cymbal-gold); }

/* ═══════════════════════════════════════════════════════════════
   CURSOR — Drumstick-tip dot + lagging circle, gold palette
   ═══════════════════════════════════════════════════════════════ */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--cymbal-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 200ms var(--ease-out-expo), height 200ms var(--ease-out-expo),
              background 200ms;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(196,155,18,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 400ms var(--ease-out-expo), height 400ms var(--ease-out-expo),
              opacity 200ms, border-color 200ms;
}
body.cursor-hover #cursor-dot { width: 12px; height: 12px; background: var(--cymbal-bright); }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; opacity: 0.4; }

/* ═══════════════════════════════════════════════════════════════
   PRELOADER — Countdown 4.3.2.1 then POCKET OPENS
   ═══════════════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
#preloader .pl-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,155,18,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,155,18,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
#preloader .pl-count {
  font-family: var(--font-display);
  font-size: clamp(160px, 22vw, 320px);
  font-weight: 900;
  line-height: 0.85;
  color: var(--white-hot);
  position: relative;
  z-index: 2;
  letter-spacing: -8px;
  text-align: center;
}
#preloader .pl-beat {
  width: 60vw;
  height: 1px;
  background: var(--cymbal-gold);
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease-out-expo);
}
#preloader .pl-beat.active { transform: translateX(-50%) scaleX(1); }
#preloader .pl-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
  position: absolute;
  bottom: calc(30% + 16px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 400ms;
}
#preloader .pl-label.visible { opacity: 1; }
#preloader .pl-brand {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 8px;
  color: var(--text-mist);
  text-transform: uppercase;
  position: absolute;
  bottom: 40px;
  opacity: 0.5;
}
#preloader.exit {
  animation: preloaderExit 800ms var(--ease-in-expo) forwards;
}
@keyframes preloaderExit {
  0%   { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}

/* ═══════════════════════════════════════════════════════════════
   HEARTBEAT SCROLL INDICATOR — EKG pulse on right edge
   ═══════════════════════════════════════════════════════════════ */
#heartbeat {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
#heartbeat .hb-track {
  width: 1px;
  height: 200px;
  background: rgba(196,155,18,0.15);
  position: relative;
}
#heartbeat .hb-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--cymbal-gold);
  height: 0%;
  transition: height 100ms linear;
}
#heartbeat .hb-pulse {
  width: 6px;
  height: 6px;
  border: 1px solid var(--cymbal-gold);
  border-radius: 50%;
  animation: hbPulse 1.4s ease-in-out infinite;
}
@keyframes hbPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.8); opacity: 1; }
}
#heartbeat .hb-measure {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--cymbal-gold);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  opacity: 0.5;
  transform: rotate(180deg);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  transition: background 400ms, padding 400ms;
}
.site-nav.scrolled {
  background: rgba(4, 3, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 48px;
  border-bottom: 1px solid rgba(196,155,18,0.08);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-brand .brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--white-hot);
  text-transform: uppercase;
  line-height: 1;
}
.nav-brand .brand-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 5px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-mist);
  text-transform: uppercase;
  position: relative;
  transition: color var(--dur-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cymbal-gold);
  transition: width var(--dur-med) var(--ease-out-expo);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cymbal-gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--void);
  background: var(--cymbal-gold);
  padding: 10px 24px;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background var(--dur-fast), color var(--dur-fast);
}
.nav-cta:hover { background: var(--cymbal-bright); }

/* ═══════════════════════════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════════════════════════ */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.container-tight { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--void);
  background: var(--cymbal-gold);
  padding: 16px 36px;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background var(--dur-fast), transform 200ms, clip-path 200ms;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cymbal-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out-expo);
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { color: var(--void); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary .arrow { position: relative; z-index: 1; transition: transform var(--dur-med) var(--ease-out-expo); }
.btn-primary:hover .arrow { transform: translateX(6px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cymbal-gold);
  background: transparent;
  padding: 15px 36px;
  border: 1px solid rgba(196,155,18,0.4);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.btn-ghost:hover {
  background: rgba(196,155,18,0.08);
  border-color: var(--cymbal-gold);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL — utility classes
   ═══════════════════════════════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo);
}
.sr-l {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo);
}
.sr-r {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 800ms var(--ease-out-expo), transform 800ms var(--ease-out-expo);
}
.sr-s {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 700ms var(--ease-out-expo), transform 700ms var(--ease-out-expo);
}
.sr.visible, .sr-l.visible, .sr-r.visible, .sr-s.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Full viewport cinematic entry
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--void);
}

/* THREE.JS canvas fills the hero */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* CUTOUT — floats over canvas, right side */
.hero-cutout {
  position: absolute;
  bottom: 0;
  right: -2%;
  height: 90%;
  width: auto;
  z-index: 3;
  transform: translateY(10px);
  transition: transform 1s var(--ease-out-expo);
  pointer-events: none;
  filter: drop-shadow(-30px 0 60px rgba(98,64,160,0.4))
          drop-shadow(0 -20px 40px rgba(196,155,18,0.15));
}
.hero-cutout.loaded { transform: translateY(0); }

/* Hero SVG blueprint grid overlay */
.hero-blueprint {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(196,155,18,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,155,18,1) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Hero content */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px 80px;
  pointer-events: none;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.hero-eyebrow .line { width: 40px; height: 1px; background: var(--cymbal-gold); }
.hero-eyebrow span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 6px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -4px;
  color: var(--white-hot);
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
}
.hero-headline .gold { color: var(--cymbal-gold); }
.hero-headline .outline {
  -webkit-text-stroke: 1px rgba(248,246,242,0.3);
  color: transparent;
}
.hero-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--text-mist);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  pointer-events: all;
}

/* Hero stats — top right corner */
.hero-stats {
  position: absolute;
  top: 120px;
  right: 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
  pointer-events: none;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--cymbal-gold);
  line-height: 1;
}
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--text-mist);
  text-transform: uppercase;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 80px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.scroll-hint .sh-line {
  width: 48px;
  height: 1px;
  background: rgba(196,155,18,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-hint .sh-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--cymbal-gold);
  animation: scrollHintSlide 2s ease-in-out infinite;
}
@keyframes scrollHintSlide {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}
.scroll-hint span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--text-mist);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--cymbal-gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
  z-index: 5;
}
.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--void);
  text-transform: uppercase;
}
.ticker-item .sep { opacity: 0.4; font-size: 18px; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION SYSTEM
   ═══════════════════════════════════════════════════════════════ */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 6px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
}
.section-label .num {
  font-size: 11px;
  color: var(--cymbal-dim);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -2px;
  color: var(--white-hot);
  text-transform: uppercase;
}
.section-title .gold { color: var(--cymbal-gold); }
.section-title .outline {
  -webkit-text-stroke: 1px rgba(248,246,242,0.2);
  color: transparent;
}

/* Cymbal ring divider — unique section separator */
.cymbal-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  opacity: 0.2;
}
.cymbal-divider .ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--cymbal-gold);
  border-radius: 50%;
  position: relative;
}
.cymbal-divider .ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--cymbal-gold);
  border-radius: 50%;
}
.cymbal-divider .line { flex: 1; height: 1px; background: var(--cymbal-gold); }

/* ═══════════════════════════════════════════════════════════════
   ABOUT INTRO — Split editorial layout
   ═══════════════════════════════════════════════════════════════ */
.about-intro {
  background: var(--stage);
  position: relative;
  overflow: hidden;
}
.about-intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--cymbal-gold), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text-block {
  position: relative;
}
.about-pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.35;
  color: var(--warm-cream);
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--cymbal-gold);
}
.about-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mist);
  margin-bottom: 32px;
  max-width: 520px;
}
.about-stat-row {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}
.about-stat .big {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--cymbal-gold);
  line-height: 1;
}
.about-stat .lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-mist);
  text-transform: uppercase;
  margin-top: 4px;
}
/* About image stack — right panel */
.about-images {
  position: relative;
  height: 580px;
}
.about-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.8);
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 55%;
  object-fit: cover;
  border: 4px solid var(--stage);
  filter: brightness(0.9) saturate(0.9);
}
/* Gold angle badge */
.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: var(--cymbal-gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--void);
  line-height: 1;
}
.about-badge .unit {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 2px;
  color: var(--void);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   CAREER TIMELINE — Horizontal scroll with pinned GSAP panels
   ═══════════════════════════════════════════════════════════════ */
.timeline-section {
  position: relative;
  overflow: hidden;
  background: var(--void);
}
.timeline-pin-wrapper {
  /* JS adds position:sticky, height, etc. */
}
.timeline-track {
  display: flex;
  gap: 0;
  height: 100vh;
}
.timeline-card {
  flex: 0 0 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 80px;
}
.timeline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(98,64,160,0.12) 0%, transparent 70%);
}
.timeline-card-num {
  position: absolute;
  top: 120px;
  left: 80px;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  color: rgba(196,155,18,0.05);
  line-height: 1;
  letter-spacing: -8px;
  pointer-events: none;
}
.timeline-card-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.timeline-card-era {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.timeline-card-era .bar { width: 32px; height: 1px; background: var(--cymbal-gold); }
.timeline-card-artist {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--white-hot);
  line-height: 0.88;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.timeline-card-role {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--text-mist);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.timeline-card-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mist);
  max-width: 520px;
}
/* Cutout in timeline cards */
.timeline-cutout {
  position: absolute;
  bottom: 0;
  right: -5%;
  height: 85%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.35;
  filter: saturate(0) brightness(1.2);
  mix-blend-mode: screen;
}

/* ═══════════════════════════════════════════════════════════════
   GEAR / ARSENAL SECTION
   ═══════════════════════════════════════════════════════════════ */
.arsenal-section { background: var(--depth); }
.arsenal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
/* 3D Cymbal canvas placeholder */
#cymbal-canvas {
  width: 100%;
  aspect-ratio: 1;
  background: radial-gradient(ellipse at 50% 50%, #1A1230 0%, var(--depth) 100%);
  position: relative;
  cursor: grab;
}
#cymbal-canvas:active { cursor: grabbing; }
.cymbal-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--cymbal-dim);
  text-transform: uppercase;
  pointer-events: none;
}

.endorsement-list { display: flex; flex-direction: column; gap: 2px; }
.endorsement-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(196,155,18,0.08);
  transition: border-color var(--dur-med);
}
.endorsement-item:hover { border-color: rgba(196,155,18,0.3); }
.endo-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: rgba(196,155,18,0.2);
  flex: 0 0 50px;
  line-height: 1;
}
.endo-info { flex: 1; }
.endo-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white-hot);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.endo-product {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--text-mist);
  text-transform: uppercase;
}
.endo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cymbal-gold);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.endorsement-item:hover .endo-dot { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   THE LESSON — F.A.B. 5 + Breed Academy, LIGHT section
   ═══════════════════════════════════════════════════════════════ */
.lesson-section {
  background: var(--warm-cream);
  position: relative;
  overflow: hidden;
}
.lesson-section::before {
  content: 'GROOVE';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 240px;
  font-weight: 900;
  color: rgba(196,155,18,0.06);
  letter-spacing: -10px;
  pointer-events: none;
  line-height: 1;
}
.lesson-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.lesson-text .section-label { color: var(--cymbal-dim); }
.lesson-text .section-title { color: var(--ink); }
.lesson-text .section-title .gold { color: var(--cymbal-gold); }
.lesson-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: #5A5870;
  margin-bottom: 32px;
}
.lesson-pillars { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.lesson-pillar {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,21,37,0.1);
}
.lesson-pillar .lp-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--cymbal-gold);
  line-height: 1;
  flex: 0 0 40px;
}
.lesson-pillar .lp-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}
.lesson-pillar .lp-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-mist);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
/* Lesson images — stacked with Academy badge */
.lesson-images {
  position: relative;
  height: 600px;
}
.lesson-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  object-fit: cover;
}
.lesson-img-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
  border: 4px solid var(--warm-cream);
}
.lesson-academy-badge {
  position: absolute;
  top: 40px;
  left: 24px;
  background: var(--ink);
  padding: 20px 24px;
  z-index: 2;
}
.lab-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--cymbal-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
}
.lab-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(196,155,18,0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   PHILOSOPHY QUOTE STRIP
   ═══════════════════════════════════════════════════════════════ */
.quote-strip {
  background: var(--cymbal-gold);
  padding: 80px 80px;
  position: relative;
  overflow: hidden;
}
.quote-strip::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 300px;
  color: rgba(4,3,10,0.08);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 4vw, 52px);
  color: var(--void);
  line-height: 1.25;
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.quote-source {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(4,3,10,0.5);
  text-transform: uppercase;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.quote-source .qs-line { width: 32px; height: 1px; background: rgba(4,3,10,0.4); }

/* ═══════════════════════════════════════════════════════════════
   ARCHIVE — Photo grid with displacement hover
   ═══════════════════════════════════════════════════════════════ */
.archive-section { background: var(--stage); }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.archive-grid .wide { grid-column: span 2; }
.archive-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--depth);
}
.archive-card .wide { aspect-ratio: 16/9; }
.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out-expo),
              filter 400ms;
  filter: brightness(0.7) saturate(0.7);
}
.archive-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.85) saturate(1);
}
.archive-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,3,10,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-med);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.archive-card:hover .archive-card-overlay { opacity: 1; }
.archive-card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.archive-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white-hot);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   TV CREDITS STRIP
   ═══════════════════════════════════════════════════════════════ */
.tv-strip {
  background: var(--void);
  padding: 64px 80px;
  border-top: 1px solid rgba(196,155,18,0.1);
  border-bottom: 1px solid rgba(196,155,18,0.1);
}
.tv-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 6px;
  color: var(--cymbal-dim);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tv-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cymbal-dim);
}
.tv-shows {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 2px;
}
.tv-show {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 28px);
  font-weight: 900;
  color: rgba(248,246,242,0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  transition: color var(--dur-med);
  cursor: default;
}
.tv-show:hover { color: var(--cymbal-gold); }

/* ═══════════════════════════════════════════════════════════════
   BOOKING CTA
   ═══════════════════════════════════════════════════════════════ */
.booking-cta {
  background: var(--void);
  padding: 140px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.booking-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(98,64,160,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.booking-cta .cta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 8px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.booking-cta .cta-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--white-hot);
  text-transform: uppercase;
  line-height: 0.88;
  margin-bottom: 40px;
}
.booking-cta .cta-title span { color: var(--cymbal-gold); }
.booking-cta .cta-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-mist);
  text-transform: uppercase;
  margin-bottom: 56px;
}
.booking-cta .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--stage);
  border-top: 1px solid rgba(196,155,18,0.1);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .fb-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white-hot);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-brand .fb-tagline {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand .fb-bio {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mist);
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mist);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--cymbal-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(196,155,18,0.06);
}
.footer-copyright {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-faint);
  text-transform: uppercase;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-mist);
  text-transform: uppercase;
  transition: color var(--dur-fast);
}
.footer-social a:hover { color: var(--cymbal-gold); }

/* ═══════════════════════════════════════════════════════════════
   DRUM PAD GRID — Education section interactive element
   ═══════════════════════════════════════════════════════════════ */
.drum-pads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 480px;
}
.drum-pad {
  aspect-ratio: 1;
  background: var(--mist);
  border: 1px solid rgba(196,155,18,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: transform 60ms, background 60ms, border-color 60ms;
  position: relative;
  overflow: hidden;
}
.drum-pad::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--cymbal-gold), transparent 70%);
  opacity: 0;
  transition: opacity 100ms;
}
.drum-pad.hit {
  background: rgba(196,155,18,0.15);
  border-color: var(--cymbal-gold);
  transform: scale(0.94);
}
.drum-pad.hit::after { opacity: 0.3; }
.drum-pad .pd-name {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--text-mist);
  text-transform: uppercase;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.drum-pad .pd-icon {
  font-size: 20px;
  opacity: 0.5;
  transition: opacity 100ms;
  position: relative;
  z-index: 1;
}
.drum-pad.hit .pd-icon { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM — Booking page
   ═══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--void); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(196,155,18,0.08);
}
.ci-icon {
  width: 32px;
  height: 32px;
  background: rgba(196,155,18,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.ci-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--cymbal-dim);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ci-value {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
}
.form-card {
  background: var(--stage);
  padding: 48px;
  border: 1px solid rgba(196,155,18,0.08);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
}
.form-input, .form-select, .form-textarea {
  background: rgba(196,155,18,0.04);
  border: 1px solid rgba(196,155,18,0.15);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--dur-fast), background var(--dur-fast);
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cymbal-gold);
  background: rgba(196,155,18,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: none; }
.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px;
  background: var(--cymbal-gold);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--void);
  text-transform: uppercase;
  border: none;
  cursor: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background var(--dur-fast);
}
.form-submit:hover { background: var(--cymbal-bright); }

/* ═══════════════════════════════════════════════════════════════
   INTERIOR PAGE HERO
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 180px 80px 80px;
  background: var(--stage);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(196,155,18,0.1);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,155,18,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,155,18,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 6px;
  color: var(--cymbal-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--cymbal-gold);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 140px);
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--white-hot);
  text-transform: uppercase;
  line-height: 0.88;
  position: relative;
  z-index: 1;
}
.page-hero-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--cymbal-dim);
  text-transform: uppercase;
  margin-top: 28px;
  max-width: 520px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
/* Decorative background element (optional use) */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(196,155,18,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Floating cutout in interior hero */
.page-hero-cutout {
  position: absolute;
  right: 6%;
  bottom: 0;
  height: 85%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(-20px 0 40px rgba(196,155,18,0.08));
  z-index: 0;
}
@media (max-width: 900px) {
  .page-hero-cutout { display: none; }
  .page-hero { padding: 140px 24px 60px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .container-tight { padding: 0 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .arsenal-grid { grid-template-columns: 1fr; }
  .lesson-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .site-nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 0 60px 32px; }
  .hero-stats { right: 24px; }
  .section { padding: 80px 0; }
  .quote-strip { padding: 60px 32px; }
  .booking-cta { padding: 80px 32px; }
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .archive-grid .wide { grid-column: span 2; }
  .drum-pads { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 56px; letter-spacing: -2px; }
  .section-title { font-size: 44px; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-grid .wide { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cutout { height: 55%; right: -10%; }
}

/* ═══════════════════════════════════════════════════════════════
   GRAIN OVERLAY — 35mm film texture
   ═══════════════════════════════════════════════════════════════ */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8990;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift 0.12s steps(1) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2%, 1%); }
  50%  { transform: translate(1%, -2%); }
  75%  { transform: translate(2%, 2%); }
  100% { transform: translate(-1%, -1%); }
}
