@font-face {
  font-family: "Mattone";
  src: url("assets/fonts/mattone/Mattone-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader/Newsreader-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald/Oswald-Variable.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f7f7f2;
  --paper-deep: #eeeade;
  --ink: #101744;
  --ink-soft: #444967;
  --teal: #00aaa7;
  --coral: #ff5d50;
  --amber: #f8b500;
  --green: #25b94a;
  --hairline: rgba(16, 23, 68, 0.85);
  --light-hairline: rgba(247, 247, 242, 0.36);
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-y: clamp(5.5rem, 10vw, 9.5rem);
  --display: "Mattone", "Arial Narrow", sans-serif;
  --headline: "Oswald", "Arial Narrow", sans-serif;
  --reading: "Newsreader", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  font-family: var(--reading);
  font-size: 18px;
  line-height: 1.48;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.16;
  content: "";
  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='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
.wordmark,
.site-nav,
.menu-button,
.button,
.section-label,
.hero__facts,
.workspace__heading,
.workspace__views,
.workspace__process,
.method-row__number,
.program-list__number,
.dates span,
.session__facts,
.site-footer {
  font-family: var(--display);
  font-weight: 400;
}

h1,
h2,
.spoiler-band p,
.finale h2 {
  font-family: var(--headline);
  font-weight: 600;
}

h3 {
  font-family: var(--display);
  font-weight: 400;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 300;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  min-height: 78px;
  margin: 0 var(--page-gutter);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}

.wordmark {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: clamp(0.75rem, 1.35vw, 1rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  margin-left: auto;
  font-size: 0.95rem;
  letter-spacing: 0.035em;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.28rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  color: inherit;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-button__close {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(33rem, 0.9fr);
  min-height: calc(100svh - 78px);
  padding: clamp(3.5rem, 6vw, 6.5rem) var(--page-gutter) clamp(3rem, 5vw, 5rem);
}

.hero__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(2rem, 5vw, 6rem);
}

.hero h1 {
  max-width: 100%;
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
  font-size: clamp(5rem, 6.7vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.hero__lead {
  max-width: 26ch;
  margin-bottom: 1.6rem;
  font-size: clamp(1.8rem, 2.35vw, 2.65rem);
  line-height: 1.1;
}

.hero__invitation {
  max-width: 46ch;
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
}

.hero__result {
  max-width: 49ch;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
}

.hero__result em {
  position: relative;
  color: var(--ink);
  font-weight: 650;
}

.hero__result em::after {
  position: absolute;
  right: -0.15em;
  bottom: -0.1em;
  left: -0.12em;
  height: 0.18em;
  border-top: 3px solid var(--coral);
  border-radius: 50%;
  content: "";
  transform: rotate(-2deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0.95rem 1.6rem;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--coral);
}

.button:disabled {
  cursor: default;
  opacity: 0.64;
  transform: none;
  box-shadow: none;
}

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

.button--coral {
  border-color: var(--coral);
  color: var(--ink);
  background: var(--coral);
}

.button--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.75rem;
  margin: 1.4rem 0 0;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.hero__workspace {
  position: relative;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  padding: 2.25rem 2.2rem 1.8rem 3rem;
  border-left: 1px solid var(--hairline);
  overflow: hidden;
}

.workspace__heading {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  margin-left: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.95rem;
}

.workspace__heading strong {
  margin-top: 0.1rem;
  font-size: 1.45rem;
  font-weight: 400;
}

.workspace__views {
  position: relative;
  z-index: 3;
  max-width: 64%;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
}

.workspace__views li {
  display: grid;
  grid-template-columns: 46px 38px minmax(0, 1fr);
  align-items: center;
  min-height: 98px;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.workspace__views .accent {
  width: 32px;
  height: 9px;
}

.workspace__views b {
  font-weight: 400;
}

.accent {
  display: inline-block;
  width: 44px;
  height: 10px;
}

.accent--teal { background: var(--teal); }
.accent--coral { background: var(--coral); }
.accent--amber { background: var(--amber); }
.accent--green { background: var(--green); }
.accent-text--teal { color: var(--teal); }
.accent-text--coral { color: var(--coral); }
.accent-text--amber { color: #c78d00; }

.hero-scribble {
  position: absolute;
  z-index: 1;
  right: -5%;
  bottom: 4.7rem;
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scribble-cloud {
  opacity: 0.22;
}

.clear-path,
.clear-path-arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clear-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible .clear-path,
.hero .clear-path {
  stroke-dashoffset: 0;
}

.post-it {
  position: relative;
  color: var(--ink);
  background-color: #f2ead8;
  box-shadow: 10px 13px 12px rgba(16, 23, 68, 0.15);
  transform: rotate(4deg);
}

.post-it::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.55' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)' opacity='.32'/%3E%3C/svg%3E");
}

.pin {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 6;
  width: 22px;
  height: 22px;
  border: 1px solid #8a6200;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 1px 4px 5px rgba(16, 23, 68, 0.27);
  transform: translateX(-50%);
}

.pin::after {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  content: "";
  border-left: 1px solid rgba(255, 255, 255, 0.75);
}

.post-it--hero {
  position: absolute;
  z-index: 6;
  top: 16.4rem;
  right: 0.75rem;
  width: 180px;
  height: 195px;
  padding: 2.5rem 0.7rem 0.75rem;
}

.post-it--hero svg {
  position: absolute;
  inset: 2.2rem 0.5rem auto;
  width: calc(100% - 1rem);
  height: auto;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.post-it--hero .post-it__coral-line {
  stroke: var(--coral);
}

.post-it__label {
  position: absolute;
  font-family: var(--reading);
  font-size: 0.62rem;
  font-style: italic;
}

.post-it__label--one { top: 3.5rem; right: 0.7rem; }
.post-it__label--two { top: 7.7rem; right: 0.45rem; }
.post-it__label--three { right: 0.55rem; bottom: 1.5rem; color: var(--coral); line-height: 1.05; }

.post-it__stamp {
  position: absolute;
  bottom: 0.55rem;
  left: 0.65rem;
  padding: 0.22rem 0.35rem 0.15rem;
  border: 1px solid #a46e00;
  color: #a46e00;
  font-family: var(--display);
  font-size: 0.42rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transform: rotate(-2deg);
}

.hand-note {
  font-family: "Bradley Hand", "Segoe Print", cursive;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  transform: rotate(-3deg);
}

.hero__hand-note {
  position: absolute;
  z-index: 5;
  right: 13%;
  bottom: 9.6rem;
  margin: 0;
}

.workspace__process {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workspace__process i {
  height: 1px;
  background: var(--ink);
}

.section {
  position: relative;
  scroll-margin-top: 96px;
  padding: var(--section-y) var(--page-gutter);
}

.section--ruled {
  border-top: 1px solid var(--hairline);
}

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

.section-label {
  display: flex;
  gap: 1.2rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--hairline);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
}

.section-label span:first-child {
  color: var(--coral);
}

.section-label--light {
  border-color: var(--light-hairline);
}

.quick-lab__intro,
.mission__grid,
.science__grid,
.author__grid,
.recording-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.quick-lab h2,
.mission h2,
.science h2,
.author h2,
.fit h2,
.session h2 {
  margin-bottom: clamp(1.5rem, 2.4vw, 2.5rem);
  font-size: clamp(2.75rem, 5vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.quick-lab__intro > p {
  align-self: end;
  max-width: 34ch;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

.micro-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(4rem, 7vw, 7rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
}

.micro-process li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
  min-height: 240px;
  padding: 2rem clamp(1.4rem, 2.6vw, 3rem) 2rem 0;
  border-right: 1px solid var(--hairline);
}

.micro-process li + li {
  padding-left: clamp(1.4rem, 2.6vw, 3rem);
}

.micro-process li:last-child {
  border-right: 0;
}

.micro-process__number {
  font-family: var(--display);
}

.micro-process h3 {
  margin-bottom: 1.4rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.micro-process p {
  max-width: 28ch;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.quick-lab__rule {
  max-width: 64ch;
  margin: 3.3rem 0 0 auto;
  padding-left: 1.4rem;
  border-left: 6px solid var(--teal);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.spoiler-band {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.55fr);
  align-items: end;
  gap: 3rem;
  padding: clamp(4rem, 7vw, 7rem) var(--page-gutter);
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.spoiler-band p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.spoiler-band p span {
  position: relative;
}

.spoiler-band p span::after {
  position: absolute;
  right: -0.08em;
  bottom: -0.03em;
  left: -0.08em;
  border-top: 5px solid var(--coral);
  border-radius: 50%;
  content: "";
  transform: rotate(-2deg);
}

.spoiler-band p em {
  color: var(--teal);
  font-style: normal;
}

.spoiler-band svg,
.finale svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission__grid h2 {
  max-width: 13ch;
}

.reading-copy {
  max-width: 40rem;
  font-size: clamp(1.14rem, 1.45vw, 1.38rem);
}

.reading-copy p {
  margin-bottom: 1.35em;
}

.mission__cadence {
  margin-top: 3rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.35;
}

.method__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  gap: clamp(3rem, 8vw, 9rem);
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.method__intro h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 6.3rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.method__intro p {
  align-self: end;
  max-width: 35ch;
  margin: 0;
  font-size: clamp(1.25rem, 1.75vw, 1.7rem);
}

.method__rows {
  border-top: 1px solid var(--light-hairline);
}

.method-row {
  display: grid;
  grid-template-columns: 58px 52px minmax(10rem, 0.5fr) minmax(16rem, 1fr) minmax(16rem, 0.9fr);
  align-items: start;
  gap: clamp(1rem, 2.5vw, 3rem);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--light-hairline);
}

.method-row .accent {
  margin-top: 0.7rem;
}

.method-row__number {
  padding-top: 0.35rem;
  font-size: 0.88rem;
}

.method-row h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.8rem);
}

.method-row p {
  margin: 0;
  color: rgba(247, 247, 242, 0.8);
}

.method-row__result {
  color: var(--paper) !important;
  font-style: italic;
}

.method__loop {
  margin: clamp(3rem, 6vw, 6rem) 0 0;
  color: var(--teal);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.science__grid h2 {
  max-width: 12ch;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.source-links a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25rem;
}

.program {
  overflow: hidden;
}

.program__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.program__heading h2 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.program__heading > div > p {
  max-width: 46ch;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.post-it--small {
  width: 210px;
  min-height: 225px;
  padding: 4.2rem 1.7rem 1.5rem;
  transform: rotate(6deg);
}

.post-it--small p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.18;
  text-align: center;
  font-style: italic;
}

.program__path {
  position: absolute;
  top: 24rem;
  bottom: 13rem;
  left: -2rem;
  width: min(34vw, 470px);
  color: var(--ink);
  pointer-events: none;
}

.program__path svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scribble-cloud--program {
  opacity: 0.26;
}

.program-list {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  margin: 0 0 0 auto;
  padding: 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
}

.program-list > li:not(.program-list__application) {
  display: grid;
  grid-template-columns: 48px 70px minmax(14rem, 0.8fr) minmax(18rem, 1.2fr);
  gap: clamp(1rem, 2vw, 2.5rem);
  align-items: start;
  min-height: 190px;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--hairline);
}

.program-list .accent {
  margin-top: 0.75rem;
}

.program-list__number {
  font-size: 2.6rem;
  line-height: 1;
}

.program-list h3 {
  margin: 0 0 0.8rem;
  font-size: 1.65rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.program-list p {
  margin-bottom: 0;
}

.program-list__takeaway {
  max-width: 34ch;
}

.program-list__application {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(18rem, 1fr);
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px dashed var(--hairline);
  font-family: var(--reading);
}

.program-list__application span {
  font-family: var(--display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer__header {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 8vw, 9rem);
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.offer__header h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.offer__terms {
  align-self: end;
}

.offer__header .offer__terms > p:not(.offer__price):not(.offer__fit-note):not(.offer__commitment) {
  max-width: 34ch;
  padding-left: 1.4rem;
  border-left: 6px solid var(--green);
  font-size: 1.25rem;
}

.offer__terms .button {
  margin-top: 1.25rem;
}

.offer__fit-note,
.offer__commitment {
  max-width: 38ch;
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.offer__commitment {
  font-style: italic;
}

.offer__price {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 6.5vw, 6.5rem);
  line-height: 0.9;
}

.offer__price span {
  max-width: 9ch;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
}

.offer-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1.3rem;
  min-height: 122px;
  padding: 1.7rem 2rem 1.7rem 0;
  border-bottom: 1px solid var(--hairline);
}

.offer-list li:nth-child(odd) {
  border-right: 1px solid var(--hairline);
}

.offer-list li:nth-child(even) {
  padding-left: 2rem;
}

.offer-list span {
  color: var(--coral);
  font-family: var(--display);
}

.offer-list p {
  max-width: 38ch;
  margin: 0;
  font-size: 1.1rem;
}

.dates {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 2rem 4rem;
  margin-top: 4rem;
  padding: 2.5rem;
  border: 1px solid var(--hairline);
}

.dates div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dates span {
  color: var(--teal);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.dates strong {
  font-size: 1.3rem;
  font-weight: 500;
}

.dates > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-style: italic;
}

.author__grid h2 {
  max-width: 10ch;
}

.author__content {
  min-width: 0;
}

.author__lead {
  min-width: 0;
}

.author__identity {
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--light-hairline);
}

.author__portrait {
  position: relative;
  width: min(68%, 330px);
  margin: clamp(3rem, 6vw, 6rem) 0 0 auto;
}

.author__portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 247, 242, 0.42);
  content: "";
  pointer-events: none;
}

.author__portrait img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.74) contrast(1.04);
}

.author__bio p {
  margin: 0 0 1rem;
}

.author__bio .author__name {
  margin-bottom: 0.15rem;
  color: var(--paper);
  font-family: var(--headline);
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
}

.author__credentials,
.author__role {
  font-family: var(--display);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.author__credentials {
  color: var(--teal);
}

.author__bio .author__role {
  margin-bottom: 1.8rem;
  color: rgba(247, 247, 242, 0.68);
}

.author__bio p:not([class]) {
  color: rgba(247, 247, 242, 0.86);
  font-size: 1.04rem;
}

.author__experience {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.author .reading-copy {
  color: rgba(247, 247, 242, 0.86);
}

.author__aside {
  margin-top: 3rem;
  padding: 1.5rem 0 0 1.5rem;
  border-top: 1px solid var(--light-hairline);
  border-left: 6px solid var(--coral);
  color: var(--paper);
  font-size: 1.4rem;
  font-style: italic;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--light-hairline);
  border-bottom: 1px solid var(--light-hairline);
}

.testimonials figure {
  min-height: 245px;
  margin: 0;
  padding: 2.5rem clamp(1.5rem, 3vw, 3.5rem) 2.5rem 0;
  border-right: 1px solid var(--light-hairline);
}

.testimonials figure + figure {
  padding-left: clamp(1.5rem, 3vw, 3.5rem);
}

.testimonials figure:last-child {
  border-right: 0;
}

.testimonials blockquote {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 2.25rem);
  line-height: 1.13;
}

.testimonials figure:nth-child(1)::before { color: var(--teal); }
.testimonials figure:nth-child(2)::before { color: var(--coral); }
.testimonials figure:nth-child(3)::before { color: var(--amber); }

.testimonials figure::before {
  display: block;
  margin-bottom: 0.8rem;
  content: "“";
  font-size: 3rem;
  line-height: 1;
}

.proof-note {
  margin: 1rem 0 0;
  color: rgba(247, 247, 242, 0.68);
  font-size: 0.9rem;
  font-style: italic;
}

.fit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.55fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.fit h2 {
  max-width: 13ch;
}

.check-list {
  max-width: 56rem;
  margin: 3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 1.25rem 0 1.25rem 2.2rem;
  border-bottom: 1px solid var(--hairline);
}

.check-list li::before {
  position: absolute;
  top: 1.35rem;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--teal);
  transform: rotate(45deg);
}

.business-note {
  align-self: start;
  padding: 2rem;
  border-top: 8px solid var(--amber);
  background: var(--paper-deep);
}

.business-note > span {
  display: block;
  margin-bottom: 1.4rem;
  font-family: var(--display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.business-note p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-style: italic;
}

.boundary-note {
  max-width: 65rem;
  margin: 4rem 0 0;
  padding: 1.3rem 1.5rem;
  border-left: 6px solid var(--coral);
  background: rgba(255, 93, 80, 0.07);
}

.faq h2 {
  max-width: 13ch;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  font-size: clamp(3rem, 5.6vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

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

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

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 1rem;
  min-height: 90px;
  padding: 1.15rem 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  color: var(--teal);
  font-size: 0.8rem;
}

.faq-list summary::after {
  grid-column: 3;
  width: 18px;
  height: 18px;
  justify-self: end;
  content: "+";
  font-family: var(--reading);
  font-size: 2rem;
  font-weight: 300;
  line-height: 0.5;
  transition: transform 180ms ease;
}

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

.faq-list details > div {
  max-width: 58rem;
  padding: 0 0 2.2rem 70px;
  font-size: 1.08rem;
}

.apply__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
  gap: clamp(3rem, 8vw, 9rem);
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.apply__heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.apply__heading > div {
  align-self: end;
  color: rgba(247, 247, 242, 0.82);
}

.apply__price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 1;
}

.apply__price span {
  max-width: 10ch;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.apply__plus {
  max-width: 36rem;
  margin: 0 0 1rem;
  font-size: 1.08rem;
}

.apply__value {
  margin: 0;
  color: var(--teal);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.apply__routes {
  display: grid;
  gap: 1.3rem;
}

.apply__routes > p {
  margin: 0;
  padding-left: 1.25rem;
  border-left: 5px solid var(--teal);
}

.apply__routes > p:nth-child(2) {
  border-left-color: var(--coral);
}

.apply__routes strong,
.apply__routes span {
  display: block;
}

.apply__routes strong {
  margin-bottom: 0.35rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.apply__routes .apply__value {
  padding: 0;
  border: 0;
}

.application-form,
.session-form {
  display: grid;
  gap: 1.4rem;
  max-width: 76rem;
  padding-top: 3rem;
  border-top: 1px solid currentColor;
}

.form-start {
  max-width: 58rem;
  margin: 0;
  padding: 1.25rem 1.4rem;
  border-left: 6px solid var(--teal);
  background: rgba(0, 170, 167, 0.12);
  font-size: 1.08rem;
}

.form-start strong {
  color: var(--paper);
}

.form-step {
  margin: 1rem 0 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--light-hairline);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.application-form label,
.session-form label {
  display: grid;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.application-form label > span > i {
  color: var(--coral);
  font-style: normal;
}

.application-form input,
.application-form textarea,
.session-form input,
.session-form textarea {
  width: 100%;
  border: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-family: var(--reading);
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 0;
}

.application-form input,
.session-form input {
  min-height: 56px;
  padding: 0.85rem 1rem;
}

.application-form textarea,
.session-form textarea {
  padding: 1rem;
  resize: vertical;
}

.application-form input:focus,
.application-form textarea:focus {
  border-color: var(--amber);
}

.checkbox-label {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  max-width: 60rem;
  gap: 0.9rem !important;
  font-family: var(--reading) !important;
  font-size: 1rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.checkbox-label input {
  width: 22px;
  min-height: 22px;
  margin: 0.1rem 0 0;
  accent-color: var(--coral);
}

.checkbox-label a,
.form-note a {
  text-underline-offset: 0.2em;
}

.form-privacy-note {
  max-width: 38rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border-left: 5px solid var(--amber);
  color: rgba(247, 247, 242, 0.88);
  background: rgba(248, 181, 0, 0.08);
}

.form-error {
  max-width: 58rem;
  margin: -0.4rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 5px solid var(--coral);
  color: var(--paper);
  background: rgba(255, 93, 80, 0.16);
  font-weight: 650;
}

.form-error--submit {
  margin-top: 0.6rem;
}

.form-error[hidden] {
  display: none;
}

.is-invalid {
  outline: 2px solid var(--coral);
  outline-offset: 6px;
}

.route-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 1.4rem;
  padding: 0;
  border: 1px solid var(--light-hairline);
}

.route-choice legend {
  grid-column: 1 / -1;
  width: 100%;
  padding: 0 0 1rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.route-choice label {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 1rem;
  min-height: 150px;
  padding: 1.6rem;
  color: rgba(247, 247, 242, 0.82);
  font-family: var(--reading);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}

.route-choice label + label {
  border-left: 1px solid var(--light-hairline);
}

.route-choice input {
  width: 21px;
  min-height: 21px;
  margin: 0.15rem 0 0;
  accent-color: var(--coral);
}

.route-choice span {
  display: block;
}

.route-choice strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.025em;
}

.recording-readiness[hidden] {
  display: none !important;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.application-form .button,
.session-form .button {
  width: fit-content;
  margin-top: 0.75rem;
}

.form-note {
  margin: 0;
  color: inherit;
  opacity: 0.72;
  font-size: 0.9rem;
  font-style: italic;
}

.form-success {
  margin-top: 1rem;
  padding: 1.4rem;
  border-left: 6px solid var(--green);
  background: rgba(37, 185, 74, 0.12);
}

.form-success p {
  margin: 0.4rem 0 0;
}

.session__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.session__grid > div > p {
  max-width: 48rem;
  font-size: 1.22rem;
}

.session__facts {
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.86rem !important;
}

.session__facts span {
  padding: 0 0.65rem;
}

.session-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(4rem, 7vw, 7rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  list-style: none;
}

.session-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 1rem;
  min-height: 240px;
  padding: 2rem clamp(1.5rem, 2.6vw, 3rem) 2rem 0;
  border-right: 1px solid var(--hairline);
}

.session-steps li + li {
  padding-left: clamp(1.5rem, 2.6vw, 3rem);
}

.session-steps li:last-child {
  border-right: 0;
}

.session-steps li > span {
  color: var(--coral);
  font-family: var(--display);
  font-size: 0.9rem;
}

.session-steps h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.session-steps p {
  margin: 0;
}

.session__criterion {
  max-width: 44ch;
  margin: clamp(3rem, 6vw, 5.5rem) 0 0 auto;
  padding-left: 1.5rem;
  border-left: 7px solid var(--teal);
  font-size: clamp(1.5rem, 2.25vw, 2.25rem);
  line-height: 1.25;
}

.post-it--session {
  width: 225px;
  min-height: 240px;
  padding: 4rem 1.5rem 1.5rem;
  transform: rotate(-4deg);
}

.post-it--session p {
  font-size: 1.06rem;
  line-height: 1.3;
  text-align: center;
  font-style: italic;
}

.recording-grid {
  margin: clamp(4rem, 7vw, 7rem) 0;
  padding-top: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--hairline);
}

.recording-grid h3 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.recording-grid ul {
  padding-left: 1.25rem;
}

.recording-grid li {
  margin-bottom: 0.8rem;
}

.session-form {
  border-color: var(--hairline);
}

.finale {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.75fr);
  align-items: end;
  gap: 3rem;
  min-height: 720px;
  padding: var(--section-y) var(--page-gutter);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}

.finale > div {
  position: relative;
  z-index: 2;
  max-width: 58rem;
}

.finale__prelude {
  margin-bottom: 3rem;
  color: var(--teal);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.finale h2 {
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.finale > div > p:not(.finale__prelude) {
  max-width: 52ch;
  font-size: 1.3rem;
}

.finale svg {
  align-self: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem var(--page-gutter);
  border-top: 1px solid var(--hairline);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.site-footer a {
  text-underline-offset: 0.25em;
}

.legal-page .site-header {
  position: relative;
}

.legal-hero {
  min-height: 48vh;
  padding: clamp(5rem, 10vw, 9rem) var(--page-gutter) clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--hairline);
}

.legal-hero__kicker {
  margin-bottom: 2rem;
  color: var(--teal);
  font-family: var(--display);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-family: var(--headline);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.legal-hero p:last-child {
  max-width: 50ch;
  margin: 0;
  font-size: 1.25rem;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 10rem);
  padding: var(--section-y) var(--page-gutter);
}

.legal-content__index {
  align-self: start;
  position: sticky;
  top: 7rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 0.75rem;
  line-height: 1.7;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-content__body {
  max-width: 50rem;
}

.legal-content__body section + section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(16, 23, 68, 0.24);
}

.legal-content h2 {
  margin-bottom: 1.4rem;
  font-family: var(--headline);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.legal-content h3 {
  margin: 2rem 0 0.7rem;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-content address {
  font-style: normal;
}

.legal-content li + li {
  margin-top: 0.55rem;
}

.legal-note {
  padding: 1.2rem 1.4rem;
  border-left: 6px solid var(--teal);
  background: rgba(0, 170, 167, 0.08);
}

.legal-back {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-underline-offset: 0.25em;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(31rem, 1.05fr);
  }

  .hero h1 {
    font-size: clamp(3.7rem, 6vw, 5.6rem);
  }

  .hero__workspace {
    padding-left: 2rem;
  }

  .workspace__views {
    max-width: 62%;
  }

  .method-row {
    grid-template-columns: 44px 40px minmax(9rem, 0.45fr) 1fr;
  }

  .method-row__result {
    grid-column: 4;
  }

  .program-list {
    width: 75%;
  }

  .program-list > li:not(.program-list__application) {
    grid-template-columns: 36px 58px minmax(12rem, 0.75fr) 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --section-y: 5.5rem;
  }

  .site-header {
    min-height: 68px;
  }

  .menu-button {
    display: block;
    min-width: 92px;
    min-height: 44px;
  }

  .menu-button[aria-expanded="true"] .menu-button__open {
    display: none;
  }

  .menu-button[aria-expanded="true"] .menu-button__close {
    display: inline;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: var(--page-gutter);
    left: var(--page-gutter);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--hairline);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 58px;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--hairline);
  }

  .site-nav span {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 4.5rem;
  }

  .hero__copy {
    padding: 0 0 4rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 12vw, 7rem);
  }

  .hero__workspace {
    min-height: 710px;
    padding: 2rem 1rem 1.5rem;
    border-top: 1px solid var(--hairline);
    border-left: 0;
  }

  .workspace__views {
    max-width: 72%;
  }

  .quick-lab__intro,
  .mission__grid,
  .science__grid,
  .author__grid,
  .recording-grid,
  .method__intro,
  .offer__header,
  .fit__grid,
  .apply__heading {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-content__index {
    position: static;
  }

  .quick-lab h2,
  .mission h2,
  .science h2,
  .author h2,
  .fit h2,
  .session h2 {
    max-width: 15ch;
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .micro-process {
    grid-template-columns: 1fr;
  }

  .micro-process li,
  .micro-process li + li {
    min-height: auto;
    padding: 1.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

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

  .method-row {
    grid-template-columns: 40px 42px 1fr;
    gap: 1rem;
  }

  .method-row h3 {
    grid-column: 3;
  }

  .method-row p,
  .method-row__result {
    grid-column: 3;
  }

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

  .post-it--small {
    justify-self: end;
  }

  .program__path {
    display: none;
  }

  .program-list {
    width: 100%;
  }

  .program-list > li:not(.program-list__application) {
    grid-template-columns: 36px 48px 1fr;
  }

  .program-list__takeaway {
    grid-column: 3;
  }

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

  .offer-list li:nth-child(odd) {
    border-right: 0;
  }

  .offer-list li:nth-child(even) {
    padding-left: 0;
  }

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

  .testimonials figure,
  .testimonials figure + figure {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--light-hairline);
  }

  .testimonials figure:last-child {
    border-bottom: 0;
  }

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

  .session-steps {
    grid-template-columns: 1fr;
  }

  .session-steps li,
  .session-steps li + li {
    min-height: auto;
    padding: 1.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .session-steps li:last-child {
    border-bottom: 0;
  }

  .post-it--session {
    justify-self: end;
  }

  .finale {
    grid-template-columns: 1fr;
    min-height: 660px;
  }

  .finale svg {
    max-width: 560px;
    justify-self: end;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .wordmark {
    letter-spacing: 0.17em;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 2.4rem;
    font-size: clamp(3.25rem, 15vw, 4.5rem);
    line-height: 0.95;
  }

  .hero__lead {
    font-size: 1.75rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .hero__facts {
    display: block;
    line-height: 1.75;
  }

  .hero__facts span {
    padding: 0 0.28rem;
  }

  .hero__workspace {
    min-height: 770px;
    padding-right: 0;
    padding-left: 0;
  }

  .workspace__heading {
    padding-left: 0.2rem;
  }

  .workspace__views {
    max-width: 100%;
    padding-bottom: 260px;
  }

  .workspace__views li {
    grid-template-columns: 35px 32px 1fr;
    min-height: 82px;
    font-size: 0.75rem;
  }

  .workspace__views .accent {
    width: 25px;
  }

  .post-it--hero {
    top: auto;
    right: 0.25rem;
    bottom: 6.3rem;
    width: 180px;
    height: 205px;
  }

  .post-it__label {
    font-size: 0.64rem;
  }

  .post-it__label--one { top: 3.7rem; }
  .post-it__label--two { top: 8.2rem; }

  .hero-scribble {
    right: 5%;
    bottom: 7rem;
    width: 135%;
  }

  .hero__hand-note {
    right: auto;
    bottom: 9.7rem;
    left: 0.2rem;
    max-width: 8ch;
    font-size: 1rem;
  }

  .workspace__process {
    gap: 0.35rem;
    font-size: 0.62rem;
  }

  .section-label {
    margin-bottom: 3.5rem;
  }

  .quick-lab h2,
  .mission h2,
  .science h2,
  .author h2,
  .fit h2,
  .session h2,
  .method__intro h2,
  .program__heading h2,
  .offer__header h2,
  .faq h2,
  .apply__heading h2 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .author__identity {
    padding-bottom: 2.5rem;
  }

  .author__portrait {
    width: min(78vw, 300px);
    margin: 2.75rem 0 0;
  }

  .author__bio .author__name {
    font-size: 3.25rem;
  }

  .spoiler-band p {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .method-row {
    grid-template-columns: 28px 32px minmax(0, 1fr);
  }

  .method-row .accent {
    width: 25px;
    height: 8px;
  }

  .method-row h3,
  .method-row p,
  .method-row__result {
    grid-column: 3;
  }

  .program__heading {
    margin-bottom: 3.5rem;
  }

  .post-it--small,
  .post-it--session {
    width: 180px;
    min-height: 195px;
  }

  .program-list > li:not(.program-list__application) {
    grid-template-columns: 25px 38px minmax(0, 1fr);
    min-height: auto;
    padding: 1.8rem 0;
  }

  .program-list .accent {
    width: 24px;
    height: 8px;
  }

  .program-list__number {
    font-size: 1.7rem;
  }

  .program-list h3 {
    font-size: 1.25rem;
    overflow-wrap: anywhere;
  }

  .program-list__application {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .dates {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .dates > p {
    grid-column: 1;
  }

  .faq-list summary {
    grid-template-columns: 35px minmax(0, 1fr) 26px;
    gap: 0.55rem;
    min-height: 80px;
    font-size: 1rem;
  }

  .faq-list details > div {
    padding-left: 35px;
  }

  .apply__price {
    font-size: 4.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .route-choice label {
    min-height: auto;
  }

  .route-choice label + label {
    border-top: 1px solid var(--light-hairline);
    border-left: 0;
  }

  .application-form .button,
  .session-form .button {
    width: 100%;
  }

  .session__facts span {
    padding: 0 0.2rem;
  }

  .finale {
    min-height: 620px;
  }

  .finale h2 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .site-footer {
    flex-direction: column;
  }
}

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

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

  .clear-path {
    stroke-dashoffset: 0;
  }
}
