/* ================================================================
   22 TANGO CREATIVE SCHOOL — Brand Stylesheet
   Translated from marketing materials:
   Orange, Hot Pink, Yellow, Lavender, Mint, Sky Blue
   No pure black (#000) or pure white (#fff) backgrounds
================================================================ */

:root {
  --bg:        #FFF8EE;
  --ink:       #1A1209;
  --orange:    #FF6B35;
  --pink:      #FF3D6A;
  --yellow:    #FFD60A;
  --lavender:  #C4B5FD;
  --mint:      #86EFAC;
  --sky:       #7DD3FC;
  --coral:     #FF8C69;
  --peach:     #FFE5CC;
  --dim:       #4A3728;
  --muted:     #8B6B52;
  --offwhite:  #FFF4E6;
  --dark:      #2D1B0E;

  --card-song:    #FFD60A;
  --card-studio:  #FF8C69;
  --card-voice:   #C4B5FD;
  --card-uhost:   #FF9EC3;
  --card-mixroom: #7DD3FC;
  --card-mastery: #A7F3D0;
  --card-pml:     #FDE68A;

  /* Gradient tints for card depth */
  --card-song-lt:    #FFF8B0;
  --card-song-dk:    #E0B800;
  --card-studio-lt:  #FFCDB8;
  --card-studio-dk:  #E05030;
  --card-voice-lt:   #EDE6FF;
  --card-voice-dk:   #9980F2;
  --card-uhost-lt:   #FFE0F0;
  --card-uhost-dk:   #E060A0;
  --card-mixroom-lt: #CBF0FF;
  --card-mixroom-dk: #3AACE0;
  --card-mastery-lt: #D6FAE8;
  --card-mastery-dk: #5EDAAA;
  --card-pml-lt:     #FEF5C0;
  --card-pml-dk:     #F0C030;

  --font-headline: 'Unbounded', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'IBM Plex Mono', monospace;
  --max-w:   1280px;
  --gutter:  80px;
  --col-gap: 24px;
  --radius:  16px;
  --unit:    8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--col-gap); position: relative; }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0px var(--ink); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
}
.btn-outline:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0px var(--ink); background: var(--ink); color: var(--bg); }
.btn-cta-lg {
  background: var(--orange);
  color: #fff;
  border: 3px solid var(--ink);
  font-size: 16px;
  padding: 18px 48px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 6px 6px 0px var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-cta-lg:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0px var(--ink); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.geo-shape { position: absolute; z-index: 0; pointer-events: none; }
.geo-circle { width: 160px; height: 160px; border-radius: 50%; background: var(--yellow); opacity: 0.9; }
.geo-square { width: 100px; height: 100px; background: var(--lavender); transform: rotate(18deg); border-radius: 8px; }
.geo-triangle { width: 0; height: 0; border-left: 64px solid transparent; border-right: 64px solid transparent; border-bottom: 110px solid var(--sky); transform: rotate(-8deg); }
.geo-pill { width: 160px; height: 56px; border-radius: 999px; background: var(--mint); transform: rotate(-20deg); }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
/* ── Permanently dark nav (Mathscool-style) ────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  border-bottom: 3px solid var(--ink);
}
/* Keep scrolled class for JS toggle but override with same dark */
#header.scrolled { background: #000000; box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg path { fill: #FFFFFF !important; }
.nav-logo img { height: 44px; }
.nav-logo-text { font-family: var(--font-headline); font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.15; color: var(--offwhite); }
.nav-links { display: flex; align-items: center; gap: 48px; list-style: none; }
.nav-links a { font-family: var(--font-headline); font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--offwhite); transition: color 0.15s; }
.nav-links a:hover { color: var(--yellow); }
/* Yellow pill CTA — Neobrutalist Blog style */
.btn-nav {
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 12px 24px;
  border-radius: 50px;
  background-color: var(--yellow);
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--offwhite);
  transition: transform 0.1s, box-shadow 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-nav:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--offwhite); }

