:root {
  color-scheme: light;
  --ink: #17233f;
  --muted: #5c6676;
  --line: #dde7ef;
  --paper: #ffffff;
  --soft: #f6fbff;
  --teal: #0f766e;
  --teal-dark: #0b5d56;
  --blue: #2f80ed;
  --coral: #f06c5b;
  --gold: #f4b740;
  --mint: #daf7ea;
  --peach: #fff1e8;
  --sky: #eaf4ff;
  --shadow: 0 18px 55px rgba(23, 35, 63, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfdff;
  line-height: 1.55;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(221, 231, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 32px;
  padding: 5px clamp(18px, 4vw, 56px);
  background: #f7fbff;
  color: #344056;
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.contact-links a {
  color: #344056;
}

.contact-links .login-link {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: #17233f;
  font-weight: 900;
}

.contact-links .email-link {
  margin-left: 4px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-logo {
  width: 62px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #344056;
  font-size: 0.94rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.nav-dropdown > button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 8px;
  width: min(560px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  box-shadow: 0 24px 70px rgba(23, 35, 63, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.kids-menu {
  width: min(520px, calc(100vw - 32px));
}

.study-menu {
  width: min(480px, calc(100vw - 32px));
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu a {
  display: grid;
  gap: 3px;
  padding: 13px;
  border-radius: 10px;
  white-space: normal;
}

.mega-menu a:hover,
.mega-menu a:focus {
  background: #f6fbff;
}

.mega-menu strong {
  color: #17233f;
  font-size: 0.96rem;
}

.mega-menu span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.nav-cta {
  padding: 12px 18px;
  border: 2px solid #ff4968;
  border-radius: 6px;
  background: white;
  color: #ff4968;
  font-weight: 900;
}

.site-nav > a:not(.nav-cta) {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  min-width: 74px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(390px, 1.05fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 78px);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18) 0 12%, transparent 13%),
    radial-gradient(circle at 88% 80%, rgba(255, 214, 107, 0.18) 0 10%, transparent 11%),
    linear-gradient(135deg, #0797c9 0%, #0aa6d6 55%, #048bbf 100%);
  color: white;
}

.hero-copy {
  max-width: 760px;
}

.hero .eyebrow {
  color: #d8f8ff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  color: white;
  font-size: clamp(3.25rem, 6.6vw, 6.45rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: #fff4bf;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.22;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: #e9fbff;
  font-size: clamp(1.12rem, 1.55vw, 1.55rem);
  line-height: 1.55;
  font-weight: 650;
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  background: linear-gradient(135deg, #0f766e, #2f80ed);
  color: white;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.2);
}

.button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.hero .button.primary {
  background: #ffffff;
  color: #17233f;
  box-shadow: 0 12px 24px rgba(23, 35, 63, 0.18);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.hero .trial-card .button.primary {
  background: linear-gradient(135deg, #0f766e, #2f80ed);
  color: white;
}

.hero-stage {
  position: relative;
  min-height: clamp(500px, 50vw, 670px);
}

.speaker-bubble {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 12px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 74px rgba(23, 35, 63, 0.22);
}

.speaker-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.speaker-bubble figcaption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-width: max-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: white;
  color: #0b5d56;
  font-size: 0.76rem;
  font-weight: 950;
}

.speaker-large {
  top: 2%;
  right: 3%;
  width: min(430px, 70%);
  aspect-ratio: 1 / 1;
}

.speaker-small {
  left: 0;
  bottom: 2%;
  width: min(370px, 60%);
  aspect-ratio: 0.88 / 1;
}

.demo-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 78px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.demo-band-copy {
  max-width: 620px;
}

.demo-band-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.trial-card {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0;
  scroll-margin-top: 150px;
  padding: 22px;
  border: 1px solid rgba(221, 231, 239, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 44px rgba(23, 35, 63, 0.14);
}

.trial-card h2 {
  font-size: 1.28rem;
  line-height: 1.16;
}

.trial-kicker {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trial-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}

.trial-card label {
  grid-column: span 1;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.trial-card input {
  grid-column: span 1;
  width: 100%;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.trial-card select {
  width: 100%;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.trial-card button {
  grid-column: 1 / -1;
}

.form-toast {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 60;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 28px));
  padding: 14px 18px;
  border-radius: 999px;
  background: #0f766e;
  color: white;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(23, 35, 63, 0.2);
}

.course-page {
  min-height: 100vh;
  padding: clamp(28px, 5vw, 70px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 183, 64, 0.22) 0 9%, transparent 10%),
    linear-gradient(135deg, #f6fbff 0%, #ffffff 55%, #fff7f3 100%);
}

.kids-page {
  background:
    radial-gradient(circle at 14% 18%, rgba(47, 128, 237, 0.16) 0 9%, transparent 10%),
    linear-gradient(135deg, #ffffff 0%, #fff8dc 48%, #eaf4ff 100%);
}

.resource-page {
  background:
    radial-gradient(circle at 80% 18%, rgba(15, 118, 110, 0.16) 0 9%, transparent 10%),
    linear-gradient(135deg, #ffffff 0%, #f6fbff 55%, #daf7ea 100%);
}

.back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal-dark);
  font-weight: 950;
}

.course-hero {
  max-width: 980px;
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(23, 35, 63, 0.1);
}

.course-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 0.98;
}

.course-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #475569;
  font-size: 1.14rem;
}

.course-hero .button {
  margin-top: 10px;
}

.course-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin-top: 28px;
}

.course-detail-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 34px rgba(23, 35, 63, 0.07);
}

.course-detail-grid h2 {
  font-size: 1.35rem;
}

.course-detail-grid p {
  color: var(--muted);
}

.course-finder {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 4vw, 56px);
  background: #fff7f3;
  border-block: 1px solid #ffe0d8;
}

.course-finder-head {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.course-finder-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

.course-finder-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px auto 0;
  color: #475569;
  font-size: 1.05rem;
}

.course-finder-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px);
  border-radius: 28px;
  background: linear-gradient(135deg, #ff476b 0%, #ff6f55 100%);
  box-shadow: 0 24px 70px rgba(240, 108, 91, 0.24);
}

.course-visual {
  position: relative;
  min-height: 360px;
}

.course-visual img {
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border: 10px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 22px 54px rgba(23, 35, 63, 0.2);
}

.visual-badge {
  position: absolute;
  right: 4%;
  bottom: 20px;
  max-width: 220px;
  padding: 13px 16px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--teal-dark);
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(23, 35, 63, 0.18);
}

.course-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.course-options article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(23, 35, 63, 0.08);
}

.course-options span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #fff0b8;
  color: #17233f;
  font-size: 0.78rem;
  font-weight: 950;
}

.course-options h3 {
  margin: 0 0 3px;
  font-size: 1rem;
}

.course-options p {
  margin: 0;
  color: #5c6676;
  font-size: 0.88rem;
}

.course-options a {
  min-width: 92px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 950;
}

.trust-builder {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(52px, 7vw, 88px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 12% 24%, rgba(244, 183, 64, 0.34) 0 8%, transparent 9%),
    radial-gradient(circle at 82% 18%, rgba(47, 128, 237, 0.25) 0 9%, transparent 10%),
    linear-gradient(135deg, #17233f 0%, #10254f 58%, #0b5d56 100%);
  color: white;
}

.trust-copy {
  max-width: 620px;
}

.trust-copy .eyebrow {
  color: #ffd66b;
}

.trust-copy h2 {
  margin-top: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

.trust-copy p:not(.eyebrow) {
  color: #dce8f2;
  font-size: 1.08rem;
}

.trust-builder .button {
  margin-top: 12px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.trust-stats article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.trust-stats strong {
  display: block;
  margin-bottom: 12px;
  color: #ffd66b;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1;
}

.trust-stats span {
  color: #e7eef7;
  font-weight: 750;
}

.photo-proof {
  padding: clamp(58px, 8vw, 98px) clamp(18px, 4vw, 56px);
  background: #ffffff;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.proof-gallery article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fbfdff;
  box-shadow: 0 14px 34px rgba(23, 35, 63, 0.07);
}

.proof-placeholder {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.94), rgba(255, 247, 236, 0.96));
  text-align: center;
}

.proof-placeholder img {
  width: 100px;
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 22px rgba(23, 35, 63, 0.14));
}

.proof-placeholder span {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: white;
  color: var(--teal-dark);
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(23, 35, 63, 0.1);
}

.proof-gallery h3,
.proof-gallery p {
  margin-left: 24px;
  margin-right: 24px;
}

.proof-gallery h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.proof-gallery p {
  margin-bottom: 28px;
  color: #5c6676;
}

.section,
.local-section,
.cta-section,
.site-footer {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 4vw, 56px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.class-grid article,
.quote-panel {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 34px rgba(23, 35, 63, 0.06);
}

.class-grid article:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, var(--sky) 100%);
}

.class-grid article:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, var(--mint) 100%);
}

