:root {
  color-scheme: light;
  --ivory: #fcfbf9;
  --green: #12472b;
  --marigold: #efb931;
  --pink: #e993ab;
  --ink: #111813;
  --champagne: #ead8b8;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, sans-serif;
  --content: 1240px;
  --gutter: clamp(32px, 5vw, 72px);
  --header-height: 72px;
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--ivory);
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--green);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-underline-offset: 0.24em;
}

button,
input,
textarea {
  font: inherit;
}

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

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

::selection {
  background: var(--pink);
  color: var(--green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--marigold);
  color: var(--green);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

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

section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--green);
  color: var(--ivory);
}

.site-nav {
  width: min(100%, calc(var(--content) + 2 * var(--gutter)));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  flex: 0 0 auto;
  color: var(--ivory);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--ivory);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--marigold);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 0;
  padding: 10px 0;
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-icon {
  width: 18px;
  display: grid;
  gap: 3px;
}

.menu-icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 19px;
  border: 1px solid var(--marigold);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  background: var(--marigold);
  color: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f4c64e;
}

.hero {
  width: min(100%, calc(var(--content) + 2 * var(--gutter)));
  margin: 0 auto;
  padding: 48px var(--gutter) 64px;
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

.hero-copy {
  min-width: 0;
}

.hero-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(64px, 6.4vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.79;
}

.hero-title-row {
  display: block;
  white-space: nowrap;
}

.hero-woman-row {
  display: block;
  margin: 0.05em 0 0.13em;
}

.hero-period {
  color: var(--marigold);
}

.hero-lead {
  max-width: 520px;
  margin: 40px 0 0;
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.hero-support {
  max-width: 540px;
  margin: 16px 0 24px;
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.28;
}

.hero-art {
  min-width: 0;
}

.hero-art img {
  width: 96%;
  margin: 0 auto;
}

.exit-strategy {
  position: relative;
  height: clamp(500px, 48vw, 620px);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 56px var(--gutter);
  background: var(--ivory);
}

.exit-sparkles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1180px, 120vw);
  max-width: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.exit-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 950px);
  text-align: center;
}

.exit-kicker {
  margin: 0 0 6px;
  color: var(--marigold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.exit-prelude {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
}

.exit-copy h2 {
  margin: 2px 0 20px;
  font-size: clamp(72px, 8.8vw, 130px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.82;
}

.exit-copy h2 span,
.exit-copy h2 em,
.exit-answer span {
  display: block;
}

.exit-copy h2 span {
  font-size: 0.74em;
  line-height: 0.82;
}

.exit-copy h2 em {
  font-weight: 400;
}

.exit-answer {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 33px);
  line-height: 1.02;
}

.exit-answer em {
  color: var(--marigold);
}

.math-transition {
  width: min(calc(100% - 2 * var(--gutter)), 800px);
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--marigold);
  text-align: center;
}

.math-transition span {
  height: 1px;
  background: currentColor;
}

.math-transition p {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 0.95;
}

.math-section {
  padding: 0 var(--gutter) 80px;
}

.math-composition {
  position: relative;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 128px) clamp(24px, 8vw, 128px) clamp(160px, 13vw, 220px);
  overflow: visible;
}

.math-sun,
.math-woman {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.math-sun {
  top: 0;
  right: -3%;
  width: clamp(110px, 14vw, 190px);
}

.math-woman {
  right: 0;
  bottom: 0;
  width: clamp(180px, 25vw, 330px);
  transform: translateY(clamp(20px, 2.5vw, 32px));
}

.math-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 2.6vw, 38px);
}

.math-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(18px, 2.3vw, 36px);
}

.math-row h2 {
  margin: 0;
  width: max-content;
  align-self: start;
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 500;
  line-height: 0.9;
}

.math-row h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: var(--marigold);
}

.math-row .term {
  min-width: 0;
  text-align: left;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 0.83;
}

.math-row .operator {
  width: 1.5em;
  align-self: center;
  justify-self: center;
  text-align: center;
  color: var(--marigold);
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1;
}

.gold-question {
  color: var(--marigold);
}

