/* ==========================================================================
   PINNACLE MUSIC ACADEMY
   Editorial concert-poster aesthetic — cream parchment, ink, vermillion accent.
   ========================================================================== */

:root {
  /* palette */
  --bg:        #F2EBDA;       /* warm cream parchment */
  --bg-deep:   #E8DEC6;       /* deeper cream for layered sections */
  --bg-card:   #FAF5E8;
  --ink:       #1A1410;       /* near-black, warm */
  --ink-soft:  #3A2F26;
  --muted:     #5C4F40;       /* warm taupe, darkened for WCAG AA */
  --rule:      #C9BBA1;
  --accent:    #C44528;       /* vermillion record label */
  --accent-deep:#9B3520;
  --gold:      #D4A552;       /* warm honey */
  --paper-shadow: 0 1px 0 rgba(26,20,16,.05), 0 14px 40px -22px rgba(26,20,16,.25);

  /* type */
  --f-display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --f-body:    'Inter Tight', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  /* sizing */
  /* Single tight container so editorial layout stays readable on big monitors */
  --container: 1200px;
  --container-wide: 1280px;
  --gutter: clamp(20px, 4vw, 64px);

  --radius: 4px;
}

@media (prefers-color-scheme: dark) {
  /* still use the cream theme; this is a deliberate light editorial design */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

button { font: inherit; cursor: pointer; }

/* paper grain overlay */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .1 0 0 0 0 .08 0 0 0 0 .06 0 0 0 .25 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* utility ============================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-weight: 500; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--bg);
  border-radius: 0;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn-primary {}
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }

.section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sec-eyebrow {
  font-family: var(--f-body);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 14px;
}
.sec-eyebrow span {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
}
.sec-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 100, 'SOFT' 30, 'WONK' 1;
  font-size: clamp(36px, 5.6vw, 86px);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 0 0 22px;
  color: var(--ink);
}
.sec-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.sec-sub {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 18px;
}

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  background: rgba(242,235,218,.85);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  display: block;
  height: clamp(48px, 5vw, 68px);
  width: auto;
}

.nav-links {
  display: flex; gap: 28px;
  justify-self: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--accent); }
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
  background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink);
  transition: background .25s, color .25s, transform .25s;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--ink);
  padding: 0; align-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 76px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 22px var(--gutter);
  display: none;
  flex-direction: column; gap: 18px;
  z-index: 49;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu a {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
}
.mobile-menu a:hover { color: var(--accent); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) var(--gutter) clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}

.hero-marquee {
  position: absolute;
  top: 24px; left: 0; right: 0;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 18vw, 240px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
  opacity: .04;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  overflow: hidden;
}
.marquee-track {
  display: inline-flex; gap: 40px; align-items: center;
  animation: marquee 60s linear infinite;
}
.marquee-track span { display: inline-block; }
.marquee-track .dot { color: var(--accent); font-size: .5em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.eyebrow-line {
  display: inline-block; width: 56px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 140px);
  line-height: .92;
  letter-spacing: -.04em;
  margin: 0 0 48px;
  color: var(--ink);
}
.hero-title .line {
  display: block;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) both;
}
.hero-title .line-1 { animation-delay: .05s; }
.hero-title .line-2 {
  animation-delay: .15s;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  padding-left: clamp(20px, 6vw, 100px);
}
.hero-title .line-3 { animation-delay: .25s; }
.hero-title .under {
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero-title .under::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: 4%;
  height: 18%;
  background: var(--gold);
  z-index: -1;
  opacity: .55;
  transform: skewX(-8deg);
}

