@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1b2149;
  --navy-light: #2a3266;
  --amber: #c9873a;
  --amber-light: #e8a956;
  --cream: #f8f4ee;
  --cream-dark: #ede8de;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(27,33,73,0.10);
  --shadow-md: 0 8px 40px rgba(27,33,73,0.14);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: 'PT Serif', Georgia, serif;
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}

.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,135,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ─── HEADER ──────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 33, 73, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.header-cta {
  padding: 10px 26px;
  font-size: 0.88rem;
}

/* ─── HERO ────────────────────────────────────── */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0 0;
  min-height: 92vh;
  display: flex;
  align-items: flex-start;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-music.png');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.25;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,135,58,0.2);
  border: 1px solid rgba(201,135,58,0.5);
  color: var(--amber-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,135,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.hero-image-block {
  display: none;
}

/* ─── FOR WHOM ────────────────────────────────── */

.for-whom {
  background: var(--white);
}

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

.whom-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border-left: 4px solid var(--amber);
}

.whom-card-title {
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.whom-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── WHAT YOU LEARN ──────────────────────────── */

.learn-section {
  background: var(--navy);
  color: var(--white);
}

.learn-section .section-heading {
  color: var(--white);
}

.learn-section .section-sub {
  color: rgba(255,255,255,0.65);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.learn-item {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--transition);
}

.learn-item:hover {
  background: rgba(255,255,255,0.11);
}

.learn-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learn-item-body h3 {
  font-size: 0.97rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.learn-item-body p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ─── FORMAT ──────────────────────────────────── */

.format-section {
  background: var(--cream);
}

.format-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 20px;
}

.format-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.format-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.format-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.format-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.format-dot {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.format-item-body strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--navy);
}

.format-item-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ─── HOW IT WORKS ────────────────────────────── */

.how-section {
  background: var(--white);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(16.66% + 18px);
  right: calc(16.66% + 18px);
  height: 2px;
  background: var(--cream-dark);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'PT Serif', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(201,135,58,0.3);
}

.step-card h3 {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── TEACHER ─────────────────────────────────── */

.teacher-section {
  background: var(--cream);
  overflow: hidden;
}

.teacher-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}

.teacher-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.teacher-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.teacher-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: var(--white);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.teacher-photo-badge strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
}

.teacher-photo-badge span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.teacher-text h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--navy);
  margin-bottom: 18px;
}

.teacher-text p {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.teacher-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.teacher-fact {
  background: var(--white);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--cream-dark);
}

/* ─── FAQ ─────────────────────────────────────── */

.faq-section {
  background: var(--white);
}

.faq-list {
  margin-top: 44px;
  max-width: 740px;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--amber); }

.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 300;
  transition: all var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--amber);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  font-size: 0.93rem;
  color: var(--text-muted);
  padding-bottom: 20px;
  line-height: 1.75;
  max-width: 620px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ─── LEAD FORM ───────────────────────────────── */

.form-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.form-section .section-heading {
  color: var(--white);
}

.form-section .section-sub {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 40px;
}

.lead-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
}

.form-row input {
  padding: 14px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-row input::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-row input:focus {
  border-color: var(--amber-light);
  background: rgba(255,255,255,0.11);
}

.form-submit {
  margin-top: 6px;
  padding: 17px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  width: 100%;
}

.form-note {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.form-note a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── FOOTER ──────────────────────────────────── */

.site-footer {
  background: #12163a;
  color: rgba(255,255,255,0.55);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .site-logo {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--amber-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.8rem;
  line-height: 1.8;
  max-width: 560px;
}

.footer-copy {
  font-size: 0.8rem;
  white-space: nowrap;
}

/* ─── COOKIE BANNER ───────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  max-width: 700px;
  width: calc(100% - 32px);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  min-width: 200px;
}

.cookie-text a {
  color: var(--amber-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-btn {
  padding: 10px 22px;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.cookie-banner.hidden {
  display: none;
}

/* ─── SUCCESS PAGE ────────────────────────────── */

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 40px 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,135,58,0.2);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
}

.success-page h1 {
  color: var(--white);
  margin-bottom: 14px;
}

.success-page p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  margin: 0 auto 32px;
}

/* ─── LEGAL PAGES ─────────────────────────────── */

.legal-page {
  background: var(--cream);
}

.legal-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 50px;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-hero p {
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  font-size: 0.9rem;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.legal-back:hover { color: var(--amber-light); }

.legal-content {
  padding: 60px 0 80px;
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* ─── RESPONSIVE ──────────────────────────────── */

@media (max-width: 900px) {
  .format-layout {
    grid-template-columns: 1fr;
  }

  .format-image {
    order: -1;
  }

  .teacher-layout {
    grid-template-columns: 1fr;
  }

  .teacher-photo {
    max-width: 320px;
  }

  .teacher-photo img {
    height: 340px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .steps-list::before { display: none; }

  .hero-actions {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 14px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    bottom: 16px;
  }

  .teacher-photo {
    max-width: 100%;
  }
}
