@font-face {
  font-family: Prata;
  src: url("editorial/prata.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Onest;
  src: url("editorial/onest-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Onest;
  src: url("editorial/onest-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --paper: #faf9f5;
  --ink: #273c33;
  --olive: #263e35;
  --muted: #667168;
  --sand: #e9e6dc;
  --gold: #bb9f75;
  --line: #dcded5;
  --white: #fffef8;
  --body: Onest, Arial, sans-serif;
  --serif: Prata, Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 35px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.7 var(--body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}
h1,
h2 {
  font: 400 clamp(35px, 4vw, 62px)/1.3 var(--serif);
  letter-spacing: -0.045em;
}
h1 em,
h2 em {
  font-style: normal;
  color: #7d876f;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a,
summary,
input {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #bb9f75;
  outline-offset: 5px;
}
button:disabled {
  cursor: default;
}
::selection {
  background: #b9c6b1;
  color: #21372f;
}
[hidden] {
  display: none !important;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 50;
  background: var(--paper);
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.hero {
  height: 100svh;
  min-height: 680px;
  max-height: 1000px;
  position: relative;
  color: var(--white);
  isolation: isolate;
  background: var(--olive);
  --reveal: 0%;
}
.hero-scenes {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-scenes img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}
.scene-city {
  filter: brightness(0.85);
}
.scene-ocean {
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  will-change: clip-path;
}
.scene-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 35, 29, 0.42), rgba(14, 35, 29, 0.04) 78%),
    linear-gradient(
      180deg,
      rgba(14, 35, 29, 0.43),
      transparent 26%,
      transparent 57%,
      rgba(12, 30, 24, 0.72)
    );
}
.masthead {
  height: 104px;
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  margin: 0 4.7%;
  border-bottom: 1px solid #fffef83d;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  letter-spacing: 0.1px;
  white-space: nowrap;
}
.brand-symbol {
  font: 400 49px/0.9 var(--serif);
  letter-spacing: -5px;
  padding-right: 4px;
}
.wordmark small {
  display: block;
  font-size: 7px;
  letter-spacing: 1.8px;
  line-height: 1;
  margin-top: 7px;
}
.main-nav {
  display: flex;
  gap: 29px;
  margin: auto;
  font-size: 12px;
}
.main-nav a,
.nav-contact {
  transition: opacity 0.2s;
}
.main-nav a:hover,
.nav-contact:hover {
  opacity: 0.7;
}
.nav-contact {
  font-size: 12px;
}
.nav-contact span {
  font-size: 20px;
  margin-left: 14px;
}
.nav-toggle {
  display: none;
}
.hero-message {
  position: absolute;
  left: 8%;
  top: 25%;
  max-width: 800px;
}
.overline {
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 2.2px;
}
.hero h1 {
  font-size: clamp(66px, 7.8vw, 118px);
  line-height: 1.16;
  letter-spacing: -0.055em;
  margin: 0;
}
.hero-heading-kicker { display: block; margin-bottom: 27px; font: 400 10px/1.5 var(--body); letter-spacing: 2.2px; text-transform: uppercase; }
.hero-heading-line { display: block; margin-bottom: 25px; }
.remote-guide { border-top: 1px solid var(--line); }
.remote-guide h2 { margin: 20px 0 24px; }
.remote-guide > p:not(.overline) { max-width: 760px; }
.remote-guide .cta { margin: 26px 0 20px; }
.remote-guide .remote-guide-note { font-size: 13px; color: var(--muted); }
.hero h1 em {
  color: var(--white);
}
.hero-description {
  font-size: 16px;
  line-height: 1.75;
  max-width: 500px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-height: 58px;
  padding: 15px 25px;
  border: 1px solid transparent;
  font-size: 13px;
  transition:
    background 0.25s,
    color 0.25s;
}
.cta span {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.25s;
}
.cta:hover span {
  transform: translate(3px, -3px);
}
.cta-light {
  background: var(--paper);
  color: var(--ink);
}
.cta-light:hover {
  background: #e8e9df;
}
.cta-dark {
  background: var(--olive);
  color: var(--white);
}
.cta-dark:hover {
  background: #3f5747;
}
.hero-message .cta {
  margin-top: 29px;
}
.hero-foot {
  position: absolute;
  bottom: 34px;
  left: 4.7%;
  right: 4.7%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}
.scroll-invite {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 11px;
  line-height: 1.7;
}
.scroll-circle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #fffef861;
  border-radius: 50%;
  font-size: 20px;
}
.view-control {
  width: 305px;
}
.view-control label {
  font-size: 12px;
}
.view-caption {
  position: relative;
}
.view-caption label {
  display: block;
  transition: opacity .45s;
}
.view-intro-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .55s, transform .7s;
  pointer-events: none;
}
.view-intro-copy em {
  font: 400 24px/1.55 var(--serif);
  color: #f4ddb0;
}
.hero.is-introducing .view-intro-copy {
  opacity: 1;
  transform: translateY(0);
}
.hero.is-introducing .view-caption label {
  opacity: 0;
}
.range-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.range-line > span {
  font-size: 8px;
  letter-spacing: 1.4px;
}
.view-control input {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: ew-resize;
  accent-color: var(--white);
  appearance: none;
  -webkit-appearance: none;
}
.range-track {
  position: relative;
  flex: 1;
  min-width: 0;
  line-height: 0;
  --thumb-position: 7px;
}
.range-track.is-hinting::after {
  content: "";
  position: absolute;
  pointer-events: none;
  left: var(--thumb-position);
  top: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid #f4ddb0;
  border-radius: 50%;
  background: #f4ddb01a;
  box-shadow: 0 0 22px #f4ddb080;
  animation: range-invitation 3s ease-out .6s 4 both;
  animation-play-state: var(--hint-play-state, running);
}
.range-track::before {
  content: "";
  position: absolute;
  pointer-events: none;
  left: var(--thumb-position);
  top: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--olive);
  box-shadow: 0 0 0 6px #fffef81a;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@keyframes range-invitation {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.65); }
  18%, 35% { opacity: 1; }
  85%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}