@keyframes rise {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero-meta {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: .4s;
}
.hero-lede {
  max-width: 48ch;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.hero-lede em {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero-actions {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  justify-self: end;
}

.hero-credits {
  list-style: none; margin: 0; padding: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid var(--rule);
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: .55s;
}
.hero-credits li {
  display: flex; flex-direction: column;
  gap: 6px;
}
.credit-num {
  font-family: var(--f-display);
  font-style: italic;
  font-variation-settings: 'opsz' 100;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  color: var(--ink);
}
.credit-num sub {
  font-size: .35em;
  font-style: italic;
  vertical-align: baseline;
  margin-left: 2px;
  color: var(--accent);
}
.credit-label {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

.hero-staff {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  color: var(--accent);
  pointer-events: none;
  z-index: 0;
}

/* ===================== ANNOUNCEMENT ===================== */
.announcement {
  background: var(--ink);
  color: var(--bg);
  padding: 16px var(--gutter);
}
.announce-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.pill {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.announce-inner p {
  margin: 0;
  font-size: 15px;
  color: rgba(242,235,218,.85);
  flex: 1;
}
.announce-inner p a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.announce-inner p a:hover { color: var(--bg); }
.announce-link {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 500;
}
.announce-link:hover { color: var(--gold); }

/* ===================== ABOUT ===================== */
.about {
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: var(--bg);
  position: relative;
}
.about-grid {
  max-width: var(--container);
  margin: 60px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-lead p {
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.about-lead p.drop {
  font-family: var(--f-display);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'SOFT' 40;
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
}
.dropcap {
  font-family: var(--f-display);
  font-style: normal;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 500;
  float: left;
  font-size: 76px;
  line-height: .85;
  padding: 6px 12px 0 0;
  color: var(--accent);
}

.about-lead blockquote {
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 100, 'SOFT' 50;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  padding-left: 0;
}
.quote-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 80px;
  line-height: 0;
  color: var(--accent);
  position: absolute;
  left: -40px; top: 50px;
  opacity: .8;
}

.about-cards { display: flex; flex-direction: column; gap: 22px; }
.card-trust {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 28px 28px 30px;
  position: relative;
  box-shadow: var(--paper-shadow);
}
.card-trust::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 38px; height: 38px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.card-icon {
  color: var(--accent);
  margin-bottom: 14px;
}
.card-trust h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  margin: 0 0 10px;
}
.card-trust p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.card-foot {
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px dashed var(--rule);
  font-size: 12px !important;
  color: var(--muted) !important;
  font-style: italic;
}

/* ===================== LESSONS ===================== */
.lessons {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.instrument-grid {
  max-width: var(--container-wide);
  margin: 60px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1px;
  background: var(--rule);
}
.instrument-card {
  background: var(--bg-card);
  padding: 36px 32px 30px;
  position: relative;
  transition: background .35s ease;
}
.instrument-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.instrument-card:hover {
  background: var(--ink);
  color: var(--bg);
}
.instrument-card:hover * { color: var(--bg); }
.instrument-card:hover .card-num,
.instrument-card:hover h3,
.instrument-card:hover .card-tags li { color: var(--bg); }
.instrument-card:hover .instrument-art { color: var(--accent); }

.card-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent);
  margin-bottom: 24px;
}
.instrument-art {
  height: 90px;
  margin-bottom: 22px;
  color: var(--ink);
  transition: color .35s, transform .5s cubic-bezier(.2,.8,.2,1);
}
.instrument-art svg { height: 100%; width: auto; }
.instrument-art .line-art {
  display: block;
  height: 100%;
  aspect-ratio: 3 / 2;
  background-color: currentColor;
  -webkit-mask: var(--art) left center / contain no-repeat;
          mask: var(--art) left center / contain no-repeat;
}
.instrument-card:hover .instrument-art {
  transform: rotate(-4deg) scale(1.05);
}
.instrument-card h3 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 100, 'SOFT' 40, 'WONK' 1;
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--ink);
}
.card-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
  min-height: 6.5em;
}
.card-tags {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.card-tags li {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid var(--rule);
  color: var(--muted);
  background: transparent;
}
.instrument-card:hover .card-tags li {
  border-color: rgba(242,235,218,.3);
  color: var(--bg);
}
.card-foot-row {
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
.instrument-card:hover .card-foot-row { border-color: rgba(242,235,218,.3); }
.schedule {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--muted);
}
.instrument-card:hover .schedule { color: rgba(242,235,218,.75); }

.lessons-foot {
  max-width: var(--container);
  margin: 50px auto 0;
  padding: 0 var(--gutter);
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  text-align: center;
  max-width: 60ch;
}

/* ===================== SUMMER CAMP ===================== */
.camp {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(100px, 12vw, 160px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.camp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(196,69,40,.35), transparent 50%);
  pointer-events: none;
}
.camp::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 80%, rgba(212,165,82,.18), transparent 35%);
  pointer-events: none;
}
.camp-stamp {
  position: absolute;
  top: 50%; right: clamp(40px, 8vw, 140px);
  transform: translateY(-50%);
  width: clamp(180px, 22vw, 280px);
  color: var(--gold);
  opacity: .9;
  animation: spin 40s linear infinite;
}
.camp-stamp svg { width: 100%; height: auto; fill: currentColor; }
@keyframes spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.camp-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
.camp .sec-eyebrow { color: var(--gold); }
.camp .sec-eyebrow span { color: var(--bg); }

.camp-title {
  max-width: 9ch;
  color: var(--bg);
  font-size: clamp(48px, 7vw, 110px);
}
.camp-title em {
  color: var(--gold);
  font-style: italic;
}

.camp-lede {
  max-width: 50ch;
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(242,235,218,.82);
  line-height: 1.55;
  margin: 24px 0 36px;
}
.camp-list {
  list-style: none; padding: 0;
  margin: 0 0 40px;
  max-width: 52ch;
  display: grid; gap: 14px;
}
.camp-list li {
  font-size: 17px;
  display: flex; gap: 14px; align-items: baseline;
  color: rgba(242,235,218,.92);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242,235,218,.12);
}
.bullet-mark {
  color: var(--accent);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  flex-shrink: 0;
}
.camp-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.camp .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.camp .btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.camp .btn-outline {
  color: var(--bg);
  border-color: rgba(242,235,218,.4);
}
.camp .btn-outline:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ===================== WHY MUSIC ===================== */
.why-music {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
}
.facts {
  max-width: var(--container);
  margin: 60px auto 0;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.fact {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background .3s;
}
.fact:hover {
  background: var(--bg-card);
}
.fact-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
}
.fact h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}
.fact p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ===================== ADMISSIONS ===================== */
.admissions {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.steps {
  max-width: var(--container);
  margin: 60px auto 40px;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 36px;
  counter-reset: step;
}
.steps li {
  background: var(--bg-card);
  padding: 36px 32px 32px;
  border: 1px solid var(--rule);
  position: relative;
  box-shadow: var(--paper-shadow);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.steps li:hover { transform: translateY(-4px); }
.steps li::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 38px; height: 38px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
.step-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 100;
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 18px;
}
.steps h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 12px;
  color: var(--ink);
}
.steps p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 12px;
}
.step-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.step-link:hover { color: var(--ink); border-color: var(--ink); }

