:root {
  --cream: #fff9f2;
  --cream-deep: #f4eadf;
  --paper: #fffdf9;
  --ink: #2a222d;
  --muted: #6e6471;
  --plum: #684775;
  --plum-deep: #302237;
  --plum-dark: #24192b;
  --lavender: #c9a8dc;
  --lavender-soft: #eadcf3;
  --lavender-pale: #f7f0fb;
  --sand: #b5a176;
  --sand-soft: #e8ddc6;
  --line: rgba(48, 34, 55, .13);
  --line-soft: rgba(48, 34, 55, .08);
  --shadow: 0 28px 78px rgba(48, 34, 55, .10);
  --shadow-soft: 0 16px 44px rgba(48, 34, 55, .075);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 5% 3%, rgba(222, 199, 238, .82), transparent 29rem),
    radial-gradient(circle at 92% 23%, rgba(232, 221, 198, .34), transparent 26rem),
    linear-gradient(180deg, #f7effb 0%, var(--cream) 31%, #fcfaf7 72%, #f7f1f9 100%);
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
address { font-style: normal; }
:focus-visible { outline: 3px solid #8d5ea8; outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Header + coded brand lockup */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 94px;
  display: flex;
  align-items: center;
  background: rgba(249, 243, 250, .76);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(104, 71, 117, .10);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 250, 246, .92);
  box-shadow: 0 8px 32px rgba(48, 34, 55, .07);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 42px; }
.brand-lockup {
  position: relative;
  display: inline-flex;
  width: 245px;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}
.brand-kicker,
.brand-subtitle {
  color: var(--plum-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .31em;
  text-transform: uppercase;
}
.brand-kicker { margin-left: 12px; margin-bottom: -2px; }
.brand-subtitle { margin-left: 58px; margin-top: -3px; }
.brand-wordmark-wrap { position: relative; display: block; width: 100%; }
.brand-wordmark { width: 100%; height: auto; }
.brand-butterfly {
  position: absolute;
  right: -22px;
  top: -13px;
  width: 84px;
  height: auto;
  pointer-events: none;
}
.primary-navigation { display: flex; align-items: center; gap: 31px; }
.primary-navigation a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: var(--plum-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-navigation a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 1px;
  background: var(--lavender);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.primary-navigation a:hover::after,
.primary-navigation a[aria-current="page"]::after { transform: scaleX(1); }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(104, 71, 117, .45);
  border-radius: 50%;
  background: rgba(255,255,255,.48);
}
.menu-line { display: block; width: 19px; height: 2px; margin: 5px auto; background: var(--plum-deep); }

/* Type + common controls */
.eyebrow {
  margin: 0 0 14px;
  color: var(--plum);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: .99;
}
h1 { margin-bottom: 24px; font-size: clamp(58px, 6.8vw, 98px); letter-spacing: -.05em; }
h2 { margin-bottom: 19px; font-size: clamp(42px, 5vw, 69px); letter-spacing: -.04em; }
h3 { margin-bottom: 9px; font-size: 30px; letter-spacing: -.025em; }
p { margin-top: 0; }
.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--plum-deep); color: #fff; box-shadow: 0 12px 30px rgba(48,34,55,.16); }
.button-primary:hover { background: var(--plum-dark); }
.button-secondary { color: var(--plum-deep); border-color: rgba(104,71,117,.30); background: rgba(255,255,255,.60); }
.button-secondary:hover { border-color: var(--plum); background: #fff; }
.button-dark { background: var(--plum-deep); color: #fff; }
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--plum-deep);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.text-link:hover { text-decoration: underline; }
.section { position: relative; padding: 112px 0; }
.section-summary { max-width: 660px; color: var(--muted); font-size: 18px; }
.section-heading { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: end; margin-bottom: 44px; }
.section-heading > p { max-width: 460px; margin: 0 0 8px auto; color: var(--muted); }
.compact-heading { margin-bottom: 38px; }
.dark-copy > p { color: var(--muted); }

/* Home hero: integrated rather than a separate Wix-style band */
.hero { position: relative; padding: 72px 0 108px; overflow: clip; }
.hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  left: -340px;
  top: -360px;
  border: 1px solid rgba(181,161,118,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(181,161,118,.025), 0 0 0 180px rgba(181,161,118,.018);
}
.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 520px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,159,218,.20), transparent 68%);
  filter: blur(12px);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 72px; }
