:root {
  --pink-50: #fff9f8;
  --pink-100: #fdeced;
  --pink-200: #f8d4d8;
  --pink-400: #e99ca7;
  --rose-600: #a84c61;
  --rose-800: #7a465d;
  --rose-900: #62384d;
  --berry-800: #875269;
  --berry-900: #704157;
  --plum-900: #321d2a;
  --plum-800: #472a3a;
  --gold-300: #f4e3bd;
  --gold-500: #b99148;
  --focus: #996f25;
  --control-border: #806a77;
  --white: #ffffff;
  --ink: #2d2028;
  --muted: #6c5964;
  --border: rgba(50, 29, 42, 0.13);
  --shadow-soft: 0 22px 60px rgba(76, 34, 53, 0.10);
  --shadow-card: 0 15px 35px rgba(76, 34, 53, 0.08);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 88rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --space-section: clamp(3.25rem, 5vw, 5rem);
  color-scheme: only light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  scrollbar-color: var(--rose-600) var(--pink-100);
  scrollbar-width: thin;
  background: #efbec8;
}

html.is-resetting-scroll {
  scroll-behavior: auto;
}

section[id],
section [id] {
  scroll-margin-top: 1.5rem;
}

::-webkit-scrollbar {
  width: 0.75rem;
}

::-webkit-scrollbar-track {
  background: var(--pink-100);
}

::-webkit-scrollbar-thumb {
  border: 0.18rem solid var(--pink-100);
  border-radius: 999px;
  background: var(--rose-600);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--plum-800);
}

body {
  margin: 0;
  min-height: 100vh;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #efbec8;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

main {
  width: 100%;
  flex: 1 0 auto;
  background: var(--pink-50);
  overflow: clip;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--plum-900);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 7.2vw, 6.7rem);
  letter-spacing: -0.055em;
}