.admissions-note {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; gap: 22px;
  align-items: flex-start;
  background: transparent;
}
.note-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 64px;
  line-height: .8;
  color: var(--accent);
  font-weight: 500;
}
.admissions-note p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 65ch;
}
.admissions-note strong {
  color: var(--ink);
  font-weight: 500;
}

/* ===================== CONTACT ===================== */
.contact {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--bg);
}
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: start;
}
.contact-left { padding-right: 20px; }
.contact-lede {
  max-width: 48ch;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 24px 0 40px;
}
.contact-info {
  list-style: none; margin: 0 0 36px; padding: 0;
}
.contact-info li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.contact-info li:last-child { border-bottom: 1px solid var(--rule); }
.info-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}
.info-value {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.5;
}
a.info-value:hover { color: var(--accent); }
.info-note {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 400;
  line-height: 1.5;
}

.facebook-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  transition: background .25s, color .25s, border-color .25s;
}
.facebook-link:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--ink);
  padding: 40px 36px 36px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  box-shadow: var(--paper-shadow);
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 100%; height: 100%;
  background: var(--accent);
  z-index: -1;
}
.form-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  margin: 0;
}
.form-sub {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
}
.contact-form label {
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.contact-form label small { letter-spacing: 0; text-transform: none; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--f-body);
  font-size: 15px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .2s;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 100px; }

.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 0;
  text-align: center;
  font-style: italic;
  font-family: var(--f-display);
}
.form-success {
  background: var(--ink);
  color: var(--gold);
  padding: 12px 14px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 7vw, 90px) var(--gutter) 30px;
}
.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(242,235,218,.15);
}
.footer-logo {
  display: block;
  height: clamp(80px, 9vw, 120px);
  width: auto;
  margin-bottom: 18px;
  background: var(--bg);
  padding: 10px 14px;
  border-radius: 6px;
}
.footer-mark { display: none; }
.footer-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 6px;
  color: var(--bg);
}
.footer-tag {
  margin: 0;
  font-size: 14px;
  color: rgba(242,235,218,.65);
}
.footer-tag em {
  font-family: var(--f-display);
  color: var(--gold);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-nav h4 {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-nav a,
.footer-nav p {
  display: block;
  font-size: 14px;
  color: rgba(242,235,218,.75);
  margin: 0 0 10px;
  transition: color .2s;
  line-height: 1.5;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(242,235,218,.55);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-fine {
  font-family: var(--f-display);
  font-style: italic;
  color: rgba(242,235,218,.7);
  margin: 0;
}
.footer-bottom p { margin: 0; }

/* ===================== STAFF MOTIF (compact bottom-right "now playing" widget) ===================== */
.staff-motif {
  position: fixed;
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  z-index: 25;
  background: rgba(26, 20, 16, 0.92);
  color: var(--bg);
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  pointer-events: none;
  user-select: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.5);
  transition: opacity .4s ease, transform .4s ease;
}
.staff-motif .clef {
  width: 16px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
}
.staff-motif .clef svg { width: 100%; height: 100%; }
.staff-motif .rail {
  position: relative;
  width: 64px;
  height: 18px;
  flex-shrink: 0;
}
.staff-motif .rail .line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(242,235,218,.35);
}
.staff-motif .rail .line.l0 { top: 0%; }
.staff-motif .rail .line.l1 { top: 25%; }
.staff-motif .rail .line.l2 { top: 50%; }
.staff-motif .rail .line.l3 { top: 75%; }
.staff-motif .rail .line.l4 { top: 100%; }
.staff-motif .playhead {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: left .6s cubic-bezier(.2,.8,.2,1);
  left: 0;
  box-shadow: 0 0 0 2px var(--ink);
}
.staff-motif .progress-label {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--gold);
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.staff-motif .notes {
  display: none; /* hidden in compact form; notes folded into playhead */
}
.staff-motif .note-dot {
  display: none;
}
/* Fade out at the very top of the page; appears once user starts scrolling */
.staff-motif.is-hidden {
  opacity: 0;
  transform: translateY(12px) scale(.95);
  pointer-events: none;
}
@media (max-width: 640px) {
  .staff-motif { display: none; }
}

/* ===================== INSTRUMENT CARD AUDIO PLAY BUTTON ===================== */
.play-btn {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  z-index: 3;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, border-color .25s;
  padding: 0;
  pointer-events: auto;
}
.play-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: scale(1.08);
}
.play-btn .play-icon { display: block; margin-left: 2px; }
.play-btn .pause-icon { display: none; }
.play-btn.is-playing {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.play-btn.is-playing .play-icon { display: none; }
.play-btn.is-playing .pause-icon { display: block; }
.play-btn.is-playing { animation: pulseRing 1.8s ease-out infinite; }
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(196,69,40,.5); }
  100% { box-shadow: 0 0 0 14px rgba(196,69,40,0); }
}
.instrument-card { position: relative; }
.instrument-card:hover .play-btn { background: var(--bg-card); color: var(--ink); border-color: var(--ink); }
.instrument-card:hover .play-btn:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* Animated waveform that pulses while playing */
.waveform {
  position: absolute;
  left: 20px; bottom: 20px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.waveform.is-on { opacity: 1; }
.waveform span {
  display: inline-block;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: bars 1s ease-in-out infinite;
}
.waveform span:nth-child(1) { animation-delay: 0s;   height: 30%; }
.waveform span:nth-child(2) { animation-delay: .1s;  height: 70%; }
.waveform span:nth-child(3) { animation-delay: .2s;  height: 50%; }
.waveform span:nth-child(4) { animation-delay: .3s;  height: 90%; }
.waveform span:nth-child(5) { animation-delay: .15s; height: 45%; }
@keyframes bars {
  0%, 100% { transform: scaleY(.4); }
  50% { transform: scaleY(1); }
}
.instrument-card:hover .waveform span { background: var(--gold); }

/* ===================== BUILD YOUR FIRST BAND ===================== */
.band-builder {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.band-builder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(196,69,40,.3), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(212,165,82,.18), transparent 50%);
  pointer-events: none;
}
.band-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
.band-head {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: end;
}
.band-head .sec-title { color: var(--bg); margin-bottom: 0; font-size: clamp(40px, 5.5vw, 80px); }
.band-head .sec-title em { color: var(--gold); }
.band-head .sec-eyebrow { color: var(--gold); }
.band-head .sec-eyebrow span { color: var(--bg); }
.band-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(242,235,218,.75);
  margin: 0;
}
.band-lede em { color: var(--gold); font-style: italic; }