.class-grid article:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, var(--peach) 100%);
}

.class-grid article:nth-child(4) {
  background: linear-gradient(180deg, #ffffff 0%, #fff8dc 100%);
}

.class-grid article:nth-child(5) {
  background: linear-gradient(180deg, #ffffff 0%, #f3edff 100%);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  height: auto;
  margin-bottom: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.programs {
  background: #ffffff;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.program-grid article {
  min-height: 260px;
  overflow: hidden;
  padding: 0 0 26px;
  border-radius: 24px;
  color: #17233f;
  box-shadow: 0 18px 42px rgba(23, 35, 63, 0.09);
}

.program-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid rgba(221, 231, 239, 0.7);
}

.program-grid article:nth-child(1) {
  background: #fff1e8;
}

.program-grid article:nth-child(2) {
  background: #eaf4ff;
}

.program-grid article:nth-child(3) {
  background: #daf7ea;
}

.program-grid article:nth-child(4) {
  background: #fff8dc;
}

.program-grid article:nth-child(5) {
  background: #f3edff;
}

.program-grid span {
  display: inline-flex;
  margin: 22px 26px 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.program-grid h3,
.program-grid p,
.program-grid a {
  margin-left: 26px;
  margin-right: 26px;
}

.program-grid p {
  color: #475569;
}

.program-grid a {
  color: var(--teal-dark);
  font-weight: 900;
}

.class-grid p {
  color: var(--muted);
}

.class-grid a {
  color: var(--teal-dark);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 207, 63, 0.22) 0 8%, transparent 9%),
    var(--soft);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #ffffff;
}

.about-section > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: white;
  font-weight: 650;
  box-shadow: 0 8px 22px rgba(23, 35, 63, 0.04);
}

