:root {
  --cream: #FDF3EF;
  --cream-2: #F8EAE3;
  --ink: #33463F;
  --ink-soft: #5F7168;
  --green: #6B9484;
  --green-deep: #4A6E60;
  --green-pale: #E4EEE8;
  --coral: #D9694A;
  --coral-pale: #FBE6DF;
  --white: #FFFFFF;
  --line: rgba(51, 70, 63, 0.14);
  --shadow: 0 1px 2px rgba(51, 70, 63, 0.05), 0 12px 32px -12px rgba(51, 70, 63, 0.16);
  --shadow-lift: 0 2px 4px rgba(51, 70, 63, 0.06), 0 22px 48px -16px rgba(51, 70, 63, 0.24);
  --r: 18px;
  --font-display: "Chillax", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;
  --maxw: 1120px;
  --cdn: https://media.cwd-cdn.com/musical-sprouts/images;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(28px, 5.5vw, 40px);
  padding-left: max(28px, env(safe-area-inset-left, 0px));
  padding-right: max(28px, env(safe-area-inset-right, 0px));
}

a {
  color: var(--green-deep);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--coral);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

/* Header */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

header.site.solid {
  background: var(--green);
}

header.site.is-scrolled {
  background: #fff;
  color: var(--green-deep);
  box-shadow: 0 1px 0 var(--line), 0 10px 28px -18px rgba(51, 70, 63, 0.28);
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.brand-logo {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand > span:last-child {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

nav.main {
  display: flex;
  gap: 26px;
  align-items: center;
}

nav.main a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

nav.main a:hover,
nav.main a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: currentColor;
}

header.site.is-scrolled nav.main a {
  color: var(--green-deep);
}

header.site.is-scrolled nav.main a:hover,
header.site.is-scrolled nav.main a[aria-current="page"] {
  color: var(--green);
  text-decoration-color: var(--green);
}

.nav-toggle {
  display: none;
  background: var(--coral);
  border: 1.5px solid var(--coral);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 20px -10px rgba(217, 105, 74, 0.8);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.nav-toggle:hover {
  background: #C75C3E;
  border-color: #C75C3E;
  color: #fff;
}

header.site.is-scrolled .nav-toggle {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(217, 105, 74, 0.8);
}

.btn-coral:hover {
  background: #C75C3E;
}

.btn-white {
  background: #fff;
  color: var(--green-deep);
}

.btn-outline {
  border-color: var(--green);
  color: var(--green-deep);
  background: transparent;
}

.btn-outline:hover {
  background: var(--green-pale);
}

.bar .btn {
  padding: 11px 22px;
  font-size: 14px;
}

/* Home hero */
.hero-home {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-home__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-home__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(51, 70, 63, 0.35) 0%, rgba(51, 70, 63, 0.28) 38%, rgba(51, 70, 63, 0.78) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(107, 148, 132, 0.35), transparent 55%);
  z-index: 1;
}

.hero-home__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 72px;
}

.hero-home .brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-home .brand-mark img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.hero-home .brand-mark strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-home h1 {
  font-size: clamp(28px, 4.2vw, 44px);
  max-width: 16ch;
  font-weight: 500;
}

.hero-home .lede {
  margin-top: 16px;
  max-width: 42ch;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-home .actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-home .place {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

@keyframes hero-drift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

/* Pricing hero (page) */
.hero-page {
  background: var(--green);
  color: #fff;
  padding: 110px 0 92px;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-page h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  margin: 14px auto 0;
  max-width: 16ch;
}

.hero-page .lede {
  margin: 18px auto 0;
  max-width: 54ch;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-page .actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
section {
  padding: 76px 0;
}

.sec-head {
  max-width: 62ch;
}

.sec-head h2 {
  font-size: clamp(27px, 3.4vw, 38px);
  color: var(--green-deep);
}

.sec-head p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 17.5px;
}

.divider {
  height: 1px;
  background: var(--line);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* Vision */
.vision {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.vision .sec-head {
  max-width: 56ch;
  margin: 0 auto;
  text-align: center;
}

.vision .sec-head h2 {
  animation: rise-in 0.8s ease both;
}

.vision .sec-head p {
  animation: rise-in 0.8s ease 0.12s both;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Class grid */
.classes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.section-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cls {
  background: #fff;
  border-radius: var(--r);
  padding: 24px;
  box-shadow: 0 8px 24px -14px rgba(51, 70, 63, 0.2);
  border: 1px solid rgba(51, 70, 63, 0.06);
  display: flex;
  flex-direction: column;
}

.cls .thumb {
  margin: -8px -8px 16px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--green-pale);
  aspect-ratio: 16 / 10;
}

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

.cls .thumb--mark {
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
}

.cls .thumb--mark img {
  width: 68%;
  height: auto;
  max-height: 85%;
  object-fit: contain;
  animation: mark-bounce 2.8s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes mark-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cls .thumb--mark img {
    animation: none;
  }
}

.cls .day {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}

.cls h3 {
  font-size: 20px;
  margin-top: 8px;
  color: var(--green-deep);
}

.cls .age {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.cls dl {
  margin: 16px 0 0;
  font-size: 15px;
}

.cls dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
}

.cls dt {
  color: var(--ink-soft);
}

.cls dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.cls .btn {
  margin-top: 18px;
  width: 100%;
  text-align: center;
  font-size: 14.5px;
  padding: 11px 16px;
}

/* Pricing cards */
.cards-section {
  margin-top: -64px;
  position: relative;
  z-index: 2;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.card {
  background: var(--white);
  border-radius: var(--r);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(51, 70, 63, 0.06);
  position: relative;
}

.card.featured {
  border: 2px solid var(--coral);
  box-shadow: var(--shadow-lift);
}

.tag {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--coral);
  color: #fff;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card h3 {
  font-size: 22px;
  color: var(--green-deep);
  min-height: 52px;
  display: flex;
  align-items: flex-end;
}

.card .who {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--ink-soft);
  min-height: 66px;
}

.price {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
}

.price .amt {
  font-size: 40px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price .per {
  font-size: 15px;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 600;
}

.perclass {
  margin-top: 10px;
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-deep);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}

.card.featured .perclass {
  background: var(--coral-pale);
  color: #A8482C;
}

ul.feat {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  font-size: 15px;
  color: var(--ink-soft);
  flex: 1;
}

ul.feat li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
  line-height: 1.5;
}

ul.feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 7px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
  border-radius: 1px;
}

.card .btn {
  margin-top: 22px;
  text-align: center;
  width: 100%;
}

/* Tables */
.table-card {
  margin-top: 34px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

thead th {
  background: var(--green-pale);
  color: var(--green-deep);
  text-align: left;
  padding: 15px 22px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

tbody td {
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}

tbody tr:hover {
  background: #FCF8F6;
}

td.term strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
}

td.term span {
  font-size: 14px;
  color: var(--ink-soft);
}

td.num {
  font-weight: 700;
  white-space: nowrap;
}

td.pc {
  color: var(--green-deep);
  font-weight: 700;
  white-space: nowrap;
}

.save {
  display: inline-block;
  margin-left: 8px;
  background: var(--coral-pale);
  color: #A8482C;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 800;
}

.tnote {
  padding: 16px 22px;
  background: #FCF8F6;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* Membership */
.memb {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
  margin-top: 34px;
}

.memb-box {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(51, 70, 63, 0.06);
}

.memb-box h3 {
  padding: 20px 24px 0;
  font-size: 20px;
  color: var(--green-deep);
}

.memb-box table {
  margin-top: 12px;
}

.memb-box tbody td {
  padding: 13px 24px;
  font-size: 15.5px;
}

.memb-box tfoot td {
  padding: 15px 24px;
  border-top: 2px solid var(--green-pale);
  font-weight: 800;
  background: #FCF8F6;
}

.memb ul.feat {
  margin-top: 4px;
  font-size: 16px;
}

/* Choose / savings / steps */
.choose {
  background: var(--cream-2);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.mini {
  background: #fff;
  border-radius: var(--r);
  padding: 26px 24px;
  box-shadow: 0 8px 24px -14px rgba(51, 70, 63, 0.2);
}

.mini h3 {
  font-size: 19px;
  color: var(--green-deep);
}

.mini p {
  margin-top: 9px;
  font-size: 15.5px;
  color: var(--ink-soft);
}

.mini .pick {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--coral);
}

.savings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.save-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(51, 70, 63, 0.08);
}

.save-row .ic {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-pale);
  display: grid;
  place-items: center;
  color: var(--green-deep);
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-display);
}

.save-row h4 {
  margin: 0;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-body);
}

