:root {
  --red: #FE211D;
  --red-dark: #C71713;
  --ink: #0D0D0E;
  --ink-soft: #1F090A;
  --paper: #FFFFFF;
  --muted-surface: #F5F4F2;
  --text: #17171A;
  --text-muted: #63636B;
  --border: #E6E4E1;
  --gold: #F5A623;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-head: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--ink);
}

h2 { font-size: clamp(28px, 4vw, 38px); }
h3 { font-size: 20px; font-weight: 700; }

p { line-height: 1.7; color: var(--text-muted); margin: 0 0 16px; }

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

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-narrow { max-width: 800px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.logo span { color: var(--red); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  color: #d8d8db;
  font-size: 15px;
  font-weight: 500;
  transition: color .15s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav .nav-link {
  padding: 4px 0;
}
.main-nav .nav-link.active {
  color: #fff;
  box-shadow: 0 2px 0 var(--red);
}
.header-cta { margin-left: 8px; flex-shrink: 0; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  background: var(--ink);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,14,0.55) 0%, rgba(13,13,14,0.35) 35%, rgba(13,13,14,0.92) 100%);
}
.hero-content {
  position: relative;
  padding-top: 120px;
  padding-bottom: 72px;
  padding-left: max(24px, calc((100% - 1120px) / 2 + 24px));
  padding-right: 24px;
  margin: 0;
}
.hero-text {
  max-width: 640px;
}
.hero-headshot {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  background: var(--ink);
  margin-bottom: 24px;
}
.hero-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eyebrow {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 7vw, 68px);
  margin-bottom: 18px;
}
.hero-sub {
  color: #e7e7ea;
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.6); }
.hero .btn-secondary:hover { background: #fff; color: var(--ink); }

/* Pricing card location note */
.pricing-location-note {
  margin: -12px 0 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Stats strip */
.stats-strip {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 28px 24px;
}
.stat { text-align: center; }
.stat-dup { display: none; }
.stat-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: #a9a9ae;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Sections */
.section { padding: 88px 0; scroll-margin-top: 96px; }
.cta-band { scroll-margin-top: 96px; }
.section-muted { background: var(--muted-surface); }
.section-lede {
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 40px;
}

/* Sample Lesson media scroll */
.section-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.section-heading-row h2 { margin-bottom: 0; }
.view-more-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.view-more-link:hover { color: var(--red-dark); text-decoration: underline; }
.view-more-link[hidden] { display: none; }
.media-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 12px;
  margin-top: 24px;
  -webkit-overflow-scrolling: touch;
}
.media-card {
  flex: 0 0 auto;
  width: 260px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--ink);
  scroll-snap-align: start;
  box-shadow: 0 1px 2px rgba(13,13,14,0.06);
}
.media-card video,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
}
.media-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}
.media-play-btn svg { margin-left: 3px; }
.media-play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.08);
}
.media-card-instagram {
  width: 320px;
  aspect-ratio: auto;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-card-instagram iframe { width: 100% !important; }

/* FAQ */
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 24px; max-width: 680px; }
.faq-answer p { margin: 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.about-media {
  position: sticky;
  top: 150px;
}
.about-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Pedigree (nested inside the About column) */
.section-lede#pedigree-intro,
.about-copy .section-lede {
  margin-top: 40px;
}
.pedigree-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.pedigree-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.pedigree-card-featured { border-top: 3px solid var(--red); }
.pedigree-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(254,33,29,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.pedigree-ranking {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  margin: -8px 0 12px;
}
.pedigree-subhead {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 16px;
}
.mentor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}
.mentor-chip {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.playing-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
}
.playing-list li { margin-bottom: 8px; line-height: 1.6; }

/* Credentials / tech */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.cred-card {
  background: var(--muted-surface);
  border-radius: var(--radius-md);
  padding: 28px;
}
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tech-chip {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-head);
}

/* Reviews */
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 32px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.reviews-score {
  text-align: center;
  min-width: 140px;
}
.reviews-score .score-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 56px;
  color: var(--ink);
  line-height: 1;
}
.reviews-score .score-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin: 10px 0 6px;
}
.reviews-score .score-caption {
  font-size: 13px;
  color: var(--text-muted);
}
.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bar-row {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--gold);
}
.bar-count { text-align: right; }

