/* ─── VILSEN AUDIO ACADEMY — Design System v2 ───────────────────────────────
   Palette: exact Vilsen brand
   Tone: editorial dark × minimalist
──────────────────────────────────────────────────────────────────────────── */

:root {
  --bg:       #0C0F0A;
  --bg-raise: #131C15;   /* slightly lifted — sections feel separated */
  --bg-card:  #172019;   /* card bg lifted for readable contrast */

  --g-dark:   #1A2F23;
  --g-mid:    #3D6E51;   /* slightly brighter — pops on dark bg */
  --g-light:  #7A9E83;   /* lifted for readability */
  --cream:    #D8E4D5;   /* slightly brighter cream */

  --text:     #EDF2EB;   /* headline text — brighter white */
  --muted:    #8FA896;   /* body text — cleaner contrast */
  --hairline: rgba(120,160,130,0.15);
  --hairline-strong: rgba(120,160,130,0.30);
  --accent:   #3D6E51;   /* single accent colour alias */
  --accent-pop: rgba(61,110,81,0.12); /* soft bg tint for highlights */
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography scale ──────────────────────────────────────────────────── */
.label {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-light);
}

h1, h2, h3, h4 { font-family: 'Urbanist', sans-serif; }

/* ─── Navigation ────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(12, 15, 10, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hairline-strong);
  box-shadow: 0 1px 0 var(--hairline);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 54px; width: auto; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cream); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
}

.btn-primary {
  background: var(--g-mid);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--g-light);
  color: var(--bg);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--muted);
}

.btn-secondary:hover {
  border-color: var(--g-light);
  color: var(--cream);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hero--full { min-height: 100vh; }

/* Grid texture layer */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 20%, transparent 75%);
  opacity: 0.35;
  pointer-events: none;
}

/* Glow */
.hero-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(ellipse, rgba(53, 94, 71, 0.20) 0%, transparent 68%);
  pointer-events: none;
}

/* Split layout */
.hero-split {
  position: relative;
  z-index: 10;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 0 100px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

/* Left column */
.hero-text { max-width: 640px; }

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  padding: 7px 14px;
  border: 1px solid var(--hairline-strong);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-light);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--g-light);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero h1 {
  font-size: 82px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--g-light);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Trust line */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-dot {
  color: var(--g-dark);
  font-size: 16px;
  line-height: 1;
}

/* Right column — logo visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-frame {
  width: 420px;
  height: 280px;
  border: 1px solid var(--hairline-strong);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(26, 47, 35, 0.25);
  padding: 32px;
}

/* Corner accents on the frame */
.hero-logo-frame::before,
.hero-logo-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--g-mid);
  border-style: solid;
}

.hero-logo-frame::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}

.hero-logo-frame::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.hero-logo-mark {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Keep hero-rule for any legacy usage */
.hero-rule { display: none; }

/* ─── Stats bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  border-top: 3px solid var(--g-mid);
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-raise);
}

.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--hairline);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g-light);
}

/* ─── Section wrapper ────────────────────────────────────────────────────── */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-light);
  margin-bottom: 16px;
}

.section-heading {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 64px;
}

/* ─── Curriculum section ─────────────────────────────────────────────────── */
.curriculum-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 72px;
  align-items: start;
}

.curriculum-header .section-heading { margin-bottom: 0; }

.section-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  align-self: end;
  padding-top: 12px;
}

.curriculum-list { display: flex; flex-direction: column; }

.curriculum-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 0 32px;
  border-top: 1px solid var(--hairline);
  padding: 48px 0;
  align-items: center;
  transition: background 0.18s;
  position: relative;
}

.curriculum-row:last-child { border-bottom: 1px solid var(--hairline); }

.curriculum-row:hover { background: rgba(53,94,71,0.04); }

.curriculum-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--g-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color 0.18s;
  user-select: none;
}

.curriculum-row:hover .curriculum-num { color: var(--g-mid); }

.curriculum-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g-light);
  margin-bottom: 8px;
}

.curriculum-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.curriculum-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

.curriculum-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g-mid);
  border: 1px solid var(--hairline);
  padding: 5px 12px;
  border-radius: 2px;
  white-space: nowrap;
  justify-self: end;
  align-self: start;
}

/* Legacy month row aliases */
.months-list { display: flex; flex-direction: column; }
.month-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  border-top: 1px solid var(--hairline);
  padding: 40px 0;
}
.month-row:last-child { border-bottom: 1px solid var(--hairline); }
.month-num { font-family: 'Urbanist', sans-serif; font-size: 13px; font-weight: 700; color: var(--g-mid); letter-spacing: 0.1em; padding-top: 4px; }
.month-content h3 { font-size: 22px; font-weight: 700; color: var(--cream); margin-bottom: 10px; }
.month-content p { font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 560px; }