.save-row p {
  margin-top: 5px;
  font-size: 15px;
  color: var(--ink-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  counter-reset: s;
}

.step {
  background: #fff;
  border-radius: var(--r);
  padding: 26px 24px;
  border: 1px solid rgba(51, 70, 63, 0.08);
}

.step::before {
  counter-increment: s;
  content: counter(s);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.step h3 {
  margin-top: 16px;
  font-size: 19px;
  color: var(--green-deep);
}

.step p {
  margin-top: 9px;
  font-size: 15.5px;
  color: var(--ink-soft);
}

/* Parties */
.party-wrap {
  background: var(--cream-2);
}

.parties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
  align-items: stretch;
}

.party {
  position: relative;
  background: #fff;
  border-radius: var(--r);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -18px rgba(51, 70, 63, 0.28);
  border: 1px solid rgba(51, 70, 63, 0.07);
}

.party.pick {
  border: 2px solid var(--coral);
}

.party .len {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}

.party h3 {
  font-size: 24px;
  margin-top: 9px;
  color: var(--green-deep);
}

.party .who {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.party .feat {
  flex: 1;
}

.party .btn {
  margin-top: 22px;
  text-align: center;
}

.addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  margin-top: 34px;
  background: #fff;
  border-radius: var(--r);
  padding: 10px 28px 18px;
  border: 1px solid rgba(51, 70, 63, 0.07);
}

.addon {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15.5px;
}

.addon:first-child,
.addon:nth-child(2) {
  border-top: none;
}

.addon b {
  white-space: nowrap;
  color: var(--green-deep);
}

.addon span {
  color: var(--ink-soft);
}

/* Home teaser bands */
.teaser {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.teaser--flip {
  grid-template-columns: 0.9fr 1.1fr;
}

.teaser--flip .teaser__copy {
  order: 2;
}

.teaser--flip .teaser__visual {
  order: 1;
}

.teaser__visual {
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background:
    linear-gradient(145deg, var(--green) 0%, var(--green-deep) 100%);
  position: relative;
  box-shadow: var(--shadow-lift);
}

.teaser__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.teaser__visual .glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(253, 243, 239, 0.18), transparent 50%),
    linear-gradient(180deg, transparent 40%, rgba(51, 70, 63, 0.35) 100%);
  pointer-events: none;
}