/* ── Centered & Minimal hero style ────────────────────────── */
#hero {
  background: #000000;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* dark overlay to preserve high text contrast */
  z-index: 1;
  pointer-events: none;
}
/* Subtle noise grain on dark hero */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 1; /* Match overlay level so noise floats above video too */
}
.hero-center-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--offwhite);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.highlight {
  color: var(--dark);
  background-color: var(--yellow);
  padding: 2px 12px;
  display: inline-block;
  border: 3px solid var(--ink);
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0px var(--purple);
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.5;
  color: rgba(255,244,230,0.65);
  max-width: 580px;
  margin: 0 auto 28px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-proof-avatars {
  display: flex;
  align-items: center;
}
.hero-proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink);
}
.hero-proof-avatar:first-child { margin-left: 0; }
.hero-proof-avatar-1 { background: var(--yellow); }
.hero-proof-avatar-2 { background: var(--mint); }
.hero-proof-avatar-3 { background: var(--lavender); }
.hero-proof-avatar-4 { background: var(--coral); }
.hero-proof-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,244,230,0.55);
  text-transform: uppercase;
}
.hero-proof-text strong { color: var(--offwhite); }
.hero-floating-tag {
  position: absolute;
  right: 8%;
  bottom: 12%;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 10px;
  border: 3px solid var(--ink);
  transform: rotate(6deg);
  box-shadow: 4px 4px 0 var(--ink);
  line-height: 1.15;
  max-width: 160px;
  text-transform: uppercase;
  z-index: 2;
}

/* ─── EMPATHY ────────────────────────────────────────────────── */
#empathy {
  background: var(--peach);
  color: var(--ink);
  padding: 120px 0;
  position: relative;
  overflow: visible;
  border-bottom: 3px solid var(--ink);
}
/* Opaque Neobrutalist torn-receipt zigzag teeth pointing upward */
#empathy::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, var(--peach) 10px, var(--peach) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, var(--peach) 10px, var(--peach) 20px);
  background-size: 20px 32px;
  background-position: 0 0, 10px 0;
  z-index: 10;
}
#empathy::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.12;
  pointer-events: none;
}
.empathy-anchor { grid-column: 1 / 3; display: flex; align-items: flex-start; border-right: 2px solid rgba(26,18,9,0.2); padding-right: 24px; }
.empathy-anchor .label { writing-mode: vertical-rl; transform: rotate(180deg); margin-top: 8px; }
.empathy-copy { grid-column: 3 / 13; padding-left: 24px; }
.empathy-line-1 { font-family: var(--font-headline); font-size: clamp(52px, 6.5vw, 80px); font-weight: 800; line-height: 0.92; text-transform: uppercase; color: var(--ink); margin-bottom: 24px; }
.empathy-line-1 em { font-style: normal; color: var(--orange); }
.empathy-line-2 { font-family: var(--font-headline); font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; line-height: 1.05; text-transform: uppercase; color: var(--dim); margin-bottom: 48px; }
.empathy-rule { width: 100%; height: 2px; background: rgba(26,18,9,0.2); margin-bottom: 40px; }
.empathy-resolve { font-size: 18px; line-height: 1.72; color: var(--dim); max-width: 560px; margin-bottom: 24px; }
.empathy-hook { font-size: 19px; line-height: 1.68; color: var(--ink); font-style: italic; font-weight: 500; max-width: 520px; padding-left: 20px; border-left: 4px solid var(--orange); }

/* ─── ARTIFACT ───────────────────────────────────────────────── */
#artifact { background: var(--bg); padding: 140px 0; border-bottom: 3px solid var(--ink); }
.artifact-section-label { grid-column: 1 / 13; margin-bottom: 72px; }
.artifact-visual { grid-column: 1 / 8; display: flex; align-items: center; justify-content: center; }
.artifact-block {
  width: 320px; height: 320px;
  background: var(--orange);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0px var(--ink);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.artifact-record { width: 160px; height: 160px; border: 3px solid rgba(255,255,255,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.artifact-record-inner { width: 32px; height: 32px; border: 3px solid rgba(255,255,255,0.8); border-radius: 50%; }
.artifact-copy { grid-column: 8 / 13; display: flex; flex-direction: column; justify-content: center; padding-left: 24px; }
.artifact-headline { font-family: var(--font-headline); font-size: clamp(36px, 4.2vw, 52px); font-weight: 800; line-height: 0.95; text-transform: uppercase; color: var(--ink); margin-bottom: 28px; }
.artifact-body { font-size: 16px; line-height: 1.6; color: var(--dim); max-width: 480px; margin-bottom: 16px; }
.artifact-body-2 { font-size: 16px; line-height: 1.6; color: var(--ink); max-width: 480px; font-weight: 500; margin-bottom: 36px; }
.artifact-rule { height: 2px; background: rgba(26,18,9,0.15); margin-bottom: 28px; }
.artifact-facts { display: flex; flex-direction: column; gap: 14px; }
.artifact-fact { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); display: flex; align-items: center; gap: 12px; }
.artifact-fact::before { content: '▪'; color: var(--orange); font-size: 16px; }

/* ─── PROGRAMS ───────────────────────────────────────────────── */
#programs {
  background: var(--dark);
  color: var(--offwhite);
  padding: 100px 0 80px;
  border-top: 3px solid var(--ink);
}
.programs-intro { max-width: var(--max-w); margin: 0 auto 60px; padding: 0 var(--gutter); text-align: center; }
.programs-intro .label { color: var(--yellow); margin-bottom: 12px; display: inline-block; }
.programs-title { font-family: var(--font-headline); font-size: clamp(36px, 5vw, 54px); font-weight: 800; text-transform: uppercase; color: var(--offwhite); }
.tracks-wrapper { display: flex; flex-direction: column; gap: 80px; }
.track-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: flex-start;
}
.track-info {
  grid-column: span 4;
}
.track-content {
  grid-column: span 8;
}
.track-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; display: inline-block; }
.track-heading { font-family: var(--font-headline); font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; text-transform: uppercase; color: var(--offwhite); margin-bottom: 16px; line-height: 1.05; }
.track-subhead { font-size: 15px; line-height: 1.65; color: rgba(255,244,230,0.7); margin-bottom: 0; }
.track-a, .track-b, .track-c { border-top: 1px solid rgba(255,244,230,0.12); padding-top: 72px; }