.hero-summary { max-width: 600px; margin: 0 0 30px; color: var(--muted); font-size: 19px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-status {
  max-width: 620px;
  margin: 31px 0 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.hero-status strong { color: var(--plum-deep); }
.hero-figure { position: relative; padding: 18px 18px 38px 0; }
.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 42px 42px 120px 42px;
  box-shadow: var(--shadow);
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: inherit;
  pointer-events: none;
}
.hero-figure img { width: 100%; aspect-ratio: 1.06 / 1; object-fit: cover; object-position: center 48%; }
.hero-figure figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(310px, 72%);
  padding: 18px 20px;
  border: 1px solid rgba(104,71,117,.10);
  border-radius: 18px 18px 40px 18px;
  background: rgba(255,253,249,.94);
  backdrop-filter: blur(10px);
  color: var(--plum-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 19px;
  line-height: 1.18;
  box-shadow: var(--shadow-soft);
}

/* Home intro */
.intro-section { padding-top: 78px; padding-bottom: 96px; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 92px; align-items: center; }
.intro-heading-wrap { position: relative; padding-left: 30px; }
.intro-heading-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(var(--lavender), rgba(181,161,118,.45));
}
.intro-copy { max-width: 510px; color: var(--muted); font-size: 19px; }

/* Home program montage: one large contained plum surface rather than full-page color stripes */
.plans-preview { padding-top: 58px; }
.plans-preview-shell {
  position: relative;
  padding: 72px clamp(24px, 5vw, 66px) 66px;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 90% 8%, rgba(197,159,218,.22), transparent 24rem),
    linear-gradient(145deg, #5a3c64 0%, #3a293f 62%, #2c2032 100%);
  color: #fff;
  box-shadow: 0 32px 90px rgba(48,34,55,.15);
}
.plans-preview .eyebrow { color: #e0c6ee; }
.plans-preview .section-heading > p { color: rgba(255,255,255,.70); }
.editorial-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 290px 380px;
  gap: 16px;
}
.program-tile {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(24,17,28,.18);
}
.program-tile-tall { grid-row: 1 / 3; }
.program-tile-wide { grid-column: 2; }
.program-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.program-tile-tall img { object-position: center 52%; }
.program-tile-wide img { object-position: center 48%; }
.program-tile:hover img { transform: scale(1.025); }
.program-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,20,34,.88), rgba(30,20,34,.08) 62%, transparent);
}
.program-tile > span { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; display: block; }
.program-tile small { display: block; margin-bottom: 5px; color: #e7d8ef; font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.program-tile strong { display: block; font-family: "Newsreader", Georgia, serif; font-size: clamp(25px, 2.8vw, 38px); font-weight: 500; line-height: 1.02; }
.section-link-row { display: flex; justify-content: flex-end; margin-top: 28px; }
.plans-preview .button-secondary { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.07); }
.plans-preview .button-secondary:hover { background: rgba(255,255,255,.14); }

/* Home status preview */
.stage-preview { padding-top: 120px; }
.stage-preview-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.mini-stage-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.mini-stage-list li { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.mini-stage-list > li > span { color: var(--sand); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.mini-stage-list strong { color: var(--plum-deep); font-family: "Newsreader", Georgia, serif; font-size: 34px; font-weight: 500; }
.mini-stage-list p { margin: 4px 0 0; color: var(--muted); }

.contact-preview { padding-top: 70px; padding-bottom: 126px; }
.contact-preview-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 54px 58px;
  border: 1px solid rgba(104,71,117,.10);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(237,220,246,.75), rgba(255,249,242,.90));
  box-shadow: var(--shadow-soft);
}
.contact-preview-inner h2 { max-width: 780px; margin-bottom: 10px; }
.contact-preview-inner p:last-child { margin-bottom: 0; color: var(--muted); }

/* Interior page heroes */
.page-hero { position: relative; padding: 90px 0 100px; overflow: clip; }
.page-hero::after {
  content: "";
  position: absolute;
  width: 580px; height: 300px; right: -170px; top: 40px;
  border-radius: 50%; background: rgba(216,190,230,.25); filter: blur(40px); z-index: -1;
}
.page-hero-simple { max-width: 930px; margin-left: max(20px, calc((100vw - min(1180px, calc(100vw - 40px))) / 2)); }
.page-lead { max-width: 760px; color: var(--muted); font-size: 20px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 74px; align-items: center; }
.page-hero-photo { overflow: hidden; border-radius: 36px 36px 100px 36px; box-shadow: var(--shadow); }
.page-hero-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.content-section { padding-top: 70px; }
.split-content { display: grid; grid-template-columns: .95fr 1.05fr; gap: 94px; }
.prose-large { color: var(--muted); font-size: 19px; }
.prose-large p { margin-bottom: 22px; }

.values-section { padding-top: 72px; }
.value-lines { border-top: 1px solid var(--ink); }
.value-lines > div {
  display: grid;
  grid-template-columns: 70px 240px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}