.price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.price-chip {
  background: #fff;
  border: 1px solid rgba(51, 70, 63, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 120px;
}

.price-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
}

.price-chip span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* FAQ */
details {
  background: #fff;
  border-radius: 14px;
  margin-top: 12px;
  box-shadow: 0 6px 18px -14px rgba(51, 70, 63, 0.3);
  border: 1px solid rgba(51, 70, 63, 0.07);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 56px 19px 22px;
  font-weight: 700;
  font-size: 16.5px;
  position: relative;
  color: var(--ink);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 26px;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(225deg);
}

details .body {
  padding: 0 22px 21px;
  color: var(--ink-soft);
  font-size: 16px;
}

.faq-wrap {
  margin-top: 30px;
  max-width: 840px;
}

/* CTA + footer */
.cta {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 84px 0;
}

/* Blog / article */
.hero-article {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-article__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-article__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(51, 70, 63, 0.28) 0%, rgba(51, 70, 63, 0.35) 40%, rgba(51, 70, 63, 0.82) 100%);
}

.hero-article__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 56px;
}

.hero-article .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-article h1 {
  font-size: clamp(34px, 5.4vw, 54px);
  margin: 14px 0 0;
  max-width: 14ch;
}

.hero-article .lede {
  margin: 16px 0 0;
  max-width: 42ch;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
}

.article {
  padding: 48px 0 72px;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.article__inner {
  max-width: 720px;
  margin: 0 auto;
}

.article__intro {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 36px;
}

.article h2 {
  font-size: clamp(24px, 3vw, 30px);
  color: var(--green-deep);
  margin: 42px 0 14px;
}

.article p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.75;
}

.article blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--coral);
  background: #fff;
  border-radius: 0 16px 16px 0;
  box-shadow: var(--shadow);
}

.article blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.35;
  font-weight: 500;
}

.article__refs {
  margin-top: 48px;
  padding: 26px 28px;
  background: #fff;
  border-radius: var(--r);
  border: 1px solid rgba(51, 70, 63, 0.08);
}

.article__refs h3 {
  font-size: 18px;
  color: var(--green-deep);
  margin: 0 0 14px;
}