.track-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.track-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

/* Shared card anatomy */
/* Card logo — sticker-badge treatment */
.card-logo {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 24px;
  box-shadow: 2px 3px 0px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,1);
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.card-logo img { height: 38px; width: auto; object-fit: contain; }
.card-logo-title {
  margin-bottom: 16px;
  align-self: flex-start;
  height: clamp(38px, 4.5vw, 52px);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.card-logo-title img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(0);
}
.card-badge { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; display: inline-block; margin-bottom: 20px; border: 2px solid rgba(0,0,0,0.25); background: rgba(0,0,0,0.08); color: rgba(0,0,0,0.7); align-self: flex-start; font-weight: 600; position: relative; z-index: 1; }
.card-name { font-family: var(--font-headline); font-size: 30px; font-weight: 800; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; line-height: 1; position: relative; z-index: 1; }
.card-tagline { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(0,0,0,0.55); margin-bottom: 20px; position: relative; z-index: 1; }
.card-desc { font-size: 14px; line-height: 1.65; color: rgba(0,0,0,0.65); margin-bottom: 24px; position: relative; z-index: 1; }
/* Card artifact — dark inset callout box */
.card-artifact {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,244,230,0.9);
  background: rgba(26,18,9,0.88);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 32px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.card-link { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); border-bottom: 2px solid rgba(0,0,0,0.3); padding-bottom: 4px; margin-top: auto; align-self: flex-start; transition: opacity 0.2s; font-weight: 700; z-index: 1; }
.card-link:hover { opacity: 0.6; }
/* Stretched link — makes the whole card clickable */
.card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
}
.program-card-dark, .program-card-light { cursor: pointer; }
.pml-card-main { cursor: pointer; }


.program-card-dark, .program-card-light {
  border: 3px solid var(--ink);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  position: relative;
  border-radius: var(--radius);
  box-shadow: 6px 6px 0px var(--ink), inset 0 1px 0 rgba(255,255,255,0.55), inset 1px 0 0 rgba(255,255,255,0.3);
  overflow: hidden;
}

/* Grain texture overlay */
.program-card-dark::before, .program-card-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.018) 3px, rgba(0,0,0,0.018) 6px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0,0,0,0.018) 3px, rgba(0,0,0,0.018) 6px);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.program-card-dark:hover, .program-card-light:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px var(--ink), inset 0 1px 0 rgba(255,255,255,0.55), inset 1px 0 0 rgba(255,255,255,0.3);
  filter: brightness(1.05);
}

/* Per-program diagonal gradients — light tint → base → dark shade */
#card-song-studio  { background: linear-gradient(145deg, var(--card-song-lt) 0%, var(--card-song) 55%, var(--card-song-dk) 100%); }
#card-studiowork   { background: linear-gradient(145deg, var(--card-studio-lt) 0%, var(--card-studio) 55%, var(--card-studio-dk) 100%); }
#card-voice-lab    { background: linear-gradient(145deg, var(--card-voice-lt) 0%, var(--card-voice) 55%, var(--card-voice-dk) 100%); }
#card-u-host       { background: linear-gradient(145deg, var(--card-uhost-lt) 0%, var(--card-uhost) 55%, var(--card-uhost-dk) 100%); }
#card-mixroom-intro    { background: linear-gradient(145deg, var(--card-mixroom-lt) 0%, var(--card-mixroom) 55%, var(--card-mixroom-dk) 100%); }
#card-mixroom-mastery  { background: linear-gradient(145deg, var(--card-mastery-lt) 0%, var(--card-mastery) 55%, var(--card-mastery-dk) 100%); }