/* ─── Features / Why Vilsen ──────────────────────────────────────────────── */
.features-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
}

.feature-row {
  display: flex;
  gap: 20px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  transition: background 0.2s;
}

.feature-row:hover { background: rgba(53,94,71,0.06); }

/* Remove right border on right-column items */
.feature-row:nth-child(even) { border-right: none; }

/* Remove bottom border on last two items */
.feature-row:nth-last-child(-n+2) { border-bottom: none; }

.feature-index {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--g-mid);
  letter-spacing: 0.1em;
  min-width: 28px;
  padding-top: 3px;
}

.feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.feature-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Three Tiers ────────────────────────────────────────────────────────── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline-strong);
  border-top: 3px solid var(--hairline-strong);
  border-radius: 0 0 6px 6px;
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  transform: translateY(-3px);
  border-color: var(--g-mid);
}

/* Remove left accent bar — top strip does the job now */
.tier-card.foundations  { border-top-color: var(--g-light); }
.tier-card.intermediate { border-top-color: var(--g-mid); }
.tier-card.advanced     { border-top-color: var(--g-dark); }

.tier-recommended-badge {
  position: absolute;
  top: 0;
  right: 28px;
  background: var(--g-mid);
  color: var(--cream);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px 5px;
  border-radius: 0 0 4px 4px;
}

/* Left accent bar removed — top strip handles this now */

.tier-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 5px 10px;
  border-radius: 2px;
}

.tier-tag.foundations  { color: var(--g-light);  background: rgba(110,143,118,0.12); }
.tier-tag.intermediate { color: var(--cream);     background: rgba(53,94,71,0.22); }
.tier-tag.advanced     { color: var(--muted);     background: rgba(26,47,35,0.3); }

.tier-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.tier-price {
  font-family: 'Urbanist', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1;
}

.tier-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.tier-card .tier-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}

.tier-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.tier-features li::before {
  content: '—';
  color: var(--g-mid);
  flex-shrink: 0;
  font-weight: 600;
}

/* CTA at bottom of card */
.tier-cta { margin-top: auto; }

.tier-btn {
  width: 100%;
  text-align: center;
  display: block;
  padding: 13px 20px;
}

/* BC funding note */
.funding-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: var(--accent-pop);
  border: 1px solid var(--hairline-strong);
  border-left: 3px solid var(--g-mid);
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 680px;
}

.funding-note svg { flex-shrink: 0; margin-top: 2px; }

/* ─── Full-width divider section ─────────────────────────────────────────── */
.section-rule {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

/* Raised section — alternating bg for visual separation */
.section-raised {
  background: var(--bg-raise);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-question {
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question span:first-child {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
}

.faq-toggle {
  font-size: 20px;
  font-weight: 300;
  color: var(--g-light);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* ─── CTA section ────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--g-dark);
  border-top: 1px solid rgba(53,94,71,0.4);
  text-align: center;
  padding: 128px 24px;
  position: relative;
  overflow: hidden;
}

/* Faded watermark logo */
.cta-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  opacity: 0.05;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  color: var(--g-light);
  line-height: 1.65;
  margin-bottom: 44px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ghost button for CTA */
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(110,143,118,0.3);
  color: var(--g-light);
}

.btn-ghost:hover {
  border-color: var(--g-light);
  color: var(--cream);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--hairline);
  background: var(--bg-raise);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: block;
  margin-bottom: 18px;
}

.footer-brand .footer-logo img { height: 52px; width: auto; }

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-light);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 24px 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

/* ─── Shared across all pages ────────────────────────────────────────────── */

/* Page hero for inner pages */
.page-hero {
  margin-top: 68px;
  padding: 80px 24px 64px;
  border-bottom: 1px solid var(--hairline);
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
}

.page-hero .label { margin-bottom: 16px; }

.page-hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
}

/* Highlight box */
.highlight-box {
  background: var(--accent-pop);
  border: 1px solid var(--hairline-strong);
  border-left: 3px solid var(--g-mid);
  padding: 24px 28px;
  border-radius: 0 6px 6px 0;
  margin: 32px 0;
}

.highlight-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.highlight-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Card */
.card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 32px;
  transition: border-color 0.2s;
}

.card:hover { border-color: var(--hairline-strong); }

.card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

/* Pill tags */
.pill-tag {
  display: inline-block;
  background: rgba(110, 143, 118, 0.12);
  color: var(--g-light);
  padding: 5px 12px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 4px 4px 4px 0;
}