.value-lines span { color: var(--sand); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.value-lines strong { color: var(--plum-deep); font-family: "Newsreader", Georgia, serif; font-size: 35px; font-weight: 500; }
.value-lines p { margin: 0; color: var(--muted); }
.callout-section { padding-top: 68px; }
.callout-inner { padding: 58px; border-radius: 36px; background: rgba(239,226,247,.60); border: 1px solid var(--line-soft); }
.callout-inner h2 { max-width: 800px; }

/* Plans page */
.program-detail-list { padding-top: 44px; }
.program-detail {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 68px;
  align-items: center;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}
.program-detail:last-child { border-bottom: 1px solid var(--line); }
.program-detail.reverse .program-detail-image { order: 2; }
.program-detail-image { overflow: hidden; border-radius: 30px; box-shadow: var(--shadow-soft); }
.program-detail-image img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; }
.program-detail-copy p { color: var(--muted); }
.status-note { display: inline-block; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.disclosure-section { padding-top: 60px; }
.disclosure-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  padding: 54px 58px;
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(145deg, #4d3557, var(--plum-deep));
}
.disclosure-inner .eyebrow { color: #ddc8e9; }
.disclosure-inner p { color: rgba(255,255,255,.78); }

/* Current stage */
.stage-page-section { padding-top: 38px; }
.stage-timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.stage-timeline li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.stage-timeline > li > span { color: var(--sand); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.stage-timeline strong { color: var(--plum-deep); font-family: "Newsreader", Georgia, serif; font-size: clamp(40px, 5vw, 62px); font-weight: 500; }
.stage-timeline p { max-width: 680px; margin: 5px 0 0; color: var(--muted); font-size: 18px; }
.stage-timeline .is-current { position: relative; }
.stage-timeline .is-current::before { content: ""; position: absolute; left: -20px; top: 36px; width: 6px; height: 60px; border-radius: 999px; background: var(--lavender); }
.transparency-section { padding-top: 80px; }
.transparency-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 92px; }
.notice { margin-top: 28px; padding: 22px 24px; border-left: 3px solid var(--sand); background: rgba(255,255,255,.65); color: var(--plum-deep); }
.readiness-section { padding-top: 64px; }
.readiness-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: start; }
.plain-check-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.plain-check-list li { position: relative; padding: 21px 0 21px 28px; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 600; }
.plain-check-list li::before { content: "—"; position: absolute; left: 0; color: var(--lavender); }

/* Contact */
.contact-page-section { padding-top: 38px; }
.contact-page-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 86px; align-items: start; }
.contact-note p:last-child { max-width: 520px; color: var(--muted); }
.contact-details { border-top: 1px solid var(--ink); }
.contact-details > div { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--plum); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-details p { margin: 0; }
.contact-details a { color: var(--plum-deep); font-weight: 800; overflow-wrap: anywhere; text-underline-offset: 5px; }

/* Legal + 404 */
.legal-hero { padding: 88px 0 62px; }
.legal-shell { max-width: 860px; }
.legal-shell h1 { font-size: clamp(58px, 7vw, 88px); }
.legal-shell > p:last-child { color: var(--muted); }
.legal-content { max-width: 860px; padding-top: 55px; padding-bottom: 112px; }
.legal-content h2 { margin-top: 44px; font-size: 33px; }
.legal-content p { color: var(--muted); font-size: 17px; }
.legal-content a { color: var(--plum-deep); font-weight: 800; }