.card-image-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  border-radius: inherit;
  transition: opacity 0.22s ease;
}

.program-card-dark:hover .card-image-overlay,
.program-card-light:hover .card-image-overlay,
.pml-card-main:hover .card-image-overlay {
  opacity: 0.15;
}

/* Card logo images — darken to black so they read on light gradient backgrounds */
.program-card-dark .card-logo img,
.program-card-light .card-logo img,
.pml-card-main .card-logo img,
.card-logo-title img { filter: brightness(0) saturate(0); }

/* ─── PML section ─────────────────────────────────────────── */
.pml-layout { display: block; }
.pml-card-main {
  background: linear-gradient(145deg, var(--card-pml-lt) 0%, var(--card-pml) 55%, var(--card-pml-dk) 100%);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0px var(--ink), inset 0 1px 0 rgba(255,255,255,0.55), inset 1px 0 0 rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 48px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  position: relative;
  overflow: hidden;
}
.pml-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.018) 3px, rgba(0,0,0,0.018) 6px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(0,0,0,0.018) 3px, rgba(0,0,0,0.018) 6px);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.pml-card-main > *:not(.card-image-overlay) { position: relative; z-index: 1; }
.pml-fused-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.pml-details-col {
  display: flex;
  flex-direction: column;
}
.pml-instruments-col {
  border-left: 1.5px solid rgba(26, 18, 9, 0.15);
  padding-left: 48px;
}
.pml-instruments-col .pml-instruments-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 18, 9, 0.55);
  margin-bottom: 20px;
}
.pml-instruments-col .pml-instrument-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pml-instruments-col .pml-instrument-list li {
  font-family: var(--font-headline);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1.5px solid rgba(26, 18, 9, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pml-instruments-col .pml-instrument-list li:first-child {
  border-top: 1.5px solid rgba(26, 18, 9, 0.12);
}
.pml-instruments-col .coming-soon {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 18, 9, 0.4);
  background: rgba(26, 18, 9, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .pml-fused-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pml-instruments-col {
    border-left: none;
    border-top: 1.5px solid rgba(26, 18, 9, 0.15);
    padding-left: 0;
    padding-top: 40px;
  }
}
.pml-card-main:hover { transform: translate(-4px,-4px); box-shadow: 10px 10px 0px var(--ink), inset 0 1px 0 rgba(255,255,255,0.55), inset 1px 0 0 rgba(255,255,255,0.3); filter: brightness(1.05); }
.pml-card-main .card-name { font-size: 26px; }

/* ─── PLEDGE ─────────────────────────────────────────────────── */
#pledge {
  background: var(--orange);
  color: var(--ink);
  padding: 120px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
#pledge::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: var(--yellow); opacity: 0.35; }
.pledge-headline { font-family: var(--font-headline); font-size: clamp(64px, 8vw, 108px); font-weight: 800; line-height: 0.9; text-transform: uppercase; color: var(--ink); grid-column: 1 / 13; margin-bottom: 64px; position: relative; z-index: 1; }
.pledge-rule { grid-column: 1 / 13; height: 3px; background: rgba(26,18,9,0.3); margin-bottom: 64px; position: relative; z-index: 1; }
.pledge-col { grid-column: span 4; border-right: 2px solid rgba(26,18,9,0.2); padding-right: 40px; position: relative; z-index: 1; }
.pledge-col:last-child { border-right: none; padding-right: 0; }
.pledge-col-title { font-family: var(--font-headline); font-size: 26px; font-weight: 700; text-transform: uppercase; color: var(--ink); margin-bottom: 20px; line-height: 1.1; }
.pledge-col-body { font-size: 15px; line-height: 1.75; color: rgba(26,18,9,0.75); }

/* ─── BLOG ───────────────────────────────────────────────────── */
#blog { background: var(--bg); padding: 120px 0; border-bottom: 3px solid var(--ink); }
.blog-section-header { grid-column: 1 / 13; display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.blog-title-wrap { max-width: 480px; }
.blog-section-title { font-family: var(--font-headline); font-size: clamp(36px, 4vw, 52px); font-weight: 800; text-transform: uppercase; color: var(--ink); margin-top: 12px; }
.blog-view-all { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); border-bottom: 2px solid rgba(26,18,9,0.25); padding-bottom: 4px; transition: color 0.2s, border-color 0.2s; }
.blog-view-all:hover { color: var(--orange); border-color: var(--orange); }

/* Blog cards — full neobrutalist card with hover */
.blog-post-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0px var(--ink);
  overflow: hidden;
  background: var(--offwhite);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-post-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px var(--ink);
}

/* Colored image header areas per card */
.blog-card-image {
  width: 100%;
  height: 200px;
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  text-decoration: none;
  transition: filter 0.2s ease;
}
.blog-card-image:hover { filter: brightness(0.93); }
.blog-card-img-1 { background: linear-gradient(135deg, #FF9F5A 0%, var(--orange) 60%, #E0500A 100%); }
.blog-card-img-2 { background: linear-gradient(135deg, #EDE6FF 0%, var(--lavender) 60%, #9980F2 100%); }
.blog-card-img-3 { background: linear-gradient(135deg, #FFF8B0 0%, var(--yellow) 60%, #E0B800 100%); }
.blog-card-img-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1.5px solid rgba(0,0,0,0.15);
}

/* Card body wrapper */
.blog-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.blog-card-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); font-weight: 600; }
.blog-card-date { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted); }
.blog-card-headline { font-family: var(--font-headline); font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--ink); line-height: 1.1; margin-top: 4px; }
.blog-card-excerpt { font-size: 13px; line-height: 1.6; color: var(--dim); flex: 1; }
.blog-card-arrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; font-weight: 700; margin-top: 8px; align-self: flex-start; border-bottom: 2px solid var(--orange); padding-bottom: 2px; transition: opacity 0.2s; }
.blog-card-arrow:hover { opacity: 0.7; }

/* Full-width CTA row below the cards */
.blog-cta-row {
  grid-column: 1 / 13;
  display: flex;
  justify-content: center;
  margin-top: 56px;
}


/* ─── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials {
  background: var(--ink);
  padding: 120px 0;
  overflow: hidden;
  border-top: 3px solid rgba(255,244,230,0.08);
  border-bottom: 3px solid rgba(255,244,230,0.08);
}
.testimonials-intro {
  text-align: center;
  margin-bottom: 72px;
  padding: 0 var(--gutter);
}
.testimonials-intro .label { color: var(--yellow); margin-bottom: 12px; display: inline-block; }
.testimonials-heading {
  font-family: var(--font-headline);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--offwhite);
  line-height: 1;
}

/* Marquee wrapper — two rows scroll in opposite directions */
.testimonials-track { overflow: hidden; display: flex; flex-direction: column; gap: 24px; }

.testimonials-row {
  display: flex;
  gap: 24px;
  width: max-content;
}
.testimonials-row-1 { animation: marquee-left 36s linear infinite; }
.testimonials-row-2 { animation: marquee-right 40s linear infinite; }

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover or reduced-motion */
.testimonials-track:hover .testimonials-row { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .testimonials-row { animation: none; }
  .testimonials-row { flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* Individual testimonial card */
.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--offwhite);
  border: 3px solid rgba(255,244,230,0.2);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.2s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }

/* Large opening quote mark */
.testimonial-quote-mark {
  font-family: var(--font-headline);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.7;
  display: block;
  margin-bottom: 8px;
  /* color set per-card via inline style or modifier class */
}

/* Quote accent colors per program */
.tq-song    { color: var(--card-song); }
.tq-studio  { color: var(--card-studio); }
.tq-voice   { color: var(--card-voice); }
.tq-uhost   { color: var(--card-uhost); }
.tq-mixroom { color: var(--card-mixroom); }
.tq-pml     { color: var(--card-pml); }

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dim);
  font-style: italic;
  flex: 1;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid rgba(26,18,9,0.08);
  padding-top: 16px;
  gap: 12px;
}
.testimonial-name {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.testimonial-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  border: 2px solid rgba(26,18,9,0.2);
  background: rgba(26,18,9,0.06);
  color: rgba(26,18,9,0.7);
  white-space: nowrap;
}

