:root {
  --ink: #2e202a;
  --ink-soft: #65565d;
  --plum: #2f1d2c;
  --plum-deep: #241521;
  --aubergine: #4d293e;
  --paper: #f5f0e8;
  --paper-bright: #fbf8f2;
  --sand: #e8ded0;
  --clay: #ac5e42;
  --clay-dark: #86442f;
  --gold: #d8b56b;
  --sage: #6e7d69;
  --line: rgba(46, 32, 42, 0.14);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(51, 31, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #fff;
  background: var(--clay);
}

.page-shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--plum);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.93);
  box-shadow: 0 1px 0 rgba(46, 32, 42, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  line-height: 1;
}

.brand-mark {
  width: 40px;
  height: 40px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.brand span {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--clay-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.site-nav a {
  position: relative;
  color: rgba(46, 32, 42, 0.78);
  font-size: 13px;
  font-weight: 650;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--clay);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.filter-button:focus-visible,
.module-trigger:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(172, 94, 66, 0.35);
  outline-offset: 3px;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button-small {
  min-height: 43px;
  padding-inline: 20px;
  color: #fff;
  background: var(--plum);
  font-size: 12px;
}

.button-primary {
  color: #fff;
  background: var(--plum);
  box-shadow: 0 14px 35px rgba(47, 29, 44, 0.18);
}

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

.eyebrow {
  display: grid;
  grid-template-columns: 28px minmax(0, auto);
  align-items: center;
  justify-content: start;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--clay-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.62);
}

.eyebrow-gold {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: var(--clay);
  font-weight: 400;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 142px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 14.285% 100%,
    var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.88), transparent 34%);
  content: "";
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(172, 94, 66, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  top: -310px;
  left: -330px;
  width: 820px;
  height: 820px;
}

.hero-orb-two {
  top: -215px;
  right: -235px;
  width: 600px;
  height: 600px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(50px, 7vw, 108px);
  padding-bottom: 84px;
}

.hero-copy {
  min-width: 0;
  padding: 24px 0;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0 0 28px;
  font-size: clamp(55px, 5.6vw, 86px);
  line-height: 0.97;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 33px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(46, 32, 42, 0.3);
  font-size: 12px;
  font-weight: 750;
}

.text-link span {
  color: var(--clay);
  font-size: 16px;
}

.hero-assurance {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  color: var(--paper);
  background: var(--clay);
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 12px;
}

.avatar-stack span:nth-child(2) {
  background: var(--sage);
}

.avatar-stack span:nth-child(3) {
  background: var(--plum);
}

.hero-assurance p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.hero-assurance strong {
  color: var(--ink);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  width: min(100%, 545px);
  justify-self: end;
  padding: 0 15px 20px 0;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.8;
  border-radius: 250px 250px 28px 28px;
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-image-frame picture,
.hero-image-frame img {
  width: 100%;
  height: 100%;
}

.hero-image-frame img {
  object-fit: cover;
  object-position: 48% center;
}

.image-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(60, 34, 46, 0.03) 55%, rgba(43, 24, 36, 0.25));
  pointer-events: none;
}

.hero-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(250, 247, 241, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 13px;
  box-shadow: 0 14px 40px rgba(43, 24, 36, 0.14);
  backdrop-filter: blur(12px);
}

.hero-note strong,
.hero-note span,
.hero-note small {
  display: block;
}

.hero-note div {
  line-height: 1.2;
}

.hero-note strong,
.hero-note span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.hero-note small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.hero-note-top {
  top: 25%;
  left: 20px;
}

.hero-note-top .note-icon {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: #fff;
  background: var(--clay);
  border-radius: 50%;
  font-size: 14px;
}

.hero-note-bottom {
  right: 20px;
  bottom: 44px;
}

.hero-note-bottom > strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
}

.hero-stamp {
  position: absolute;
  right: -30px;
  bottom: -30px;
  z-index: 3;
  width: 112px;
  height: 112px;
  padding: 8px;
  color: var(--paper);
  background: var(--plum);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.hero-stamp circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1;
}

.hero-stamp text {
  fill: currentColor;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.17em;
}

.hero-stamp .stamp-flower {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  transform-origin: center;
  animation: spin-reverse 28s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}

.hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.hero-facts > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.hero-facts > div:first-child {
  padding-left: 0;
}