.band-stage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
.band-tile {
  background: rgba(242,235,218,.04);
  border: 1.5px solid rgba(242,235,218,.18);
  padding: 26px 18px 22px;
  cursor: pointer;
  text-align: left;
  font-family: var(--f-body);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .35s, border-color .35s, transform .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.band-tile:hover {
  background: rgba(242,235,218,.07);
  border-color: rgba(242,235,218,.32);
  transform: translateY(-3px);
}
.band-tile.is-on {
  background: linear-gradient(160deg, rgba(196,69,40,.95) 0%, rgba(155,53,32,.95) 100%);
  border-color: var(--accent);
  color: var(--bg);
}
.band-tile .tile-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .04em;
}
.band-tile .tile-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: var(--bg);
}
.band-tile .tile-mini {
  margin-top: auto;
  display: flex; align-items: flex-end; gap: 3px;
  height: 24px;
}
.band-tile .tile-mini span {
  display: inline-block;
  width: 3px;
  background: rgba(242,235,218,.4);
  border-radius: 2px;
}
.band-tile.is-on .tile-mini span {
  background: rgba(242,235,218,.92);
  animation: bars 1.2s ease-in-out infinite;
}
.band-tile.is-on .tile-mini span:nth-child(1) { animation-delay: 0s;   height: 40%; }
.band-tile.is-on .tile-mini span:nth-child(2) { animation-delay: .15s; height: 80%; }
.band-tile.is-on .tile-mini span:nth-child(3) { animation-delay: .3s;  height: 55%; }
.band-tile.is-on .tile-mini span:nth-child(4) { animation-delay: .2s;  height: 90%; }
.band-tile.is-on .tile-mini span:nth-child(5) { animation-delay: .1s;  height: 60%; }

.band-meter {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  text-align: right;
  letter-spacing: .04em;
}
.band-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(242,235,218,.15);
}
.band-counter {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--bg);
}
.band-counter em { color: var(--gold); font-style: italic; }
.band-actions {
  display: flex; gap: 10px;
}
.band-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  border: 1px solid rgba(242,235,218,.4);
  color: var(--bg);
  cursor: pointer;
  font-family: var(--f-body);
  transition: background .25s, color .25s, border-color .25s;
}
.band-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.band-btn.is-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.band-btn.is-primary:hover {
  background: var(--bg);
  border-color: var(--bg);
}

@media (max-width: 980px) {
  .band-head { grid-template-columns: 1fr; gap: 22px; }
  .band-stage { grid-template-columns: repeat(2, 1fr); }
  .band-footer { grid-template-columns: 1fr; }
  .band-actions { width: 100%; justify-content: space-between; }
}
@media (max-width: 640px) {
  .band-stage { grid-template-columns: 1fr; }
}