/* Course meta grid */
.course-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  margin: 32px 0;
}

.meta-item {
  background: var(--bg-card);
  padding: 24px 20px;
}

.meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.meta-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--g-light);
  font-family: 'Urbanist', sans-serif;
}

/* Two column */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* Form styles */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--g-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Section title (kept for inner pages) */
.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 48px;
  font-family: 'Urbanist', sans-serif;
}

/* Glass panel — always has a top accent strip */
.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--hairline-strong);
  border-top: 3px solid var(--g-mid);
  border-radius: 0 0 6px 6px;
  padding: 36px;
}

/* Info panels */
.info-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px;
}

.info-panel {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 28px;
  text-align: center;
}

.info-panel h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.info-panel p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.info-panel a {
  color: var(--g-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s;
}

.info-panel a:hover { color: var(--cream); }

/* Timeline (courses page) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
}

.timeline-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--g-mid);
  letter-spacing: 0.1em;
  padding-top: 3px;
}

.timeline-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .hero-split {
    grid-template-columns: 1fr;
    padding: 140px 0 100px;
    gap: 56px;
  }

  .hero-visual { display: none; }

  .hero h1 { font-size: 64px; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid var(--hairline); }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-top: 1px solid var(--hairline); }

  .section { padding: 80px 24px; }
  .section-heading { font-size: 36px; }

  .curriculum-header { grid-template-columns: 1fr; gap: 16px; }
  .curriculum-row { grid-template-columns: 72px 1fr; gap: 0 24px; }
  .curriculum-tag { display: none; }
  .curriculum-num { font-size: 52px; }

  .features-wrap { grid-template-columns: 1fr; }
  .feature-row { border-right: none !important; }
  .feature-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .feature-row:last-child { border-bottom: none; }

  .tiers-grid { grid-template-columns: 1fr; gap: 16px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .two-column { grid-template-columns: 1fr; gap: 40px; }
  .page-hero h1 { font-size: 38px; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 42px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 16px; }
  .stat-num { font-size: 38px; }

  .curriculum-row { grid-template-columns: 52px 1fr; padding: 36px 0; }
  .curriculum-num { font-size: 38px; }
  .curriculum-body h3 { font-size: 19px; }

  .section-heading { font-size: 28px; }
  .cta-section h2 { font-size: 38px; }
  .cta-actions { flex-direction: column; align-items: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Mobile nav dropdown */
@media (max-width: 960px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(12, 15, 10, 0.98);
    backdrop-filter: blur(14px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--hairline);
  }
}

/* ─── Backward-compat aliases (inner pages) ──────────────────────────────── */
.footer-container   { max-width: 1160px; margin: 0 auto; padding: 64px 24px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-section     { }
.footer-section h4  { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--g-light); margin-bottom: 18px; }
.footer-section ul  { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-section ul li a:hover { color: var(--cream); }

.hero-content   { position: relative; z-index: 10; max-width: 780px; margin: 0 auto; }
.cta-content    { position: relative; z-index: 10; max-width: 600px; margin: 0 auto; text-align: center; }

/* Old timeline (inner pages) */
.timeline-dot {
  width: 10px; height: 10px;
  background: var(--g-mid);
  border: 2px solid var(--bg);
  border-radius: 50%;
  position: absolute;
  left: 50%; top: 32px;
  transform: translateX(-50%);
  z-index: 10;
}

/* ─── Homeschool page ────────────────────────────────────────────────────── */
.hs-hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

.hs-hero-h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--cream);
  margin: 16px 0 24px;
  max-width: 700px;
}

.hs-hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

/* Explainer two-column */
.hs-explainer {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.hs-explainer-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 600px;
}

.hs-explainer-text p strong {
  color: var(--cream);
  font-weight: 600;
}

.hs-aside-box {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 24px 28px;
}

.hs-aside-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-light);
  margin-bottom: 14px;
}

.hs-aside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.hs-aside-list li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.hs-aside-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--g-mid);
  font-weight: 600;
}

/* Steps */
.hs-steps { display: flex; flex-direction: column; }

.hs-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 32px;
  border-top: 1px solid var(--hairline);
  padding: 52px 0;
  align-items: start;
}

.hs-step:last-child { border-bottom: 1px solid var(--hairline); }

.hs-step-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--g-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  padding-top: 4px;
}

.hs-step-body h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}

.hs-step-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  max-width: 640px;
  margin-bottom: 14px;
}

.hs-step-body p:last-child { margin-bottom: 0; }

.hs-step-body a {
  color: var(--g-light);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-strong);
  transition: color 0.2s, border-color 0.2s;
}