.article__refs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article__refs li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.article__refs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.article__refs li:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .hero-article {
    min-height: min(68vh, 560px);
  }

  .hero-article__content {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .article {
    padding: 36px 0 56px;
  }

  .article__intro {
    font-size: 18px;
  }
}

.cta h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.cta p {
  margin: 16px auto 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

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

footer {
  background: #33463F;
  color: rgba(255, 255, 255, 0.7);
  padding: 38px 0;
  font-size: 14.5px;
}

.frow {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.social a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.social svg {
  display: block;
}

footer a {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 760px) {
  .footer-links,
  .social {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .wrap {
    padding-left: max(32px, env(safe-area-inset-left, 0px));
    padding-right: max(32px, env(safe-area-inset-right, 0px));
  }

  .hero-home {
    align-items: center;
  }

  .hero-home__content {
    padding-top: 110px;
    padding-bottom: 48px;
  }

  .hero-home__shade {
    background:
      linear-gradient(180deg, rgba(51, 70, 63, 0.42) 0%, rgba(51, 70, 63, 0.45) 45%, rgba(51, 70, 63, 0.72) 100%),
      radial-gradient(ellipse at 20% 20%, rgba(107, 148, 132, 0.35), transparent 55%);
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .choose-grid,
  .classes,
  .steps,
  .teaser,
  .teaser--flip {
    grid-template-columns: 1fr;
  }

  .cls .thumb--mark {
    aspect-ratio: 2.2 / 1;
  }

  .cls .thumb--mark img {
    width: 36%;
    max-height: 78%;
  }

  .teaser--flip .teaser__copy,
  .teaser--flip .teaser__visual {
    order: unset;
  }

  .memb {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card h3,
  .card .who {
    min-height: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  nav.main {
    display: none;
    position: absolute;
    top: 72px;
    right: max(32px, env(safe-area-inset-right, 0px));
    left: max(32px, env(safe-area-inset-left, 0px));
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: var(--green-deep);
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-lift);
  }

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

  nav.main a,
  header.site.is-scrolled nav.main a {
    color: rgba(255, 255, 255, 0.92);
  }

  nav.main a:hover,
  nav.main a[aria-current="page"],
  header.site.is-scrolled nav.main a:hover,
  header.site.is-scrolled nav.main a[aria-current="page"] {
    color: #fff;
    text-decoration-color: #fff;
  }

  .bar .btn {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .cls .thumb--mark {
    aspect-ratio: 16 / 10;
  }

  .cls .thumb--mark img {
    width: 52%;
    max-height: 82%;
  }

  .wrap {
    padding-left: max(28px, env(safe-area-inset-left, 0px));
    padding-right: max(28px, env(safe-area-inset-right, 0px));
  }

  .cards,
  .savings,
  .parties,
  .addons {
    grid-template-columns: 1fr;
  }

  .cards-section {
    margin-top: -52px;
  }

  section {
    padding: 56px 0;
  }

  .hero-home__content {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-home .brand-mark {
    margin-bottom: 16px;
  }

  .hero-home .brand-mark img {
    width: 44px;
    height: 44px;
  }

  .hero-home .brand-mark strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero-home h1 {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  .hero-home .lede {
    font-size: 17px;
  }

  .hero-home .actions {
    margin-top: 22px;
  }

  .hero-home .actions .btn {
    flex: 1 1 auto;
    text-align: center;
    min-width: min(100%, 160px);
  }

  .hero-page {
    padding: 100px 0 72px;
  }

  nav.main {
    right: max(24px, env(safe-area-inset-right, 0px));
    left: max(24px, env(safe-area-inset-left, 0px));
  }

  thead {
    display: none;
  }

  tbody td {
    display: block;
    border-top: none;
    padding: 4px 20px;
  }

  tbody tr {
    display: block;
    border-top: 1px solid var(--line);
    padding: 16px 0;
  }

  tbody td.num::before {
    content: "Price — ";
    font-weight: 600;
    color: var(--ink-soft);
  }

  tbody td.pc::before {
    content: "Per class — ";
    font-weight: 600;
    color: var(--ink-soft);
  }

  .memb-box tbody td {
    display: table-cell;
    border-top: 1px solid var(--line);
    padding: 12px 20px;
  }

  .memb-box tbody tr {
    display: table-row;
  }

  .memb-box tbody td::before {
    content: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-home__media img,
  .vision .sec-head h2,
  .vision .sec-head p,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}