/* ===================== PLAYABLE PIANO ===================== */
.piano-section {
  background: var(--bg-deep);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.piano-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.piano-inner h2 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 100, 'SOFT' 40, 'WONK' 1;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  margin: 0 0 18px;
  color: var(--ink);
}
.piano-inner h2 em { font-style: italic; color: var(--accent); }
.piano-inner p {
  max-width: 56ch;
  margin: 0 auto 46px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-soft);
}
.piano-keys {
  display: flex;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  user-select: none;
}
.piano-keys .key {
  position: relative;
  cursor: pointer;
  transition: background .12s ease;
}
.piano-keys .key.white {
  flex: 1;
  height: 220px;
  background: var(--bg-card);
  border: 1px solid var(--ink);
  margin-right: -1px;
  border-radius: 0 0 6px 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  box-shadow: inset 0 -2px 0 var(--rule);
}
.piano-keys .key.white:hover { background: var(--bg); }
.piano-keys .key.white.is-pressed {
  background: var(--accent);
  color: var(--bg);
  box-shadow: inset 0 -2px 0 var(--accent-deep);
  transform: translateY(2px);
}
.piano-keys .key.black {
  position: absolute;
  width: 5.5%;
  height: 140px;
  background: var(--ink);
  color: var(--gold);
  z-index: 2;
  border-radius: 0 0 5px 5px;
  top: 0;
  box-shadow: 0 4px 0 rgba(0,0,0,.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 11px;
}
.piano-keys .key.black.is-pressed {
  background: var(--accent-deep);
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(0,0,0,.4);
}
.piano-hint {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-top: 22px;
}

@media (max-width: 640px) {
  .piano-keys .key.white { height: 160px; }
  .piano-keys .key.black { height: 100px; }
}

/* ===================== SCROLL PROGRESS ===================== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 60;
  pointer-events: none;
  transition: width .08s linear;
}

/* ===================== STUDENT PORTAL FEATURE ===================== */
.portal-feature {
  background: var(--bg);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.portal-feature::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: -80px;
  width: 60%;
  background: radial-gradient(ellipse at center right, rgba(196,69,40,.06), transparent 60%);
  pointer-events: none;
}
.portal-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}
.portal-copy .sec-title { font-size: clamp(36px, 5.2vw, 76px); margin-bottom: 22px; }
.portal-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 50ch;
}
.portal-list {
  list-style: none; padding: 0;
  margin: 0 0 32px;
  display: grid; gap: 12px;
  max-width: 50ch;
}
.portal-list li {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 16px;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.portal-list li:last-child { border-bottom: 1px solid var(--rule); }

.portal-mock {
  display: flex; justify-content: center;
  perspective: 1200px;
}
.phone {
  width: 320px;
  height: 600px;
  background: var(--ink);
  border-radius: 38px;
  padding: 14px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,.1) inset,
    0 30px 60px -20px rgba(26,20,16,.45),
    0 18px 30px -12px rgba(26,20,16,.35);
  transform: rotateY(-6deg) rotateX(2deg) rotate(-2deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.phone:hover { transform: rotateY(-2deg) rotateX(0) rotate(0); }
.phone::before {
  content: '';
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 22px;
  background: var(--ink);
  border-radius: 16px;
  z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-card);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  padding: 56px 18px 18px;
  display: flex; flex-direction: column;
  gap: 12px;
}
.phone-head {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 18px 24px 12px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  z-index: 1;
}
.dot-r {
  display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
}
.bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
  position: relative;
}
.bubble p { margin: 0; }
.bubble-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 2px !important;
  letter-spacing: .04em;
}
.bubble-them {
  align-self: flex-start;
  background: var(--bg-deep);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.bubble-me {
  align-self: flex-end;
  background: var(--ink);
  color: var(--bg);
  border-bottom-right-radius: 4px;
}
.bubble-time {
  display: block;
  font-size: 10px;
  opacity: .55;
  margin-top: 4px;
  font-family: var(--f-body);
}
.attach {
  display: flex; gap: 12px; align-items: center;
  padding: 12px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--bg);
  align-self: flex-end;
  max-width: 90%;
}
.attach-icon {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
}
.attach-name {
  font-size: 12px !important;
  font-weight: 500;
  color: var(--ink) !important;
  margin: 0 !important;
}
.attach-meta {
  font-size: 10px !important;
  color: var(--muted) !important;
  margin: 2px 0 0 !important;
}
.attach-play {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
  margin-left: auto;
}

.phone-foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.tabs {
  display: flex; gap: 10px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  justify-content: space-around;
}
.tab.is-on { color: var(--accent); font-weight: 600; }

/* ===================== INNER PAGE HEADER ===================== */
.page-hero {
  padding: clamp(70px, 9vw, 130px) var(--gutter) clamp(40px, 5vw, 70px);
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  opacity: .4;
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}
.page-hero-eyebrow::before {
  content: '';
  display: inline-block; width: 56px; height: 1px; background: var(--accent);
}
.page-hero h1 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
  font-weight: 400;
  font-size: clamp(44px, 8vw, 116px);
  line-height: .94;
  letter-spacing: -.035em;
  margin: 0;
  color: var(--ink);
}
.page-hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.page-hero-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 6px;
  max-width: 38ch;
  justify-self: end;
}
.page-hero-lede em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--accent);
}