/* ─── CTA BAND ───────────────────────────────────────────────── */
#cta-band {
  background: var(--yellow);
  color: var(--ink);
  padding: 160px 0;
  text-align: center;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
#cta-band::before { content: ''; position: absolute; top: -100px; left: -100px; width: 350px; height: 350px; border-radius: 50%; background: var(--orange); opacity: 0.18; }
#cta-band::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: var(--pink); opacity: 0.15; }
.cta-band-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 32px; position: relative; z-index: 1; }
.cta-band-headline { font-family: var(--font-headline); font-size: clamp(52px, 7vw, 88px); font-weight: 800; line-height: 0.92; text-transform: uppercase; color: var(--ink); margin-bottom: 64px; max-width: 880px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-band-actions { display: flex; flex-direction: column; align-items: center; gap: 24px; position: relative; z-index: 1; }
.cta-band-sub { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); opacity: 0.7; transition: opacity 0.2s; }
.cta-band-sub:hover { opacity: 1; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#footer { background: var(--ink); color: rgba(255,244,230,0.7); padding: 80px 0 0; }
.footer-grid { grid-column: 1 / 13; display: grid; grid-template-columns: repeat(12,1fr); gap: 24px; }
.footer-brand { grid-column: 1 / 4; display: flex; flex-direction: column; gap: 24px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 40px; }
.footer-logo-text { font-family: var(--font-headline); font-size: 16px; font-weight: 800; text-transform: uppercase; color: var(--offwhite); line-height: 1.2; }
.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,244,230,0.55); }
.footer-nav-col { grid-column: span 2; display: flex; flex-direction: column; gap: 16px; }
.footer-nav-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
.footer-nav-col a { font-size: 14px; color: rgba(255,244,230,0.65); transition: color 0.2s; line-height: 1.5; }
.footer-nav-col a:hover { color: var(--offwhite); }
.footer-contact-col { grid-column: span 4; display: flex; flex-direction: column; gap: 20px; }
.footer-contact-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-info a { font-size: 14px; color: rgba(255,244,230,0.65); transition: color 0.2s; }
.footer-contact-info a:hover { color: var(--offwhite); }
.footer-bottom { margin-top: 64px; border-top: 1px solid rgba(255,244,230,0.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-copy { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em; color: rgba(255,244,230,0.35); }
.footer-legal { display: flex; align-items: center; gap: 24px; }
.footer-legal a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,244,230,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,244,230,0.7); }