.math-cta {
  position: absolute;
  right: clamp(220px, 27vw, 360px);
  bottom: clamp(58px, 7vw, 100px);
  transform: translateY(clamp(20px, 2.5vw, 32px));
  z-index: 1;
  width: fit-content;
  margin: 0;
  display: grid;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.math-cta strong {
  color: var(--marigold);
  font-weight: 600;
}

.outside-view {
  padding: 72px var(--gutter);
  background: var(--green);
  color: var(--ivory);
}

.outside-copy {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.outside-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.outside-copy h2 span,
.outside-copy h2 em {
  display: block;
}

.outside-copy h2 em {
  color: var(--marigold);
  font-weight: 400;
}

.outside-copy p {
  margin: 0 auto;
  color: var(--ivory);
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.35;
}

.outside-copy .outside-close {
  margin-top: 24px;
  font-style: italic;
}

.sunglasses-section {
  padding: 80px var(--gutter);
  text-align: center;
}

.section-heading h2,
.pathways-heading h2 {
  margin: 0;
  font-size: clamp(48px, 5.6vw, 78px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.sunglasses-stage {
  width: min(100%, 1000px);
  margin: 36px auto 0;
}

.sunglasses-image-button {
  width: 100%;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.sunglasses-image-button:disabled {
  cursor: wait;
}

.sunglasses-image-button img {
  width: 100%;
  aspect-ratio: 1200 / 533;
  object-fit: cover;
  transition: none;
}

.sunglasses-controls {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.sunglasses-controls > button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: transparent;
  color: var(--green);
  cursor: pointer;
}

.sunglasses-controls > button:hover,
.sunglasses-controls > button:focus-visible {
  background: var(--marigold);
}

.sunglasses-controls button:disabled {
  opacity: 0.45;
  cursor: wait;
}

.sunglasses-controls svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.pagination-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-dots button {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.pagination-dots button[aria-current="true"] {
  border-color: var(--marigold);
  background: var(--marigold);
}

.sunglasses-cta {
  display: inline-block;
  margin-top: 30px;
  font-size: 22px;
  font-weight: 600;
}

.pathways {
  padding: 80px var(--gutter);
  background: linear-gradient(180deg, var(--ivory), #f9f4ea);
}

.pathways-heading {
  text-align: center;
}

.pathways-heading h2 {
  width: min(100%, 1100px);
  margin: 0 auto;
  font-size: clamp(46px, 4.8vw, 68px);
}

.pathway-list {
  width: min(100%, 1060px);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pathway {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 8px 56px;
  text-decoration: none;
}

.pathway + .pathway {
  border-left: 1px solid var(--champagne);
}

.pathway-name {
  color: var(--marigold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pathway-intro {
  margin-top: 18px;
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.pathway-points {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.35;
}

.pathway-points > span {
  position: relative;
  padding-left: 20px;
}

.pathway-points > span::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--marigold);
}

.pathway-close {
  margin-top: 24px;
  font-size: 19px;
  font-style: italic;
}

.pathway:hover .pathway-name,
.pathway:focus-visible .pathway-name {
  color: var(--green);
}

.diana-story {
  padding: 80px var(--gutter);
}

.story-intro {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 1fr;
  grid-template-rows: auto auto auto;
  column-gap: clamp(42px, 6vw, 82px);
  align-items: start;
}

.story-copy {
  display: contents;
}

.diana-portrait {
  width: 100%;
  grid-column: 1;
  grid-row: 1 / 4;
}

.story-copy h2 {
  grid-column: 2;
  grid-row: 1;
  margin: 32px 0 0;
  font-size: clamp(46px, 5.1vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.88;
}

.story-copy > p:not(.story-bridge) {
  grid-column: 2;
  grid-row: 2;
  margin: 28px 0 0;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.35;
}

.story-bridge {
  grid-column: 2;
  grid-row: 3;
  margin: 28px 0 0;
  color: var(--marigold);
  font-size: clamp(27px, 2.5vw, 36px);
  font-style: italic;
  font-weight: 500;
}

.story-proof {
  width: min(100%, 1100px);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: clamp(42px, 6vw, 78px);
}

.work-week {
  width: 280px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--marigold);
  color: var(--green);
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 0.82;
}

.work-week span {
  display: block;
}

.proof-values {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}

.proof-value {
  text-align: center;
}

.proof-value p {
  margin: 0 0 4px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-value strong {
  display: block;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 500;
  line-height: 1;
}

.proof-value span {
  display: block;
  margin-top: 6px;
  font-size: clamp(19px, 2vw, 25px);
}

.proof-arrow {
  color: var(--marigold);
  font-family: var(--sans);
  font-size: 36px;
}

.capabilities {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 38px;
}

.capability-group {
  padding-top: 30px;
  border-top: 1px solid var(--champagne);
  text-align: center;
}

.capability-group:first-child {
  grid-column: 1;
}

.capability-group:last-child {
  grid-column: 3;
}

.capability-group h3 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capability-group ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: left;
  list-style: none;
  font-size: 22px;
  line-height: 1;
}

.capability-group li {
  position: relative;
  padding-left: 19px;
}

.capability-group li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--marigold);
}

.story-close {
  width: min(100%, 850px);
  margin: 48px auto 0;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: center;
}

.gentlemen {
  padding: 64px var(--gutter);
  background: var(--green);
  color: var(--ivory);
  text-align: center;
}

.gentlemen p {
  width: min(100%, 800px);
  margin: 0 auto;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 0.94;
}

.gentlemen p > * {
  display: block;
}

.gentlemen em {
  color: var(--pink);
}

.contact {
  width: min(100%, calc(var(--content) + 2 * var(--gutter)));
  margin: 0 auto;
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
}

.contact-intro h2 {
  margin: 0;
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.contact-intro p {
  max-width: 430px;
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--green);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--green);
  font-size: 19px;
  line-height: 1.35;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #5c705f;
  opacity: 1;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a12a3b;
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: #8d2434;
  font-family: var(--sans);
  font-size: 13px;
}

.submit-button {
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
}

.site-footer {
  min-height: 92px;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--green);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--marigold);
}

.asset-error {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  max-width: min(420px, calc(100% - 32px));
  padding: 14px 16px;
  border: 2px solid #8d2434;
  background: #fff4f4;
  color: #641521;
  font-family: var(--sans);
  font-size: 14px;
}

@media (max-width: 1020px) and (min-width: 769px) {
  .hero-title {
    font-size: 58px;
  }

  .hero-lead {
    margin-top: 32px;
  }

  .math-row {
    grid-template-columns: 130px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
    column-gap: 18px;
  }

  .math-row h2 {
    font-size: 28px;
  }

  .math-row .term {
    font-size: 23px;
  }

  .pathway {
    padding-inline: 34px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 24px;
    --header-height: 64px;
  }

  .site-nav {
    position: relative;
    gap: 14px;
  }

  .wordmark {
    max-width: calc(100vw - 132px);
    overflow: hidden;
    font-size: 15px;
    text-overflow: clip;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 22px var(--gutter) 26px;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    background: var(--green);
    border-top: 1px solid rgba(252, 251, 249, 0.2);
    font-size: 13px;
    text-align: right;
  }

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

  .button {
    min-height: 48px;
    font-size: 12px;
  }

  .hero {
    padding: 38px var(--gutter) 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-title {
    font-size: clamp(48px, 13vw, 68px);
    line-height: 0.8;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 27px;
  }

  .hero-support {
    font-size: 19px;
  }

  .hero-art img {
    width: 100%;
    margin: -4% auto -8%;
  }

  .exit-strategy {
    height: auto;
    padding: 36px var(--gutter);
  }

  .exit-sparkles {
    width: min(560px, 140vw);
  }

  .exit-kicker {
    font-size: 10px;
    letter-spacing: 0.21em;
  }

  .exit-prelude {
    font-size: 21px;
  }

  .exit-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(64px, 19.5vw, 92px);
    line-height: 0.78;
  }

  .exit-answer {
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 600;
    line-height: 0.98;
  }

  .exit-answer em {
    font-weight: 700;
  }

  .exit-answer span {
    white-space: nowrap;
  }

  .math-transition {
    width: calc(100% - 2 * var(--gutter));
    padding: 36px 0;
    gap: 15px;
  }

  .math-transition p {
    font-size: 22px;
  }

  .math-section {
    padding: 0 var(--gutter) 120px;
  }

  .math-composition {
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 92px 0 190px;
    overflow: visible;
  }

  .math-sun {
    top: 0;
    right: 0;
    width: 34%;
  }

  .math-woman {
    right: -5%;
    bottom: 0;
    width: 46%;
  }

  .math-grid {
    gap: 42px;
  }

  .math-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr);
    align-items: start;
    column-gap: 6px;
    row-gap: 8px;
    text-align: left;
  }

  .math-row h2 {
    grid-column: 1 / -1;
    justify-self: start;
    width: max-content;
    align-self: auto;
    margin-bottom: 3px;
    font-size: clamp(28px, 7.2vw, 32px);
  }

  .math-row .term {
    font-size: clamp(20px, 5.7vw, 25px);
    line-height: 1.02;
  }

  .math-row .operator {
    width: 22px;
    align-self: center;
    justify-self: center;
    font-size: clamp(20px, 5vw, 24px);
  }

  .math-cta {
    right: 48%;
    bottom: 70px;
    width: 46%;
    font-size: clamp(19px, 5.2vw, 23px);
    text-align: right;
    white-space: normal;
  }

  .math-cta strong {
    margin-top: 3px;
  }

  .math-row h2::after {
    margin-top: 5px;
  }

  .math-row .term {
    color: var(--green);
  }

  .outside-view {
    padding: 56px var(--gutter);
  }

  .outside-copy h2 {
    font-size: 43px;
  }

  .outside-copy p {
    font-size: 18px;
  }

  .sunglasses-section,
  .pathways,
  .diana-story,
  .contact {
    padding: 56px var(--gutter);
  }

  .section-heading h2,
  .pathways-heading h2 {
    font-size: 47px;
    text-align: center;
  }

  .sunglasses-stage {
    margin-top: 28px;
  }

  .sunglasses-controls {
    margin-top: 18px;
    gap: 14px;
  }

  .sunglasses-controls > button {
    width: 40px;
    height: 40px;
  }

  .pagination-dots {
    gap: 8px;
  }

  .pagination-dots button {
    width: 10px;
    height: 10px;
  }

  .sunglasses-cta {
    margin-top: 26px;
    font-size: 18px;
  }

  .pathway-list {
    margin-top: 38px;
    grid-template-columns: 1fr;
  }

  .pathway {
    padding: 0 0 34px;
  }

  .pathway + .pathway {
    border-top: 1px solid var(--champagne);
    border-left: 0;
    padding-top: 34px;
  }

  .pathway-intro {
    font-size: 28px;
  }

  .story-intro {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .story-copy h2 {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 28px;
    font-size: 48px;
    text-align: center;
  }

  .diana-portrait {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .story-copy > p:not(.story-bridge) {
    grid-column: 1;
    grid-row: 3;
    margin-top: 26px;
    font-size: 19px;
  }

  .story-bridge {
    grid-column: 1;
    grid-row: 4;
    margin-top: 22px;
    font-size: clamp(32px, 8vw, 40px);
    font-weight: 600;
    text-align: center;
  }

  .story-proof {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-week {
    width: 220px;
    margin: 0 auto;
    font-size: 40px;
  }

  .proof-values {
    gap: 14px;
  }

  .proof-value strong {
    font-size: clamp(30px, 9vw, 40px);
  }

  .proof-value span {
    font-size: 17px;
  }

  .proof-arrow {
    font-size: 25px;
  }

  .capabilities {
    margin-top: 30px;
    gap: 14px;
  }

  .capability-group ul {
    font-size: 19px;
  }

  .story-close {
    margin-top: 36px;
    font-size: 31px;
  }

  .gentlemen {
    padding: 54px var(--gutter);
  }

  .gentlemen p {
    font-size: 40px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-intro h2 {
    font-size: 52px;
  }

  .contact-intro p,
  .field input,
  .field textarea {
    font-size: 18px;
  }

  .field label,
  .field-error,
  .form-status {
    font-size: 16px;
  }

  .site-footer {
    min-height: 112px;
    padding: 26px var(--gutter);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 359px) {
  :root {
    --gutter: 18px;
  }

  .wordmark {
    max-width: calc(100vw - 120px);
    font-size: 13px;
  }

  .hero-title {
    font-size: 48px;
  }

  .exit-copy h2 {
    font-size: 54px;
  }

  .exit-answer {
    font-size: 14px;
  }

  .proof-values {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .proof-arrow {
    transform: rotate(90deg);
  }

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

  .capability-group:first-child,
  .capability-group:last-child {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
  }
}
