:root {
  --teal: #05454f;
  --teal-deep: #03363e;
  --lavender: #c8b6f4;
  --lavender-deep: #7655bd;
  --lavender-pale: #eee9fb;
  --cream: #f7f3ea;
  --ink: #123b42;
  --muted: #566d70;
  --line: rgba(5, 69, 79, 0.22);
  --white: #fffdf9;
  --display: "Arial Rounded MT Bold", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --sans: "Avenir Next", "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  --wrap: min(1240px, calc(100vw - 64px));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary,
select {
  cursor: pointer;
}

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

::selection {
  background: var(--lavender);
  color: var(--teal);
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.section {
  padding-block: 132px;
}

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--lavender);
  color: var(--teal);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 25px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--small {
  min-height: 42px;
  padding-inline: 20px;
}

.button--dark {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--cream);
}

.button--dark:hover {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
}

.button--light {
  border-color: var(--lavender);
  background: var(--lavender);
  color: var(--teal);
}

.button--light:hover {
  border-color: var(--white);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  gap: 24px;
  padding-block: 8px;
  font-size: 0.84rem;
  font-weight: 800;
}

.text-link span {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: 34px;
  border-bottom: 1px solid rgba(200, 182, 244, 0.25);
  background: var(--teal);
  color: var(--lavender);
  transition: background-color 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 74px;
  border-bottom-color: rgba(200, 182, 244, 0.42);
  background: var(--teal);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  display: block;
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  color: var(--lavender);
  font-size: 0.74rem;
  font-weight: 800;
}

.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .button {
  border-color: var(--lavender);
  background: var(--lavender);
  color: var(--teal);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--lavender);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: var(--lavender);
  transition: background-color 180ms ease, transform 180ms ease, top 180ms ease;
}

.menu-toggle > span:nth-child(2) {
  top: 18px;
}