.wf-badge { display: none; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --gutter: 40px; }
  .hero-vert-label { display: none; }
  .hero-content { grid-column: 1 / 13; }
  .artifact-visual { grid-column: 1 / 13; margin-bottom: 48px; }
  .artifact-copy { grid-column: 1 / 13; padding-left: 0; }
  .track-grid { grid-template-columns: 1fr; }
  .track-stack { grid-template-columns: 1fr; }
  .pml-layout { grid-template-columns: 1fr; }
  .blog-post-card { grid-column: span 6; margin-bottom: 40px; }
  .blog-section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .pledge-col { grid-column: 1 / 13; border-right: none; border-bottom: 2px solid rgba(26,18,9,0.15); padding-right: 0; padding-bottom: 40px; margin-bottom: 40px; }
  .pledge-col:last-child { border-bottom: none; }
  .footer-brand { grid-column: 1 / 13; margin-bottom: 40px; }
  .footer-nav-col { grid-column: span 4; }
  .footer-contact-col { grid-column: 1 / 13; margin-top: 32px; }
  .empathy-anchor { display: none; }
  .empathy-copy { grid-column: 1 / 13; }
}
@media (max-width: 640px) {
  :root { --gutter: 24px; }
  .nav-links { display: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 20px; }
  .track-grid { grid-template-columns: 1fr; }
  .track-stack { grid-template-columns: 1fr; }
  .pml-layout { grid-template-columns: 1fr; }
  .blog-post-card { grid-column: 1 / 13; }
  .artifact-block { width: 240px; height: 240px; }
  .btn-cta-lg { width: 100%; text-align: center; }
  .footer-nav-col { grid-column: 1 / 13; }
}

/* ════════════════════════════════════════════════════════════
   ✦ SPARKLE UTILITY — Mathscool doodle language
════════════════════════════════════════════════════════════ */
.spark {
  display: inline-block;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.spark-anim { animation: sparkle-spin var(--dur, 10s) linear infinite; }
.spark-anim-rev { animation: sparkle-spin var(--dur, 14s) linear infinite reverse; }
@keyframes sparkle-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Positioned sparks (inside sections) */
.spark-abs {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  font-style: normal;
}

/* ── Hero sparks ─────────────────────────────────────────── */
.hero-sparks { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* ── Hero social proof strip ─────────────────────────────── */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.hero-proof-avatars { display: flex; align-items: center; }
.hero-proof-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid var(--dark);
  margin-left: -12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}
.hero-proof-avatar:first-child { margin-left: 0; }
.hero-proof-avatar-1 { background: var(--yellow); }
.hero-proof-avatar-2 { background: var(--mint); }
.hero-proof-avatar-3 { background: var(--lavender); }
.hero-proof-avatar-4 { background: var(--coral); }
.hero-proof-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,244,230,0.55);
  text-transform: uppercase;
}
.hero-proof-text strong { color: var(--offwhite); }