@media (prefers-reduced-motion: reduce) {
  .hero { --reveal: 79%; }
  .range-track.is-hinting::after { display: none; }
}
.view-control input::-webkit-slider-runnable-track {
  height: 1px;
  background: #fffef888;
}
.view-control input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  margin-top: -6px;
  box-shadow: none;
}
.view-control input::-moz-range-track {
  height: 1px;
  background: #fffef888;
}
.view-control input::-moz-range-thumb {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: transparent;
}
.view-control > p {
  font-size: 9px;
  color: #f3f2e5cc;
  margin-top: 2px;
}
.intro-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  min-height: 85px;
  padding: 20px 5%;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.strip-flower {
  color: var(--gold);
  font-size: 22px;
}
.section {
  max-width: 1600px;
  margin: auto;
  padding: 110px 8%;
}
.invitation {
  text-align: center;
  padding-top: 105px;
  padding-bottom: 80px;
}
.invitation h2 {
  font-size: clamp(31px, 3.65vw, 54px);
  margin: 29px 0;
}
.invitation-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
.facts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 850px;
  margin: 65px auto 25px;
}
.facts-row > div + div {
  border-left: 1px solid var(--line);
}
.facts-row strong {
  font: 400 68px/1 var(--serif);
  letter-spacing: -5px;
}
.facts-row strong span {
  font-size: 38px;
  letter-spacing: -3px;
  margin-left: 5px;
}
.facts-row p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}
.fact-caption {
  font-size: 10px;
  max-width: 640px;
  margin: auto;
  color: var(--muted);
}
.profession-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11%;
  padding-top: 30px;
  align-items: center;
}
.story-image {
  position: relative;
  padding-bottom: 31px;
  max-width: 540px;
}
.story-image img {
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
}
.image-note {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 8px;
  letter-spacing: 1.7px;
}
.story-copy h2 {
  margin: 24px 0 27px;
  font-size: clamp(36px, 4.4vw, 66px);
}
.story-copy > p:not(.overline) {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 430px;
}
.story-points {
  margin-top: 27px;
}
.story-points > div {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.story-points > div > span {
  font-size: 9px;
  margin-top: 5px;
  color: #9c8460;
}
.story-points p {
  font-size: 12px;
  color: var(--muted);
}
.story-points b {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.curriculum {
  background: var(--olive);
  color: var(--white);
  max-width: none;
  padding-top: 95px;
  padding-bottom: 65px;
}
.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.section-title-row h2 {
  margin-top: 25px;
}
.section-title-row > p {
  font-size: 13px;
  line-height: 1.9;
  max-width: 320px;
}
.curriculum h2 em {
  color: #bec9b0;
}
.curriculum .section-title-row > p {
  color: #d5dfd1;
}
.module-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  margin-top: 55px;
}
.module-column {
  border-top: 1px solid #fffef830;
}
details {
  border-bottom: 1px solid var(--line);
}
.curriculum details {
  border-color: #fffef830;
}
summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 19px;
  min-height: 83px;
  padding: 20px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary h3 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
.number {
  font-size: 10px;
  color: #b2c1a5;
  flex-shrink: 0;
}
.expand {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: auto;
}
.expand:before,
.expand:after {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 14px;
  height: 1px;
  background: currentColor;
}
.expand:after {
  transform: rotate(90deg);
  transition: transform 0.2s;
}
details[open] .expand:after {
  transform: rotate(0);
}
.curriculum details > p {
  font-size: 13px;
  line-height: 1.85;
  color: #d5dfd1;
  padding: 0 26px 25px 32px;
}
.program-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fffef830;
  padding-top: 30px;
  margin-top: 35px;
}
.program-bottom p {
  font-size: 12px;
  color: #d5dfd1;
}
.cta-outline-light {
  border-color: #c6d1bf;
  color: var(--white);
}
.cta-outline-light:hover {
  background: #ffffff12;
}
.school {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.1fr;
  gap: 5%;
  align-items: center;
  padding-top: 115px;
  padding-bottom: 115px;
}
.school-heading {
  align-self: start;
  padding-top: 35px;
}
.school-heading h2 {
  margin-top: 25px;
  font-size: clamp(32px, 3.1vw, 45px);
}
.school-portrait {
  padding-top: 15px;
}
.school-portrait img {
  width: 100%;
  aspect-ratio: 0.79;
  object-fit: cover;
  object-position: 50% 85%;
}
.school-portrait p {
  font-size: 8px;
  letter-spacing: 1.5px;
  margin-top: 15px;
}
.school-copy {
  padding-top: 60px;
}
.quote-mark {
  font: 70px/0.5 var(--serif);
  color: var(--gold);
}
blockquote {
  font: 400 22px/1.7 var(--serif);
  letter-spacing: -0.5px;
  margin: 10px 0 25px;
}
.school-copy > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  border-bottom: 1px solid #8b9689;
  padding-bottom: 8px;
  margin-top: 24px;
}
.quiet-link span {
  font-size: 20px;
}
.support {
  background: #eceee6;
  padding-top: 75px;
  padding-bottom: 50px;
}
.support-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 20px 10%;
  align-items: end;
}
.support-intro .overline {
  grid-column: 1/-1;
}
.support-intro h2 {
  font-size: clamp(32px, 3.4vw, 50px);
}
.support-intro > p:last-child {
  font-size: 13px;
  color: #526053;
  line-height: 1.9;
}
.support-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7%;
  margin-top: 50px;
  padding-top: 35px;
  border-top: 1px solid #c7cdbf;
}
.support-items svg {
  width: 36px;
  height: 36px;
  stroke: #66785c;
  stroke-width: 1.2;
  margin-bottom: 22px;
}
.support-items h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.support-items p {
  font-size: 13px;
  color: #526053;
  line-height: 1.8;
}
.support-note {
  font-size: 10px;
  color: #526053;
  margin-top: 40px;
  max-width: 850px;
}
.support-opportunities {
  margin-top: 35px;
  padding-top: 28px;
  border-top: 1px solid #c7cdbf;
}
.support-opportunities h3 { font: 400 27px/1.4 var(--serif); }
.support-opportunities p { max-width: 800px; margin-top: 12px; font-size: 13px; line-height: 1.9; color: #526053; }
.format-price { font: 400 40px/1.2 var(--serif); margin: 0 0 24px; }
.format-price span { font-size: 26px; }
.format-price-before { display: flex; align-items: center; gap: 16px; margin: 0 0 8px; font: 14px/1.5 var(--body); color: var(--muted); }
.format-price-before s { text-decoration-thickness: 1px; }
.format-price-before span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }
.payment-status:not(:empty) { margin-top: 16px; font-size: 13px; line-height: 1.6; color: var(--ink); }
.enrol {
  padding-top: 105px;
  padding-bottom: 75px;
}
.enrol .section-title-row > p {
  color: var(--muted);
}
.enrol-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 10%;
  margin-top: 45px;
}
.format-picker {
  border-top: 1px solid var(--line);
  align-self: start;
}
.format-tab {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 22px;
  padding: 30px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 0.2s;
}
.format-tab > span {
  font-size: 10px;
  color: var(--muted);
}
.format-tab > div {
  font: 400 24px/1.4 var(--serif);
  letter-spacing: -0.8px;
}
.format-tab small {
  display: block;
  font: 12px/1.6 var(--body);
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 10px;
}
.format-tab > i {
  font: 400 24px var(--body);
  margin-left: auto;
  color: var(--muted);
  transition: transform 0.3s;
}
.format-tab-prices { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; margin-top: 6px; font: 14px/1.5 var(--body); letter-spacing: 0; }
.format-tab-prices s { color: var(--muted); font-size: 12px; white-space: nowrap; text-decoration-thickness: 1px; }
.format-tab-prices strong { color: var(--ink); font-weight: 600; white-space: nowrap; }
.format-tab[aria-selected="true"] {
  background: #eeefe7;
  padding-left: 23px;
  padding-right: 23px;
}
.format-tab[aria-selected="true"] > i {
  color: var(--ink);
  transform: rotate(45deg);
}
.format-panel {
  padding: 35px 40px;
  background: #eeefe7;
  min-height: 450px;
}
.format-panel > .overline {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #677261;
}
.format-panel h3 {
  font: 400 31px/1.4 var(--serif);
  letter-spacing: -1px;
  margin-top: 22px;
}
.format-panel ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 32px;
  font-size: 13px;
  color: #526053;
}
.format-panel li {
  position: relative;
  padding: 9px 0 9px 22px;
}
.format-panel li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #64775c;
}
.format-panel .cta {
  width: 100%;
}
.enrol-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 25px;
  text-align: right;
}
.nojs-formats {
  font-size: 13px;
  margin-top: 20px;
}
.nojs-formats a {
  text-decoration: underline;
}
.questions {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 9%;
  padding-top: 35px;
}
.questions h2 {
  margin-top: 25px;
  font-size: clamp(33px, 3.6vw, 54px);
}
.question-list {
  border-top: 1px solid var(--line);
}
.question-list summary {
  min-height: 76px;
}
.question-list h3 {
  font-size: 14px;
}
.question-list details > p {
  font-size: 13px;
  line-height: 1.85;
  padding: 0 30px 25px 0;
  color: var(--muted);
}
.closing {
  position: relative;
  min-height: 590px;
  padding: 60px 7%;
  isolation: isolate;
  overflow: hidden;
  background: var(--olive);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.closing > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
  z-index: -2;
}
.closing:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #122c22a3;
  z-index: -1;
}
.closing h2 {
  font-size: clamp(36px, 4.5vw, 65px);
  line-height: 1.3;
  margin: 25px 0 35px;
}
.closing h2 em {
  color: var(--white);
}
.closing-contact {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
}
.closing .overline {
  font-size: 9px;
}
.footer {
  padding: 55px 6% 30px;
  background: #f3f3eb;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-top > a:not(.wordmark) {
  font-size: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .curriculum {
    padding-left: max(8%, calc((100vw - 1344px) / 2));
    padding-right: max(8%, calc((100vw - 1344px) / 2));
  }
}
@media (max-height: 800px) and (min-width: 901px) {
  .hero {
    min-height: 650px;
  }
  .hero-message {
    top: 22%;
  }
  .hero h1 {
    font-size: 82px;
    margin: 18px 0;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-message .cta {
    margin-top: 22px;
  }
  .masthead {
    height: 88px;
  }
  .hero-foot {
    bottom: 25px;
  }
}
@media (max-width: 1100px) {
  .masthead {
    gap: 20px;
  }
  .wordmark {
    font-size: 15px;
    gap: 10px;
  }
  .brand-symbol {
    font-size: 41px;
  }
  .wordmark small {
    font-size: 6px;
    letter-spacing: 1.3px;
  }
  .main-nav {
    gap: 19px;
    font-size: 11px;
  }
  .nav-contact {
    font-size: 11px;
  }
  .intro-strip {
    gap: 25px;
    font-size: 11px;
  }
  .section {
    padding-left: 6%;
    padding-right: 6%;
  }
  .profession-story {
    gap: 8%;
  }
  .story-copy h2 {
    font-size: 45px;
  }
  .school {
    grid-template-columns: 0.8fr 1fr;
    gap: 40px 8%;
  }
  .school-heading {
    grid-column: 1/-1;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .school-heading h2 {
    font-size: 40px;
    margin-top: 0;
  }
  .school-portrait {
    padding-top: 0;
  }
  .school-portrait img {
    aspect-ratio: 0.9;
  }
  .school-copy {
    padding-top: 0;
  }
  .school-copy blockquote {
    font-size: 25px;
  }
  .support-intro {
    grid-template-columns: 1.3fr 1fr;
  }
  .enrol-layout {
    gap: 6%;
  }
  .format-tab > div {
    font-size: 21px;
  }
  .format-panel {
    padding: 30px;
  }
  .format-panel h3 {
    font-size: 27px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top .wordmark {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 20px;
  }
  .hero {
    min-height: 740px;
    height: 100svh;
    max-height: 920px;
  }
  .masthead {
    height: 80px;
    margin: 0 6%;
    justify-content: space-between;
  }
  .wordmark {
    font-size: 15px;
  }
  .wordmark small {
    font-size: 5.8px;
    letter-spacing: 1.1px;
  }
  .brand-symbol {
    font-size: 39px;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: -6.82%;
    right: -6.82%;
    top: 80px;
    background: var(--olive);
    padding: 20px 6% 30px;
    z-index: 10;
    border-bottom: 1px solid #fffef830;
  }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .main-nav a {
    padding: 13px 0;
    font-size: 15px;
  }
  .nav-contact {
    display: none;
  }
  .nav-toggle {
    display: flex;
    gap: 15px;
    align-items: center;
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: 11px;
    min-height: 44px;
    padding: 10px 0 10px 12px;
  }
  .nav-toggle i {
    display: block;
    width: 19px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }
  .hero-scenes img {
    object-position: 80% 50%;
  }
  .scene-scrim {
    background:
      linear-gradient(90deg, #102c255c, #102c2510),
      linear-gradient(
        180deg,
        #0f2c2466,
        transparent 24%,
        #0f2c2420 53%,
        #0f2c24c9
      );
  }
  .hero-message {
    top: 23%;
    left: 7%;
    right: 7%;
    max-width: none;
  }
  .hero .overline {
    font-size: 8px;
    letter-spacing: 1.7px;
  }
  .hero h1 {
    font-size: clamp(52px, 12.5vw, 84px);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.055em;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.9;
  }
  .hero-message .cta {
    margin-top: 25px;
  }
  .hero-heading-kicker { font-size: 8px; letter-spacing: 1.7px; margin-bottom: 25px; }
  .hero-heading-line { margin-bottom: 22px; }
  .cta {
    min-height: 55px;
    font-size: 12px;
    padding: 14px 21px;
    gap: 35px;
  }
  .hero-foot {
    left: 7%;
    right: 7%;
    bottom: 25px;
    display: block;
  }
  .scroll-invite {
    display: none;
  }
  .view-control {
    width: 100%;
    max-width: 330px;
  }
  .view-control label {
    font-size: 11px;
  }
  .range-line {
    gap: 16px;
  }
  .view-control input {
    height: 44px;
  }
  .view-control > p {
    font-size: 9px;
  }
  .intro-strip {
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px 6%;
    font-size: 10px;
    justify-content: center;
  }
  .intro-strip .strip-flower {
    font-size: 14px;
  }
  .intro-strip > span:last-child {
    flex-basis: 100%;
    text-align: center;
  }
  .intro-strip .strip-flower:nth-child(4) {
    display: none;
  }
  .section {
    padding: 65px 7%;
  }
  .overline {
    font-size: 8px;
    letter-spacing: 1.7px;
  }
  h2 {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: -0.05em;
  }
  .invitation h2 {
    font-size: clamp(28px, 6.6vw, 46px);
    margin: 25px 0;
  }
  .invitation-text {
    font-size: 14px;
    line-height: 1.9;
  }
  .wide-only {
    display: none;
  }
  .facts-row {
    margin: 40px auto 24px;
    gap: 12px;
  }
  .facts-row strong {
    font-size: 44px;
    letter-spacing: -3px;
  }
  .facts-row strong span {
    font-size: 24px;
    margin-left: 2px;
    letter-spacing: -2px;
  }
  .facts-row p {
    font-size: 9px;
    line-height: 1.7;
    margin-top: 14px;
    padding: 0 6px;
  }
  .fact-caption {
    font-size: 9px;
    line-height: 1.8;
  }
  .profession-story {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 0;
  }
  .story-image {
    width: 100%;
    max-width: none;
  }
  .story-image img {
    aspect-ratio: 0.95;
    object-position: center 55%;
  }
  .image-note {
    font-size: 7px;
    letter-spacing: 1.1px;
  }
  .story-copy h2 {
    font-size: 40px;
    margin: 20px 0;
  }
  .story-copy > p:not(.overline) {
    font-size: 14px;
  }
  .story-points {
    margin-top: 25px;
  }
  .story-points p {
    font-size: 12px;
  }
  .story-points b {
    font-size: 13px;
  }
  .curriculum {
    padding-top: 65px;
    padding-bottom: 40px;
  }
  .section-title-row {
    display: block;
  }
  .section-title-row h2 {
    font-size: clamp(28px, 6.9vw, 43px);
    margin-top: 24px;
  }
  .section-title-row > p {
    margin-top: 24px;
    font-size: 13px;
    max-width: none;
  }
  .section-title-row > p br {
    display: none;
  }
  .module-columns {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
  }
  .module-column + .module-column {
    border-top: 0;
  }
  .module-columns summary {
    min-height: 76px;
    gap: 14px;
  }
  .module-columns h3 {
    font-size: 14px;
  }
  .curriculum details > p {
    font-size: 12px;
    padding-left: 28px;
  }
  .program-bottom {
    display: block;
    margin-top: 28px;
    padding-top: 25px;
  }
  .program-bottom .cta {
    margin-top: 23px;
  }
  .program-bottom p {
    font-size: 12px;
  }
  .school {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .school-heading {
    display: block;
  }
  .school-heading h2 {
    margin-top: 22px;
    font-size: 37px;
  }
  .school-portrait {
    max-width: 470px;
    width: 88%;
    margin-left: auto;
  }
  .school-portrait img {
    aspect-ratio: 0.95;
  }
  .school-portrait p {
    font-size: 7px;
  }
  .school-copy blockquote {
    font-size: 25px;
    line-height: 1.7;
  }
  .school-copy > p {
    font-size: 14px;
  }
  .quote-mark {
    font-size: 65px;
  }
  .quiet-link {
    font-size: 13px;
  }
  .support-intro {
    display: block;
  }
  .support-intro h2 {
    font-size: 29px;
    margin: 22px 0;
  }
  .support-intro > p:last-child {
    font-size: 14px;
  }
  .support-items {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
    padding-top: 30px;
  }
  .support-items article {
    padding-left: 56px;
    position: relative;
  }
  .support-items svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
  }
  .support-items h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .support-items p {
    font-size: 13px;
  }
  .support-note {
    font-size: 10px;
    margin-top: 28px;
  }
  .enrol {
    padding-bottom: 50px;
  }
  .enrol-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .format-tab {
    padding: 22px 8px;
    gap: 18px;
  }
  .format-tab[aria-selected="true"] {
    padding: 22px 16px;
  }
  .format-tab > div {
    font-size: 22px;
  }
  .format-tab small {
    font-size: 11px;
    margin-top: 8px;
  }
  .format-panel {
    min-height: 0;
    padding: 28px 24px;
  }
  .format-panel h3 {
    font-size: 26px;
  }
  .format-panel ul {
    font-size: 13px;
    margin: 20px 0 28px;
  }
  .enrol-note {
    font-size: 11px;
    text-align: left;
    line-height: 1.8;
  }
  .questions {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 15px;
  }
  .questions h2 {
    font-size: 36px;
    margin-top: 20px;
  }
  .question-list h3 {
    font-size: 14px;
  }
  .question-list summary {
    min-height: 75px;
    gap: 15px;
  }
  .question-list details > p {
    font-size: 13px;
  }
  .closing {
    min-height: 540px;
    padding: 50px 7%;
  }
  .closing > img {
    object-position: 61% 50%;
  }
  .closing h2 {
    font-size: clamp(28px, 7.3vw, 42px);
    line-height: 1.5;
    margin: 23px 0 30px;
  }
  .closing .overline {
    font-size: 7px;
    letter-spacing: 1.5px;
  }
  .footer {
    padding: 40px 7% 25px;
  }
  .footer-top {
    gap: 15px 25px;
  }
  .footer-top > a:not(.wordmark) {
    font-size: 11px;
  }
  .footer-top .wordmark {
    margin-bottom: 12px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 22px;
    margin-top: 28px;
    padding-top: 20px;
    font-size: 9px;
  }
  .footer-bottom > span:nth-child(2) {
    flex-basis: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .scene-ocean {
    will-change: auto;
  }
}
