/* Perfect Media Pitch — tokens lifted from the archived Leadpages original */
:root {
  --pink: rgb(251, 0, 193);
  --pink-hover: rgb(200, 0, 154);
  --pink-alt: rgb(231, 20, 190);
  --navy: rgb(9, 27, 61);
  --plum: rgb(29, 6, 57);
  --hero-bg: rgb(24, 23, 23);
  --silver: rgb(216, 216, 216);
  --cream: rgb(251, 251, 246);
  --muted: rgb(145, 145, 145);
  --sans: "Roboto", sans-serif;
  --serif: "Quattrocento", serif;
}

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

body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.375;
}

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

h1, h2, h3 { margin: 0; line-height: 1.125; font-weight: 700; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
}
.container--narrow { max-width: 900px; }

/* ---------- sections ---------- */
.section { position: relative; }
.section > .container { padding: 5vw 3vw; }
@media (min-width: 1140px) { .section > .container { padding: 57px 34px; } }

.section--hero {
  background-color: var(--hero-bg);
  background-image: url("../img/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.section--hero > .container { padding: 1vw 2vw 7vw; }
@media (min-width: 1140px) { .section--hero > .container { padding: 11px 23px 80px; } }

.section--lessons {
  background-color: #fff;
  background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), url("../img/bg-pattern.png");
  background-repeat: repeat;
  background-position: center;
}
.section--lessons > .container { padding: 5vw 10vw; }
@media (min-width: 1140px) { .section--lessons > .container { padding: 57px 114px; } }
/* the downward notch the original draws under this section */
.section--lessons::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 18px 30px 0;
  border-color: #fff transparent transparent;
  z-index: 1;
}