/* ── Hero floating tag ───────────────────────────────────── */
.hero-floating-tag {
  position: absolute;
  right: 6%;
  bottom: 22%;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  transform: rotate(4deg);
  box-shadow: 5px 5px 0 var(--ink);
  line-height: 1.15;
  max-width: 200px;
  text-transform: uppercase;
  z-index: 2;
}

/* ════════════════════════════════════════════════════════════
   BENTO GRID — Notebook + Colorful Cards (Mathscool style)
════════════════════════════════════════════════════════════ */
#bento {
  background: var(--offwhite);
  padding-bottom: 100px;
  position: relative;
  border-bottom: 3px solid var(--ink);
}

/* Notebook spiral-hole border strip */
.bento-notebook-border {
  width: 100%;
  height: 60px;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  margin-bottom: 72px;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle, var(--ink) 38%, transparent 38%);
  background-size: 48px 48px;
  background-position: center center;
  background-repeat: repeat-x;
  position: relative;
}
/* Faint ruled lines like notebook paper inside bento */
.bento-notebook-border::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    transparent,
    transparent 31px,
    rgba(26,18,9,0.06) 31px,
    rgba(26,18,9,0.06) 32px
  );
}

/* The grid */
.bento-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Card base */
.bento-card {
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s cubic-bezier(.34,1.56,.64,1), box-shadow 0.18s ease;
  box-shadow: 5px 5px 0 var(--ink);
  min-height: 220px;
}
.bento-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 9px 9px 0 var(--ink);
}

/* Color variants */
.bento-card--pink     { background: var(--pink); }
.bento-card--yellow   { background: var(--yellow); }
.bento-card--lavender { background: var(--lavender); }
.bento-card--white    { background: var(--offwhite); }
.bento-card--orange   { background: var(--orange); }
.bento-card--mint     { background: var(--mint); }

/* Column spans */
.bento-card--span2 { grid-column: span 2; }
.bento-card--span1 { grid-column: span 1; }
.bento-card--tall  { min-height: 280px; }

/* Text */
.bento-card-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 14px;
}
.bento-card--pink .bento-card-title,
.bento-card--orange .bento-card-title { color: #fff; }

.bento-card-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(26,18,9,0.6);
  flex: 1;
}
.bento-card--pink .bento-card-body,
.bento-card--orange .bento-card-body { color: rgba(255,255,255,0.8); }

/* Doodle icons in card corners */
.bento-doodle {
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-size: 44px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0.75;
}

/* CTA card — spans right 2 cols, pink with wavy */
.bento-card--cta {
  justify-content: flex-end;
  gap: 20px;
  padding-bottom: 36px;
}
.bento-card--cta .bento-card-title {
  font-size: 34px;
  line-height: 0.92;
  color: #fff;
  margin-bottom: 0;
}

/* Wavy bottom on CTA card */
.bento-card--wavy {
  padding-bottom: 52px;
}
.bento-card--wavy::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 28' preserveAspectRatio='none'%3E%3Cpath d='M0 14 Q25 0 50 14 Q75 28 100 14 Q125 0 150 14 Q175 28 200 14 Q225 0 250 14 Q275 28 300 14 Q325 0 350 14 Q375 28 400 14 L400 28 L0 28 Z' fill='%231A1209'/%3E%3C/svg%3E");
  background-size: 400px 28px;
  background-repeat: repeat-x;
  background-position: bottom;
}

/* Badge circle (enrollment count) */
.bento-badge-circle {
  position: absolute;
  bottom: 40px;
  right: 24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}
.bento-badge-num {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.bento-badge-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}

/* Empathy sparks override (replace geo-shapes) */
#empathy { position: relative; }
.empathy-spark { position: absolute; z-index: 0; pointer-events: none; user-select: none; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS — Bento
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--span2 { grid-column: span 2; }
  .hero-floating-tag { display: none; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--span2 { grid-column: span 1; }
  .bento-notebook-border { background-size: 36px 36px; }
  .hero-social-proof { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ─── ENDLESS SCROLL CAROUSEL SECTION ──────────────────────────── */
#carousel-section {
  background: var(--bg);
  padding: 60px 0;
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden; /* clip container outer edges */
}
.carousel-container-bleed {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: infinite-scroll 22s linear infinite;
}
/* Pause scrolling on hover to inspect photo slides */
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-slide {
  flex-shrink: 0;
  padding: 0 16px;
  box-sizing: border-box;
}
.slide-placeholder.landscape-slide {
  width: 520px; /* Landscape layout width */
  height: 290px; /* 16:9 visual shape ratio */
  border-radius: 20px;
  border: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  background-size: cover;
  background-position: center;
  position: relative;
}

.color-orange   { background: var(--orange); }
.color-lavender { background: var(--lavender); }
.color-mint     { background: var(--mint); }
.color-yellow   { background: var(--yellow); }

/* Infinite Scroll Keyframes (offsets exactly half the track width) */
@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .slide-placeholder.landscape-slide {
    width: 320px;
    height: 180px;
    font-size: 16px;
    box-shadow: 4px 4px 0 var(--ink);
  }
}

/* ================================================================
   PROGRAM DETAIL PAGES
   Shared styles for song-studio, studio-work, voice-lab, etc.
================================================================ */

/* ── Program Hero ────────────────────────────────────────────── */
.prog-hero {
  background: var(--ink);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 3px solid rgba(255,255,255,0.08);
}
.prog-hero-logo {
  max-height: 90px;
  width: auto;
  margin: 0 auto 28px;
  filter: brightness(0) invert(1);
}
.prog-hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,244,230,0.6);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.prog-hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 18px;
  box-shadow: 3px 3px 0 rgba(255,255,255,0.15);
}