.quote-panel {
  background: linear-gradient(135deg, #17233f, #274c9b);
  color: white;
}

.quote-panel p {
  margin-top: 0;
  font-size: 1.2rem;
}

.quote-panel span {
  color: #bfebe5;
  font-weight: 800;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: center;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 207, 63, 0.2) 0 10%, transparent 11%),
    linear-gradient(135deg, #17233f, #0b5d56);
  color: white;
}

.local-section p {
  color: #cbd7d3;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-list span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.faq {
  background: #fbfdff;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.1rem;
  font-weight: 850;
}

details p {
  max-width: 900px;
  margin: -6px 0 22px;
  color: var(--muted);
}

.cta-section {
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #fff7ec, #eaf4ff);
}

.cta-section div {
  max-width: 760px;
}

.cta-section p:not(.eyebrow) {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  background: #17233f;
  color: white;
}

.site-footer p {
  margin-bottom: 0;
  color: #cbd7d3;
}

.footer-logo {
  width: min(240px, 78vw);
  height: auto;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 18px;
  background: white;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .about-section,
  .local-section,
  .demo-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .class-grid,
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-detail-grid {
    grid-template-columns: 1fr;
  }

  .course-finder-panel {
    grid-template-columns: 1fr;
  }

  .trust-builder {
    grid-template-columns: 1fr;
  }

  .course-visual {
    min-height: auto;
  }

  .class-grid article:first-child,
  .program-grid article:first-child {
    grid-column: 1 / -1;
  }

  .trial-card {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .nav-row {
    align-items: flex-start;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contact-links {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    inset: 122px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }

  .mega-menu,
  .kids-menu,
  .study-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2px;
    margin: 0 0 8px;
    padding: 6px;
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu a {
    padding: 10px;
  }

  .nav-cta {
    text-align: center;
  }

  h1 {
    font-size: 2.65rem;
    line-height: 1;
  }

  .class-grid,
  .program-grid,
  .course-options,
  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 330px;
  }

  .speaker-large {
    right: 0;
    width: min(270px, 64%);
  }

  .speaker-small {
    width: min(230px, 56%);
  }

  .speaker-bubble figcaption {
    bottom: 14px;
    font-size: 0.68rem;
  }

  .course-finder-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-stats article {
    min-height: auto;
  }

  .course-options article {
    grid-template-columns: auto 1fr;
  }

  .course-options a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .visual-badge {
    position: static;
    margin: 14px auto 0;
    text-align: center;
  }

  .trial-card form {
    grid-template-columns: 1fr;
  }

  .trial-card label,
  .trial-card input,
  .trial-card select {
    grid-column: 1;
  }

  .class-grid article {
    min-height: auto;
  }

  .site-footer,
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