.menu-toggle > span:nth-child(3) {
  top: 25px;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--header-height) + 80px) 86px;
  background: var(--teal);
  color: var(--cream);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.hero__halo {
  position: absolute;
  border: 1px solid rgba(200, 182, 244, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.hero__halo--one {
  top: 11%;
  right: -9vw;
  width: min(59vw, 850px);
  aspect-ratio: 1;
}

.hero__halo--two {
  right: 14vw;
  bottom: -23%;
  width: min(29vw, 410px);
  aspect-ratio: 1;
  border-color: rgba(247, 243, 234, 0.24);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: center;
}

.hero .eyebrow {
  color: var(--lavender);
}

.hero__title {
  max-width: 770px;
  margin: clamp(42px, 7vh, 72px) 0 38px;
  font-family: var(--display);
  font-size: clamp(4.9rem, 8.4vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.83;
}

.hero__title em {
  color: var(--lavender);
  font-style: normal;
  font-weight: 800;
}

.hero__lede {
  max-width: 580px;
  margin: 0;
  color: rgba(247, 243, 234, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.hero__actions .text-link {
  color: var(--lavender);
}

.hero__brand-panel {
  position: relative;
  border: 1px solid rgba(200, 182, 244, 0.72);
  background: var(--teal);
  padding: 28px 28px 0;
}

.hero__brand-panel::before {
  position: absolute;
  z-index: -1;
  right: -16px;
  bottom: -16px;
  width: 62%;
  height: 46%;
  background: var(--lavender);
  content: "";
}

.hero__logo {
  display: block;
  width: 100%;
  height: auto;
}

.hero__programs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: -28px;
  border-top: 1px solid rgba(200, 182, 244, 0.72);
}

.hero__programs a {
  display: flex;
  min-height: 146px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background-color 180ms ease, color 180ms ease;
}

.hero__programs a + a {
  border-left: 1px solid rgba(200, 182, 244, 0.72);
}

.hero__programs a:hover {
  background: var(--lavender);
  color: var(--teal);
}

.hero__programs span {
  margin-bottom: auto;
  color: var(--lavender);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero__programs a:hover span {
  color: inherit;
}

.hero__programs strong {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__programs small {
  margin-top: 8px;
  color: rgba(247, 243, 234, 0.64);
  font-size: 0.66rem;
  line-height: 1.35;
}

.hero__programs a:hover small {
  color: inherit;
}

.manifesto {
  overflow: hidden;
  border-block: 1px solid var(--teal);
  background: var(--lavender);
  color: var(--teal);
  padding-block: 20px 17px;
}

.marquee {
  width: max-content;
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 24s linear infinite;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.marquee__track span {
  padding-inline: 24px;
}

.marquee__track b {
  font-family: var(--sans);
  font-size: 0.35em;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.45fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 76px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  color: var(--lavender-deep);
}

.section-heading h2,
.approach__intro h2,
.formats__header h2,
.faq__intro h2,
.contact__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.2vw, 6.6rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.section-heading__aside {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

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

.path-card {
  position: relative;
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 38px 42px;
  border: 1px solid var(--teal);
}

.path-card--stage {
  background: var(--lavender);
  color: var(--teal);
}

.path-card--corporate {
  margin-left: -1px;
  background: var(--teal);
  color: var(--cream);
}

.path-card::before {
  position: absolute;
  right: -90px;
  bottom: 95px;
  width: 320px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.22;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.path-card:hover::before {
  transform: scale(1.45);
}

.path-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.path-card__topline svg {
  width: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.path-card__kicker {
  margin: 0 0 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.path-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 4.2vw, 4.9rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.path-card h3 em {
  display: inline-block;
  margin-top: 4px;
  color: var(--cream);
  background: var(--teal);
  font-style: normal;
  font-weight: 800;
  padding: 0.03em 0.12em 0.1em;
}

.path-card--corporate h3 em {
  color: var(--lavender);
  background: transparent;
  padding: 0;
}

.path-card__description {
  max-width: 450px;
  margin: 30px 0 0;
  font-size: 1rem;
  line-height: 1.65;
}

.path-card__details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 28px;
  border-top: 1px solid currentColor;
  padding-top: 26px;
}

.path-card__details > p {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-card__details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.87rem;
}

.path-card__details li::before {
  margin-right: 10px;
  content: "—";
}

.path-card__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  padding-top: 18px;
  font-size: 0.79rem;
  font-weight: 800;
}

.path-card__link span {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.path-card__link:hover span {
  transform: translateX(6px);
}

.approach {
  background: var(--teal-deep);
  color: var(--cream);
}

.approach__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
}

.approach__intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.approach__intro .eyebrow,
.approach__steps > li > span {
  color: var(--lavender);
}

.approach__intro h2 {
  margin-top: 48px;
}

.approach__intro h2 em {
  color: var(--lavender);
  font-style: normal;
}

.approach__intro > p:last-child {
  max-width: 480px;
  margin: 40px 0 0;
  color: rgba(247, 243, 234, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.approach__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(200, 182, 244, 0.42);
  list-style: none;
}

.approach__steps li {
  display: grid;
  min-height: 220px;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  align-items: start;
  border-bottom: 1px solid rgba(200, 182, 244, 0.42);
  padding-block: 39px;
}

.approach__steps > li > span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.approach__steps h3 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.approach__steps p {
  max-width: 440px;
  margin: 0;
  color: rgba(247, 243, 234, 0.66);
  line-height: 1.7;
}

.statement {
  overflow: hidden;
  background: var(--lavender);
  color: var(--teal);
}

.statement__inner {
  position: relative;
  display: flex;
  min-height: 460px;
  align-items: center;
}

.statement__quote {
  position: absolute;
  top: -82px;
  left: -22px;
  color: rgba(5, 69, 79, 0.09);
  font-family: var(--display);
  font-size: 28rem;
  font-weight: 800;
  line-height: 1;
}

.statement blockquote {
  position: relative;
  z-index: 1;
  max-width: 990px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.2vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.statement blockquote em {
  color: var(--teal);
  font-style: normal;
}

.statement__seal {
  position: absolute;
  right: -10px;
  bottom: -35px;
  width: 160px;
  aspect-ratio: 1;
}

.statement__seal svg {
  width: 100%;
  overflow: visible;
  animation: seal-spin 24s linear infinite;
}

.statement__seal text {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.65px;
}

.statement__seal .seal-mark {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.5;
}

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

.formats__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 70px;
}

.formats__header .eyebrow {
  flex: 0 0 auto;
  color: var(--lavender-deep);
}

.formats__header h2 {
  max-width: 790px;
  text-align: right;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--teal);
}

.format-card {
  min-height: 420px;
  padding: 32px 32px 40px;
  border-right: 1px solid var(--teal);
  transition: background-color 220ms ease;
}

.format-card:hover {
  background: var(--lavender-pale);
}

.format-card:last-child {
  border-right: 0;
}

.format-card > span {
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.format-card h3 {
  max-width: 335px;
  margin: 100px 0 24px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.format-card p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 100px;
}

.faq__intro .eyebrow {
  color: var(--lavender-deep);
}

.faq__intro h2 {
  margin-top: 42px;
}

.faq__list {
  border-top: 1px solid var(--teal);
}

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

.faq summary {
  position: relative;
  padding: 29px 54px 29px 0;
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 640px;
  margin: -3px 54px 0 0;
  padding-bottom: 31px;
  color: var(--muted);
  line-height: 1.75;
}

.contact {
  background: var(--lavender);
  color: var(--teal);
}

.contact__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
}

.contact__copy {
  align-self: start;
}

.contact__copy h2 {
  margin-top: 45px;
  color: var(--teal);
  font-size: clamp(5rem, 9vw, 9.5rem);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 450px;
  margin: 38px 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact__note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 65px;
  font-size: 0.76rem;
  font-weight: 800;
}

.contact__note span {
  font-size: 1.4rem;
}

.contact__note p {
  margin: 0;
}

.contact-form {
  padding: 46px;
  background: var(--cream);
  box-shadow: 14px 14px 0 var(--teal);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.field {
  display: block;
  margin-bottom: 30px;
}

.field > span {
  display: block;
  margin-bottom: 11px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--teal);
  border-radius: 0;
  outline: 0;
  background: transparent;
  padding: 10px 0 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%);
  background-position: calc(100% - 8px) 52%, calc(100% - 3px) 52%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 25px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--lavender-deep);
  box-shadow: 0 1px 0 var(--lavender-deep);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #78888a;
  opacity: 1;
}

.field--company[hidden] {
  display: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 3px 0 31px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.button--submit {
  width: 100%;
  gap: 12px;
}

.button--submit span {
  font-size: 1.15rem;
}

.site-footer {
  background: var(--teal);
  color: var(--lavender);
  padding-block: 75px 25px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 80px;
}

.brand--footer {
  align-self: start;
}

.brand--footer .brand__logo {
  width: 210px;
}

.site-footer__top > p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.footer-arrow {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(200, 182, 244, 0.75);
  border-radius: 50%;
  font-size: 1.4rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.footer-arrow:hover {
  background: var(--lavender);
  color: var(--teal);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(200, 182, 244, 0.32);
  padding-top: 21px;
  color: var(--lavender);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 1100px) {
  :root {
    --wrap: min(100% - 44px, 960px);
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.66fr);
    gap: 55px;
  }

  .hero__title {
    font-size: clamp(4.4rem, 8vw, 7rem);
  }

  .path-card {
    min-height: 740px;
    padding-inline: 30px;
  }

  .path-card__details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq__layout,
  .contact__layout {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding-block: 100px;
  }

  .site-header {
    height: var(--header-height);
    padding-inline: 22px;
  }

  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .brand__logo {
    width: 105px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    background: var(--lavender);
    color: var(--teal);
    padding: 90px 34px 40px;
    font-family: var(--display);
    font-size: clamp(2.4rem, 10vw, 4rem);
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav .button {
    min-height: 52px;
    margin-top: 15px;
    border-color: var(--teal);
    background: var(--teal);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.83rem;
  }

  body.menu-open .menu-toggle {
    border-color: var(--teal);
  }

  body.menu-open .menu-toggle > span:not(.sr-only) {
    background: var(--teal);
  }

  .hero {
    min-height: auto;
    padding-block: calc(var(--header-height) + 72px) 84px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .hero__copy {
    max-width: 700px;
  }

  .hero__title {
    margin-block: 58px 38px;
    font-size: clamp(4.2rem, 13.5vw, 7.2rem);
  }

  .hero__brand-panel {
    width: min(620px, calc(100% - 16px));
  }

  .hero__halo--one {
    top: 38%;
    right: -38vw;
    width: 110vw;
  }

  .hero__halo--two {
    right: 52vw;
    bottom: -8%;
    width: 58vw;
  }

  .section-heading,
  .approach__layout,
  .faq__layout,
  .contact__layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

  .section-heading__aside {
    max-width: 520px;
  }

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

  .path-card {
    min-height: 700px;
  }

  .path-card--corporate {
    margin: -1px 0 0;
  }

  .approach__intro {
    position: static;
  }

  .formats__header {
    display: block;
  }

  .formats__header h2 {
    margin-top: 42px;
    text-align: left;
  }

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

  .format-card {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--teal);
  }

  .format-card h3 {
    margin-top: 70px;
  }

  .contact__copy h2 {
    margin-top: 34px;
  }

  .contact__note {
    margin-top: 35px;
  }
}

@media (max-width: 560px) {
  :root {
    --wrap: calc(100% - 30px);
  }

  .section {
    padding-block: 80px;
  }

  .site-header {
    padding-inline: 15px;
  }

  .brand__logo {
    width: 96px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero__title {
    margin-block: 48px 34px;
    font-size: clamp(3.55rem, 17vw, 5.4rem);
    line-height: 0.86;
  }

  .hero__lede {
    max-width: 94%;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__brand-panel {
    padding: 18px 18px 0;
  }

  .hero__brand-panel::before {
    right: -10px;
    bottom: -10px;
  }

  .hero__programs {
    margin-inline: -18px;
  }

  .hero__programs a {
    min-height: 132px;
    padding: 15px;
  }

  .hero__programs strong {
    font-size: 1.35rem;
  }

  .hero__programs small {
    font-size: 0.6rem;
  }

  .section-heading h2,
  .approach__intro h2,
  .formats__header h2,
  .faq__intro h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .path-card {
    min-height: 660px;
    padding: 27px 23px;
  }

  .path-card__topline svg {
    width: 48px;
  }

  .path-card h3 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .path-card__description {
    font-size: 0.92rem;
  }

  .approach__layout {
    gap: 70px;
  }

  .approach__steps li {
    min-height: 190px;
    grid-template-columns: 45px 1fr;
    gap: 16px;
  }

  .statement__inner {
    min-height: 390px;
  }

  .statement blockquote {
    font-size: clamp(2.8rem, 12.5vw, 4.3rem);
  }

  .statement__seal {
    right: -20px;
    bottom: -55px;
    width: 130px;
  }

  .format-card {
    padding-inline: 5px;
  }

  .faq summary {
    font-size: 1.26rem;
  }

  .contact__layout {
    gap: 55px;
  }

  .contact__copy h2 {
    font-size: 5.1rem;
  }

  .contact-form {
    margin-inline: -5px 8px;
    padding: 36px 20px;
    box-shadow: 8px 8px 0 var(--teal);
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
    padding-bottom: 55px;
  }

  .brand--footer .brand__logo {
    width: 155px;
  }

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@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;
  }
}
