:root {
  --paper: #f3efe7;
  --paper-bright: #faf8f3;
  --ink: #171616;
  --ink-soft: #343130;
  --plum: #6f245f;
  --plum-deep: #4d173f;
  --lavender: #c9b1c5;
  --mineral: #b8b3ab;
  --line: rgba(23, 22, 22, 0.18);
  --light-line: rgba(255, 255, 255, 0.2);
  --serif:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville,
    Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
  --header-height: 86px;
  --concept-height: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--paper-bright);
  background: var(--plum);
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul,
figure,
blockquote {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

[hidden] {
  display: none !important;
}

main > section[id] {
  scroll-margin-top: calc(var(--concept-height) + 72px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid #b06ca2;
  outline-offset: 4px;
}

.concept-bar {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: var(--concept-height);
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.concept-bar__detail {
  position: relative;
  color: rgba(255, 255, 255, 0.45);
}

.concept-bar__detail::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--lavender);
  content: "";
}

.site-header {
  position: fixed;
  z-index: 90;
  top: var(--concept-height);
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  height: var(--header-height);
  padding: 0 42px;
  border-bottom: 1px solid rgba(23, 22, 22, 0.16);
  transition:
    height 400ms var(--ease),
    background 400ms var(--ease),
    box-shadow 400ms var(--ease);
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(250, 248, 243, 0.93);
  box-shadow: 0 12px 30px rgba(23, 22, 22, 0.06);
  backdrop-filter: blur(15px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  color: var(--plum);
}

.brand__mark circle,
.brand__mark path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.brand__mark circle:last-child {
  fill: currentColor;
  stroke: none;
}

.brand__type {
  display: grid;
  line-height: 1;
}

.brand__type strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand__type small {
  margin-top: 4px;
  color: rgba(23, 22, 22, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--plum);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

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

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 250ms ease,
    background 250ms ease;
}

.header-cta:hover {
  color: var(--paper-bright);
  background: var(--ink);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(820px, 100svh);
  padding: calc(var(--concept-height) + var(--header-height) + 54px)
    max(5vw, 48px) 72px;
  isolation: isolate;
}

.hero__image,
.hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__image {
  background-image: url("assets/hero-studio.webp");
  background-position: 50% 50%;
  background-size: cover;
}

.hero__veil {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(243, 239, 231, 0.02) 0%,
      rgba(243, 239, 231, 0) 44%,
      rgba(243, 239, 231, 0.22) 58%,
      rgba(243, 239, 231, 0.65) 100%
    ),
    linear-gradient(
      180deg,
      rgba(243, 239, 231, 0.16),
      transparent 18%,
      transparent 74%,
      rgba(23, 22, 22, 0.23)
    );
}

.hero__index {
  position: absolute;
  top: calc(var(--concept-height) + var(--header-height) + 24px);
  left: 48px;
  color: rgba(23, 22, 22, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__card {
  align-self: center;
  justify-self: end;
  width: min(610px, 48vw);
  margin-top: 22px;
  padding: clamp(34px, 4.2vw, 66px);
  border: 1px solid rgba(23, 22, 22, 0.16);
  background: rgba(250, 248, 243, 0.9);
  box-shadow: 0 28px 80px rgba(23, 22, 22, 0.13);
  backdrop-filter: blur(12px);
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.hero__meta .eyebrow {
  min-width: 0;
}

.hero__programme-mark {
  flex: 0 0 auto;
  width: clamp(102px, 9vw, 122px);
  height: auto;
}

.eyebrow,
.section-kicker {
  color: var(--plum);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-kicker::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-kicker--light {
  color: var(--lavender);
}

.hero h1 {
  max-width: 9.2em;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 77px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 > span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--plum);
  font-weight: 400;
}

.hero__lede {
  max-width: 520px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.115em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 250ms var(--ease),
    color 250ms ease,
    background 250ms ease;
}

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

.button--ink {
  color: var(--paper-bright);
  background: var(--ink);
}

.button--ink:hover {
  background: var(--plum);
}

.button--light {
  color: var(--ink);
  background: var(--paper-bright);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(23, 22, 22, 0.45);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.text-link span {
  transition: transform 250ms var(--ease);
}

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

.text-link--plum {
  color: var(--plum);
  border-color: rgba(111, 36, 95, 0.4);
}

.hero__fineprint {
  margin-top: 24px;
  color: rgba(23, 22, 22, 0.53);
  font-size: 9px;
  letter-spacing: 0.03em;
}

.hero__stamp {
  position: absolute;
  right: 36px;
  bottom: 38px;
  display: grid;
  align-content: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: white;
  text-align: center;
  text-shadow: 0 2px 20px rgba(23, 22, 22, 0.3);
}

.hero__stamp span {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__stamp strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: white;
  content: "";
  animation: scroll-line 2.4s var(--ease) infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateX(-110%);
  }
  55%,
  100% {
    transform: translateX(110%);
  }
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) 3fr;
  align-items: stretch;
  color: var(--paper-bright);
  background: var(--ink);
}

.proof-band__intro {
  display: flex;
  align-items: center;
  padding: 32px 48px;
  border-right: 1px solid var(--light-line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  min-height: 158px;
  padding: 28px clamp(20px, 2.4vw, 40px);
  border-right: 1px solid var(--light-line);
}

.proof-grid > div:last-child {
  border-right: 0;
}

.proof-grid dt {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-grid dt small {
  margin-left: 2px;
  color: var(--lavender);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.proof-grid dd {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section {
  padding: clamp(100px, 10vw, 160px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.journey__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(520px, 1.45fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.journey__intro {
  position: sticky;
  top: 130px;
}

.journey h2,
.lineage h2,
.studio-story h2,
.calendar h2,
.investment h2,
.faq h2,
.orientation h2 {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.journey__intro > p {
  max-width: 440px;
  margin-top: 28px;
  color: rgba(23, 22, 22, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.journey__intro .text-link {
  margin-top: 30px;
}

.module-list {
  list-style: none;
}

.module-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 76px;
  gap: 22px;
  align-items: start;
  min-height: 168px;
  padding: 27px 0 30px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.module-card:last-child {
  border-bottom: 1px solid var(--line);
}

.module-card::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--plum);
  content: "";
  transition: width 500ms var(--ease);
}

.module-card:hover::after {
  width: 100%;
}

.module-card__number {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 19px;
}

.module-card__meta {
  color: rgba(23, 22, 22, 0.53);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.module-card h3 {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 37px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.module-card p:last-child {
  max-width: 490px;
  margin-top: 10px;
  color: rgba(23, 22, 22, 0.62);
  font-size: 13px;
}

.module-card__mark {
  color: rgba(111, 36, 95, 0.11);
  font-family: var(--serif);
  font-size: 68px;
  line-height: 0.9;
  text-align: right;
}

.hours-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  margin-top: clamp(90px, 11vw, 155px);
  border: 1px solid var(--line);
  background: var(--paper-bright);
  box-shadow: 0 30px 80px rgba(23, 22, 22, 0.06);
}

.hours-card__total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
  padding: clamp(38px, 5vw, 76px);
  border-right: 1px solid var(--line);
}

.hours-card__total h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.hours-card__total h3 strong {
  color: var(--plum);
  font-size: clamp(90px, 11vw, 152px);
  font-weight: 400;
  letter-spacing: -0.08em;
}

.hours-card__total > p:not(.eyebrow) {
  color: rgba(23, 22, 22, 0.63);
  font-family: var(--serif);
  font-size: 21px;
}

.hours-card__total > span {
  align-self: flex-start;
  margin-top: 24px;
  padding: 7px 10px;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hours-card__breakdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(40px, 5vw, 76px);
}

.hour-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 16px;
  color: white;
  isolation: isolate;
}

.hour-row::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--ink);
  content: "";
  transform-origin: left;
}

.hour-row--observe::before {
  width: 67.4%;
  background: var(--plum);
}
.hour-row--practice::before {
  width: 54.3%;
  background: #87527d;
}
.hour-row--teach::before {
  width: 50%;
  background: #9f7a98;
}

.hour-row span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hour-row strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.hours-card__note {
  grid-column: 2;
  margin: -47px 76px 30px;
  color: rgba(23, 22, 22, 0.5);
  font-size: 9px;
}

.manifesto {
  position: relative;
  min-height: min(900px, 84svh);
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.manifesto > img,
.manifesto__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.manifesto > img {
  object-fit: cover;
  object-position: center 47%;
  filter: grayscale(100%) contrast(1.08);
}

.manifesto__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(23, 22, 22, 0.92),
      rgba(23, 22, 22, 0.23) 56%,
      rgba(23, 22, 22, 0.08)
    ),
    linear-gradient(180deg, transparent 55%, rgba(23, 22, 22, 0.58));
}

.manifesto__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--shell);
  min-height: inherit;
  margin: 0 auto;
}

.manifesto__copy > p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto ol {
  list-style: none;
}

.manifesto li {
  font-family: var(--serif);
  font-size: clamp(66px, 9vw, 140px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.manifesto li:nth-child(2) {
  color: var(--lavender);
  font-style: italic;
}

.manifesto__caption {
  position: absolute;
  z-index: 1;
  right: 46px;
  bottom: 38px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.section--ink {
  color: var(--paper-bright);
  background: var(--ink);
}

.lineage {
  padding-top: clamp(120px, 12vw, 190px);
}

.lineage__header {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.75fr;
  gap: 40px;
  align-items: start;
}

.lineage__header h2 {
  margin-top: 0;
}

.lineage__header > p {
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.educator-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
  margin-top: clamp(80px, 9vw, 130px);
}

.educator-feature {
  position: relative;
}

.educator-feature > img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  filter: grayscale(25%);
}

.educator-feature figcaption {
  position: relative;
  width: calc(100% - 64px);
  margin: -60px 0 0 64px;
  padding: 26px 34px;
  color: var(--ink);
  background: var(--paper-bright);
}

.educator-feature figcaption span,
.educator-portrait span {
  color: var(--plum);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.educator-feature h3,
.educator-portrait h3 {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;
}

.educator-feature figcaption p,
.educator-portrait p {
  margin-top: 8px;
  color: rgba(23, 22, 22, 0.58);
  font-size: 11px;
}

.educator-side {
  padding-bottom: 38px;
}

.educator-portrait {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: center;
}

.educator-portrait img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(25%);
}

.educator-portrait h3 {
  color: var(--paper-bright);
  font-size: 26px;
}

.educator-portrait p {
  color: rgba(255, 255, 255, 0.48);
}

.educator-side blockquote {
  margin-top: 48px;
  padding-top: 31px;
  border-top: 1px solid var(--light-line);
}

.educator-side blockquote p {
  max-width: 420px;
  color: var(--lavender);
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 45px);
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.lineage-rail {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: clamp(90px, 10vw, 145px);
  padding: 34px 0;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.lineage-rail > div {
  display: grid;
}

.lineage-rail__label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.lineage-rail strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.lineage-rail small {
  margin-top: 4px;
  color: var(--lavender);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.lineage-rail > i {
  position: relative;
  width: 72px;
  height: 1px;
  background: var(--light-line);
}

.lineage-rail > i::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
  transform: rotate(45deg);
}

.studio-story__grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.studio-story__visual {
  position: relative;
  min-height: 680px;
}

.studio-story__main {
  width: 87%;
  height: 600px;
  object-fit: cover;
}

.studio-story__inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36%;
  height: 335px;
  border: 12px solid var(--paper);
  object-fit: cover;
}

.studio-story__figure {
  position: absolute;
  bottom: -15px;
  left: 30px;
  color: rgba(111, 36, 95, 0.12);
  font-family: var(--serif);
  font-size: 180px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.studio-story__copy h2 {
  max-width: 7.4em;
}

.studio-story__copy > p {
  max-width: 470px;
  margin-top: 30px;
  color: rgba(23, 22, 22, 0.65);
  line-height: 1.78;
}

.studio-story dl {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.studio-story dl > div {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.studio-story dt {
  color: rgba(23, 22, 22, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-story dd {
  font-family: var(--serif);
  font-size: 17px;
}

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

.calendar__header {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.calendar__header h2 {
  max-width: 10em;
}

.calendar__header > p {
  padding-bottom: 8px;
  color: rgba(23, 22, 22, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.calendar-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(70px, 8vw, 115px);
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.calendar-track li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 225px;
  padding: 28px;
  background: var(--paper-bright);
}

.calendar-track li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: var(--plum);
  content: "";
}

.calendar-track time {
  color: var(--plum);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.calendar-track span {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
}

.calendar-track strong {
  margin-top: auto;
  color: rgba(23, 22, 22, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calendar-track__exam {
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: 0.5fr 1fr 1fr;
  align-items: center;
  min-height: 120px !important;
  color: var(--paper-bright);
  background: var(--ink) !important;
}

.calendar-track__exam span,
.calendar-track__exam strong {
  margin-top: 0;
}

.calendar-track__exam strong {
  color: rgba(255, 255, 255, 0.53);
  line-height: 1.6;
}

.calendar__note {
  margin-top: 19px;
  color: rgba(23, 22, 22, 0.48);
  font-size: 9px;
}

.section--plum {
  color: var(--paper-bright);
  background: var(--plum-deep);
}

.investment__header {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr 0.55fr;
  gap: 50px;
  align-items: start;
}

.investment__header h2 {
  margin-top: 0;
  max-width: 10em;
}

.investment__header > p {
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
  line-height: 1.7;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(70px, 8vw, 112px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-card {
  position: relative;
  min-height: 440px;
  padding: clamp(28px, 3vw, 46px);
  background: var(--plum-deep);
  transition:
    color 400ms var(--ease),
    background 400ms var(--ease),
    transform 400ms var(--ease);
}

.price-card.is-selected {
  color: var(--ink);
  background: var(--paper-bright);
}

@media (hover: hover) and (pointer: fine) {
  .price-card:not(.is-selected):hover {
    z-index: 1;
    background: #5a1b4b;
    transform: translateY(-4px);
  }
}

.price-card:focus-within {
  z-index: 2;
  outline: 2px solid var(--lavender);
  outline-offset: -4px;
}

.price-card__tag {
  color: var(--lavender);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.price-card.is-selected .price-card__tag {
  color: var(--plum);
}

.price-card__amount {
  margin-top: 42px;
  font-family: var(--serif);
  font-size: clamp(47px, 4.5vw, 68px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-card__amount small {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.price-card > p:nth-of-type(2) {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.price-card.is-selected > p:nth-of-type(2) {
  color: rgba(23, 22, 22, 0.56);
}

.price-card ul {
  margin-top: 45px;
  list-style: none;
}

.price-card li {
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.price-card.is-selected li {
  border-color: var(--line);
  color: rgba(23, 22, 22, 0.62);
}

.price-card__select {
  position: absolute;
  right: clamp(28px, 3vw, 46px);
  bottom: 35px;
  left: clamp(28px, 3vw, 46px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: auto;
  min-height: 44px;
  padding-top: 13px;
  border: 0;
  border-top: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
}

.price-card__select:focus-visible {
  outline-color: currentColor;
}

.price-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.price-selection p {
  display: grid;
  gap: 3px;
}

.price-selection p span {
  color: var(--lavender);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-selection p strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.price-selection > a {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--paper-bright);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.exam-note {
  display: grid;
  grid-template-columns: 0.45fr 0.45fr 1.5fr;
  gap: 30px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.exam-note span {
  color: var(--lavender);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.exam-note strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.exam-note p {
  color: rgba(255, 255, 255, 0.53);
  font-size: 10px;
  line-height: 1.6;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 10vw, 155px);
  align-items: start;
}

.faq header {
  position: sticky;
  top: 130px;
}

.faq header p {
  max-width: 400px;
  margin-top: 28px;
  color: rgba(23, 22, 22, 0.61);
  font-size: 14px;
  line-height: 1.75;
}

.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: 27px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--plum);
  font-family: var(--sans);
  font-size: 25px;
  font-weight: 300;
  text-align: center;
  transition: transform 350ms var(--ease);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 670px;
  padding: 0 54px 28px 0;
  color: rgba(23, 22, 22, 0.62);
  font-size: 13px;
  line-height: 1.75;
}

.orientation {
  padding: clamp(100px, 10vw, 150px) 0;
}

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

.orientation__copy h2 {
  max-width: 8em;
}

.orientation__copy > p {
  max-width: 490px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
}

.orientation__assurance {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: var(--lavender);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.orientation__assurance svg {
  width: 25px;
  height: 25px;
}

.orientation__assurance path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.orientation-card {
  min-height: 590px;
  padding: clamp(30px, 4.4vw, 62px);
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.27);
}

.orientation-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(23, 22, 22, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.orientation-card__top button {
  padding: 0;
  border: 0;
  color: var(--plum);
  background: transparent;
  cursor: pointer;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.orientation-card__progress {
  height: 2px;
  margin-top: 17px;
  background: rgba(23, 22, 22, 0.12);
}

.orientation-card__progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--plum);
  transition: width 500ms var(--ease);
}

.orientation-card__progress i[data-step="2"] {
  width: 50%;
}
.orientation-card__progress i[data-step="3"] {
  width: 75%;
}
.orientation-card__progress i[data-step="4"] {
  width: 100%;
}

.orientation-card__body {
  min-height: 380px;
  padding-top: 49px;
}

.orientation-card__body h3 {
  max-width: 12em;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(31px, 3.1vw, 46px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.choice-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.choice-list button {
  min-height: 62px;
  padding: 13px 17px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  line-height: 1.35;
  text-align: left;
  transition:
    color 220ms ease,
    border 220ms ease,
    background 220ms ease,
    transform 220ms var(--ease);
}

.choice-list button::after {
  float: right;
  color: var(--plum);
  content: "↗";
}

.choice-list button:hover,
.choice-list button:focus-visible {
  color: white;
  border-color: var(--plum);
  background: var(--plum);
  transform: translateY(-2px);
}

.choice-list button:hover::after,
.choice-list button:focus-visible::after {
  color: white;
}

.orientation-card__privacy {
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: rgba(23, 22, 22, 0.43);
  font-size: 8px;
  letter-spacing: 0.05em;
}

.orientation-card__privacy span {
  margin-right: 6px;
  color: #4d895d;
  font-size: 7px;
}

.orientation-finish {
  padding-top: 20px;
}

.orientation-finish__mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid var(--plum);
  border-radius: 50%;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 29px;
}

.orientation-finish h3 {
  margin-top: 25px;
}

.orientation-finish p {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(23, 22, 22, 0.61);
  font-size: 13px;
  line-height: 1.7;
}

.orientation-finish__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.orientation-finish__contact,
.orientation-finish button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.orientation-finish__contact {
  color: white;
  background: var(--ink);
}

.orientation-finish button {
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 55px 48px;
  border-top: 1px solid var(--line);
  color: rgba(23, 22, 22, 0.55);
  background: var(--paper);
  font-size: 9px;
}

.site-footer__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
}

.site-footer__brand strong {
  color: var(--plum);
  font-weight: 400;
  font-style: italic;
}

.site-footer__concept {
  justify-self: end;
}

.site-footer > a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1120px);
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 28px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .header-cta {
    padding-inline: 13px;
  }

  .hero__card {
    width: min(630px, 54vw);
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-band__intro {
    min-height: 75px;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .lineage__header,
  .investment__header {
    grid-template-columns: 0.55fr 1.2fr;
  }

  .lineage__header > p,
  .investment__header > p {
    grid-column: 2;
  }

  .hours-card__note {
    margin-inline: 50px;
  }
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 48px, 840px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    padding: 12px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 300ms var(--ease);
  }

  .menu-toggle i::before {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(90deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 80;
    top: calc(var(--concept-height) + 72px);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    place-items: center;
    color: white;
    background: rgba(23, 22, 22, 0.98);
  }

  .mobile-menu nav {
    display: grid;
    width: min(520px, calc(100% - 48px));
  }

  .mobile-menu nav > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--light-line);
    font-family: var(--serif);
    font-size: 30px;
  }

  .mobile-menu .button {
    margin-top: 32px;
  }

  .hero {
    padding-inline: 32px;
  }

  .hero__card {
    width: min(620px, 65vw);
  }

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

  .proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--light-line);
  }

  .journey__grid,
  .faq__grid,
  .orientation__grid {
    grid-template-columns: 1fr;
  }

  .journey__intro,
  .faq header {
    position: static;
  }

  .module-list,
  .faq-list {
    margin-top: 35px;
  }

  .hours-card {
    grid-template-columns: 1fr;
  }

  .hours-card__total {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hours-card__note {
    grid-column: 1;
    margin: -20px 50px 34px;
  }

  .lineage__header,
  .investment__header {
    grid-template-columns: 1fr;
  }

  .lineage__header > p,
  .investment__header > p {
    grid-column: auto;
  }

  .educator-layout {
    grid-template-columns: 1fr;
  }

  .educator-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .educator-side blockquote {
    margin-top: 0;
    padding-top: 0;
    padding-left: 34px;
    border-top: 0;
    border-left: 1px solid var(--light-line);
  }

  .lineage-rail {
    grid-template-columns: 1fr;
  }

  .lineage-rail > i {
    width: 1px;
    height: 30px;
    margin-left: 4px;
  }

  .lineage-rail > i::after {
    top: auto;
    right: -2px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .studio-story__grid {
    grid-template-columns: 1fr;
  }

  .studio-story__copy {
    max-width: 620px;
  }

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

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

  .calendar-track__exam {
    grid-template-columns: 1fr 1fr;
  }

  .calendar-track__exam strong {
    grid-column: 1 / -1;
  }

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

  .price-card {
    min-height: 390px;
  }

  .exam-note {
    grid-template-columns: 1fr 1fr;
  }

  .exam-note p {
    grid-column: 1 / -1;
  }

  .orientation-card {
    max-width: 760px;
  }

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

  .site-footer__concept {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 40px);
    --header-height: 70px;
  }

  .concept-bar {
    justify-content: flex-start;
    padding-left: 20px;
    font-size: 8px;
  }

  .concept-bar__detail {
    display: none;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 20px;
    border-color: rgba(23, 22, 22, 0.12);
  }

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

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__type strong {
    font-size: 15px;
  }

  .brand__type small {
    font-size: 7px;
  }

  .menu-toggle span {
    display: none;
  }

  .mobile-menu {
    top: calc(var(--concept-height) + var(--header-height));
  }

  .hero {
    display: flow-root;
    min-height: auto;
    padding: 0 20px 46px;
    background: var(--paper);
  }

  .hero__image,
  .hero__veil {
    height: clamp(360px, 46svh, 390px);
    min-height: 0;
  }

  .hero__image {
    background-position: 45% center;
  }

  .hero__veil {
    background: linear-gradient(
      180deg,
      rgba(243, 239, 231, 0.14),
      transparent 58%,
      rgba(23, 22, 22, 0.15)
    );
  }

  .hero__card {
    width: 100%;
    margin-top: clamp(360px, 46svh, 390px);
    padding: 38px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero__meta {
    display: grid;
    justify-content: start;
    justify-items: start;
    gap: 12px;
  }

  .hero__meta .eyebrow {
    max-width: none;
  }

  .hero__programme-mark {
    width: 158px;
  }

  .hero h1 {
    max-width: none;
    margin-top: 15px;
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 0.94;
  }

  .hero__lede {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.52;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-top: 22px;
  }

  .hero__actions .button {
    max-width: 100%;
    min-height: 48px;
    padding-inline: 18px;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__index,
  .scroll-cue {
    display: none;
  }

  .hero__stamp {
    top: 164px;
    right: 20px;
    bottom: auto;
    width: 84px;
    height: 84px;
  }

  .hero__stamp strong {
    font-size: 23px;
  }

  .proof-band__intro {
    padding: 25px 20px;
  }

  .proof-grid > div {
    min-height: 128px;
    padding: 23px 20px;
  }

  .proof-grid dt {
    font-size: 44px;
  }

  .section {
    padding: 72px 0;
  }

  .journey h2,
  .lineage h2,
  .studio-story h2,
  .calendar h2,
  .investment h2,
  .faq h2,
  .orientation h2 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .module-card {
    grid-template-columns: 34px 1fr;
    gap: 13px;
    min-height: auto;
  }

  .module-card__mark {
    display: none;
  }

  .hours-card {
    width: calc(100% - 24px);
  }

  .hours-card__total,
  .hours-card__breakdown {
    padding: 35px 26px;
  }

  .hours-card__total h3 {
    flex-direction: column;
    gap: 2px;
  }

  .hours-card__total h3 strong {
    font-size: 90px;
  }

  .hour-row {
    min-height: 60px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .hours-card__note {
    margin: -10px 26px 28px;
  }

  .manifesto {
    min-height: 500px;
  }

  .manifesto > img {
    object-position: 58% center;
  }

  .manifesto__copy {
    justify-content: flex-end;
    padding-bottom: 70px;
  }

  .manifesto li {
    font-size: 56px;
  }

  .manifesto__caption {
    right: 20px;
    bottom: 24px;
  }

  .lineage__header {
    gap: 25px;
  }

  .educator-feature > img {
    aspect-ratio: 1.08;
  }

  .educator-feature figcaption {
    width: calc(100% - 18px);
    margin: -36px 0 0 18px;
    padding: 22px;
  }

  .educator-side {
    grid-template-columns: 1fr;
  }

  .educator-side blockquote {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid var(--light-line);
    border-left: 0;
  }

  .studio-story__visual {
    min-height: 450px;
  }

  .studio-story__main {
    width: 94%;
    height: 380px;
  }

  .studio-story__inset {
    width: 44%;
    height: 210px;
    border-width: 8px;
  }

  .studio-story__figure {
    font-size: 120px;
  }

  .calendar-track {
    grid-template-columns: 1fr;
  }

  .calendar-track li {
    min-height: 155px;
  }

  .calendar-track__exam {
    grid-template-columns: 1fr;
  }

  .calendar-track__exam strong {
    grid-column: auto;
  }

  .investment__header {
    gap: 25px;
  }

  .price-card {
    min-height: 360px;
  }

  .price-selection {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .price-selection > a {
    justify-content: space-between;
  }

  .exam-note {
    grid-template-columns: 1fr;
  }

  .exam-note p {
    grid-column: auto;
  }

  .faq-list summary {
    padding: 24px 0;
    font-size: 22px;
  }

  .orientation__grid {
    width: 100%;
    gap: 60px;
  }

  .orientation__copy {
    width: var(--shell);
    margin: 0 auto;
  }

  .orientation-card {
    min-height: 570px;
    padding: 28px 20px;
  }

  .orientation-card__body {
    min-height: 390px;
    padding-top: 32px;
  }

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

  .choice-list button {
    min-height: 54px;
  }

  .orientation-finish__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .orientation-finish__contact,
  .orientation-finish button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 42px 20px;
  }

  .site-footer > p {
    grid-column: 1 / -1;
  }

  .site-footer__concept {
    grid-row: 3;
  }

  .site-footer > a {
    grid-column: 2;
    grid-row: 1;
  }
}

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

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