/* ── Program Overview ─────────────────────────────────────────── */
.prog-overview {
  padding: 96px 0;
  background: var(--bg);
}
.prog-overview-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}
.prog-overview-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.prog-overview-heading {
  font-family: var(--font-headline);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
}
.prog-overview-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--dim);
  margin-bottom: 16px;
}
.prog-info-card {
  background: var(--ink);
  color: var(--offwhite);
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
}
.prog-info-card-header {
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.prog-info-card-header-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,244,230,0.45);
  margin-bottom: 8px;
}
.prog-info-card-name {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
}
.prog-info-rows {
  padding: 8px 0;
}
.prog-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
}
.prog-info-row:last-child { border-bottom: none; }
.prog-info-row-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,244,230,0.45);
  flex-shrink: 0;
}
.prog-info-row-value {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--offwhite);
  text-align: right;
}
.prog-info-outcome {
  padding: 20px 32px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.prog-info-outcome-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,244,230,0.45);
  margin-bottom: 8px;
}
.prog-info-outcome-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,244,230,0.75);
}

/* ── What's Covered ───────────────────────────────────────────── */
.prog-covered {
  padding: 96px 0;
  background: var(--offwhite);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.prog-covered-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.prog-covered-heading {
  font-family: var(--font-headline);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 56px;
  line-height: 1.1;
}
.prog-covered-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
}
.prog-covered-item {
  padding: 28px 32px;
  background: var(--bg);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.prog-covered-item:nth-child(even) { border-right: none; }
.prog-covered-item:nth-last-child(-n+2) { border-bottom: none; }
.prog-covered-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 10px;
}
.prog-covered-title {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.prog-covered-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim);
}

/* ── Registration Form ────────────────────────────────────────── */
.prog-form-section {
  padding: 100px 0;
  background: var(--ink);
}
.prog-form-inner {
  max-width: 760px;
  margin: 0 auto;
}
.prog-form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.prog-form-heading {
  font-family: var(--font-headline);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--offwhite);
  line-height: 1.1;
  margin-bottom: 16px;
}
.prog-form-sub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,244,230,0.55);
  margin-bottom: 48px;
}
.prog-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.prog-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prog-form-group.full-width {
  grid-column: 1 / -1;
}
.prog-form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,244,230,0.5);
}
.prog-form-group input,
.prog-form-group select,
.prog-form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--offwhite);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.prog-form-group input::placeholder,
.prog-form-group textarea::placeholder {
  color: rgba(255,244,230,0.25);
}
.prog-form-group input:focus,
.prog-form-group select:focus,
.prog-form-group textarea:focus {
  border-color: var(--yellow);
  background: rgba(255,214,10,0.05);
}
.prog-form-group select option {
  background: var(--ink);
  color: var(--offwhite);
}
.prog-form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.prog-form-submit {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 8px;
}
.prog-form-submit .btn-primary {
  font-size: 15px;
  padding: 18px 40px;
  border-radius: 999px;
}
.prog-form-fine-print {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,244,230,0.3);
  letter-spacing: 0.06em;
}
.prog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,244,230,0.4);
  margin-bottom: 64px;
  transition: color 0.15s;
}
.prog-back-link:hover { color: var(--yellow); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .prog-overview-grid { grid-template-columns: 1fr; gap: 40px; }
  .prog-covered-grid { grid-template-columns: 1fr; }
  .prog-covered-item { border-right: none !important; }
  .prog-covered-item:nth-last-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .prog-covered-item:last-child { border-bottom: none; }
  .prog-form { grid-template-columns: 1fr; }
  .prog-form-group.full-width { grid-column: 1; }
  .prog-form-submit { grid-column: 1; }
}