.section--band {
  background-color: var(--navy);
  background-image: url("../img/bg-b.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
.section--band > .container { padding: 8vw 1vw 7vw; }
@media (min-width: 1140px) { .section--band > .container { padding: 91px 11px 80px; } }

.section--proof > .container { padding: 5vw 3vw 3vw; }
@media (min-width: 1140px) { .section--proof > .container { padding: 57px 34px 34px; } }

.section--about { background-color: var(--plum); color: #fff; }
.section--about > .container { padding: 8vw 10vw; }
@media (min-width: 1140px) { .section--about > .container { padding: 91px 114px; } }

.section--footer > .container { padding: 1vw; }
@media (min-width: 1140px) { .section--footer > .container { padding: 11px; } }
.section--footer p {
  text-align: center;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (min-width: 768px) { .section--footer p { font-size: 1rem; } }

/* ---------- shared two-column split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; align-items: center; }
@media (min-width: 768px) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; } }
.split__media { text-align: center; }
.split__media img { margin-inline: auto; }

/* ---------- hero ---------- */
.hero-title { text-align: center; padding-bottom: .5625em; }
.hero-title span { display: block; }
.hero-title__a {
  color: #fff;
  font-style: italic;
  font-size: 2.375rem;
  margin-bottom: .25em;
}
.hero-title__b {
  color: var(--pink);
  font-style: normal;
  font-size: 3.25rem;
  line-height: 1;
}
.hero-title__c {
  color: var(--silver);
  font-style: italic;
  font-size: 2.25rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .hero-title__a { font-size: 3rem; }
  .hero-title__b { font-size: 5.5rem; }
  .hero-title__c { font-size: 3.5rem; }
}

.hero-kicker {
  text-align: center;
  color: var(--pink);
  font-size: 1.5rem;
  line-height: 1;
}
.hero-when {
  text-align: center;
  color: var(--pink-alt);
  font-size: 2rem;
  line-height: 1.375;
}
.hero-ps {
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.375;
  padding-top: 12px;
}
@media (min-width: 768px) {
  .hero-kicker { font-size: 1.75rem; }
  .hero-when { font-size: 2.5rem; }
  .hero-ps { font-size: 1.25rem; }
}

/* ---------- buttons ---------- */
.btn-wrap { margin: 24px 0; text-align: center; }
.btn-wrap--narrow { max-width: 50%; margin-inline: auto; }
.btn-wrap--wide { max-width: 58.33%; margin-inline: auto; }
@media (max-width: 767px) {
  .btn-wrap--narrow, .btn-wrap--wide { max-width: 100%; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  min-width: 96px;
  padding: 14px 24px;
  border: 1px solid var(--pink);
  border-radius: 10000px;
  background: var(--pink);
  color: #fff;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.375;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 768px) { .btn { font-size: 1.75rem; } }
.btn--sm { min-height: 36px; min-width: 72px; padding: 8px 18px; line-height: 1.125; }
a.btn:hover { background: var(--pink-hover); border-color: var(--pink-hover); }

/* the registration popup this button opened is gone — kept for layout, not clickable */
.btn.is-inactive { cursor: default; }

/* ---------- lessons ---------- */
.lessons-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  padding-bottom: .5625em;
}
@media (min-width: 480px) { .lessons-title { font-size: 2rem; } }
@media (min-width: 768px) { .lessons-title { font-size: 2.5rem; } }
.navy { color: var(--navy); }
.pink { color: var(--pink); }
.white { color: #fff; }

.divider {
  height: 20px;
  margin: 34px auto;
  max-width: 937px;
  border: 0;
  background: url("../img/divider.png") center / contain no-repeat;
}

.lesson {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-block: 12px;
}
@media (min-width: 768px) {
  .lesson { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; padding-block: 34px; }
  .lesson--flip .lesson__media { order: 2; }
}
.lesson__text h3 {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  padding-bottom: .5em;
}
@media (min-width: 768px) { .lesson__text h3 { font-size: 1.75rem; } }
.lesson__text p {
  color: var(--navy);
  font-size: .875rem;
  line-height: 1.375;
}
@media (min-width: 768px) { .lesson__text p { font-size: 1rem; } }

/* ---------- register band ---------- */
.band-title { padding-bottom: .5625em; }
.band-title span { display: block; font-size: 2.25rem; line-height: 1.25; }
.band-title .white { font-style: italic; }
.band-title .pink { font-style: normal; }
@media (min-width: 480px) { .band-title span { font-size: 2.75rem; } }
@media (min-width: 768px) { .band-title span { font-size: 3.5rem; } }

.band-lead { font-size: 1.3125rem; line-height: 1.5; margin-bottom: 1.5em; }
@media (min-width: 768px) { .band-lead { font-size: 1.5rem; } }
.band-fine { font-size: .875rem; line-height: 1.5; }
@media (min-width: 768px) { .band-fine { font-size: 1rem; } }

/* ---------- testimonials ---------- */
.proof-title {
  text-align: center;
  color: var(--pink-alt);
  font-style: italic;
  font-size: 2.25rem;
  line-height: 1.125;
  padding-bottom: .5625em;
}
@media (min-width: 480px) { .proof-title { font-size: 2.75rem; } }
@media (min-width: 768px) { .proof-title { font-size: 3.5rem; } }

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 91px 24px; }
}
.proof-grid figure { margin: 0; }
.proof-grid img { margin: 0 auto 24px; border-radius: 10000px; }
.proof-grid blockquote { margin: 0 0 1.5em; }
.proof-grid blockquote p { font-size: 1.3125rem; line-height: 1.5; }
.proof-grid figcaption { font-size: 1rem; line-height: 1.5; }
@media (min-width: 768px) {
  .proof-grid blockquote p { font-size: 1.5rem; }
  .proof-grid figcaption { font-size: 1.125rem; }
}

/* ---------- about ---------- */
.about-title {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.125;
  padding-bottom: .75em;
}
@media (min-width: 768px) { .about-title { font-size: 1.75rem; } }
.bio {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.125;
}
@media (min-width: 768px) { .bio { font-size: 1.125rem; } }