/* breadcrumb */
.crumbs {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.crumbs a { color: var(--muted); border-bottom: 1px solid transparent; }
.crumbs a:hover { color: var(--accent); border-color: var(--accent); }
.crumbs .sep { margin: 0 10px; color: var(--rule); }
.crumbs .current { color: var(--ink); }

/* Body block — limit width for readable paragraphs */
.prose {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.prose-main p {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.prose-main h2 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 60;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  margin: 36px 0 18px;
  color: var(--ink);
}
.prose-main ul {
  margin: 0 0 22px; padding: 0; list-style: none;
}
.prose-main ul li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-top: 1px solid var(--rule);
  font-size: 16px; line-height: 1.55;
  color: var(--ink-soft);
}
.prose-main ul li:last-child { border-bottom: 1px solid var(--rule); }
.prose-main ul li::before {
  content: '♪';
  position: absolute; left: 0; top: 12px;
  color: var(--accent);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
}
.prose-aside {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 30px 28px;
  position: sticky;
  top: 100px;
  box-shadow: var(--paper-shadow);
}
.prose-aside::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 38px; height: 38px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
.aside-title {
  font-family: var(--f-display);
  font-style: italic; font-weight: 500;
  font-size: 22px;
  margin: 0 0 18px;
  color: var(--ink);
}
.aside-row {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  font-size: 14px;
}
.aside-row:first-of-type { border-top: 0; padding-top: 0; }
.aside-row dt {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.aside-row dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
}
.aside-tags {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0;
  list-style: none;
}
.aside-tags li {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 9px; border: 1px solid var(--rule); color: var(--muted);
}
.aside-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  padding: 12px 18px;
  background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink);
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
  transition: background .25s, color .25s, border-color .25s;
  width: 100%;
  justify-content: center;
}
.aside-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* Related teaser ribbon */
.related {
  background: var(--bg-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(50px, 6vw, 80px) var(--gutter);
}
.related-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.related h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  margin: 0 0 24px;
  color: var(--ink);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 1px;
  background: var(--rule);
}
.related-grid a {
  background: var(--bg-card);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: background .25s, color .25s;
}
.related-grid a:hover { background: var(--ink); color: var(--bg); }
.related-grid .r-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  color: var(--accent);
}
.related-grid .r-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
}
.related-grid a:hover .r-name { color: var(--bg); }
.related-grid a:hover .r-num { color: var(--gold); }