/* Footer: gradual dark landing */
.site-footer {
  position: relative;
  margin-top: 30px;
  padding: 84px 0 24px;
  overflow: hidden;
  color: rgba(255,255,255,.76);
  background:
    radial-gradient(circle at 15% 4%, rgba(185,131,212,.18), transparent 24rem),
    linear-gradient(150deg, #35233d 0%, #24192b 72%);
}
.site-footer::before {
  content: "";
  position: absolute;
  left: -5%; right: -5%; top: -48px;
  height: 74px;
  border-radius: 50%;
  background: rgba(246,239,249,.48);
  filter: blur(26px);
}
.footer-main { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.brand-lockup-footer { width: 260px; }
.brand-lockup-footer .brand-kicker,
.brand-lockup-footer .brand-subtitle { color: #e9daef; }
.footer-brand > p { margin: 24px 0 0; color: rgba(233,218,239,.67); }
.footer-nav { display: flex; justify-content: flex-end; gap: 10px 26px; flex-wrap: wrap; }
.footer-nav a { min-height: 44px; display: inline-flex; align-items: center; text-decoration: none; font-size: 13px; }
.footer-nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 5px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 54px; padding-top: 20px; border-top: 1px solid rgba(233,218,239,.16); font-size: 12px; }
.footer-bottom p { margin: 0; }

@media (max-width: 980px) {
  :root { --shell: min(780px, calc(100% - 30px)); }
  .site-header { min-height: 84px; }
  .brand-lockup { width: 210px; }
  .brand-butterfly { width: 72px; right: -18px; }
  .menu-button { display: block; }
  .primary-navigation {
    position: absolute;
    top: calc(100% + 8px);
    left: 15px;
    right: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,253,249,.98);
    box-shadow: var(--shadow);
  }
  .primary-navigation.is-open { display: flex; }
  .primary-navigation a { padding: 8px 12px; }
  .primary-navigation a::after { display: none; }
  .hero-grid,
  .intro-grid,
  .section-heading,
  .stage-preview-grid,
  .page-hero-grid,
  .split-content,
  .transparency-grid,
  .readiness-grid,
  .contact-page-grid,
  .disclosure-inner { grid-template-columns: 1fr; }
  .hero-grid { gap: 52px; }
  .hero-figure { max-width: 690px; }
  .intro-grid,
  .stage-preview-grid,
  .split-content,
  .transparency-grid,
  .readiness-grid,
  .contact-page-grid,
  .disclosure-inner { gap: 44px; }
  .section-heading { gap: 12px; }
  .section-heading > p { margin-left: 0; }
  .editorial-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 330px; }
  .value-lines > div { grid-template-columns: 55px 190px 1fr; }
  .program-detail { grid-template-columns: 1fr; gap: 28px; }
  .program-detail.reverse .program-detail-image { order: 0; }
  .program-detail-copy { max-width: 720px; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 26px); }
  html { scroll-padding-top: 82px; }
  .site-header { min-height: 76px; }
  .brand-lockup { width: 168px; }
  .brand-kicker, .brand-subtitle { font-size: 6px; }
  .brand-kicker { margin-left: 8px; }
  .brand-subtitle { margin-left: 40px; }
  .brand-butterfly { width: 58px; right: -14px; top: -11px; }
  h1 { font-size: clamp(48px, 14.7vw, 68px); }
  h2 { font-size: clamp(38px, 11vw, 52px); }
  .section { padding: 78px 0; }
  .hero { padding: 48px 0 78px; }
  .hero-grid { gap: 38px; }
  .hero-summary { font-size: 17px; }
  .hero-actions { gap: 12px; }
  .hero-figure { padding: 8px 6px 30px 0; }
  .hero-photo-frame { border-radius: 28px 28px 80px 28px; }
  .hero-figure figcaption { position: relative; right: auto; bottom: auto; width: calc(100% - 28px); margin: -24px 0 0 28px; font-size: 17px; }
  .intro-section { padding-top: 52px; }
  .intro-heading-wrap { padding-left: 20px; }
  .plans-preview { padding-top: 36px; }
  .plans-preview-shell { width: calc(100% - 14px); padding: 52px 16px 22px; border-radius: 34px; }
  .editorial-photo-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; }
  .program-tile,
  .program-tile-tall,
  .program-tile-wide { grid-column: auto; grid-row: auto; min-height: 280px; }
  .program-tile-tall { min-height: 360px; }
  .section-link-row { justify-content: stretch; }
  .section-link-row .button { width: 100%; }
  .stage-preview { padding-top: 92px; }
  .mini-stage-list li { grid-template-columns: 44px 1fr; gap: 14px; }
  .contact-preview { padding-top: 42px; padding-bottom: 90px; }
  .contact-preview-inner { flex-direction: column; align-items: flex-start; padding: 34px 26px; border-radius: 28px; }
  .page-hero { padding: 62px 0 68px; }
  .page-hero-simple { margin-left: auto; }
  .page-lead { font-size: 18px; }
  .page-hero-photo { border-radius: 28px 28px 72px 28px; }
  .value-lines > div { grid-template-columns: 40px 1fr; gap: 8px 14px; }
  .value-lines p { grid-column: 2; }
  .callout-inner { padding: 36px 26px; border-radius: 28px; }
  .program-detail { padding: 36px 0; }
  .program-detail-image { border-radius: 22px; }
  .disclosure-inner { padding: 36px 26px; border-radius: 28px; }
  .stage-timeline li { grid-template-columns: 82px 1fr; gap: 18px; padding: 28px 0; }
  .stage-timeline .is-current::before { left: -11px; top: 27px; }
  .contact-details > div { grid-template-columns: 1fr; gap: 8px; }
  .site-footer { padding-top: 68px; }
  .brand-lockup-footer { width: 220px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media (forced-colors: active) {
  .button,
  .program-tile,
  .contact-preview-inner,
  .notice,
  .callout-inner { border: 1px solid CanvasText; }
}