.reviews-list {
  display: flex;
  flex-direction: column;
}
.review-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.review-card:last-child { border-bottom: none; }
.review-card-hidden { display: none; }
.reviews-more-btn { margin-top: 28px; }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--muted-surface);
}
.review-avatar-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.review-time {
  font-size: 12px;
  color: var(--text-muted);
}
.review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.review-text { margin: 0; }

@media (max-width: 640px) {
  .reviews-summary { grid-template-columns: 1fr; gap: 24px; }
  .reviews-score { min-width: 0; }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(13,13,14,0.04);
}
.price-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex-grow: 1;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.price-list li:last-child { border-bottom: none; }
.price-list li span { color: var(--text); }
.price-list li strong {
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 17px;
}
.price-list-plain li {
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* CTA band */
.cta-band {
  background: var(--ink);
  padding: 96px 0;
}
.cta-band-inner {
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
}
.cta-band h2 { color: #fff; }
.cta-band > .wrap > p { color: #b8b8bd; margin-bottom: 36px; }
.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.location-name { font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.location-desc { color: var(--text-muted); margin-bottom: 10px; max-width: 480px; }
.location-card address { color: var(--text-muted); font-style: normal; line-height: 1.5; }
.location-phone { margin-top: 8px; }
.location-phone a { color: var(--ink); font-weight: 600; }
.contact-form {
  text-align: left;
  background: #17171a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.form-row { margin-bottom: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #0D0D0E;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
}
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c7c82' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.contact-form select:invalid { color: #7c7c82; }
.contact-form option { color: #fff; background: #0D0D0E; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #7c7c82; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-status {
  text-align: center;
  font-size: 14px;
  margin: 14px 0 0;
}
.form-status-error { color: #ff8a8a; }
.contact-success {
  text-align: center;
  background: #17171a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 48px 28px;
  color: #fff;
}
.contact-success svg { color: #9be29b; margin: 0 auto 16px; }
.contact-success h3 { color: #fff; margin-bottom: 8px; }
.contact-success p { color: #b8b8bd; margin: 0; }

/* Footer */
.site-footer { background: var(--ink-soft); color: #d8d8db; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 24px;
}
.footer-logo { margin: 0 0 8px; }
.footer-tagline { color: #a9a9ae; margin: 0; font-size: 14px; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-nav a { color: #d8d8db; font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.footer-social-link {
  display: inline-flex;
  color: #d8d8db;
  transition: color 0.15s ease;
}
.footer-social-link:hover { color: #fff; }
.footer-social-link[hidden] { display: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  font-size: 13px;
  color: #8a8a90;
}
.footer-bottom p { margin: 0; color: inherit; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; position: static; }
  .pedigree-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
  }
  .site-header.nav-open .header-cta {
    margin-left: 0;
    margin-top: 8px;
    align-self: stretch;
    text-align: center;
  }
  .hero { min-height: 560px; overflow: hidden; }
  .hero-img { object-position: 45% 50%; transform: scale(1.2); transform-origin: 45% 75%; }
  .hero-headshot { width: 84px; height: 84px; border-width: 3px; margin-bottom: 18px; }
  .section { padding: 64px 0; }

  .stats-strip { overflow: hidden; }
  .stats-grid {
    display: flex;
    width: max-content;
    grid-template-columns: none;
    gap: 56px;
    padding: 32px 0;
    animation: stats-marquee 18s linear infinite;
  }
  .stats-strip:hover .stats-grid,
  .stats-strip:active .stats-grid {
    animation-play-state: paused;
  }
  .stat {
    flex: 0 0 auto;
    min-width: 130px;
    padding: 0 24px;
  }
  .stat-dup { display: block; }
}

@keyframes stats-marquee {
  from { transform: translateX(0); }
  /* -50% alone undershoots the duplicate set's start by half a gap (10 items
     share 9 gaps, so the midpoint splits a gap in two) — the extra term
     corrects for that so the loop lands exactly on the duplicate, seamlessly. */
  to { transform: translateX(calc(-50% - 28px)); }
}

@media (prefers-reduced-motion: reduce) {
  .stats-grid { animation: none; }
}