/* Big CTA strip */
.cta-strip {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(70px, 8vw, 110px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, rgba(196,69,40,.25), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.cta-inner h2 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 100, 'SOFT' 40;
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.05;
  margin: 0;
  color: var(--bg);
}
.cta-inner h2 em {
  font-style: italic;
  color: var(--gold);
}
.cta-inner .cta-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.cta-inner .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}
.cta-inner .btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.cta-inner .btn-ghost { color: var(--bg); border-color: rgba(242,235,218,.4); }
.cta-inner .btn-ghost:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1280px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu:not([hidden]) { display: flex; }

  .hero-meta { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { justify-self: start; }
  .hero-credits { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-mark { left: -8px; top: 80px; }

  .instrument-grid { grid-template-columns: repeat(2, 1fr); }

  .facts { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: 1fr; gap: 18px; }

  .contact-grid { grid-template-columns: 1fr; gap: 60px; }

  .footer-top { grid-template-columns: 1fr; gap: 50px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .camp-stamp { display: none; }
  .camp-title { font-size: clamp(44px, 12vw, 70px); }

  .portal-inner { grid-template-columns: 1fr; gap: 50px; }
  .portal-mock { order: 2; }
  .phone { transform: none; width: 280px; height: 540px; }

  .page-hero-inner { grid-template-columns: 1fr; gap: 22px; }
  .page-hero-lede { justify-self: start; }

  .prose { grid-template-columns: 1fr; gap: 40px; padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(40px, 6vw, 70px); }
  .prose-aside { position: static; }

  .related-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  .nav { grid-template-columns: auto 1fr auto; padding: 14px var(--gutter); }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 9px; letter-spacing: .22em; }

  .hero-title { font-size: clamp(46px, 13vw, 80px); }
  .hero-title .line-2 { padding-left: 24px; }

  .hero-credits { grid-template-columns: 1fr 1fr; gap: 20px; }
  .credit-num { font-size: 30px; }

  .announce-inner { gap: 12px; }

  .instrument-grid { grid-template-columns: 1fr; }

  .facts { grid-template-columns: 1fr; }
  .fact { padding: 28px 24px 32px; }
  .fact-num { font-size: 44px; }

  .contact-info li { grid-template-columns: 1fr; gap: 6px; }

  .footer-nav { grid-template-columns: 1fr 1fr; gap: 30px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===================== REVEAL ON SCROLL =====================
   Fails open: by default content is visible. JS adds .reveal-init
   after DOM ready (which hides), then IntersectionObserver adds
   .reveal-in to fade/translate back. */

.reveal-init {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal-init.reveal-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-init.is-stagger-1 { transition-delay: .06s; }
.reveal-init.is-stagger-2 { transition-delay: .12s; }
.reveal-init.is-stagger-3 { transition-delay: .18s; }
.reveal-init.is-stagger-4 { transition-delay: .24s; }
.reveal-init.is-stagger-5 { transition-delay: .30s; }
.reveal-init.is-stagger-6 { transition-delay: .36s; }

/* SVG stroke draw-in (set inline path lengths, then animate dashoffset) */
.draw-svg path,
.draw-svg circle,
.draw-svg rect,
.draw-svg line,
.draw-svg ellipse {
  stroke-dasharray: var(--len, 400);
  stroke-dashoffset: var(--len, 400);
  transition: stroke-dashoffset 1.4s cubic-bezier(.2,.8,.2,1);
}
.draw-svg.draw-in path,
.draw-svg.draw-in circle,
.draw-svg.draw-in rect,
.draw-svg.draw-in line,
.draw-svg.draw-in ellipse {
  stroke-dashoffset: 0;
}

/* ===================== FOCUS VISIBLE ===================== */
.btn:focus-visible,
.nav-cta:focus-visible,
.nav-links a:focus-visible,
.instrument-card:focus-visible,
.aside-cta:focus-visible,
.facebook-link:focus-visible,
.step-link:focus-visible,
.brand:focus-visible,
.related-grid a:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* ===================== HERO FREE-INTERVIEW BADGE ===================== */
.hero-badge {
  position: absolute;
  top: clamp(120px, 11vw, 170px);
  right: max(calc((100vw - var(--container)) / 2 + 24px), 24px);
  width: clamp(110px, 10vw, 150px);
  height: clamp(110px, 10vw, 150px);
  color: var(--accent);
  z-index: 2;
  display: block;
  text-decoration: none;
  animation: spin 40s linear infinite;
  transition: transform .3s ease;
}
.hero-badge:hover { color: var(--ink); }
@media (max-width: 1280px) {
  .hero-badge { display: none; }
}
.hero-badge svg { width: 100%; height: 100%; fill: currentColor; }

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--bg);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  border-top: 1px solid var(--rule);
  position: relative;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(180px, 26vw, 340px);
  line-height: 1;
  color: var(--accent);
  opacity: .06;
  pointer-events: none;
  user-select: none;
}
.tstm-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
.tstm-head {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 60ch;
}
.tstm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px;
}
.tstm-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 36px 30px 28px;
  position: relative;
  box-shadow: var(--paper-shadow);
}
.tstm-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 38px; height: 38px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.tstm-card { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; }
.tstm-card:hover { transform: translateY(-4px); box-shadow: 0 1px 0 rgba(26,20,16,.05), 0 22px 50px -22px rgba(26,20,16,.35); }
.tstm-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 100, 'SOFT' 40;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 24px;
}
.tstm-meta {
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 14px;
}
.tstm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tstm-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 0;
}
.tstm-where {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2px 0 0;
}
.tstm-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

/* ===================== RECITAL STRIP ===================== */
.recital {
  background: var(--bg-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(70px, 9vw, 120px) var(--gutter);
  overflow: hidden;
  position: relative;
}
.recital-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.recital-copy h2 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 100, 'SOFT' 40, 'WONK' 1;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.02;
  margin: 0 0 18px;
  color: var(--ink);
}
.recital-copy h2 em { font-style: italic; color: var(--accent); }
.recital-copy p {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 50ch;
}
.recital-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 140px 140px;
  gap: 14px;
}
.collage-tile {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--paper-shadow);
}
.collage-tile.tall { grid-row: span 2; height: auto; }
.collage-tile:nth-child(1) { transform: rotate(-2deg); background: linear-gradient(135deg, #2a1b13 0%, #1A1410 100%); color: var(--gold); }
.collage-tile:nth-child(2) { transform: rotate(1.5deg); background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%); color: var(--bg); }
.collage-tile:nth-child(3) { transform: rotate(-1deg); background: var(--bg-card); }
.collage-tile:nth-child(4) { transform: rotate(2deg); background: linear-gradient(135deg, var(--gold) 0%, #b8853d 100%); color: var(--ink); }
.collage-label {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 8px 14px;
  text-align: center;
}
.collage-icon {
  position: absolute;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  opacity: .35;
  bottom: 8px; right: 14px;
}

/* ===================== FAQ ===================== */
.faq {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}
.faq-inner { max-width: var(--container); margin: 0 auto; }
.faq h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 100, 'SOFT' 30;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 36px;
  color: var(--ink);
}
.faq h2 em { font-style: italic; color: var(--accent); }
.faq-list { display: grid; gap: 0; }
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  display: flex; align-items: baseline; gap: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.3;
  color: var(--ink);
  position: relative;
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  margin-left: auto;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 28px;
  color: var(--accent);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item .faq-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: .04em;
  flex-shrink: 0;
  width: 28px;
}
.faq-body {
  padding: 0 60px 28px 52px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-body p { margin: 0 0 12px; }
.faq-body p:last-child { margin: 0; }

/* ===================== PRICING BAND ===================== */
.pricing-band {
  background: var(--bg);
  padding: clamp(40px, 5vw, 60px) var(--gutter) 0;
}
.pricing-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--ink);
  color: var(--bg);
  padding: 40px clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pricing-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left center, rgba(196,69,40,.25), transparent 50%);
  pointer-events: none;
}
.price-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(64px, 6vw, 88px);
  line-height: 1;
  color: var(--gold);
  position: relative;
}
.price-mark sup {
  font-size: .35em;
  font-style: normal;
  font-weight: 400;
  vertical-align: top;
  margin-right: 2px;
}
.price-meta { position: relative; }
.price-meta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(242,235,218,.85);
}
.price-meta .price-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--bg);
  margin-bottom: 6px;
}
.price-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 22px;
  border: 1px solid var(--accent);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s, color .25s, border-color .25s;
}
.price-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ===================== INSTRUCTORS GRID ===================== */
.instructors {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}
.instructor-grid {
  max-width: var(--container);
  margin: 60px auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
}
.instructor-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 0 0 28px;
  position: relative;
  box-shadow: var(--paper-shadow);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.instructor-card:hover { transform: translateY(-4px); }