.hs-step-body a:hover {
  color: var(--cream);
  border-color: var(--g-light);
}

.hs-callout {
  background: var(--accent-pop);
  border: 1px solid var(--hairline-strong);
  border-left: 3px solid var(--g-mid);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 20px;
  max-width: 560px;
}

.hs-callout strong {
  color: var(--cream);
  font-weight: 600;
}

/* Q&A grid */
.hs-qa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--hairline-strong);
  border-top: 3px solid var(--g-mid);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  background: var(--bg-card);
}

.hs-qa {
  padding: 36px 40px;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  transition: background 0.18s;
}

.hs-qa:nth-child(even) { border-right: none; }
.hs-qa:nth-last-child(-n+2) { border-bottom: none; }
.hs-qa:hover { background: var(--accent-pop); }

.hs-qa h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.4;
}

.hs-qa p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 960px) {
  .hs-hero-h1 { font-size: 42px; }
  .hs-explainer { grid-template-columns: 1fr; gap: 40px; }
  .hs-step { grid-template-columns: 72px 1fr; }
  .hs-step-num { font-size: 52px; }
  .hs-qa-grid { grid-template-columns: 1fr; }
  .hs-qa { border-right: none !important; }
  .hs-qa:nth-last-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .hs-qa:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .hs-hero-h1 { font-size: 32px; }
  .hs-step { grid-template-columns: 52px 1fr; }
  .hs-step-num { font-size: 38px; }
}

/* ─── About page ─────────────────────────────────────────────────────────── */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.about-mission-panel p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-mission-panel p:last-child { margin-bottom: 0; }

.about-pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}

.about-pillar:first-child { padding-top: 0; }
.about-pillar:last-child { border-bottom: none; padding-bottom: 0; }

.about-pillar-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--g-mid);
  min-width: 28px;
  padding-top: 3px;
}

.about-pillar h4 {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.about-pillar p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.about-instructor {
  max-width: 860px;
}

.about-instructor-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-instructor-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}

.about-instructor-block:first-child { padding-top: 0; }
.about-instructor-block:last-child { border-bottom: none; padding-bottom: 0; }

.about-instructor-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
}

/* ─── Courses page ───────────────────────────────────────────────────────── */
.course-section { padding-bottom: 80px; }

.course-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.course-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1;
  margin: 12px 0 10px;
}

.course-tagline {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 480px;
}

.course-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.course-price-block {
  text-align: right;
}

.course-price {
  font-family: 'Urbanist', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.025em;
  line-height: 1;
}

.course-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.course-price-note {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g-light);
  margin-top: 6px;
}

.course-overview p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 760px;
}

/* Responsive — about + courses */
@media (max-width: 960px) {
  .about-mission-grid { grid-template-columns: 1fr; }
  .course-header { grid-template-columns: 1fr; gap: 28px; }
  .course-header-right { align-items: flex-start; }
  .course-price-block { text-align: left; }
  .course-title { font-size: 38px; }
}

@media (max-width: 640px) {
  .course-title { font-size: 30px; }
  .course-price { font-size: 32px; }
}

/* ─── Contact Page ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.contact-form-col {}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  padding: 28px;
}

.contact-card-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--g-light);
  margin-bottom: 12px;
}

.contact-email-link {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  margin-bottom: 10px;
  word-break: break-all;
}

.contact-email-link:hover { color: var(--g-light); }

.contact-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Contact + Enroll Form Styles ─────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%238FA896' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--g-mid);
  background: var(--bg-raise);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: -8px;
}

/* ─── Enroll Page ───────────────────────────────────────────────────────── */
.enroll-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin-top: 40px;
}

.enroll-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
}

.enroll-step:first-child { border-top: 1px solid var(--hairline); }

.enroll-step-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--g-light);
  padding-top: 4px;
}

.enroll-step-body h3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.enroll-step-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.enroll-form-wrap {
  max-width: 680px;
}

/* Responsive — contact + enroll */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-sidebar {
    order: -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ─── About page — photo elements ──────────────────────────────────────── */
.about-photo-break {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.about-photo-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,15,10,0.35) 0%,
    rgba(12,15,10,0.10) 40%,
    rgba(12,15,10,0.10) 60%,
    rgba(12,15,10,0.55) 100%
  );
}

.about-instructor-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}

.about-headshot-wrap {
  position: sticky;
  top: 88px;
}

.about-headshot {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  border-top: 3px solid var(--g-mid);
  display: block;
}

.about-instructor-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-instructor-block p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.78;
}

@media (max-width: 860px) {
  .about-instructor-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-headshot-wrap {
    position: static;
    max-width: 280px;
  }
  .about-photo-break { height: 260px; }
}