.hero-facts > div:last-child {
  border-right: 0;
}

.hero-facts strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
}

.hero-facts span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.intro {
  background: var(--paper-bright);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: end;
}

.section-heading h2,
.standards-copy h2,
.teacher-copy h2,
.credentials-copy h2,
.attunement-heading h2,
.enroll-copy h2,
.faq-heading h2,
.closing-cta h2 {
  margin: 0;
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.02;
}

.intro-copy {
  max-width: 530px;
  padding-bottom: 4px;
  color: var(--ink-soft);
  font-size: 14px;
}

.intro-copy .lead-copy {
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.45;
}

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

.stage-card {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.stage-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.stage-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stage-topline small {
  opacity: 0.62;
  font-size: 9px;
}

.stage-symbol {
  position: absolute;
  top: 55px;
  right: 15px;
  opacity: 0.06;
  font-family: var(--display);
  font-size: 190px;
  line-height: 1;
}

.stage-card h3 {
  margin: 73px 0 20px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1;
}

.stage-card > p {
  max-width: 330px;
  margin-bottom: 25px;
  opacity: 0.75;
  font-size: 13px;
}

.clean-list {
  display: grid;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-weight: 650;
}

.clean-list li::before {
  margin-right: 9px;
  content: "—";
  opacity: 0.55;
}

.stage-card > a {
  position: absolute;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
}

.stage-card > a span {
  font-size: 15px;
}

.stage-one {
  color: #f9f3e9;
  background: var(--clay);
  border-color: var(--clay);
}

.stage-two {
  color: #f9f3e9;
  background: var(--sage);
  border-color: var(--sage);
}

.stage-three {
  color: #f9f3e9;
  background: var(--plum);
  border-color: var(--plum);
}

.curriculum {
  color: #f7f0e7;
  background: var(--plum-deep);
}

.curriculum-shell {
  position: relative;
}

.curriculum-header {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 80px;
  align-items: end;
}

.curriculum-header h2 em,
.attunement-heading h2 em,
.enroll-copy h2 em {
  color: var(--gold);
}

.curriculum-header > p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.curriculum-filters {
  display: flex;
  gap: 8px;
  margin: 64px 0 42px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border 180ms ease;
}

.filter-button span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 15px;
}

.filter-button.active,
.filter-button:hover {
  color: var(--plum);
  background: var(--paper);
  border-color: var(--paper);
}

.filter-button.active span,
.filter-button:hover span {
  color: var(--clay-dark);
}

.curriculum-layout {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 70px;
}

.curriculum-summary {
  position: sticky;
  top: 116px;
  align-self: start;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.summary-label {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.summary-number {
  margin: 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: 74px;
  line-height: 0.8;
}

.curriculum-summary h3 {
  margin: 28px 0 16px;
  font-size: 30px;
  line-height: 1.05;
}

.curriculum-summary > p:not(.summary-label):not(.summary-number) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 12px;
}

.curriculum-summary dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.curriculum-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.curriculum-summary dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.curriculum-summary dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 650;
  text-align: right;
}

.module-list {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.module-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.module-trigger {
  display: grid;
  grid-template-columns: 47px 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 23px 4px;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.module-index {
  color: var(--gold);
  font-family: var(--display);
  font-size: 16px;
}

.module-title {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 27px);
  letter-spacing: -0.02em;
}

.module-plus {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.module-plus::before,
.module-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.module-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.module-trigger[aria-expanded="true"] .module-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.module-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.module-panel > div {
  overflow: hidden;
}

.module-item.open .module-panel {
  grid-template-rows: 1fr;
}

.module-panel-content {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 34px;
  padding: 0 48px 28px 67px;
}

.module-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.module-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-panel li {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 650;
}

.standards {
  overflow: hidden;
  background: var(--paper-bright);
}

.standards-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 9vw, 135px);
  align-items: center;
}

.standards-visual {
  position: relative;
  min-height: 620px;
}

.standards-visual::before,
.standards-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.standards-visual::before {
  top: 1%;
  left: -32%;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(172, 94, 66, 0.24);
}

.standards-visual::after {
  right: -10%;
  bottom: 0;
  width: 350px;
  height: 350px;
  background: #ddd1c0;
}