.instructor-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--rule) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.instructor-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(26,20,16,.04) 12px, rgba(26,20,16,.04) 13px);
  pointer-events: none;
}
.instructor-initial {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 1;
  color: var(--accent);
  position: relative;
  z-index: 1;
}
.instructor-pill {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}
.instructor-info { padding: 24px 24px 0; }
.instructor-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  margin: 0 0 6px;
  color: var(--ink);
}
.instructor-instruments {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.instructor-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ===================== STICKY MOBILE BAR ===================== */
.sticky-cta {
  display: none;
}
@media (max-width: 980px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--ink);
    color: var(--bg);
    padding: 12px 14px env(safe-area-inset-bottom, 12px);
    z-index: 40;
    gap: 10px;
    box-shadow: 0 -10px 30px -10px rgba(0,0,0,.3);
    transform: translateY(110%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
  }
  .sticky-cta.is-on { transform: translateY(0); }
  .sticky-cta a {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 14px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--bg);
    border: 1px solid rgba(242,235,218,.25);
  }
  .sticky-cta a.is-primary {
    background: var(--accent);
    border-color: var(--accent);
  }
  /* push the footer above the bar so it isn't hidden behind */
  body.has-sticky-cta .site-footer { padding-bottom: 90px; }
}

/* ===================== MAP EMBED ===================== */
.map-block {
  max-width: var(--container);
  margin: 0 auto clamp(50px, 6vw, 80px);
  padding: 0 var(--gutter);
}
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--paper-shadow);
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.4) sepia(.15) contrast(1.05);
}
.map-caption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0 0;
}

/* ===================== MOBILE NAV (smoother) ===================== */
.menu-scrim {
  display: none;
}
@media (max-width: 980px) {
  .mobile-menu {
    top: 0;
    height: 100dvh;
    padding-top: 90px;
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,.18);
  }
  .mobile-menu:not([hidden]) {
    transform: translateY(0);
  }
  .menu-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(26,20,16,.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 48;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }
  .menu-scrim.is-on {
    opacity: 1;
    pointer-events: auto;
  }
  body.menu-open { overflow: hidden; }
}

/* darker muted retro-application: re-check text using it */
.credit-label,
.schedule,
.aside-row dt,
.crumbs,
.tstm-where,
.instructor-instruments,
.brand-sub,
.info-label,
.sec-eyebrow {
  color: var(--muted);
}

/* ===================== RESPONSIVE TOP-UP for new sections ===================== */
@media (max-width: 980px) {
  .tstm-grid { grid-template-columns: 1fr; }
  .recital-inner { grid-template-columns: 1fr; gap: 36px; }
  .recital-collage { max-width: 380px; }
  .instructor-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-inner { grid-template-columns: 1fr; gap: 18px; padding: 30px 24px; text-align: center; }
  .pricing-inner .price-cta { justify-self: center; }
  .faq-body { padding-left: 0; padding-right: 0; }
}
@media (max-width: 640px) {
  .instructor-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .recital-collage { grid-template-rows: 110px 110px; }
  .collage-tile.tall { grid-row: span 2; }
  .hero-badge { display: none; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: .01s !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Contact form: text message consent checkbox
   ========================================================================== */
.contact-form .form-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.contact-form .form-consent input[type="checkbox"] {
  width: 16px; height: 16px;
  margin: 3px 0 0; padding: 0;
  flex: 0 0 auto;
  accent-color: var(--accent);
}
.contact-form .form-consent a,
.contact-form .form-note a,
.contact-info .info-note a {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}

/* ==========================================================================
   Policy page (privacy.html): sub-headings, anchors, callouts
   ========================================================================== */
.prose-main h2[id] { scroll-margin-top: 120px; }
.prose-main h3 {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 30px 0 10px;
}
.prose-main .prose-meta {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.prose-main p a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.prose-main ul li a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.prose-main .callout {
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  padding: 18px 20px;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