h2 {
  max-width: 16ch;
  margin-bottom: 1.3rem;
  font-size: clamp(2.25rem, 4.7vw, 4.45rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--plum-900);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.content-shell,
.header-shell,
.hero-shell {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--space-section);
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--rose-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 2500;
  top: 0;
  border-bottom: 1px solid rgba(50, 29, 42, 0.08);
  background: rgba(255, 249, 248, 0.9);
  backdrop-filter: blur(18px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(255, 249, 248, 0.97);
  box-shadow: 0 10px 28px rgba(50, 29, 42, 0.09);
}

.header-shell {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-mark {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 0 1px var(--pink-200);
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-name {
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.26rem;
}

.brand-place {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  padding-inline: 1rem;
  border-radius: 999px;
  color: var(--plum-800);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  box-shadow: 0 8px 20px rgba(76, 34, 53, 0.08);
  transform: translateY(-2px);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--pink-100);
  color: var(--rose-600);
}

.site-nav .nav-cta {
  margin-left: 0.4rem;
  padding-inline: 1.25rem;
  background: var(--rose-800);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--rose-600);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.25rem, 5vw, 5.5rem);
  background:
    radial-gradient(circle at 7% 18%, rgba(233, 156, 167, 0.16), transparent 22rem),
    linear-gradient(120deg, var(--pink-50) 0%, #fff4f3 56%, #f7dfe3 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -12rem;
  width: 33rem;
  height: 33rem;
  border: 1px solid rgba(185, 145, 72, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(23rem, 0.96fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero-intro {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
}

.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  box-shadow: 0 16px 32px rgba(50, 29, 42, 0.18);
  transform: translateY(-3px) scale(1.015);
}

.button-primary {
  background: var(--rose-800);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(50, 29, 42, 0.18);
}

.button-primary:hover {
  background: var(--rose-600);
}

.button:disabled {
  box-shadow: none;
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-secondary {
  border-color: var(--control-border);
  background: var(--white);
  color: var(--plum-900);
}

.button-secondary:hover {
  border-color: var(--rose-600);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--plum-900);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 42rem;
  margin: 3.2rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.hero-facts div {
  display: grid;
  grid-template-rows: auto 2.35rem;
  align-items: start;
  padding-inline: 1rem;
  text-align: center;
}

.hero-facts div + div {
  border-left: 1px solid var(--border);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts dd {
  min-height: 2.35rem;
  display: grid;
  place-items: center;
  margin: 0.25rem 0 0;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.3;
  white-space: nowrap;
}

.hero-facts .hero-price {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  font-family: var(--font-display);
}

.hero-price-value {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-price-value > span {
  position: absolute;
  top: 50%;
  right: 100%;
  margin-right: 0.04em;
  color: var(--plum-900);
  font-family: var(--font-body);
  font-size: 0.72em;
  font-weight: 650;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-price strong {
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-price > span:last-child {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: 33rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  padding-block: 1rem;
}

.logo-orbit-stage {
  position: relative;
  width: min(92%, 31rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  perspective: 60rem;
  animation: stage-enter 780ms cubic-bezier(0.2, 0.75, 0.25, 1) both,
    stage-float 6s 1.2s ease-in-out infinite alternate;
}

.logo-frame {
  position: relative;
  z-index: 2;
  width: 72%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 0.85rem;
  border: 1px solid rgba(185, 145, 72, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-soft);
  backface-visibility: visible;
  transform-style: preserve-3d;
  transform-origin: 50% 72%;
  animation: logo-twist 900ms 120ms linear both;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
}

.ballerina-orbit {
  --orbit-duration: 18s;
  --orbit-delay: 0s;
  position: absolute;
  z-index: 3;
  inset: 7%;
  pointer-events: none;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  animation: dancer-orbit var(--orbit-duration) var(--orbit-delay) linear infinite;
}

.orbit-ballerina {
  position: absolute;
  top: -10%;
  left: 50%;
  width: clamp(2rem, 13%, 4rem);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 0 0.28rem rgba(255, 255, 255, 0.96));
  transform-origin: 50% 54%;
  transform-style: preserve-3d;
  backface-visibility: visible;
  animation: dancer-pirouette var(--orbit-duration) var(--orbit-delay) linear infinite;
}

.ballerina-orbit-one {
  --orbit-delay: 0s;
}

.ballerina-orbit-two {
  --orbit-delay: -6s;
}

.ballerina-orbit-three {
  --orbit-delay: -12s;
}

.verse-note {
  position: relative;
  z-index: 3;
  width: min(100%, 24rem);
  max-width: none;
  margin: 0;
  padding: 1rem 1.25rem;
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-card);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.verse-note span {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
}

.welcome {
  background: var(--white);
  padding-block: clamp(2.25rem, 3vw, 3rem);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: var(--container);
  text-align: left;
}

.welcome-grid > div {
  display: grid;
  justify-items: start;
}

.welcome-copy {
  gap: 0.7rem;
}

.welcome-grid h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.welcome-copy .lead {
  max-width: 42ch;
  margin-bottom: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.45;
}

.welcome-copy > p:last-child {
  max-width: 62ch;
  color: var(--muted);
}

.welcome-copy p:last-child {
  margin-bottom: 0;
}

.lead {
  color: var(--plum-800);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.45;
}

.class-preview {
  background: var(--pink-50);
}

.class-preview.section-pad {
  padding-block: clamp(2.5rem, 3.5vw, 3.25rem);
}

.class-preview-layout {
  display: grid;
  grid-template-columns: minmax(22rem, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: 1.25rem clamp(2rem, 5vw, 5rem);
}

.section-heading {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.split-heading {
  display: grid;
  align-self: center;
  justify-items: start;
  gap: 1rem;
  margin-bottom: 0;
  text-align: left;
}

.split-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.9rem, 3.7vw, 4.05rem);
}

.age-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.age-card {
  position: relative;
  min-height: 16rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}

.age-card::before,
.level-list article::before,
.pricing-card::before,
.page-hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--pink-400), var(--gold-300), transparent);
  transform: scaleX(0);
  transition: transform 260ms ease;
}

.age-card:hover::before,
.level-list article:hover::before,
.pricing-card:hover::before,
.page-hero-card:hover::before {
  transform: scaleX(1);
}

.age-card:hover {
  border-color: rgba(168, 76, 97, 0.35);
  box-shadow: 0 20px 44px rgba(76, 34, 53, 0.12);
  transform: translateY(-5px);
}

.age-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  background: var(--pink-100);
  color: var(--rose-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.time-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.time-list li {
  display: grid;
  gap: 0.2rem;
  padding-block: 0.9rem;
  border-top: 1px solid var(--border);
}

.time-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.time-list strong {
  color: var(--plum-900);
  font-size: 1rem;
}

.schedule-note {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(185, 145, 72, 0.35);
  border-radius: var(--radius-md);
  background: #fffaf0;
}

.schedule-note p {
  max-width: 48rem;
  margin-bottom: 0;
}

.schedule-note-title {
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.schedule-note-subtitle {
  margin-top: 0.35rem;
  color: var(--muted);
}

.tuition-callout {
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.72), transparent 24rem),
    linear-gradient(135deg, #f8e7ea, #efd1d8);
  color: var(--muted);
}

.tuition-grid {
  display: grid;
  grid-template-columns: minmax(24rem, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  text-align: left;
}

.tuition-grid > div:last-child {
  text-align: left;
}

.tuition-callout h2,
.tuition-callout .eyebrow,
.tuition-callout .text-link {
  color: var(--plum-900);
}

.tuition-callout .eyebrow {
  color: var(--rose-600);
}

.tuition-callout p:not(.eyebrow) {
  max-width: 38rem;
}

.tuition-rate-card {
  width: 100%;
  max-width: 34rem;
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.35rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.18), transparent 16rem),
    linear-gradient(135deg, var(--berry-800), var(--berry-900));
  box-shadow: 0 24px 55px rgba(112, 65, 87, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tuition-rate-card:hover {
  border-color: rgba(228, 200, 137, 0.8);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.tuition-rate-label {
  justify-self: start;
  margin: 0;
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.tuition-rate-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.02em;
  justify-self: center;
  transform: translateX(-0.65rem);
}

.tuition-rate-currency {
  position: static;
  margin-right: -0.02em;
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.tuition-rate-price strong {
  color: var(--white);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(5rem, 9vw, 7rem);
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.tuition-rate-terms {
  display: grid;
  justify-self: end;
  text-align: left;
}

.tuition-rate-terms b {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.purpose-next {
  background: var(--pink-100);
}

.purpose-next-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(185, 145, 72, 0.34);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 55px rgba(112, 65, 87, 0.14);
  text-align: center;
  overflow: hidden;
}

.purpose-statement,
.purpose-action {
  min-height: 28rem;
  display: grid;
  align-content: center;
  justify-items: center;
  margin: 0;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.purpose-statement {
  position: relative;
  isolation: isolate;
  border-right: 1px solid rgba(185, 145, 72, 0.42);
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.86), transparent 12rem),
    linear-gradient(145deg, #f2d7dc 0%, #faece9 58%, #f4e3bd 100%);
  color: var(--muted);
  overflow: hidden;
}

.purpose-statement::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: -5rem;
  width: 13rem;
  aspect-ratio: 1;
  border: 1px solid rgba(185, 145, 72, 0.46);
  border-radius: 50%;
}

.purpose-statement .eyebrow {
  color: var(--rose-600);
}

.purpose-statement > p:nth-child(2) {
  max-width: 15ch;
  margin-bottom: 1.5rem;
  margin-inline: auto;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.7vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.purpose-statement > p:nth-child(2) span {
  display: inline;
}

.purpose-statement footer {
  color: var(--rose-600);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purpose-action {
  background:
    linear-gradient(rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.48)),
    var(--pink-100);
}

.purpose-action h2 {
  max-width: 15ch;
}

.purpose-action > p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--muted);
}

.purpose-action .button {
  margin-top: 0.4rem;
}

.final-cta {
  background:
    radial-gradient(circle at 88% 10%, rgba(228, 200, 137, 0.2), transparent 22rem),
    linear-gradient(135deg, var(--pink-100), #f9dfe4);
  padding-block: clamp(3rem, 5vw, 5rem);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid rgba(168, 76, 97, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.final-cta-inner > div {
  display: grid;
  align-content: center;
}

.final-cta-inner h2 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 4.2vw, 4.15rem);
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 38rem;
}

.final-cta-points {
  display: grid;
  max-width: 34rem;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.final-cta-points li {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(168, 76, 97, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--plum-800);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: left;
}

.final-cta-points span {
  width: 1.8rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-600);
  color: var(--white);
  font-size: 0.75rem;
}

.final-cta-action {
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  justify-items: stretch;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(168, 76, 97, 0.2);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.final-cta-action-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.final-cta-action-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-inline: auto;
}

.final-cta-action-controls {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.final-cta-action h3 {
  max-width: 15ch;
  margin-bottom: 0.7rem;
  margin-inline: auto;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  text-align: center;
}

.final-cta-action .button {
  width: 100%;
  margin-top: 0;
}

.final-cta-action .text-link {
  justify-self: center;
  margin-top: 0;
  text-align: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.75rem, 6vw, 6rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(228, 200, 137, 0.18), transparent 23rem),
    linear-gradient(135deg, var(--pink-50), #f9e5e7);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: -11rem;
  border: 1px solid rgba(168, 76, 97, 0.2);
  border-radius: 50%;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 7vw, 6.5rem);
}

.page-hero .hero-intro {
  margin-bottom: 0;
}

.page-hero-card {
  position: relative;
  min-height: 17rem;
  display: grid;
  align-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(185, 145, 72, 0.55);
  border-radius: 50% 50% var(--radius-md) var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
}

.page-hero-card:hover {
  box-shadow: 0 28px 70px rgba(76, 34, 53, 0.15);
  transform: translateY(-5px);
}

.classes-hero .page-hero-grid > div:first-child {
  animation: page-copy-enter 760ms 80ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.classes-hero .page-hero-card {
  animation: page-card-enter 900ms 150ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
}

.classes-hero .page-hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 6rem);
}

.classes-hero .page-hero-grid > div:first-child,
.classes-hero .page-hero-card {
  text-align: center;
}

.classes-hero h1,
.classes-hero .hero-intro {
  margin-inline: auto;
}

.classes-hero .page-hero-card {
  width: min(100%, 32rem);
  justify-self: center;
  border-radius: var(--radius-lg);
}

.classes-hero .page-hero-card strong {
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  line-height: 1.05;
}

.page-hero-card p {
  margin-bottom: 0.35rem;
  color: var(--rose-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero-card strong {
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
}

.page-hero-card span {
  margin-top: 1rem;
  color: var(--muted);
}

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

.schedule-heading {
  max-width: 62rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1rem;
  margin-inline: auto;
  text-align: center;
}

.schedule-heading h2 {
  margin-bottom: 0;
}

.schedule-heading > p {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--muted);
}

.schedule-table-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.schedule-table th,
.schedule-table td {
  padding: 1.55rem clamp(1.1rem, 3vw, 2.25rem);
  text-align: center;
  vertical-align: middle;
}

.schedule-table thead {
  background: var(--rose-800);
  color: var(--white);
}

.schedule-table thead th {
  color: var(--gold-300);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.schedule-table tbody tr + tr {
  border-top: 1px solid var(--border);
}

.schedule-table tbody tr:nth-child(even) {
  background: var(--pink-50);
}

.schedule-table td span,
.schedule-subtitle {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.schedule-table td strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--plum-900);
}

.schedule-age {
  display: block;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
}

.schedule-note-wide {
  margin-top: 2rem;
  padding: 2rem;
}

.schedule-note-wide p:last-child {
  max-width: 45rem;
}

.levels-section {
  background: var(--pink-100);
}

.levels-section.section-pad {
  padding-block: clamp(2.75rem, 4vw, 3.75rem);
}

.levels-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.levels-intro h2 {
  max-width: 10ch;
  margin-bottom: 1rem;
}

.levels-intro > p:last-child {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--muted);
}

.level-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.level-list article {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  min-height: 0;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(50, 29, 42, 0.15);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.level-list article:hover {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.level-list article:last-child {
  border-bottom: 1px solid rgba(50, 29, 42, 0.15);
}

.level-list article > span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 76, 97, 0.24);
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-600);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.level-list h3 {
  margin-bottom: 0.25rem;
  font-size: 1.55rem;
}

.level-list p {
  max-width: 37rem;
  margin-bottom: 0;
  color: var(--muted);
}

.tuition-section {
  background: var(--pink-50);
}

.tuition-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: 2rem;
}

.tuition-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.tuition-heading > p {
  max-width: 38rem;
  margin-bottom: 0;
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2.75rem);
  border-left: 2px solid rgba(185, 145, 72, 0.5);
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  position: relative;
  min-height: 16rem;
  display: grid;
  grid-template-rows: 1.75rem 2.85rem 4.75rem 1.35rem;
  align-content: center;
  align-items: center;
  justify-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  text-align: center;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pricing-card > .pricing-label {
  grid-row: 1;
}

.pricing-card > h3 {
  grid-row: 2;
}

.pricing-card > .pricing-amount {
  grid-row: 3;
}

.pricing-card > .pricing-detail {
  grid-row: 4;
}

.pricing-card:hover {
  box-shadow: 0 20px 44px rgba(76, 34, 53, 0.12);
  transform: translateY(-5px);
}

.pricing-card-primary {
  grid-template-rows: 1.75rem minmax(7.6rem, 1fr) 1.35rem;
  border-color: var(--berry-900);
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.14), transparent 11rem),
    linear-gradient(145deg, var(--berry-800), var(--berry-900));
  color: rgba(255, 255, 255, 0.82);
}

.pricing-card-primary > .pricing-label {
  grid-row: 1;
}

.pricing-card-primary > .pricing-amount {
  grid-row: 2;
  align-self: stretch;
}

.pricing-card-primary > .pricing-detail {
  grid-row: 3;
}

.pricing-label {
  margin-bottom: 0;
  color: var(--rose-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card h3 {
  align-self: center;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}

.pricing-amount {
  margin-bottom: 0;
  color: var(--plum-900);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(4rem, 7vw, 5.8rem);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.pricing-amount-primary {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.02em;
  margin-inline: auto;
  transform: translateX(-0.65rem);
}

.pricing-amount-primary .pricing-currency {
  position: static;
  margin-right: -0.02em;
  font-family: var(--font-body);
  font-size: 0.48em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.pricing-amount-primary .pricing-value {
  display: block;
  font-size: clamp(5rem, 8vw, 6.8rem);
  letter-spacing: -0.065em;
}

.pricing-amount-small {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}

.pricing-detail {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-detail span {
  display: block;
  margin-top: 0.2rem;
}

.pricing-card-primary .pricing-label,
.pricing-card-primary .pricing-detail {
  color: var(--gold-300);
}

.pricing-card-primary .pricing-amount {
  color: var(--white);
}

.recital-strip {
  display: grid;
  grid-template-columns: 4.5rem max-content minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(185, 145, 72, 0.32);
  border-radius: var(--radius-sm);
  background: #fffaf0;
}

.recital-alert-mark {
  width: 4.5rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(185, 145, 72, 0.42);
  border-radius: 50%;
  background: var(--white);
  color: var(--rose-600);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: var(--shadow-card);
}

.recital-strip .eyebrow {
  margin-bottom: 0.25rem;
}

.recital-strip h3,
.recital-strip > p {
  margin-bottom: 0;
}

.recital-strip h3 {
  font-size: 1.45rem;
}

.recital-strip > p {
  color: var(--muted);
  font-size: 0.95rem;
}

.get-started-hero h1 {
  max-width: 12ch;
}

.get-started-hero .get-started-intro {
  animation: page-copy-enter 760ms 80ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.get-started-hero .process-list li {
  animation: process-step-enter 720ms cubic-bezier(0.18, 0.82, 0.22, 1) both;
}

.get-started-hero .process-list li:nth-child(1) {
  animation-delay: 180ms;
}

.get-started-hero .process-list li:nth-child(2) {
  animation-delay: 320ms;
}

.get-started-hero .process-list li:nth-child(3) {
  animation-delay: 460ms;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 1rem;
  padding-block: 1.15rem;
  border-top: 1px solid rgba(50, 29, 42, 0.14);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(50, 29, 42, 0.14);
}

.process-list li > span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--rose-600);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--plum-900);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: center;
  gap: 2.25rem;
}

.form-intro {
  position: static;
  width: 100%;
  min-width: 0;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(12rem, 0.56fr) minmax(0, 1.44fr);
  grid-template-areas:
    "eyebrow copy"
    "title copy"
    "title note";
  align-items: center;
  gap: 0.35rem clamp(2rem, 5vw, 5rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(185, 145, 72, 0.28);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(253, 236, 237, 0.7);
  text-align: left;
}

.form-intro > .eyebrow {
  grid-area: eyebrow;
  align-self: end;
}

.form-intro > h2 {
  grid-area: title;
  align-self: start;
  margin-bottom: 0;
}

.form-intro > p:not(.eyebrow):not(.form-intro-note) {
  grid-area: copy;
  max-width: none;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.required-note {
  white-space: nowrap;
}

.form-intro .form-intro-note {
  grid-area: note;
  width: 100%;
  max-width: 100%;
  margin-top: 0.55rem;
  margin-bottom: 0;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(185, 145, 72, 0.38);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  color: var(--plum-800);
  font-size: 0.86rem;
}

.interest-form {
  width: 100%;
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--pink-50);
  box-shadow: var(--shadow-soft);
}

.interest-form fieldset {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
  border: 0;
}

.interest-form:has(.custom-select[data-open="true"], .custom-date[data-open="true"]) {
  position: relative;
  z-index: 500;
}

.interest-form fieldset:has(.custom-select[data-open="true"], .custom-date[data-open="true"]) {
  z-index: 600;
}

.interest-form fieldset + fieldset {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}

.interest-form legend {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.form-grid {
  display: grid;
  gap: 1.2rem;
}

.form-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.primary-dancer-grid {
  grid-template-columns: minmax(16rem, 0.7fr) minmax(24rem, 1.3fr);
}

.field-short {
  width: 100%;
  max-width: 32rem;
}

.full-field {
  grid-column: 1 / -1;
}

.field label,
.group-label {
  display: block;
  margin: 0 0 0.5rem;
  color: var(--plum-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.optional {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--control-border);
  border-radius: 0.7rem;
  background: var(--white);
  color: var(--ink);
}

.field select {
  padding-right: 3rem;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--plum-900) 50%),
    linear-gradient(135deg, var(--plum-900) 50%, transparent 50%),
    linear-gradient(to right, var(--border), var(--border));
  background-position:
    calc(100% - 1.25rem) calc(50% - 0.12rem),
    calc(100% - 0.9rem) calc(50% - 0.12rem),
    calc(100% - 2.35rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.42rem 0.42rem, 0.42rem 0.42rem, 1px 1.7rem;
  cursor: pointer;
}

.field select option {
  background: var(--white);
  color: var(--ink);
}

.field select option:checked {
  background: var(--plum-900);
  color: var(--white);
}

.field select.select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.birth-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.birth-picker-control {
  min-width: 0;
}

.birth-picker-control > label {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-date {
  position: relative;
  z-index: 1;
}

.custom-date[data-open="true"] {
  z-index: 1400;
}

.custom-date .date-text-input {
  padding-right: 3.75rem;
}

.date-picker-trigger {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--rose-600);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.date-picker-trigger:hover,
.custom-date[data-open="true"] .date-picker-trigger {
  border-color: rgba(168, 76, 97, 0.24);
  background: var(--pink-100);
}

.date-picker-trigger:focus-visible {
  border-color: var(--focus);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.date-picker-icon {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  border: 1.5px solid var(--rose-600);
  border-radius: 0.3rem;
}

.date-picker-icon::before {
  content: "";
  position: absolute;
  top: 0.25rem;
  right: -1px;
  left: -1px;
  height: 1.5px;
  background: var(--rose-600);
}

.date-picker-icon::after {
  content: "";
  position: absolute;
  top: -0.2rem;
  right: 0.25rem;
  left: 0.25rem;
  height: 0.4rem;
  border-right: 1.5px solid var(--rose-600);
  border-left: 1.5px solid var(--rose-600);
}

.date-picker-panel {
  position: absolute;
  z-index: 1500;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(22rem, calc(100vw - 2rem));
  display: none;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(50, 29, 42, 0.16);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 26px 60px rgba(50, 29, 42, 0.22);
}

.custom-date[data-open="true"] .date-picker-panel {
  display: grid;
}

.date-picker-toolbar {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr) 2.25rem;
  align-items: center;
  gap: 0.35rem;
}

.date-picker-nav {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--pink-50);
  color: var(--plum-900);
  line-height: 1;
  cursor: pointer;
}

.date-picker-nav svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.date-picker-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.date-picker-nav:focus-visible,
.date-picker-jump-button:focus-visible,
.date-picker-jump-option:focus-visible,
.date-picker-day:focus-visible,
.date-picker-action:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.date-picker-selects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.date-picker-jump {
  position: relative;
  min-width: 0;
}

.date-picker-jump[data-open="true"] {
  z-index: 20;
}

.date-picker-jump-button {
  width: 100%;
  min-width: 0;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--control-border);
  border-radius: 0.55rem;
  background: linear-gradient(180deg, var(--white), var(--pink-50));
  color: var(--plum-900);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.date-picker-jump[data-open="true"] .date-picker-jump-button {
  border-color: var(--rose-600);
  background: var(--pink-100);
}

.date-picker-jump-chevron {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  transition: transform 180ms ease;
}

.date-picker-jump[data-open="true"] .date-picker-jump-chevron {
  transform: translateY(0.12rem) rotate(225deg);
}

.date-picker-jump-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 0.35rem);
  left: 0;
  width: 100%;
  min-width: 6.75rem;
  max-height: 12rem;
  padding: 0.35rem;
  border: 1px solid rgba(50, 29, 42, 0.16);
  border-radius: 0.7rem;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(50, 29, 42, 0.2);
  overflow-y: auto;
  scrollbar-width: thin;
}

.date-picker-jump:last-child .date-picker-jump-menu {
  right: 0;
  left: auto;
}

.date-picker-jump-option {
  width: 100%;
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  padding: 0.45rem 0.65rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: var(--plum-800);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.date-picker-jump-option:hover,
.date-picker-jump-option:focus-visible {
  background: var(--pink-100);
  color: var(--plum-900);
}

.date-picker-jump-option[aria-selected="true"] {
  background: var(--plum-900);
  color: var(--white);
}

.date-picker-jump-option:disabled {
  color: rgba(108, 89, 100, 0.45);
  cursor: not-allowed;
}

.date-picker-weekdays,
.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.date-picker-weekdays span {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.date-picker-day,
.date-picker-blank {
  height: 2.1rem;
}

.date-picker-day {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--plum-900);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.date-picker-day:hover {
  border-color: var(--pink-400);
  background: var(--pink-100);
}

.date-picker-day[aria-selected="true"] {
  border-color: var(--plum-900);
  background: var(--plum-900);
  color: var(--white);
}

.date-picker-day[data-today="true"]:not([aria-selected="true"]) {
  border-color: var(--gold-500);
  color: var(--rose-600);
}

.date-picker-day:disabled {
  color: rgba(108, 89, 100, 0.35);
  cursor: not-allowed;
}

.date-picker-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.date-picker-action {
  padding: 0.35rem 0.5rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: var(--rose-600);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

.date-picker-action:hover {
  background: var(--pink-100);
  color: var(--plum-900);
}

.additional-dancers-help {
  width: 100%;
  max-width: none;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 250, 240, 0.78);
}

.custom-select {
  position: relative;
  z-index: 1;
}

.custom-select[data-open="true"] {
  z-index: 1000;
}

.custom-select-button {
  width: 100%;
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--control-border);
  border-radius: 0.7rem;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.custom-select-button:hover {
  border-color: var(--rose-600);
  box-shadow: 0 8px 18px rgba(76, 34, 53, 0.08);
}

.custom-select-button:focus-visible,
.custom-select[data-invalid="true"] .custom-select-button {
  border-color: var(--focus);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.custom-select-chevron {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  border-radius: 50%;
  background: var(--pink-100);
  transition: transform 220ms ease, background-color 220ms ease;
}

.custom-select-chevron::before,
.custom-select-chevron::after {
  content: "";
  position: absolute;
  top: 0.62rem;
  width: 0.5rem;
  height: 2px;
  background: var(--rose-600);
}

.custom-select-chevron::before {
  left: 0.24rem;
  transform: rotate(45deg);
}

.custom-select-chevron::after {
  right: 0.24rem;
  transform: rotate(-45deg);
}

.custom-select[data-open="true"] .custom-select-chevron {
  background: var(--plum-900);
  transform: rotate(180deg);
}

.custom-select[data-open="true"] .custom-select-chevron::before,
.custom-select[data-open="true"] .custom-select-chevron::after {
  background: var(--white);
}

.custom-select-menu {
  position: absolute;
  z-index: 1500;
  top: calc(100% + 0.45rem);
  right: 0;
  left: 0;
  display: none;
  max-height: min(20rem, 50vh);
  margin: 0;
  padding: 0.45rem;
  border: 1px solid rgba(50, 29, 42, 0.15);
  border-radius: 0.85rem;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(50, 29, 42, 0.18);
  list-style: none;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.45rem) scale(0.98);
  transform-origin: top;
  transition: opacity 180ms ease, transform 180ms ease;
}

.custom-select[data-open="true"] .custom-select-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select[data-placement="top"] .custom-select-menu {
  top: auto;
  bottom: calc(100% + 0.45rem);
  transform-origin: bottom;
}

.custom-select-option {
  padding: 0.7rem 0.85rem;
  border-radius: 0.55rem;
  color: var(--plum-800);
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, padding-left 150ms ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  outline: 0;
  background: var(--pink-100);
  color: var(--plum-900);
  padding-left: 1rem;
}

.custom-select-option[aria-selected="true"] {
  background: var(--plum-900);
  color: var(--white);
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--rose-600);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--focus);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.choice-group {
  margin-top: 0;
}

.choice-row,
.day-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.day-grid .choice,
.day-grid .choice span {
  width: 100%;
}

.day-grid .choice span {
  justify-content: center;
}

.choice {
  position: relative;
  display: inline-flex;
  -webkit-tap-highlight-color: transparent;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice span {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--control-border);
  border-radius: 999px;
  background: var(--white);
  color: var(--plum-800);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.choice:hover span {
  border-color: var(--rose-600);
  box-shadow: 0 8px 18px rgba(76, 34, 53, 0.08);
  transform: translateY(-2px);
}

.choice input:checked + span {
  border-color: var(--plum-900);
  background: var(--plum-900);
  color: var(--white);
  box-shadow: 0 9px 22px rgba(50, 29, 42, 0.16);
}

.choice input:focus-visible + span {
  border-color: var(--focus);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.field-help {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-error-summary {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  border: 2px solid #a63452;
  border-radius: var(--radius-sm);
  background: #fff0f3;
  color: #712238;
}

.form-error-summary[hidden] {
  display: none;
}

.form-error-summary:focus {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.form-error-summary strong,
.form-error-summary p {
  margin-bottom: 0.35rem;
}

.form-error-summary ul {
  margin: 0.55rem 0 0;
  padding-left: 1.25rem;
}

.form-error-summary a {
  color: inherit;
  font-weight: 750;
}

.field-error {
  margin: 0.4rem 0 0;
  color: #932f4a;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.4;
}

.field-error:empty {
  display: none;
}

.field.is-invalid input,
.field.is-invalid select,
.choice-group.is-invalid,
.consent-choice.is-invalid {
  border-color: #a63452;
  background-color: #fff5f7;
}

.field.is-invalid input,
.field.is-invalid select,
.custom-select[data-invalid="true"] .custom-select-button {
  box-shadow: 0 0 0 3px rgba(166, 52, 82, 0.14);
}

.choice-group.is-invalid .choice span,
.consent-choice.is-invalid input {
  border-color: #a63452;
}

.contact-method-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.65);
}

.contact-method-group .group-label {
  margin: 0;
}

.contact-method-group .choice-row,
.compact-choice-group .choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, 1fr));
  width: 100%;
}

.contact-method-group .choice-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-method-group .choice,
.contact-method-group .choice span,
.compact-choice-group .choice,
.compact-choice-group .choice span {
  width: 100%;
}

.contact-method-group .choice span,
.compact-choice-group .choice span {
  justify-content: center;
}

.compact-choice-group {
  align-self: end;
}

.consent-choice {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.8rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--plum-800);
  cursor: pointer;
}

.consent-choice .field-error {
  grid-column: 2;
}

.consent-choice input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.25rem;
  accent-color: var(--plum-900);
}

.submit-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.25rem;
  text-align: left;
}

.submit-row p {
  max-width: none;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.submit-row p[data-state="error"] {
  color: #932f4a;
  font-weight: 750;
}

.submit-row .button {
  width: 100%;
}

.contact-section {
  background: var(--pink-100);
}

.contact-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(185, 145, 72, 0.38);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.contact-heading h2,
.contact-heading p {
  margin-inline: auto;
}

.contact-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-links {
  min-width: 0;
  width: min(100%, 62rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0;
}

.contact-links a {
  max-width: 100%;
  min-width: 0;
  display: grid;
  justify-items: center;
  padding: 1rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.contact-links a:hover {
  border-color: var(--rose-600);
  box-shadow: 0 18px 38px rgba(76, 34, 53, 0.12);
  transform: translateY(-4px);
}

.contact-links span {
  color: var(--rose-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-links strong {
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.location-summary {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  text-align: center;
}

.location-summary span {
  color: var(--rose-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.location-summary strong {
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1.35rem;
  text-align: center;
}

.faq-grid h2 {
  margin-inline: auto;
}

.faq-list {
  width: 100%;
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--pink-50);
  box-shadow: 0 8px 24px rgba(76, 34, 53, 0.05);
  text-align: left;
  transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}

.faq-list details[open] {
  border-color: rgba(168, 76, 97, 0.32);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 1.3rem;
  color: var(--plum-900);
  font-family: var(--font-display);
  font-size: 1.3rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: none;
}

.faq-icon {
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 2.35rem;
  border: 1px solid rgba(168, 76, 97, 0.2);
  border-radius: 50%;
  background: var(--pink-100);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 240ms ease, border-color 240ms ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 1.05rem;
  width: 0.62rem;
  height: 2px;
  border-radius: 999px;
  background: var(--rose-600);
  transition: background-color 220ms ease;
}

.faq-icon::before {
  left: 0.64rem;
  transform: rotate(45deg);
}

.faq-icon::after {
  right: 0.64rem;
  left: auto;
  transform: rotate(-45deg);
}

.faq-list details.is-open .faq-icon {
  border-color: var(--plum-900);
  background: var(--plum-900);
  transform: rotate(180deg);
}

.faq-list details.is-open .faq-icon::before,
.faq-list details.is-open .faq-icon::after {
  background: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 340ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-list details.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-list details p {
  margin: 0;
  padding: 0 4.8rem 1.4rem 1.3rem;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.error-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vh, 5rem) clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 50% 10%, rgba(233, 156, 167, 0.2), transparent 24rem),
    var(--pink-50);
}

.error-shell {
  width: min(100%, 46rem);
  max-width: 46rem;
  min-width: 0;
  min-height: 0;
  flex: 0 1 auto;
  display: grid;
  justify-items: center;
  margin: auto;
  padding: 0;
  background: transparent;
  overflow: visible;
  text-align: center;
}

.error-shell img,
.error-logo {
  width: 7rem;
  height: 7rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  object-fit: contain;
}

.error-logo {
  background: url("../images/logo-light.jpg") center / contain no-repeat;
}

.error-shell h1 {
  width: 100%;
  max-width: 13ch;
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
  font-size: clamp(2.75rem, 7vw, 5rem);
}

.error-shell > p:not(.eyebrow) {
  width: 100%;
  max-width: 36rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.error-shell .button-row {
  width: 100%;
  justify-content: center;
}

@media (max-width: 40rem) {
  .error-page {
    padding-inline: 1.25rem;
  }

  .error-shell h1 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .error-shell .button-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .error-shell .button-row .button {
    width: min(100%, 18rem);
  }

  .error-shell .button-row .text-link {
    justify-content: center;
    margin-top: 0;
  }
}

.site-footer {
  overflow: hidden;
  padding-top: clamp(2.25rem, 3.5vw, 3.5rem);
  border-top: 1px solid rgba(185, 145, 72, 0.3);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.82), transparent 28rem),
    linear-gradient(135deg, #f9e7ea, #efbec8);
  color: var(--plum-800);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(31rem, 1.18fr);
  align-items: stretch;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: clamp(2.25rem, 3.5vw, 3.5rem);
}

.footer-about {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1rem;
}

.footer-about > p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.footer-brand {
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  text-decoration: none;
}

.footer-brand img {
  width: 4.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 0 2px rgba(185, 145, 72, 0.38), 0 12px 28px rgba(50, 29, 42, 0.12);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.footer-brand:hover img {
  box-shadow: 0 0 0 5px rgba(248, 212, 216, 0.18), 0 16px 34px rgba(50, 29, 42, 0.24);
  transform: rotate(3deg) scale(1.04);
}

.footer-brand > span {
  display: grid;
  gap: 0.2rem;
  text-align: left;
}

.footer-brand strong {
  color: var(--plum-900);
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.footer-brand span {
  font-size: 0.86rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-badges span {
  padding: 0.42rem 0.75rem;
  border: 1px solid rgba(168, 76, 97, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--plum-800);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-action {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  border: 1px solid rgba(185, 145, 72, 0.34);
  border-left: 5px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background:
    radial-gradient(circle at 100% 0, rgba(253, 236, 237, 0.72), transparent 14rem),
    rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 60px rgba(112, 65, 87, 0.12);
}

.footer-action .eyebrow {
  margin-bottom: 0.6rem;
  color: var(--rose-600);
}

.footer-action h2 {
  max-width: none;
  margin-bottom: 0.65rem;
  color: var(--plum-900);
  font-size: clamp(2rem, 2.7vw, 2.65rem);
}

.footer-action > p:last-of-type {
  max-width: 35rem;
  margin-bottom: 1rem;
}

.footer-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-contact-actions a {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(168, 76, 97, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-contact-actions a:hover {
  border-color: var(--rose-600);
  background: var(--white);
  transform: translateY(-2px);
}

.footer-contact-actions span {
  color: var(--rose-600);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-actions strong {
  min-width: 0;
  color: var(--plum-900);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.footer-action-links {
  width: min(100%, 34rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.8rem;
  margin-inline: auto;
}

.footer-action-links > a {
  width: 100%;
  justify-content: center;
}

.footer-button {
  background: var(--rose-800);
  color: var(--white);
}

.footer-button:hover {
  background: var(--rose-600);
}

.facebook-link {
  position: relative;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(168, 76, 97, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--plum-900);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.facebook-link svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 1.35rem;
  fill: currentColor;
}

.facebook-link:hover {
  border-color: var(--rose-600);
  background: var(--white);
  transform: translateY(-2px);
}

.footer-lower {
  min-height: 4.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(112, 65, 87, 0.16);
  font-size: 0.78rem;
}

.footer-nav,
.footer-contact,
.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.footer-nav {
  justify-content: flex-start;
}

.footer-nav a {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--plum-900);
}

.footer-contact {
  justify-content: center;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
  text-align: center;
}

.footer-contact a,
.footer-meta a {
  color: var(--plum-900);
  font-weight: 600;
  text-decoration-color: var(--rose-600);
}

.footer-meta {
  justify-content: flex-end;
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

.reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(2rem) scale(0.98);
  transition: opacity 700ms ease, filter 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-delay-80 { --reveal-delay: 80ms; }
.reveal-delay-120 { --reveal-delay: 120ms; }
.reveal-delay-160 { --reveal-delay: 160ms; }
.reveal-delay-220 { --reveal-delay: 220ms; }
.reveal-delay-240 { --reveal-delay: 240ms; }
.reveal-delay-360 { --reveal-delay: 360ms; }
.reveal-delay-440 { --reveal-delay: 440ms; }
.reveal-delay-660 { --reveal-delay: 660ms; }

.form-intro.reveal {
  transform: translateX(-3rem) rotate(-0.6deg) scale(0.98);
  transition:
    opacity 650ms ease,
    filter 650ms ease,
    transform 820ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.form-intro.reveal.is-visible {
  transform: translateX(0) rotate(0) scale(1);
}

.schedule-heading > div.reveal {
  transform: translateX(-2.5rem) scale(0.98);
}

.schedule-heading > p.reveal {
  transform: translateX(2.5rem) scale(0.98);
}

.schedule-heading > div.reveal.is-visible {
  animation: schedule-title-enter 760ms var(--reveal-delay, 0ms) cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.schedule-heading > p.reveal.is-visible {
  animation: schedule-copy-enter 760ms var(--reveal-delay, 0ms) cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.schedule-table-wrap.reveal {
  transform: translateY(2.6rem) scale(0.95);
  transform-origin: top center;
}

.schedule-table tbody tr.reveal:nth-child(odd) {
  transform: translateX(-1.75rem);
}

.schedule-table tbody tr.reveal:nth-child(even) {
  transform: translateX(1.75rem);
}

.interest-form fieldset.reveal:nth-of-type(odd) {
  transform: translateX(-2.25rem);
}

.interest-form fieldset.reveal:nth-of-type(even) {
  transform: translateX(2.25rem);
}

.process-list li.reveal {
  transform: translateX(1.75rem);
}

.schedule-table tbody tr.reveal,
.interest-form fieldset.reveal,
.consent-choice.reveal,
.submit-row.reveal {
  transform: translateY(1.4rem);
}

.footer-about.reveal {
  transform: translateX(-1.5rem);
}

.footer-action.reveal {
  transform: translateX(1.5rem);
}

.process-list li.reveal.is-visible,
.schedule-table tbody tr.reveal.is-visible,
.interest-form fieldset.reveal.is-visible,
.consent-choice.reveal.is-visible,
.submit-row.reveal.is-visible,
.footer-about.reveal.is-visible,
.footer-action.reveal.is-visible {
  transform: translateX(0);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.schedule-heading > div.reveal.is-visible,
.schedule-heading > p.reveal.is-visible,
.schedule-table-wrap.reveal.is-visible,
.schedule-table tbody tr.reveal.is-visible,
.interest-form fieldset.reveal.is-visible {
  transform: translate(0) scale(1);
}

.hero-copy {
  animation: copy-enter 720ms 80ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes stage-enter {
  from { opacity: 0; transform: translateY(1.5rem) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes schedule-title-enter {
  from { opacity: 0; filter: blur(4px); transform: translateX(-2.5rem) scale(0.98); }
  to { opacity: 1; filter: blur(0); transform: translateX(0) scale(1); }
}

@keyframes schedule-copy-enter {
  from { opacity: 0; filter: blur(4px); transform: translateX(2.5rem) scale(0.98); }
  to { opacity: 1; filter: blur(0); transform: translateX(0) scale(1); }
}

@keyframes stage-float {
  from { transform: translateY(0); }
  to { transform: translateY(-0.45rem); }
}

@keyframes logo-twist {
  from { opacity: 0; transform: perspective(60rem) rotateY(-360deg) scale(0.94); }
  to { opacity: 1; transform: perspective(60rem) rotateY(0deg) scale(1); }
}

@keyframes dancer-orbit {
  from { transform: rotate(60deg); }
  to { transform: rotate(420deg); }
}

@keyframes dancer-pirouette {
  0% { transform: translateX(-50%) rotateZ(-60deg) rotateY(0deg); }
  75% { transform: translateX(-50%) rotateZ(-330deg) rotateY(0deg); }
  79.167% { transform: translateX(-50%) rotateZ(-345deg) rotateY(90deg); }
  83.333% { transform: translateX(-50%) rotateZ(-360deg) rotateY(180deg); }
  87.5% { transform: translateX(-50%) rotateZ(-375deg) rotateY(270deg); }
  91.667% { transform: translateX(-50%) rotateZ(-390deg) rotateY(360deg); }
  100% { transform: translateX(-50%) rotateZ(-420deg) rotateY(360deg); }
}

@media (min-width: 48.01rem) {
  .primary-dancer-grid > .field > label,
  .primary-dancer-grid > .choice-group > .group-label {
    min-height: 3.15rem;
  }

  .primary-dancer-grid > .compact-choice-group {
    align-self: start;
  }
}

@keyframes process-step-enter {
  from { opacity: 0; transform: translateX(2rem); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes copy-enter {
  from { opacity: 0; transform: translateX(-1.5rem); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes page-copy-enter {
  from { opacity: 0; transform: translateX(-2rem); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes page-card-enter {
  0% { opacity: 0; transform: translateX(2.5rem) rotate(3deg) scale(0.94); }
  70% { opacity: 1; transform: translateX(-0.35rem) rotate(-0.5deg) scale(1.01); }
  100% { opacity: 1; transform: translateX(0) rotate(0) scale(1); }
}

@media (min-width: 70.01rem) {
  .tuition-grid {
    grid-template-columns: minmax(22rem, 0.78fr) minmax(0, 1.22fr);
  }

  .tuition-rate-card {
    min-height: 17.5rem;
    max-width: 29rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: center;
    justify-items: center;
    gap: 0.9rem;
    text-align: center;
  }

  .tuition-rate-label,
  .tuition-rate-terms {
    justify-self: center;
    text-align: center;
  }

  .form-layout {
    max-width: 78rem;
    gap: 2rem;
  }

  .form-intro {
    isolation: isolate;
    position: relative;
    grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
    grid-template-areas:
      "eyebrow copy"
      "title copy"
      "title note";
    gap: 0.45rem clamp(3rem, 5vw, 5.25rem);
    padding: 2.5rem 3rem;
    border: 1px solid rgba(50, 29, 42, 0.12);
    border-left: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(90deg, var(--berry-800) 0 38.5%, rgba(255, 250, 249, 0.96) 38.5% 100%);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .form-intro::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -9rem;
    left: -5rem;
    width: 22rem;
    height: 22rem;
    border: 1px solid rgba(228, 200, 137, 0.24);
    border-radius: 50%;
  }

  .form-intro > * {
    position: relative;
    z-index: 1;
  }

  .form-intro > .eyebrow {
    color: var(--gold-300);
  }

  .form-intro > h2 {
    max-width: 10ch;
    color: var(--white);
    font-size: clamp(2.9rem, 4vw, 4.15rem);
    line-height: 0.98;
  }

  .form-intro > p:not(.eyebrow):not(.form-intro-note) {
    max-width: 42rem;
    color: var(--plum-800);
    font-size: 1rem;
    line-height: 1.7;
  }

  .form-intro .form-intro-note {
    margin-top: 0.8rem;
    padding: 0.85rem 1rem;
    border-color: rgba(185, 145, 72, 0.32);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 24px rgba(76, 34, 53, 0.06);
  }

  .interest-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .interest-form .form-error-summary {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .interest-form fieldset {
    align-content: start;
    gap: 1.25rem;
    padding: 2rem;
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold-500);
    border-radius: var(--radius-md);
    background:
      radial-gradient(circle at 100% 0, rgba(253, 236, 237, 0.92), transparent 17rem),
      rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
  }

  .interest-form fieldset + fieldset {
    margin-top: 0;
    padding-top: 2rem;
    border-top: 4px solid var(--gold-500);
  }

  .interest-form fieldset:nth-of-type(3) {
    grid-column: 1 / -1;
    background:
      radial-gradient(circle at 0 0, rgba(253, 236, 237, 0.96), transparent 24rem),
      rgba(255, 255, 255, 0.94);
  }

  .interest-form legend {
    width: auto;
    padding-right: 1rem;
    font-size: 2rem;
  }

  .interest-form fieldset:first-of-type .field-short,
  .interest-form .primary-dancer-grid .field-short {
    max-width: none;
  }

  .interest-form .primary-dancer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interest-form fieldset:nth-of-type(3) > .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interest-form fieldset:nth-of-type(3) > .form-grid .field:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .interest-form fieldset:nth-of-type(3) > .form-grid .field:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .consent-choice,
  .submit-row {
    min-height: 7.5rem;
    margin-top: 0;
    padding: 1.25rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
  }

  .consent-choice {
    align-content: center;
    border-top: 1px solid var(--border);
  }

  .submit-row {
    grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
    background: var(--pink-100);
  }

  .submit-row p {
    white-space: normal;
  }
}

@media (max-width: 70rem) {
  .class-preview-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .split-heading {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.65rem;
    text-align: center;
  }

  .split-heading h2 {
    max-width: 16ch;
    font-size: clamp(2.65rem, 5vw, 3.65rem);
  }

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

  .final-cta-action {
    justify-items: center;
    text-align: center;
  }

  .final-cta-action h3,
  .final-cta-action p {
    margin-inline: auto;
  }

  .final-cta-action .text-link {
    justify-self: center;
    text-align: center;
  }

  .tuition-grid > div:last-child {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .tuition-grid > div:last-child h2,
  .tuition-grid > div:last-child .eyebrow,
  .tuition-grid > div:last-child .text-link {
    width: fit-content;
    margin-inline: auto;
    text-align: center;
  }

  .tuition-grid > div:last-child h2 {
    max-width: 12ch;
  }
}

@media (max-width: 70rem) {
  .hero-shell {
    grid-template-columns: minmax(0, 1.18fr) minmax(15rem, 0.82fr);
    gap: 2rem;
  }

  .hero-visual {
    min-height: auto;
    align-self: start;
    gap: 0.75rem;
    padding-top: 1.25rem;
  }

  .logo-orbit-stage {
    width: min(100%, 18rem);
  }

  .verse-note {
    width: min(100%, 17rem);
    padding: 0.75rem 0.9rem;
  }

  .hero-facts {
    margin-top: 2.25rem;
  }

  .brand-place {
    display: none;
  }

  .final-cta-points {
    width: min(100%, 34rem);
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
  }

  .footer-action {
    width: min(100%, 54rem);
    text-align: left;
  }

  .footer-about {
    width: min(100%, 54rem);
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .footer-about > p {
    grid-column: auto;
    grid-row: auto;
    text-align: center;
  }

  .footer-badges {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
  }

  .footer-lower {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.75rem;
    padding-block: 1.25rem;
    text-align: center;
  }

  .footer-meta {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
  }

  .footer-brand > span {
    text-align: center;
  }

  .footer-action {
    border-left: 1px solid rgba(185, 145, 72, 0.34);
    border-top: 4px solid var(--gold-500);
    border-radius: var(--radius-md);
    text-align: center;
  }

  .footer-action h2,
  .footer-action > p:last-of-type {
    margin-inline: auto;
  }

  .footer-contact {
    width: min(100%, 40rem);
  }

  .footer-nav {
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .split-heading h2 {
    max-width: 14ch;
  }

}

@media (min-width: 48.01rem) and (max-width: 70rem) {
  .hero {
    padding-block: clamp(3.5rem, 6vw, 4.5rem);
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(17rem, 0.92fr);
    align-items: center;
    gap: 1.5rem;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy .hero-intro {
    margin-inline: auto;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(3rem, 6.4vw, 3.6rem);
  }

  .hero-copy .button-row {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    align-self: center;
    gap: 0.9rem;
    padding-top: 0;
  }

  .logo-orbit-stage {
    width: min(100%, 19rem);
  }

  .verse-note {
    width: min(100%, 17.5rem);
  }

  .welcome-grid {
    grid-template-columns: minmax(15rem, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid rgba(185, 145, 72, 0.26);
    border-left: 4px solid var(--gold-500);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(253, 236, 237, 0.5);
  }

  .welcome-grid h2 {
    max-width: 13ch;
    font-size: clamp(2.15rem, 4.4vw, 2.75rem);
  }

  .welcome-copy {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .welcome-copy > p:last-child {
    max-width: none;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(185, 145, 72, 0.42);
    border-left: 0;
    border-radius: 0;
    background: transparent;
  }

  .class-preview-layout {
    gap: 1.25rem;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    justify-items: start;
    gap: 1.25rem;
    text-align: left;
  }

  .split-heading > div {
    min-width: 0;
  }

  .split-heading > .text-link {
    justify-self: end;
    margin-bottom: 0.45rem;
  }

  .split-heading h2 {
    max-width: none;
    font-size: clamp(2.35rem, 4.6vw, 2.85rem);
    white-space: nowrap;
  }

  .age-card {
    min-height: 14.5rem;
  }

  .tuition-grid {
    grid-template-columns: minmax(17rem, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 2rem;
  }

  .tuition-grid > div:last-child {
    order: initial;
    width: auto;
    display: grid;
    justify-items: start;
    margin-inline: 0;
    text-align: left;
  }

  .tuition-grid > div:last-child h2,
  .tuition-grid > div:last-child .eyebrow,
  .tuition-grid > div:last-child .text-link {
    width: auto;
    margin-inline: 0;
    text-align: left;
  }

  .tuition-grid > div:last-child h2 {
    max-width: 12ch;
  }

  .tuition-callout p:not(.eyebrow) {
    margin-inline: 0;
  }

  .tuition-rate-card {
    min-height: 15.5rem;
    max-width: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-content: center;
    justify-items: center;
    gap: 0.65rem;
    padding: 1.75rem;
    text-align: center;
  }

  .tuition-rate-label,
  .tuition-rate-terms {
    justify-self: center;
    text-align: center;
  }

  .purpose-next-grid {
    border-color: rgba(185, 145, 72, 0.34);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 24px 55px rgba(112, 65, 87, 0.14);
  }

  .purpose-statement {
    position: relative;
    isolation: isolate;
    border-right: 1px solid rgba(185, 145, 72, 0.42);
    background:
      radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.86), transparent 12rem),
      linear-gradient(145deg, #f2d7dc 0%, #faece9 58%, #f4e3bd 100%);
    color: var(--muted);
    overflow: hidden;
  }

  .purpose-statement::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -5rem;
    bottom: -5rem;
    width: 13rem;
    aspect-ratio: 1;
    border: 1px solid rgba(185, 145, 72, 0.46);
    border-radius: 50%;
  }

  .purpose-statement .eyebrow {
    color: var(--rose-600);
  }

  .purpose-statement > p:nth-child(2) {
    color: var(--plum-900);
  }

  .purpose-statement footer {
    color: var(--rose-600);
  }

  .schedule-heading {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .schedule-table-wrap {
    transform-origin: top center;
  }

  .recital-strip {
    grid-template-columns: 4rem minmax(12rem, 0.72fr) minmax(0, 1.28fr);
    gap: 1.15rem;
    padding: 1rem 1.15rem;
  }

  .recital-alert-mark {
    width: 4rem;
  }

  .recital-strip > p {
    padding: 0.8rem 1rem;
    border-left: 2px solid rgba(185, 145, 72, 0.52);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(255, 255, 255, 0.62);
    line-height: 1.55;
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    align-items: stretch;
    gap: 1.25rem;
  }

  .final-cta-copy {
    justify-items: start;
    text-align: left;
  }

  .final-cta-inner h2 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 5.2vw, 3.35rem);
  }

  .final-cta-action {
    padding: 1.5rem;
  }

  .final-cta-action .text-link {
    justify-self: center;
    text-align: center;
  }

  .form-intro {
    isolation: isolate;
    position: relative;
    grid-template-columns: minmax(15rem, 0.78fr) minmax(0, 1.22fr);
    grid-template-areas:
      "eyebrow copy"
      "title copy"
      "title note";
    gap: 0.4rem 2rem;
    padding: 2rem;
    border: 1px solid rgba(50, 29, 42, 0.12);
    border-left: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(90deg, var(--berry-800) 0 39%, rgba(255, 250, 249, 0.96) 39% 100%);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .form-intro::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -8rem;
    left: -6rem;
    width: 20rem;
    height: 20rem;
    border: 1px solid rgba(228, 200, 137, 0.24);
    border-radius: 50%;
  }

  .form-intro > * {
    position: relative;
    z-index: 1;
  }

  .form-intro > .eyebrow {
    color: var(--gold-300);
  }

  .form-intro > h2 {
    max-width: 10ch;
    color: var(--white);
    font-size: clamp(2.55rem, 5vw, 3.35rem);
    line-height: 1;
  }

  .form-intro > p:not(.eyebrow):not(.form-intro-note) {
    color: var(--plum-800);
    line-height: 1.65;
  }

  .form-intro .form-intro-note {
    margin-top: 0.65rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 24px rgba(76, 34, 53, 0.06);
  }

  .interest-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .interest-form .form-error-summary {
    margin-bottom: 0;
  }

  .interest-form fieldset,
  .interest-form fieldset + fieldset {
    align-content: start;
    gap: 1.25rem;
    margin-top: 0;
    padding: 2rem;
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold-500);
    border-radius: var(--radius-md);
    background:
      radial-gradient(circle at 100% 0, rgba(253, 236, 237, 0.92), transparent 18rem),
      rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
  }

  .interest-form fieldset:nth-of-type(3) {
    background:
      radial-gradient(circle at 0 0, rgba(253, 236, 237, 0.96), transparent 24rem),
      rgba(255, 255, 255, 0.94);
  }

  .interest-form legend {
    width: auto;
    padding-right: 1rem;
    font-size: 2rem;
  }

  .interest-form fieldset:first-of-type .form-grid.two-column,
  .form-grid.two-column.primary-dancer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interest-form fieldset:first-of-type .field.full-field {
    grid-column: 1 / -1;
    max-width: none;
  }

  .interest-form fieldset:first-of-type .choice-group.full-field {
    grid-column: 1 / -1;
  }

  .interest-form .primary-dancer-grid .field-short {
    max-width: none;
  }

  .consent-choice,
  .submit-row {
    min-height: 7.25rem;
    margin-top: 0;
    padding: 1.25rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
  }

  .consent-choice {
    align-content: center;
    border-top: 1px solid var(--border);
  }

  .submit-row {
    grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
    background: var(--pink-100);
  }
}

@media (max-width: 48rem) {
  .content-shell,
  .header-shell,
  .hero-shell {
    width: min(calc(100% - 2rem), var(--container));
  }

  .header-shell {
    min-height: 5rem;
  }

  .brand-mark {
    width: 3.25rem;
    height: 3.25rem;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .js-ready .menu-toggle {
    width: 3.25rem;
    min-width: 3.25rem;
    height: 3.25rem;
    min-height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    border: 1px solid var(--control-border);
    border-radius: 50%;
    background: var(--white);
    color: var(--plum-900);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .menu-toggle-lines {
    width: 1rem;
    display: grid;
    gap: 0.3rem;
  }

  .menu-toggle-lines span {
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:first-child {
    transform: translateY(0.2rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-lines span:last-child {
    transform: translateY(-0.2rem) rotate(-45deg);
  }

  .js-ready .site-nav {
    position: fixed;
    inset: 5.4rem 1rem auto;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .js-ready .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 3.25rem;
  }

  .site-nav .nav-cta {
    margin: 0.25rem 0 0;
    justify-content: center;
  }

  .hero {
    padding-top: 1.75rem;
    background:
      radial-gradient(circle at 7% 10%, rgba(233, 156, 167, 0.17), transparent 17rem),
      linear-gradient(180deg, var(--pink-50) 0%, #fff5f4 52%, #f6dde2 100%);
  }

  .hero-shell,
  .welcome-grid,
  .class-preview-layout,
  .tuition-grid,
  .purpose-next-grid,
  .final-cta-inner,
  .page-hero-grid,
  .schedule-heading,
  .levels-grid,
  .form-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .classes-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .purpose-statement,
  .purpose-action {
    min-height: auto;
    padding: clamp(3rem, 12vw, 4.25rem) clamp(1.35rem, 6vw, 2.25rem);
  }

  .purpose-statement {
    border-right: 0;
    border-bottom: 1px solid rgba(185, 145, 72, 0.42);
  }

  .page-hero-card {
    min-height: 17rem;
  }

  .hero-visual {
    min-height: auto;
    order: -1;
    gap: 0.65rem;
    padding-block: 0;
  }

  .logo-orbit-stage {
    width: min(58vw, 14rem);
  }

  .ballerina-orbit {
    inset: 0;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy .hero-intro {
    margin-inline: auto;
  }

  .hero-copy .button-row {
    width: 100%;
    justify-content: center;
  }

  .hero-facts {
    width: 100%;
    margin-inline: auto;
  }

  .verse-note {
    width: min(100%, 18rem);
    padding: 0.65rem 0.8rem;
  }

  .welcome-grid {
    gap: 1.1rem;
    text-align: center;
  }

  .welcome-grid > div {
    justify-items: center;
  }

  .welcome-copy {
    padding-top: 0;
  }

  .split-heading,
  .schedule-note,
  .final-cta-inner {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .final-cta-inner {
    padding: 1rem;
  }

  .final-cta-copy,
  .final-cta-action {
    justify-items: center;
    text-align: center;
  }

  .final-cta-copy h2,
  .final-cta-copy p,
  .final-cta-action p {
    margin-inline: auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .age-grid {
    grid-template-columns: 1fr;
  }

  .age-card,
  .age-card:last-child {
    min-height: auto;
    grid-column: auto;
  }

  .level-list,
  .pricing-grid {
    max-width: 40rem;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .pricing-card {
    min-height: 14rem;
    grid-template-rows: auto;
    gap: 0.35rem;
  }

  .pricing-card-primary {
    min-height: 17rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-items: center;
    gap: 0.85rem;
    text-align: center;
  }

  .pricing-card-primary > .pricing-label {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    padding-bottom: 0;
    border-bottom: 0;
    text-align: center;
  }

  .pricing-card-primary > .pricing-amount {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    margin-inline: auto;
  }

  .pricing-card-primary > .pricing-detail {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    justify-self: center;
    padding-bottom: 0;
    border-bottom: 0;
    text-align: center;
  }

  .pricing-card:not(.pricing-card-primary) > .pricing-label,
  .pricing-card > h3,
  .pricing-card:not(.pricing-card-primary) > .pricing-amount,
  .pricing-card:not(.pricing-card-primary) > .pricing-detail {
    grid-row: auto;
  }

  .tuition-rate-card {
    max-width: 34rem;
    min-height: 17rem;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-items: center;
    gap: 0.85rem;
    margin-inline: auto;
    text-align: center;
  }

  .tuition-rate-label {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: auto;
    padding-bottom: 0;
    border-bottom: 0;
    text-align: center;
  }

  .tuition-rate-price {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: center;
  }

  .tuition-rate-terms {
    grid-column: 1;
    grid-row: 3;
    align-self: center;
    justify-self: center;
    width: auto;
    padding-bottom: 0;
    border-bottom: 0;
    text-align: center;
  }

  .tuition-grid > div:last-child {
    text-align: center;
  }

  .tuition-callout p:not(.eyebrow) {
    margin-inline: auto;
  }

  .schedule-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .schedule-table,
  .schedule-table tbody,
  .schedule-table tr,
  .schedule-table th,
  .schedule-table td {
    display: block;
  }

  .schedule-table thead {
    display: none;
  }

  .schedule-table tbody {
    display: grid;
    gap: 1rem;
  }

  .schedule-table tbody tr {
    padding: 1.3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-card);
  }

  .schedule-table tbody tr + tr {
    border-top: 1px solid var(--border);
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.7rem 0;
  }

  .schedule-table td {
    border-top: 1px solid var(--border);
  }

  .tuition-heading,
  .recital-strip {
    align-items: center;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .levels-grid {
    gap: 1.5rem;
  }

  .levels-intro {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .levels-intro h2,
  .levels-intro > p:last-child {
    margin-inline: auto;
  }

  .levels-intro::after {
    content: "";
    width: 3.5rem;
    height: 2px;
    margin-top: 0.25rem;
    background: var(--gold-500);
  }

  .tuition-heading {
    gap: 0.75rem;
    padding: 1.3rem 1.1rem;
    border: 1px solid rgba(185, 145, 72, 0.28);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(112, 65, 87, 0.08);
  }

  .tuition-heading h2,
  .tuition-heading > p {
    margin-inline: auto;
  }

  .tuition-heading > p {
    padding: 0;
    border-left: 0;
  }

  .contact-method-group {
    grid-template-columns: 1fr;
  }

  .form-grid.two-column.primary-dancer-grid {
    grid-template-columns: 1fr;
  }

  .submit-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .submit-row p {
    white-space: normal;
  }

  .footer-about {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-about > p,
  .footer-badges {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand > span,
  .footer-about > p {
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .form-intro {
    isolation: isolate;
    position: relative;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "copy"
      "note";
    gap: 0;
    padding: 0;
    border: 1px solid rgba(50, 29, 42, 0.12);
    border-radius: var(--radius-lg);
    background: var(--pink-100);
    box-shadow: var(--shadow-soft);
    text-align: left;
    overflow: hidden;
  }

  .form-intro > .eyebrow {
    width: 100%;
    margin: 0;
    padding: 1.35rem 1.35rem 0.4rem;
    background: var(--berry-800);
    color: var(--gold-300);
  }

  .form-intro > h2 {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 1.35rem 1.45rem;
    background: var(--berry-800);
    color: var(--white);
    font-size: clamp(2.15rem, 9vw, 2.8rem);
    line-height: 1;
  }

  .form-intro > p:not(.eyebrow):not(.form-intro-note) {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.35rem 1.35rem 0.85rem;
    background: transparent;
    color: var(--plum-800);
    line-height: 1.6;
  }

  .form-intro .form-intro-note {
    width: auto;
    max-width: none;
    margin: 0 1.35rem 1.35rem;
    border-color: rgba(185, 145, 72, 0.34);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 24px rgba(76, 34, 53, 0.06);
  }

  .interest-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .interest-form .form-error-summary {
    margin-bottom: 0;
  }

  .interest-form fieldset,
  .interest-form fieldset + fieldset {
    align-content: start;
    gap: 1.15rem;
    margin-top: 0;
    padding: clamp(1.3rem, 5vw, 1.75rem);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold-500);
    border-radius: var(--radius-md);
    background:
      radial-gradient(circle at 100% 0, rgba(253, 236, 237, 0.92), transparent 16rem),
      rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
  }

  .interest-form fieldset:nth-of-type(3) {
    background:
      radial-gradient(circle at 0 0, rgba(253, 236, 237, 0.96), transparent 22rem),
      rgba(255, 255, 255, 0.94);
  }

  .interest-form legend {
    width: auto;
    padding-right: 0.75rem;
    font-size: clamp(1.65rem, 7vw, 1.9rem);
  }

  .consent-choice,
  .submit-row {
    min-height: auto;
    margin-top: 0;
    padding: 1.15rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
  }

  .consent-choice {
    border-top: 1px solid var(--border);
  }

  .submit-row {
    gap: 0.9rem;
    background: var(--pink-100);
  }

  .day-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .date-picker-panel {
    right: auto;
    left: 50%;
    width: min(22rem, calc(100vw - 2rem));
    transform: translateX(-50%);
  }

}

@media (max-width: 31rem) {
  h1 {
    font-size: clamp(2.65rem, 13vw, 3.65rem);
  }

  .brand-copy {
    max-width: 10rem;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 2.25rem;
  }

  .hero-facts div {
    padding-inline: 0.35rem;
  }

  .hero-facts div + div {
    border-left: 1px solid var(--border);
  }

  .hero-facts dd {
    font-size: 0.95rem;
    white-space: normal;
  }

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

  .logo-orbit-stage {
    width: min(56vw, 11.5rem);
  }

  .verse-note {
    width: min(100%, 17rem);
    font-size: 0.68rem;
  }

  .verse-note span {
    font-size: 0.9rem;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .form-grid.two-column {
    grid-template-columns: 1fr;
  }

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

  .day-grid .choice:last-child {
    width: calc(50% - 0.325rem);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .birth-picker {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .submit-row {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

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

  .interest-form {
    padding: 0;
    border-radius: 0;
  }

  .interest-form fieldset,
  .interest-form fieldset + fieldset {
    padding: 1.25rem 1rem;
  }

  .interest-form legend {
    font-size: 1.55rem;
  }

  .contact-panel {
    padding-inline: 1rem;
  }

  .contact-links a {
    width: 100%;
    min-width: 0;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .button-row .text-link {
    margin-top: 0.4rem;
  }

  .tuition-rate-card {
    padding: 1.5rem 1.25rem;
  }

  .tuition-rate-label {
    font-size: 0.66rem;
  }

  .tuition-rate-price strong {
    font-size: clamp(4.35rem, 22vw, 5.35rem);
  }

  .tuition-rate-currency {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .tuition-rate-terms b {
    font-size: 0.66rem;
  }

  .pricing-card-primary {
    gap: 0.75rem 0.8rem;
    padding-inline: 1.35rem;
  }

  .pricing-card-primary .pricing-value {
    font-size: clamp(4.75rem, 24vw, 5.75rem);
  }

  .final-cta-points {
    width: min(100%, 22rem);
    grid-template-columns: 1fr;
  }

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

  .footer-brand > span {
    text-align: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-contact,
  .footer-meta {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-nav {
    flex-direction: row;
    justify-content: center;
    gap: 0.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ballerina-orbit,
  .orbit-ballerina,
  .logo-frame {
    animation: none !important;
  }

  .ballerina-orbit-one {
    transform: rotate(0deg);
  }

  .ballerina-orbit-two {
    transform: rotate(120deg);
  }

  .ballerina-orbit-three {
    transform: rotate(240deg);
  }

  .orbit-ballerina {
    transform: translateX(-50%);
  }

  .ballerina-orbit-two .orbit-ballerina {
    transform: translateX(-50%) rotateZ(-120deg);
  }

  .ballerina-orbit-three .orbit-ballerina {
    transform: translateX(-50%) rotateZ(-240deg);
  }
}