.principles-card {
  position: absolute;
  z-index: 2;
  top: 55px;
  right: 0;
  left: 8%;
  max-width: 395px;
  padding: 46px;
  color: #fff;
  background: var(--clay);
  border-radius: 190px 190px 16px 16px;
  box-shadow: var(--shadow);
}

.principles-card > p {
  margin: 82px 0 24px;
  font-family: var(--display);
  font-size: 31px;
  font-style: italic;
  text-align: center;
}

.principles-card ul {
  margin: 0 0 31px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.principles-card li {
  display: flex;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--display);
  font-size: 15px;
}

.principles-card li span {
  opacity: 0.63;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.principles-card small {
  display: block;
  opacity: 0.68;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.standards-seal {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: 72px;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  color: var(--gold);
  background: var(--plum);
  border: 8px solid var(--paper-bright);
  border-radius: 50%;
}

.standards-seal svg {
  width: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.standards-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 27px 0 38px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 18px;
}

.standards-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
  border-top: 1px solid var(--line);
}

.standards-list > div {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.standards-list > div > span {
  color: var(--clay);
  font-family: var(--display);
  font-size: 13px;
}

.standards-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.standards-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
}

.attunements {
  position: relative;
  overflow: hidden;
  color: #f8f0e8;
  background: var(--plum);
}

.attunements::before,
.attunements::after {
  position: absolute;
  border: 1px solid rgba(216, 181, 107, 0.17);
  border-radius: 50%;
  content: "";
}

.attunements::before {
  top: -480px;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
}

.attunements::after {
  top: -315px;
  left: 50%;
  width: 580px;
  height: 580px;
  transform: translateX(-50%);
}

.attunement-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  width: 500px;
  height: 300px;
  background: rgba(216, 181, 107, 0.12);
  border-radius: 50%;
  filter: blur(90px);
  transform: translateX(-50%);
}

.attunements .page-shell {
  position: relative;
  z-index: 2;
}

.attunement-heading {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.attunement-heading .eyebrow {
  justify-content: center;
}

.attunement-heading > p:last-child {
  max-width: 675px;
  margin: 27px auto 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
}

.attunement-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 75px 0 54px;
}

.attunement-step {
  position: relative;
  padding: 0 40px;
  text-align: center;
}

.step-index {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 25px;
  color: var(--plum);
  background: var(--gold);
  border: 10px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  background-clip: padding-box;
  font-family: var(--display);
  font-size: 20px;
}

.step-line {
  position: absolute;
  top: 38px;
  right: -50%;
  left: 50%;
  z-index: -1;
  height: 1px;
  background: rgba(216, 181, 107, 0.28);
}

.attunement-step:last-child .step-line {
  display: none;
}

.attunement-step h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.attunement-step p {
  max-width: 280px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.attunement-note {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 845px;
  margin: 0 auto;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}

.attunement-note svg {
  flex: 0 0 33px;
  width: 33px;
  height: 33px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.8;
}

.attunement-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.attunement-note strong {
  color: rgba(255, 255, 255, 0.84);
}

.included {
  background: var(--paper);
}

.included-heading {
  display: grid;
  grid-template-columns: 1fr 0.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 62px;
}

.included-heading > p {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 13px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.included-card {
  position: relative;
  min-height: 355px;
  padding: 28px;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 220ms ease, background 220ms ease;
}

.included-card:hover {
  transform: translateY(-5px);
}

.included-card-featured {
  color: #fff;
  background: var(--clay);
  border-color: var(--clay);
}

.card-kicker {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 45px 0 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.7;
}

.line-icon svg {
  width: 39px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.included-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.08;
}

.included-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
}

.included-card-featured p {
  color: rgba(255, 255, 255, 0.7);
}

.teacher {
  overflow: hidden;
  background: var(--paper-bright);
}

.teacher-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.teacher-portrait {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border-radius: 48% 48% 22px 22px;
  background: #d8cfc2;
  box-shadow: 0 34px 80px rgba(46, 32, 42, 0.16);
}

.teacher-portrait picture,
.teacher-portrait img {
  display: block;
  width: 100%;
  height: 100%;
}

.teacher-portrait picture {
  position: absolute;
  inset: 0;
}

.teacher-portrait img {
  object-fit: cover;
  object-position: 47% center;
}

.teacher-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--paper-bright);
  background: rgba(47, 29, 44, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.teacher-caption strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
}

.teacher-caption span {
  max-width: 150px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.teacher-copy {
  max-width: 560px;
}

.teacher-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.teacher-copy .lead-copy {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.35;
}

.teacher-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.teacher-principles span {
  padding: 16px 6px;
  border-right: 1px solid var(--line);
  color: var(--clay);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.teacher-principles span:last-child {
  border-right: 0;
}

.credentials {
  overflow: hidden;
  background: #e9dfd2;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.credentials-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.credentials-copy .credential-disclaimer {
  padding: 18px 0 0 34px;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.credentials-copy .credential-disclaimer::before {
  float: left;
  margin-left: -34px;
  color: var(--clay);
  content: "✦";
}

.certificate-stack {
  position: relative;
  min-height: 510px;
  perspective: 1000px;
}

.certificate {
  position: absolute;
  width: min(490px, 84%);
  aspect-ratio: 1.42;
  padding: 38px;
  border: 1px solid rgba(46, 32, 42, 0.22);
  box-shadow: 0 28px 70px rgba(46, 32, 42, 0.14);
}

.certificate::before,
.certificate::after {
  position: absolute;
  inset: 12px;
  border: 1px solid currentColor;
  content: "";
  opacity: 0.22;
}

.certificate::after {
  inset: 18px;
}

.certificate-back {
  top: 58px;
  left: 2%;
  color: var(--paper);
  background: var(--sage);
  transform: rotate(-7deg);
}

.certificate-front {
  top: 95px;
  right: 0;
  color: var(--ink);
  background: var(--paper-bright);
  transform: rotate(4deg);
}

.certificate-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 11px;
}

.certificate small,
.certificate h3,
.certificate p,
.certificate-rule,
.certificate-seal {
  position: relative;
  z-index: 1;
}

.certificate small {
  display: block;
  margin-bottom: 9px;
  opacity: 0.58;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.certificate h3 {
  margin: 0 0 15px;
  font-size: clamp(27px, 3vw, 39px);
  line-height: 0.98;
}

.certificate p {
  opacity: 0.65;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.certificate-rule {
  width: 110px;
  margin-top: 37px;
  border-top: 1px solid currentColor;
  opacity: 0.45;
}

.certificate-seal {
  position: absolute;
  right: 40px;
  bottom: 38px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--paper);
  background: var(--clay);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
}

.enroll {
  color: #fff;
  background: var(--paper-bright);
}

.enroll-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 95px;
  padding: clamp(48px, 7vw, 84px);
  background: var(--plum);
  border-radius: var(--radius-lg);
}

.enroll-panel::before {
  position: absolute;
  top: -275px;
  left: -230px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(216, 181, 107, 0.2);
  border-radius: 50%;
  content: "";
}

.enroll-panel::after {
  position: absolute;
  right: 38%;
  bottom: -470px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(216, 181, 107, 0.13);
  border-radius: 50%;
  content: "";
}

.enroll-copy,
.guide-form {
  position: relative;
  z-index: 1;
}

.enroll-copy > p:not(.eyebrow) {
  max-width: 515px;
  margin: 27px 0 34px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 13px;
}

.enroll-points {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 650;
}

.enroll-points span {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-right: 8px;
  color: var(--plum);
  background: var(--gold);
  border-radius: 50%;
  font-size: 10px;
}

.guide-form {
  padding: 31px;
  color: var(--ink);
  background: var(--paper-bright);
  border-radius: var(--radius-md);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 21px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
}

.form-heading small {
  color: var(--ink-soft);
  font-size: 8px;
}

.guide-form label {
  display: block;
  margin-bottom: 14px;
}

.guide-form label > span {
  display: block;
  margin: 0 0 6px 2px;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.guide-form input,
.guide-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(46, 32, 42, 0.17);
  border-radius: 9px;
  font-size: 11px;
}

.guide-form input::placeholder {
  color: #a4969e;
}

.button-gold {
  width: 100%;
  margin-top: 4px;
  color: var(--plum);
  background: var(--gold);
}

.button-gold:hover {
  background: #e2c27d;
}

.form-note {
  margin: 11px 0 0;
  color: var(--ink-soft);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.form-note.success {
  color: #4a6b4e;
  font-weight: 700;
}

.faq {
  background: var(--paper-bright);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 126px;
  align-self: start;
}

.faq-heading > p:last-child {
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 11px;
}

.faq-heading a {
  color: var(--clay-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 30px;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 670px;
  margin: -4px 54px 25px 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: var(--ink);
  background: #ded2c1;
  text-align: center;
}

.closing-cta::before,
.closing-cta::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(172, 94, 66, 0.2);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.closing-cta::before {
  width: 580px;
  height: 580px;
}

.closing-cta::after {
  width: 820px;
  height: 820px;
}

.closing-cta .page-shell {
  position: relative;
  z-index: 2;
}

.closing-cta .eyebrow {
  justify-content: center;
}

.closing-cta h2 {
  margin-bottom: 37px;
}

.closing-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0.035;
  font-family: var(--display);
  font-size: 420px;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--plum-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 70px;
  align-items: start;
  padding: 70px 0 55px;
}

.brand-footer {
  color: #fff;
}

.brand-footer small {
  color: var(--gold);
}

.footer-main > p {
  max-width: 360px;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.noscript-note {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  max-width: 320px;
  padding: 14px 18px;
  color: #fff;
  background: var(--plum);
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 12px;
}

/* Privacy and contact pages */
.information-body {
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
}

.information-header {
  border-bottom: 1px solid rgba(47, 29, 44, 0.12);
  background: rgba(250, 247, 241, 0.96);
}

.information-header .page-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.information-nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.information-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 110px;
}

.information-main > header {
  margin-bottom: 58px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(47, 29, 44, 0.14);
}

.information-main h1 {
  max-width: 760px;
  margin: 15px 0 20px;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 400;
  line-height: 0.98;
}

.information-main .lead {
  max-width: 680px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.55;
}

.information-section {
  margin: 0 0 46px;
}

.information-section h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
}

.information-section p,
.information-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.information-section ul {
  padding-left: 22px;
}

.information-section a,
.contact-card a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card {
  margin: 32px 0 48px;
  padding: 34px;
  border: 1px solid rgba(47, 29, 44, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 24px;
}

@media (max-width: 700px) {
  .information-header .page-shell {
    min-height: 74px;
  }

  .information-nav {
    gap: 14px;
    font-size: 10px;
  }

  .information-main {
    padding: 62px 0 80px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .nav-cta {
    grid-column: 2;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 6.2vw, 70px);
  }

  .hero-note-top {
    left: -12px;
  }

  .hero-note-bottom {
    right: -10px;
  }

  .hero-facts > div {
    display: block;
  }

  .hero-facts strong,
  .hero-facts span {
    display: block;
  }

  .hero-facts span {
    margin-top: 3px;
  }

  .stage-card {
    min-height: 515px;
    padding: 28px;
  }

  .stage-card h3 {
    margin-top: 68px;
  }

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

  .included-card {
    min-height: 315px;
  }

  .enroll-panel {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 36px, 700px);
  }

  .section {
    padding: 92px 0;
  }

  .site-header {
    background: rgba(245, 240, 232, 0.94);
    backdrop-filter: blur(16px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .menu-toggle {
    display: grid;
    align-content: center;
    justify-self: end;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: center;
    gap: 0;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    background: rgba(245, 240, 232, 0.98);
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 29px;
    font-weight: 500;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 115px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 64px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy h1 {
    font-size: clamp(50px, 12vw, 76px);
  }

  .hero-lede {
    max-width: 600px;
  }

  .hero-visual {
    width: min(92%, 545px);
    margin-right: 10px;
    justify-self: center;
  }

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

  .hero-facts > div,
  .hero-facts > div:first-child {
    padding: 22px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .hero-facts > div:nth-child(2n) {
    border-right: 0;
  }

  .intro-grid,
  .curriculum-header,
  .included-heading,
  .teacher-grid,
  .credentials-grid,
  .enroll-panel,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .teacher-portrait {
    width: min(540px, 100%);
    min-height: 620px;
    margin: 0 auto;
  }

  .teacher-copy {
    max-width: 650px;
  }

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

  .stage-card {
    min-height: 485px;
  }

  .stage-symbol {
    right: 8%;
  }

  .curriculum-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .curriculum-summary {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 9px 25px;
  }

  .curriculum-summary .summary-label,
  .curriculum-summary dl {
    grid-column: 1 / -1;
  }

  .summary-number {
    grid-row: 2 / 4;
  }

  .curriculum-summary h3 {
    margin: 0;
  }

  .curriculum-summary > p:not(.summary-label):not(.summary-number) {
    margin: 0;
  }

  .standards-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .standards-visual {
    width: min(100%, 530px);
    min-height: 590px;
    margin: 0 auto;
  }

  .standards-copy {
    order: -1;
  }

  .attunement-flow {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .step-line {
    top: 76px;
    right: auto;
    bottom: -45px;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .certificate-stack {
    width: min(100%, 690px);
    margin: 0 auto;
  }

  .enroll-panel {
    padding: 55px;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-main > p {
    grid-column: 2;
  }

  .footer-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 28px, 520px);
  }

  .section {
    padding: 76px 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 13.5vw, 66px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-visual {
    width: 96%;
    margin-right: 0;
    padding-right: 0;
  }

  .hero-note-top {
    top: 20%;
    left: 14px;
  }

  .hero-note-bottom {
    right: 14px;
    bottom: 30px;
  }

  .hero-stamp {
    right: -10px;
    bottom: -25px;
    width: 96px;
    height: 96px;
  }

  .hero-facts strong {
    font-size: 21px;
  }

  .hero-facts span {
    font-size: 8px;
  }

  .section-heading h2,
  .standards-copy h2,
  .teacher-copy h2,
  .credentials-copy h2,
  .attunement-heading h2,
  .enroll-copy h2,
  .faq-heading h2,
  .closing-cta h2 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .stage-grid {
    margin-top: 50px;
  }

  .stage-card {
    min-height: 480px;
    padding: 27px;
  }

  .curriculum-filters {
    overflow-x: auto;
    width: calc(100% + 14px);
    margin-top: 45px;
    padding-right: 14px;
    scrollbar-width: none;
  }

  .curriculum-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .curriculum-summary {
    display: block;
    padding: 25px;
  }

  .summary-number {
    font-size: 60px;
  }

  .curriculum-summary h3 {
    margin: 22px 0 12px;
  }

  .curriculum-summary > p:not(.summary-label):not(.summary-number) {
    margin-bottom: 22px;
  }

  .module-trigger {
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
    padding: 20px 0;
  }

  .module-title {
    font-size: 20px;
  }

  .module-plus {
    width: 26px;
    height: 26px;
  }

  .module-panel-content {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 0 0 25px 48px;
  }

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

  .standards-visual {
    min-height: 520px;
  }

  .standards-visual::after {
    width: 280px;
    height: 280px;
  }

  .principles-card {
    left: 0;
    max-width: calc(100% - 15px);
    padding: 36px;
  }

  .principles-card > p {
    margin-top: 65px;
  }

  .standards-seal {
    right: -7px;
    bottom: 25px;
    width: 108px;
    height: 108px;
  }

  .attunement-step {
    padding: 0 15px;
  }

  .attunement-note {
    align-items: flex-start;
  }

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

  .included-card {
    min-height: 300px;
  }

  .certificate-stack {
    min-height: 400px;
  }

  .certificate {
    width: 90%;
    padding: 29px;
  }

  .certificate-back {
    left: 0;
  }

  .teacher-portrait {
    min-height: 500px;
    border-radius: 44% 44% 18px 18px;
  }

  .teacher-caption {
    display: block;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 15px 16px;
  }

  .teacher-caption span {
    display: block;
    max-width: none;
    margin-top: 4px;
    text-align: left;
  }

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

  .teacher-principles span:nth-child(2) {
    border-right: 0;
  }

  .teacher-principles span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .certificate-front {
    top: 80px;
  }

  .certificate-mark {
    margin-bottom: 24px;
  }

  .certificate-rule {
    margin-top: 20px;
  }

  .certificate-seal {
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
  }

  .enroll-panel {
    width: calc(100% - 20px);
    padding: 38px 22px;
    border-radius: 20px;
  }

  .guide-form {
    padding: 24px 19px;
  }

  .form-heading {
    display: block;
  }

  .form-heading small {
    display: block;
    margin-top: 3px;
  }

  .faq-list summary {
    font-size: 18px;
  }

  .closing-cta {
    padding: 100px 0;
  }

  .closing-symbol {
    font-size: 280px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 55px 0 40px;
  }

  .footer-main > p,
  .footer-nav {
    grid-column: 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

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