:root {
  --paper: #efeeeb;
  --paper-2: #f7f6f3;
  --line: #dedad4;
  --ink: #68625d;
  --ink-dark: #514c47;
  --ink-soft: #706a64;
  --accent: #b0a294;
  --accent-dark: #6d6258;
  --black: #050505;
  --night: #161513;
  --night-soft: #211f1c;
  --white: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --fashion: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sans: 'Montserrat', Arial, sans-serif;
  --wrap: min(1320px, calc(100vw - 96px));
  --nav-height: 88px;
  --announcement-height: 34px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink-dark);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; width: 100%; }

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

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

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

/* Split entrance */

.gateway-page {
  min-height: 100dvh;
  color: var(--white);
  background: var(--night);
  overflow: hidden;
}

.gateway-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 108px;
  padding: 18px 42px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(to bottom, rgba(5,5,5,0.62), rgba(5,5,5,0));
}

.gateway-brand {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.gateway-brand span {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.15vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.gateway-brand small {
  margin-top: 8px;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.gateway-header p {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.78;
}

.gateway-header p i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.gateway {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100dvh;
  transition: grid-template-columns 700ms cubic-bezier(.2,.7,.2,1);
}

.gateway:has(.gateway-choice-client:hover) { grid-template-columns: 1.075fr 0.925fr; }
.gateway:has(.gateway-choice-education:hover) { grid-template-columns: 0.925fr 1.075fr; }

.gateway-question {
  position: absolute;
  z-index: 12;
  top: 118px;
  left: 50%;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.gateway-choice {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.22);
}

.gateway-choice:last-child { border-right: 0; }

.gateway-image,
.gateway-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.gateway-image {
  background-position: center;
  background-size: cover;
  transform: scale(1.002);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 600ms ease;
}

.gateway-choice-client .gateway-image {
  background-image: url('consultation.jpg');
  background-position: 49% 32%;
}

.gateway-choice-education .gateway-image {
  background-image: url('grey-blending-silver.webp');
  background-position: 48% 36%;
  filter: saturate(0.7) contrast(0.92) sepia(0.08);
}

.gateway-choice-client .gateway-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,7,7,0.22) 15%, rgba(7,7,7,0.18) 43%, rgba(7,7,7,0.91) 100%),
    linear-gradient(90deg, rgba(7,7,7,0.18), transparent 52%);
}

.gateway-choice-education .gateway-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,13,12,0.2) 15%, rgba(15,13,12,0.2) 43%, rgba(21,19,17,0.93) 100%),
    linear-gradient(270deg, rgba(29,25,22,0.15), transparent 55%);
}

.gateway-choice:hover .gateway-image { transform: scale(1.035); }
.gateway-choice-education:hover .gateway-image { filter: saturate(0.86) contrast(0.95) sepia(0.05); }

.choice-number {
  position: absolute;
  top: 136px;
  left: 42px;
  font-family: var(--serif);
  font-size: 1.05rem;
  opacity: 0.74;
}

.choice-content {
  position: absolute;
  right: 42px;
  bottom: 76px;
  left: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 650px;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}

.gateway-choice:hover .choice-content { transform: translateY(-8px); }

.choice-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.choice-kicker::before {
  content: '';
  width: 38px;
  height: 1px;
  background: currentColor;
}

.choice-content strong {
  max-width: 590px;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 5vw, 6.1rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.choice-copy {
  max-width: 520px;
  margin-top: 25px;
  font-size: clamp(0.78rem, 0.9vw, 0.93rem);
  line-height: 1.8;
  opacity: 0.8;
}

.choice-action {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: 194px;
  margin-top: 32px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.72);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.choice-action b {
  margin-left: auto;
  font-size: 1rem;
  font-weight: 300;
  transition: transform 250ms ease;
}

.gateway-choice:hover .choice-action b { transform: translate(3px, -3px); }

.gateway-footer {
  position: fixed;
  z-index: 18;
  right: 42px;
  bottom: 24px;
  left: 42px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  font-size: 0.53rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.58;
}

/* V10 typography-only entrance */

.gateway-page {
  display: grid;
  grid-template-rows: 92px minmax(0, 1fr);
  min-height: 100dvh;
  color: var(--night);
  background: var(--paper);
  font-family: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.type-gateway-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 14px 42px;
  border-bottom: 1px solid rgba(22,21,19,0.22);
  background: var(--paper);
}

.type-gateway-brand {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.type-gateway-brand strong {
  font-family: var(--fashion);
  font-size: clamp(2.25rem, 2.85vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.075em;
}

.type-gateway-brand small {
  margin-top: 7px;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.31em;
  text-transform: uppercase;
}

.type-header-note {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.type-header-note-right {
  grid-column: 3;
  justify-self: end;
}

.type-gateway {
  --seam: 46%;
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: calc(100dvh - 92px);
  transition: grid-template-columns 700ms cubic-bezier(.2,.7,.2,1);
}

@media (hover: hover) and (pointer: fine) {
  .type-gateway:has(.type-choice-client:hover) { --seam: 57%; grid-template-columns: 1.14fr 0.86fr; }
  .type-gateway:has(.type-choice-education:hover) { --seam: 43%; grid-template-columns: 0.86fr 1.14fr; }
}

.type-gateway-or {
  position: absolute;
  z-index: 12;
  top: 50%;
  left: var(--seam);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--night);
  border: 1px solid rgba(22,21,19,0.34);
  border-radius: 50%;
  background: var(--accent);
  font-family: var(--fashion);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  transform: translate(-50%, -50%);
  transition: left 700ms cubic-bezier(.2,.7,.2,1), transform 300ms ease;
  pointer-events: none;
}

.type-gateway-question {
  position: absolute;
  z-index: 8;
  top: 26px;
  left: 50%;
  margin: 0;
  padding: 11px 17px 10px;
  color: var(--night);
  border: 1px solid rgba(22,21,19,0.28);
  background: var(--accent);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.type-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 38px 46px 40px;
  overflow: hidden;
  container-type: inline-size;
  transition: color 420ms ease, background 520ms ease;
}

.type-choice-client {
  color: var(--night);
  border-right: 1px solid rgba(22,21,19,0.32);
  background: var(--paper-2);
}

.type-choice-education {
  color: var(--paper-2);
  background: var(--night);
}

.type-choice-client:hover { background: #e8e4de; }
.type-choice-education:hover { background: #201e1b; }

.type-choice::after {
  content: '';
  position: absolute;
  right: 46px;
  bottom: 39px;
  left: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.25;
  transform: scaleX(0.18);
  transform-origin: right;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1), opacity 300ms ease;
}

.type-choice:hover::after {
  opacity: 0.52;
  transform: scaleX(1);
  transform-origin: left;
}

.type-choice-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.type-choice-top > b {
  font-family: var(--fashion);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0;
}

.type-choice-top > span {
  padding: 8px 11px 7px;
  border: 1px solid currentColor;
}

.type-choice-title {
  display: grid;
  place-items: center start;
  flex: 1;
  margin: 0;
  font-family: var(--fashion);
  font-size: 1rem;
  font-weight: 600;
  line-height: 0.79;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.type-choice-title > span,
.type-choice-title > strong {
  display: block;
  font: inherit;
  white-space: nowrap;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1), color 400ms ease;
}

.type-choice-title > strong {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  transform: none;
}

.type-choice-client .type-choice-title { font-size: clamp(4.75rem, 24cqi, 15.75rem); }
.type-choice-education .type-choice-title { font-size: clamp(3.25rem, 12.5cqi, 10.85rem); }
.type-choice-education .type-choice-title > strong { font-size: 1em; }

.type-choice-client .type-choice-title > strong { color: var(--night); }
.type-choice-education .type-choice-title > strong { color: var(--paper-2); }

.type-choice:hover .type-choice-title > span { transform: translateX(0.025em); }
.type-choice:hover .type-choice-title > strong { transform: none; }

.type-choice-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 24px;
}

.type-choice-detail {
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.9;
  text-transform: uppercase;
  opacity: 0.66;
}

.type-choice-detail strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--fashion);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: none;
}

.type-choice-action {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-width: 186px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.type-choice-action b {
  font-size: 1rem;
  font-weight: 300;
  transition: transform 250ms ease;
}

.type-choice:hover .type-choice-action b { transform: translate(4px, -4px); }

@media (max-width: 1080px) {
  .type-choice { padding-inline: 30px; }
  .type-choice::after { right: 30px; left: 30px; }
  .type-choice-title { font-size: clamp(4.4rem, 16cqi, 7rem); }
  .type-choice-bottom { grid-template-columns: 1fr; gap: 18px; }
  .type-choice-detail { display: none; }
}

@media (min-width: 861px) and (max-width: 980px) {
  .type-choice-title {
    font-size: clamp(4rem, 15.5cqi, 5.8rem);
    letter-spacing: -0.07em;
  }
}

@media (max-width: 860px) {
  .gateway-page {
    display: grid;
    grid-template-rows: 78px auto;
    min-height: 100dvh;
    overflow: auto;
  }

  .type-gateway-header {
    min-height: 78px;
    padding: 12px 18px;
  }

  .type-header-note { display: none; }
  .type-gateway-brand { grid-column: 1 / -1; }
  .type-gateway-brand strong { font-size: 2rem; }

  .type-gateway {
    --seam: 50%;
    grid-template-columns: 1fr;
    grid-template-rows: auto 0 auto;
    min-height: 0;
  }

  .type-choice-client { grid-row: 1; }
  .type-choice-education { grid-row: 3; }

  .type-gateway:has(.type-choice-client:hover),
  .type-gateway:has(.type-choice-education:hover) { grid-template-columns: 1fr; }

  .type-gateway-or {
    position: relative;
    top: auto;
    left: auto;
    grid-row: 2;
    place-self: center;
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
    transform: none;
  }

  .type-gateway-question {
    top: 18px;
    padding: 9px 13px 8px;
    font-size: 0.45rem;
  }

  .type-choice {
    min-height: 51svh;
    padding: 30px 22px 26px;
  }

  .type-choice-client {
    padding-top: 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(22,21,19,0.32);
  }

  .type-choice-title {
    margin: 28px 0;
    line-height: 0.82;
  }

  .type-choice-client .type-choice-title { font-size: clamp(4rem, 29cqi, 10.75rem); }
  .type-choice-education .type-choice-title { font-size: clamp(2.75rem, 15.5cqi, 7.75rem); }

  .type-choice-title > strong { transform: translateX(0.035em); }
  .type-choice:hover .type-choice-title > strong { transform: translateX(0.07em); }

  .type-choice-top { font-size: 0.53rem; }
  .type-choice-top > span { padding: 7px 8px 6px; }
  .type-choice::after { right: 22px; bottom: 25px; left: 22px; }
  .type-choice-bottom { padding-bottom: 20px; }
  .type-choice-action { min-width: 178px; font-size: 0.53rem; }
}

@media (max-width: 860px) and (max-height: 650px) {
  .type-choice { min-height: 420px; }
  .type-choice-title {
    margin: 28px 0;
  }
  .type-choice-detail { display: none; }
}

@media (min-width: 861px) and (max-height: 650px) {
  .gateway-page { grid-template-rows: 74px auto; overflow: auto; }
  .type-gateway-header { min-height: 74px; }
  .type-gateway { min-height: 576px; }
  .type-gateway-question { top: 18px; }
  .type-choice { min-height: 576px; padding-top: 27px; padding-bottom: 28px; }
  .type-choice-title { margin: 54px 0 42px; font-size: clamp(4rem, 14cqi, 6.2rem); }
  .type-choice-detail { display: none; }
  .type-choice-bottom { grid-template-columns: 1fr; }
  .type-choice::after { bottom: 27px; }
}

@media (min-width: 861px) and (max-width: 980px) and (max-height: 650px) {
  .type-choice-title { font-size: clamp(3.75rem, 13.5cqi, 4.6rem); }
}

/* Education experience */

.edu-page { background: var(--paper-2); }

.edu-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--announcement-height);
  padding: 0 24px;
  color: rgba(255,255,255,0.85);
  background: var(--night);
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.edu-announcement a {
  max-width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  overflow: hidden;
  text-overflow: ellipsis;
}

.edu-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--nav-height);
  border-bottom: 1px solid var(--line);
  background: rgba(247,246,243,0.93);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.edu-nav-inner {
  width: var(--wrap);
  min-height: var(--nav-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.edu-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  line-height: 1;
}

.edu-brand strong {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.edu-brand span {
  margin-top: 6px;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.edu-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
}

.edu-nav-links a {
  position: relative;
  padding: 32px 0;
  color: var(--ink-dark);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.edu-nav-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.edu-nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.edu-nav-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: var(--paper-2);
  background: var(--night);
  border: 1px solid var(--night);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease;
}

.edu-nav-action:hover { color: var(--night); background: transparent; }

.edu-menu-button { display: none; }

.edu-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  min-height: calc(100svh - 122px);
  background: var(--paper-2);
}

.edu-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px max(48px, calc((100vw - 1320px) / 2)) 90px max(48px, calc((100vw - 1320px) / 2));
}

.edu-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: var(--accent-dark);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.edu-eyebrow::before,
.section-eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: currentColor;
}

.edu-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: clamp(4.7rem, 6.6vw, 7.8rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.edu-hero-copy > p:not(.edu-eyebrow) {
  max-width: 580px;
  margin: 35px 0 0;
  color: var(--ink);
  font-size: clamp(0.93rem, 1vw, 1.05rem);
  line-height: 1.9;
}

.edu-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 0 25px;
  border: 1px solid var(--night);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.button-primary { color: var(--paper-2); background: var(--night); }
.button-primary:hover { color: var(--night); background: transparent; transform: translateY(-2px); }
.button-secondary { color: var(--night); background: transparent; }
.button-secondary:hover { color: var(--paper-2); background: var(--night); transform: translateY(-2px); }

.edu-hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 54px;
  color: var(--ink-soft);
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.edu-hero-note i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-dark);
}

.edu-hero-visual {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: var(--night);
}

.edu-hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.76) contrast(0.96);
  transform: scale(1.002);
  animation: heroSettle 1400ms cubic-bezier(.2,.7,.2,1) both;
}

.edu-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,0.05) 40%, rgba(12,11,10,0.65) 100%);
  pointer-events: none;
}

@keyframes heroSettle {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1.002); }
}

.visual-index {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.visual-index::before { content: ''; width: 38px; height: 1px; background: currentColor; }

.visual-card {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  left: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 25px 27px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(15,14,12,0.66);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.visual-card span,
.visual-card small { display: block; }

.visual-card small {
  margin-bottom: 8px;
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.66;
}

.visual-card span {
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.05;
}

.visual-card > span:last-child { text-align: right; }

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 118px;
  padding: 27px 28px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child { border-left: 1px solid var(--line); }
.proof-item strong { display: block; color: var(--night); font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.proof-item span { display: block; margin-top: 10px; color: var(--ink); font-size: 0.56rem; font-weight: 500; letter-spacing: 0.14em; line-height: 1.5; text-transform: uppercase; }

.edu-section { padding: 135px 0; }
.edu-wrap { width: var(--wrap); margin: 0 auto; }

.section-heading {
  max-width: 850px;
  margin: 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.1vw, 6.25rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-intro {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.9;
}

.manifesto {
  position: relative;
  overflow: hidden;
  color: var(--paper-2);
  background: var(--night);
}

.manifesto::after {
  content: 'EDUCATION';
  position: absolute;
  right: -0.04em;
  bottom: -0.2em;
  color: rgba(255,255,255,0.025);
  font-family: var(--serif);
  font-size: clamp(9rem, 18vw, 20rem);
  line-height: 0.7;
  pointer-events: none;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: end;
}

.manifesto .section-eyebrow { color: var(--accent); }

.manifesto h2 {
  max-width: 830px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 8.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.manifesto-copy { padding-bottom: 9px; }
.manifesto-copy p { margin: 0; color: rgba(255,255,255,0.62); font-size: 0.95rem; line-height: 1.95; }
.manifesto-copy p + p { margin-top: 24px; }

.framework-header {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 78px;
}

.framework-header .section-intro { margin: 0 0 8px; justify-self: end; }

.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.framework-item {
  min-height: 330px;
  padding: 29px 28px 34px;
  border-right: 1px solid var(--line);
  transition: background 260ms ease, transform 260ms ease;
}

.framework-item:first-child { border-left: 1px solid var(--line); }
.framework-item:hover { background: var(--paper); transform: translateY(-4px); }
.framework-number { color: var(--accent-dark); font-family: var(--serif); font-size: 1rem; }
.framework-item h3 { margin: 96px 0 14px; color: var(--night); font-family: var(--serif); font-size: 2.65rem; font-weight: 400; line-height: 1; }
.framework-item p { margin: 0; color: var(--ink); font-size: 0.8rem; line-height: 1.8; }

.course-feature { background: var(--paper); }

.course-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: stretch;
  min-height: 760px;
}

.course-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--night);
}

.course-image img { height: 100%; object-fit: cover; object-position: center 35%; filter: saturate(0.72) contrast(0.96); transition: transform 800ms cubic-bezier(.2,.7,.2,1); }
.course-image:hover img { transform: scale(1.025); }
.course-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 45%, rgba(12,11,10,0.62)); }

.course-stamp {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: 32px;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: var(--night);
  border-radius: 50%;
  background: rgba(247,246,243,0.92);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.course-plate {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.82);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.course-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(65px, 7vw, 115px);
  border: 1px solid var(--line);
  border-left: 0;
  background: var(--paper-2);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 27px;
  color: var(--accent-dark);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.course-meta span + span::before { content: '·'; margin-right: 22px; }

.course-copy h2 {
  margin: 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5vw, 6.2rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.course-copy > p { margin: 28px 0 0; color: var(--ink); font-size: 0.9rem; line-height: 1.9; }

.outcome-list { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.outcome-list li { display: grid; grid-template-columns: 30px 1fr; gap: 8px; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--ink-dark); font-size: 0.75rem; line-height: 1.6; }
.outcome-list b { color: var(--accent-dark); font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.course-copy .button-primary { align-self: flex-start; margin-top: 35px; }

.lesson-section { background: var(--paper-2); }

.lesson-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.lesson-intro { position: sticky; top: calc(var(--nav-height) + 54px); }
.lesson-intro .section-heading { font-size: clamp(3.5rem, 5vw, 5.8rem); }

.chapter-list { border-top: 1px solid var(--line); }
.chapter { display: grid; grid-template-columns: 54px 1fr auto; gap: 22px; align-items: center; min-height: 128px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.chapter-number { color: var(--accent-dark); font-family: var(--serif); font-size: 1.05rem; }
.chapter h3 { margin: 0; color: var(--night); font-family: var(--serif); font-size: clamp(2rem, 2.7vw, 3rem); font-weight: 400; line-height: 1; }
.chapter p { margin: 7px 0 0; color: var(--ink); font-size: 0.72rem; line-height: 1.7; }
.chapter-tag { font-size: 0.52rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }

.educator-section { color: var(--paper-2); background: var(--night-soft); }

.educator-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.educator-collage {
  position: relative;
  min-height: 680px;
}

.educator-main-image { position: absolute; inset: 0 19% 9% 0; height: auto; min-height: 560px; object-fit: cover; object-position: 50% 36%; filter: saturate(0.58); }
.educator-detail-image { position: absolute; right: 0; bottom: 0; width: 42%; aspect-ratio: 0.78; object-fit: cover; border: 12px solid var(--night-soft); filter: saturate(0.65); }
.educator-mark { position: absolute; top: 30px; right: 4%; z-index: 3; color: var(--paper-2); font-family: var(--serif); font-size: clamp(5rem, 8vw, 8rem); font-weight: 400; line-height: 0.7; opacity: 0.82; }

.educator-copy .section-eyebrow { color: var(--accent); }
.educator-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(4rem, 6vw, 7rem); font-weight: 400; line-height: 0.84; letter-spacing: -0.05em; }
.educator-copy > p { max-width: 610px; margin: 31px 0 0; color: rgba(255,255,255,0.62); font-size: 0.93rem; line-height: 1.95; }
.educator-quote { max-width: 610px; margin-top: 42px; padding: 28px 0 0 28px; border-top: 1px solid rgba(255,255,255,0.2); border-left: 1px solid rgba(255,255,255,0.2); font-family: var(--serif); font-size: clamp(1.7rem, 2.5vw, 2.7rem); line-height: 1.14; }

.signup-section { background: var(--accent); }

.signup-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--night);
}

.signup-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 710px;
  padding: clamp(55px, 7vw, 100px);
  color: var(--paper-2);
}

.signup-copy .section-eyebrow { color: var(--accent); }
.signup-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(4rem, 6vw, 7.2rem); font-weight: 400; line-height: 0.82; letter-spacing: -0.05em; }
.signup-copy > div > p { max-width: 480px; margin: 30px 0 0; color: rgba(255,255,255,0.62); font-size: 0.9rem; line-height: 1.9; }
.signup-facts { display: flex; flex-wrap: wrap; gap: 11px 24px; margin-top: 60px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.7); font-size: 0.55rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }

.signup-form-wrap {
  display: flex;
  align-items: center;
  padding: clamp(45px, 7vw, 105px);
  color: var(--ink-dark);
  background: var(--paper-2);
}

.course-signup-form { width: 100%; }
.form-heading { margin: 0 0 36px; color: var(--night); font-family: var(--serif); font-size: clamp(2.5rem, 3.6vw, 4.3rem); font-weight: 400; line-height: 0.95; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 21px; }
.field label { display: block; margin-bottom: 9px; color: var(--ink-dark); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.field input { width: 100%; height: 52px; padding: 0 15px; color: var(--night); border: 1px solid var(--line); border-radius: 0; outline: 0; background: var(--paper); transition: border-color 180ms ease, box-shadow 180ms ease; }
.field input:focus { border-color: var(--accent-dark); box-shadow: 0 0 0 3px rgba(143,127,112,0.12); }
.signup-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.check-row { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; margin-top: 18px; }
.check-row input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--night); }
.check-row label { color: var(--ink); font-size: 0.67rem; line-height: 1.65; }
.check-row a { border-bottom: 1px solid currentColor; }
.signup-submit { width: 100%; min-height: 54px; margin-top: 27px; color: var(--paper-2); border: 1px solid var(--night); background: var(--night); font-size: 0.61rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; transition: color 220ms ease, background 220ms ease; }
.signup-submit:hover { color: var(--night); background: transparent; }
.signup-submit:disabled { cursor: wait; opacity: 0.55; }
.signup-status { display: none; margin-top: 17px; padding: 13px 15px; border-left: 2px solid var(--accent-dark); background: var(--paper); font-size: 0.72rem; line-height: 1.6; }
.signup-status.is-visible { display: block; }
.signup-status.is-error { border-left-color: #a75b52; }
.signup-status.is-success { border-left-color: #6e8268; }
.form-note { margin: 17px 0 0; color: var(--ink-soft); font-size: 0.58rem; line-height: 1.65; }

.edu-footer { color: rgba(255,255,255,0.62); background: var(--night); }
.edu-footer-main { width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.25fr 0.65fr 0.65fr; gap: 80px; padding: 88px 0 76px; }
.footer-brand strong { display: block; color: var(--paper-2); font-family: var(--serif); font-size: 2.8rem; font-weight: 400; line-height: 1; }
.footer-brand span { display: block; max-width: 440px; margin-top: 18px; font-size: 0.72rem; line-height: 1.8; }
.footer-column h3 { margin: 0 0 20px; color: var(--paper-2); font-size: 0.56rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-column a { display: block; width: max-content; margin: 12px 0; font-size: 0.7rem; }
.footer-column a:hover { color: var(--white); }
.edu-footer-bottom { width: var(--wrap); margin: 0 auto; display: flex; justify-content: space-between; gap: 30px; padding: 24px 0 28px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.53rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --wrap: min(100% - 48px, 1040px); }
  .gateway-header { padding-inline: 28px; }
  .gateway-header p { display: none; }
  .choice-content { right: 28px; left: 28px; }
  .choice-number { left: 28px; }
  .edu-nav-inner { grid-template-columns: 1fr auto; }
  .edu-nav-links {
    position: fixed;
    inset: calc(var(--announcement-height) + var(--nav-height)) 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper-2);
  }
  .edu-nav-links.is-open { display: flex; }
  .edu-nav-links a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .edu-nav-links a::after { display: none; }
  .edu-nav-action { display: none; }
  .edu-menu-button { justify-self: end; display: inline-flex; align-items: center; gap: 10px; padding: 12px 0; color: var(--night); border: 0; background: transparent; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; }
  .menu-icon { position: relative; width: 23px; height: 12px; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; }
  .edu-hero { grid-template-columns: 1fr 0.9fr; }
  .edu-hero-copy { padding: 72px 42px; }
  .edu-hero h1 { font-size: clamp(4.2rem, 7.6vw, 6rem); }
  .framework-grid { grid-template-columns: 1fr 1fr; }
  .framework-item:nth-child(3) { border-left: 1px solid var(--line); }
  .course-layout { grid-template-columns: 1fr 1fr; }
  .course-copy { padding: 62px 45px; }
  .lesson-layout { gap: 60px; }
  .educator-collage { min-height: 590px; }
  .signup-form-wrap { padding: 55px 45px; }
}

@media (max-width: 860px) {
  :root { --wrap: calc(100% - 32px); --nav-height: 74px; }
  .gateway-page { overflow: auto; }
  .gateway-header { position: absolute; min-height: 82px; padding: 14px 18px; border-bottom-color: rgba(255,255,255,0.13); }
  .gateway-brand span { font-size: 1.55rem; }
  .gateway-brand small { font-size: 0.47rem; }
  .gateway { grid-template-columns: 1fr; height: auto; min-height: 100svh; }
  .gateway:has(.gateway-choice-client:hover),
  .gateway:has(.gateway-choice-education:hover) { grid-template-columns: 1fr; }
  .gateway-question { top: 92px; font-size: 0.54rem; }
  .gateway-choice { min-height: 55svh; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .gateway-choice:first-of-type { padding-top: 80px; }
  .gateway-choice-client .gateway-image { background-position: 50% 26%; }
  .gateway-choice-education .gateway-image { background-position: 50% 28%; }
  .choice-number { top: 112px; left: 20px; font-size: 0.85rem; }
  .gateway-choice-education .choice-number { top: 30px; }
  .choice-content { right: 20px; bottom: 28px; left: 20px; }
  .choice-kicker { margin-bottom: 12px; font-size: 0.54rem; }
  .choice-content strong { font-size: clamp(2.8rem, 13vw, 4.4rem); line-height: 0.9; }
  .choice-copy { display: none; }
  .choice-action { min-width: 170px; margin-top: 17px; padding: 11px 0; font-size: 0.56rem; }
  .gateway-footer { position: static; padding: 20px; color: rgba(255,255,255,0.6); background: var(--night); font-size: 0.45rem; }

  .edu-announcement { font-size: 0.48rem; letter-spacing: 0.12em; }
  .edu-nav-inner { min-height: var(--nav-height); }
  .edu-brand strong { font-size: 1.5rem; }
  .edu-brand span { font-size: 0.45rem; }
  .edu-nav-links { top: calc(var(--announcement-height) + var(--nav-height)); }
  .edu-hero { display: flex; flex-direction: column; min-height: 0; }
  .edu-hero-copy { padding: 74px 16px 58px; }
  .edu-eyebrow, .section-eyebrow { margin-bottom: 20px; font-size: 0.52rem; }
  .edu-hero h1 { font-size: clamp(4.1rem, 20vw, 5.75rem); }
  .edu-hero-copy > p:not(.edu-eyebrow) { margin-top: 26px; font-size: 0.86rem; }
  .edu-hero-actions { flex-direction: column; }
  .button-primary, .button-secondary { width: 100%; }
  .edu-hero-note { margin-top: 35px; font-size: 0.48rem; }
  .edu-hero-visual { min-height: 70svh; }
  .visual-index { top: 20px; left: 20px; }
  .visual-card { right: 16px; bottom: 16px; left: 16px; padding: 18px; }
  .visual-card span { font-size: 1.18rem; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item { min-height: 105px; padding: 22px 18px; border-bottom: 1px solid var(--line); }
  .proof-item:nth-child(odd) { border-left: 1px solid var(--line); }
  .proof-item strong { font-size: 1.65rem; }
  .proof-item span { font-size: 0.48rem; }
  .edu-section { padding: 88px 0; }
  .section-heading { font-size: clamp(3.35rem, 15vw, 5rem); }
  .manifesto-grid, .framework-header, .course-layout, .lesson-layout, .educator-layout, .signup-layout, .edu-footer-main { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 48px; }
  .manifesto h2 { font-size: clamp(4rem, 18vw, 6rem); }
  .framework-header { gap: 28px; margin-bottom: 50px; }
  .framework-header .section-intro { margin: 0; justify-self: start; }
  .framework-grid { grid-template-columns: 1fr; }
  .framework-item, .framework-item:nth-child(3) { min-height: auto; padding: 24px 18px 28px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .framework-item h3 { margin-top: 42px; }
  .course-image { min-height: 67svh; }
  .course-copy { padding: 58px 24px; border-top: 0; border-left: 1px solid var(--line); }
  .course-copy h2 { font-size: clamp(3.6rem, 17vw, 5.2rem); }
  .course-meta { gap: 7px 10px; }
  .course-meta span + span::before { margin-right: 10px; }
  .lesson-layout { gap: 54px; }
  .lesson-intro { position: static; }
  .chapter { grid-template-columns: 36px 1fr; min-height: 110px; gap: 13px; }
  .chapter-tag { display: none; }
  .educator-layout { gap: 62px; }
  .educator-collage { min-height: 520px; }
  .educator-main-image { inset: 0 13% 11% 0; min-height: 420px; }
  .educator-detail-image { width: 45%; border-width: 8px; }
  .educator-copy h2 { font-size: clamp(4rem, 18vw, 5.8rem); }
  .signup-copy { min-height: auto; padding: 60px 24px; }
  .signup-copy h2 { font-size: clamp(4rem, 18vw, 5.9rem); }
  .signup-form-wrap { padding: 52px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .edu-footer-main { gap: 42px; padding: 65px 0 54px; }
  .edu-footer-bottom { flex-direction: column; gap: 10px; }
}

@media (min-width: 861px) and (max-height: 650px) {
  .gateway-page { overflow: auto; }
  .gateway { height: auto; min-height: 720px; }
  .gateway-choice { min-height: 720px; }
  .choice-content { bottom: 42px; }
  .choice-content strong { font-size: clamp(3rem, 4.6vw, 4.8rem); }
  .choice-copy { display: none; }
  .choice-action { margin-top: 22px; }
  .gateway-footer { position: absolute; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* V10 typography-only education experience */

.type-education-page { background: var(--paper-2); }

.type-education-page [id] {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

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

.type-label {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.type-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
}

.type-label-light { color: #c7b9ab; }

.type-edu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.58fr);
  grid-template-rows: minmax(620px, 1fr) auto;
  min-height: calc(100svh - 122px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.type-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(74px, 8vw, 128px) clamp(48px, 6vw, 108px);
}

.type-hero-copy h1 {
  max-width: 980px;
  margin: 31px 0 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: clamp(4.85rem, 6.8vw, 8rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.type-hero-copy h1 em,
.type-section-heading h2 em,
.type-featured-title h2 em,
.type-lesson-intro h2 em,
.type-educator-copy h2 em,
.type-signup-copy h2 em,
.type-statement h2 em {
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 400;
}

.type-hero-intro {
  max-width: 640px;
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.9;
}

.type-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 40px;
}

.type-button-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  color: var(--paper-2);
  border: 1px solid var(--night);
  background: var(--night);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.type-button-dark:hover {
  color: var(--night);
  background: transparent;
  transform: translateY(-2px);
}

.type-text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.type-text-link span { font-size: 0.85rem; transition: transform 220ms ease; }
.type-text-link:hover span { transform: translateY(4px); }

.type-hero-course {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 39px 38px 42px;
  color: var(--paper-2);
  background: var(--night);
  overflow: hidden;
}

.type-hero-course::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,21,19,0.56) 0%, rgba(22,21,19,0.08) 38%, rgba(22,21,19,0.88) 100%),
    linear-gradient(90deg, rgba(22,21,19,0.34), rgba(22,21,19,0.04));
  pointer-events: none;
}

.type-hero-course-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.78) contrast(1.03);
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 500ms ease;
}

.type-hero-course:hover .type-hero-course-visual {
  filter: saturate(0.9) contrast(1.03);
  transform: scale(1.025);
}

.type-hero-course::after {
  content: '01';
  position: absolute;
  right: -0.08em;
  bottom: 0.02em;
  color: rgba(255,255,255,0.035);
  font-family: var(--serif);
  font-size: clamp(15rem, 24vw, 27rem);
  line-height: 0.6;
  z-index: 2;
  pointer-events: none;
}

.type-course-topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.type-course-topline b {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
}

.type-course-title { position: relative; z-index: 3; }

.type-course-title > p {
  margin: 0 0 24px;
  color: #c7b9ab;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.type-hero-course h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 4.8vw, 5.7rem);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.05em;
}

.type-script {
  display: block;
  margin-top: 19px;
  color: #c7b9ab;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
}

.type-course-facts {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  padding-top: 19px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.type-hero-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 68px;
  color: var(--night);
  border-top: 1px solid rgba(22,21,19,0.25);
  background: var(--accent);
}

.type-hero-principles span {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(22,21,19,0.25);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.type-hero-principles span:last-child { border-right: 0; }

.type-statement {
  padding: 145px 0;
  color: var(--paper-2);
  background: var(--night);
}

.type-statement-grid {
  display: grid;
  grid-template-columns: 0.32fr 1.13fr 0.55fr;
  gap: clamp(45px, 6vw, 95px);
  align-items: end;
}

.type-statement h2,
.type-section-heading h2,
.type-lesson-intro h2,
.type-educator-copy h2,
.type-signup-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 6.2vw, 7.4rem);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.052em;
}

.type-statement h2 { font-size: clamp(3.9rem, 5.5vw, 6.6rem); }
.type-lesson-intro h2 { font-size: clamp(3.75rem, 5.1vw, 6rem); }
.type-educator-copy h2 { font-size: clamp(3.9rem, 5.5vw, 6.5rem); }
.type-signup-copy h2 { font-size: clamp(3.65rem, 4.9vw, 5.7rem); }

.type-statement h2 em,
.type-educator-copy h2 em { color: #c7b9ab; }

.type-statement-copy p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  line-height: 1.9;
}

.type-statement-copy p + p { margin-top: 22px; }

.type-path-section,
.type-lesson-section {
  padding: 140px 0;
  background: var(--paper-2);
}

.type-section-heading {
  display: grid;
  grid-template-columns: 0.34fr 1.66fr;
  gap: 55px;
  align-items: start;
  margin-bottom: 80px;
}

.type-section-heading h2 { color: var(--night); }

.type-path-list { border-top: 1px solid var(--line); }

.type-path-row {
  display: grid;
  grid-template-columns: 65px minmax(180px, 0.65fr) minmax(260px, 1fr) 92px;
  gap: 28px;
  align-items: center;
  min-height: 142px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
  transition: background 260ms ease, padding 300ms ease;
}

.type-path-row:hover { padding-right: 38px; padding-left: 38px; background: var(--paper); }

.type-path-number {
  color: var(--accent-dark);
  font-family: var(--serif);
  font-size: 1rem;
}

.type-path-row h3 {
  margin: 0;
  color: var(--night);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 3.8vw, 4.3rem);
  font-weight: 400;
  line-height: 1;
}

.type-path-row p { margin: 0; color: var(--ink); font-size: 0.79rem; line-height: 1.8; }

.type-path-word {
  justify-self: end;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.type-featured-course {
  padding: 105px 0 130px;
  color: var(--night);
  background: var(--accent);
}

.type-featured-meta {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(22,21,19,0.32);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.type-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(70px, 10vw, 155px);
  padding-top: 75px;
}

.type-featured-title { position: relative; min-height: 0; overflow: hidden; }

.type-featured-number {
  position: absolute;
  top: -0.12em;
  right: 0;
  color: rgba(22,21,19,0.07);
  font-family: var(--serif);
  font-size: clamp(18rem, 31vw, 34rem);
  line-height: 0.72;
}

.type-featured-title p {
  position: relative;
  z-index: 1;
  margin: 0 0 25px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.type-featured-title h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.type-featured-image {
  position: relative;
  z-index: 1;
  width: min(62%, 410px);
  margin: 58px 0 0 auto;
}

.type-featured-image-frame {
  aspect-ratio: 4 / 5;
  background: rgba(22,21,19,0.08);
  overflow: hidden;
}

.type-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.76) contrast(1.04);
  transform: scale(1.48);
  transform-origin: 56% 30%;
  transition: filter 450ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.type-featured-image:hover img {
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.52);
}

.type-featured-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(22,21,19,0.32);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.type-featured-copy { align-self: center; }

.type-featured-copy > p { margin: 0; font-size: 0.9rem; line-height: 1.9; }

.type-featured-copy ol {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(22,21,19,0.3);
  list-style: none;
}

.type-featured-copy li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(22,21,19,0.3);
  font-size: 0.74rem;
  line-height: 1.6;
}

.type-featured-copy li b { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.type-featured-copy .type-button-dark { margin-top: 34px; }

.type-lesson-intro {
  display: grid;
  grid-template-columns: 0.34fr 1.05fr 0.61fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 82px;
}

.type-lesson-intro h2 { color: var(--night); }
.type-lesson-intro > p:last-child { margin: 0; color: var(--ink); font-size: 0.82rem; line-height: 1.9; }
.type-lesson-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }

.type-lesson-list article {
  min-height: 310px;
  padding: 28px 27px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 260ms ease, transform 260ms ease;
}

.type-lesson-list article:hover { background: var(--paper); transform: translateY(-4px); }
.type-lesson-list article > span { color: var(--accent-dark); font-family: var(--serif); font-size: 1rem; }
.type-lesson-list h3 { margin: 95px 0 15px; color: var(--night); font-family: var(--serif); font-size: 2.7rem; font-weight: 400; line-height: 1; }
.type-lesson-list p { margin: 0; color: var(--ink); font-size: 0.73rem; line-height: 1.8; }

.type-educator-section {
  padding: 135px 0;
  color: var(--paper-2);
  background: var(--night);
}

.type-educator-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(75px, 12vw, 185px);
  align-items: center;
}

.type-experience-mark {
  display: flex;
  flex-direction: column;
  padding-right: 60px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.type-experience-mark strong {
  font-family: var(--serif);
  font-size: clamp(8rem, 15vw, 14rem);
  font-weight: 400;
  line-height: 0.66;
  letter-spacing: -0.06em;
}

.type-experience-mark span {
  margin-top: 42px;
  color: #c7b9ab;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-transform: uppercase;
}

.type-educator-copy > p:not(.type-label) {
  max-width: 690px;
  margin: 34px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.87rem;
  line-height: 1.95;
}

.type-educator-copy h2 { margin-top: 28px; }

.type-educator-copy blockquote {
  max-width: 720px;
  margin: 42px 0 0;
  padding: 25px 0 0 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.2);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  line-height: 1.13;
}

.type-signup-section {
  padding: 130px 0;
  color: var(--night);
  background: var(--accent);
}

.type-signup-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid rgba(22,21,19,0.32);
}

.type-signup-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(55px, 7vw, 100px);
  border-right: 1px solid rgba(22,21,19,0.32);
}

.type-signup-copy .type-label { color: var(--night); }

.type-signup-copy h2 { margin-top: 29px; }

.type-signup-copy > p:not(.type-label) {
  max-width: 560px;
  margin: 30px 0 0;
  font-size: 0.84rem;
  line-height: 1.9;
}

.type-signup-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(22,21,19,0.28);
  font-size: 0.51rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.type-form-panel {
  display: flex;
  align-items: center;
  padding: clamp(55px, 7vw, 105px);
  background: var(--paper-2);
}

.type-form-panel h3 {
  margin: 0 0 37px;
  color: var(--night);
  font-family: var(--serif);
  font-size: clamp(3rem, 4.4vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

@media (max-width: 1080px) {
  .type-edu-hero { grid-template-columns: minmax(0, 1.22fr) minmax(310px, 0.78fr); }
  .type-hero-copy { padding: 74px 46px; }
  .type-hero-copy h1 { font-size: clamp(4.5rem, 7vw, 6.3rem); }
  .type-statement-grid { grid-template-columns: 1fr 2fr; }
  .type-statement-grid > .type-label { grid-column: 1 / -1; }
  .type-featured-grid { gap: 65px; }
  .type-lesson-intro { grid-template-columns: 1fr 2fr; }
  .type-lesson-intro > .type-label { grid-column: 1 / -1; }
  .type-lesson-intro > p:last-child { grid-column: 2; }
  .type-lesson-list { grid-template-columns: 1fr 1fr; }
  .type-signup-copy, .type-form-panel { padding: 62px 44px; }
}

@media (max-width: 980px) {
  .type-label { font-size: 0.5rem; }
  .type-edu-hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: 0; }
  .type-hero-copy { padding: 78px 16px 65px; }
  .type-hero-copy h1 { font-size: clamp(3.1rem, 15vw, 5.2rem); line-height: 0.87; }
  .type-hero-intro { font-size: 0.85rem; }
  .type-hero-actions { flex-direction: column; align-items: stretch; }
  .type-button-dark { width: 100%; }
  .type-text-link { justify-content: space-between; }
  .type-hero-course { min-height: 480px; padding: 31px 22px; }
  .type-hero-course h2 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .type-hero-principles { grid-template-columns: 1fr 1fr; }
  .type-hero-principles span { min-height: 58px; border-bottom: 1px solid rgba(22,21,19,0.25); font-size: 1.2rem; }
  .type-statement, .type-path-section, .type-lesson-section, .type-educator-section, .type-signup-section { padding: 88px 0; }
  .type-statement-grid, .type-section-heading, .type-featured-grid, .type-lesson-intro, .type-educator-grid, .type-signup-grid { grid-template-columns: 1fr; }
  .type-statement-grid { gap: 46px; }
  .type-statement h2, .type-section-heading h2, .type-lesson-intro h2, .type-educator-copy h2, .type-signup-copy h2 { font-size: clamp(3.45rem, 14.5vw, 5rem); }
  .type-section-heading { gap: 28px; margin-bottom: 55px; }
  .type-path-row { grid-template-columns: 40px 1fr; gap: 12px 16px; min-height: 136px; padding: 23px 10px; }
  .type-path-row:hover { padding-right: 10px; padding-left: 10px; }
  .type-path-row p { grid-column: 2; }
  .type-path-word { display: none; }
  .type-featured-course { padding: 78px 0 90px; }
  .type-featured-meta { flex-direction: column; gap: 10px; }
  .type-featured-grid { gap: 55px; padding-top: 52px; }
  .type-featured-title { min-height: 325px; }
  .type-featured-title h2 { font-size: clamp(3.35rem, 17vw, 5.2rem); line-height: 0.82; }
  .type-featured-image { width: min(82%, 390px); margin: 48px 0 0 auto; }
  .type-featured-image figcaption { flex-direction: column; gap: 6px; }
  .type-featured-copy .type-button-dark { width: 100%; }
  .type-lesson-intro { gap: 28px; margin-bottom: 55px; }
  .type-lesson-intro > p:last-child { grid-column: auto; }
  .type-lesson-list { grid-template-columns: 1fr; }
  .type-lesson-list article { min-height: auto; padding: 25px 20px 30px; }
  .type-lesson-list h3 { margin-top: 50px; }
  .type-educator-grid { gap: 65px; }
  .type-experience-mark { padding: 0 0 50px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .type-experience-mark strong { font-size: clamp(8.5rem, 38vw, 12rem); }
  .type-signup-grid { border: 1px solid rgba(22,21,19,0.32); }
  .type-signup-copy { padding: 58px 22px; border-right: 0; border-bottom: 1px solid rgba(22,21,19,0.32); }
  .type-form-panel { padding: 52px 22px; }
  .type-form-panel h3 { font-size: 3.5rem; }
}

/* V14 — course access moved from the salon journey into Education */

.type-course-access-section {
  padding: clamp(78px, 7.5vw, 112px) 0;
  color: var(--ink-dark);
  background:
    radial-gradient(circle at 17% 25%, rgba(255,255,255,0.86), transparent 34%),
    linear-gradient(135deg, #efede8 0%, #e7e3dc 100%);
}

.type-course-access-shell {
  width: min(1160px, calc(100vw - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  border: 1px solid rgba(22,21,19,0.09);
  background: rgba(247,246,243,0.88);
  box-shadow: 0 28px 72px rgba(37,31,27,0.12);
}

.type-course-access-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(46px, 4.5vw, 66px);
}

.type-access-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.55;
  text-transform: uppercase;
}

.type-course-access-copy h2 {
  margin: 22px 0 0;
  color: #8a827b;
  font-family: var(--sans);
  font-size: clamp(3.4rem, 4vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.035em;
  line-height: 0.8;
  text-transform: uppercase;
}

.type-course-access-copy h2 span { display: block; }

.type-course-access-copy > p:not(.type-access-kicker) {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.9;
}

.type-course-access-copy ul {
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.type-course-access-copy li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 2px;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.type-course-access-copy li span {
  color: var(--accent-dark);
  font-size: 0.68rem;
}

.type-course-access-panel {
  align-self: stretch;
  margin: clamp(18px, 2vw, 28px);
  padding: clamp(32px, 3.2vw, 46px);
  color: rgba(255,255,255,0.78);
  background: #0c0c0c;
}

.type-access-kicker-light { color: #b7a99c; }

.type-course-access-panel h3 {
  max-width: 570px;
  margin: 17px 0 0;
  color: var(--paper-2);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.type-course-access-panel > p:not(.type-access-kicker) {
  max-width: 520px;
  margin: 16px 0 21px;
  color: rgba(255,255,255,0.65);
  font-size: 0.73rem;
  line-height: 1.75;
}

.type-course-access-panel .form-row {
  grid-template-columns: 1fr;
  gap: 0;
}

.type-course-access-panel .field { margin-bottom: 13px; }

.type-course-access-panel .field label {
  color: #b7a99c;
  font-size: 0.52rem;
}

.type-course-access-panel .field input {
  height: 46px;
  color: var(--paper-2);
  border-color: rgba(255,255,255,0.2);
  background: #1b1b1b;
}

.type-course-access-panel .field input::placeholder { color: rgba(255,255,255,0.38); }

.type-course-access-panel .field input:focus {
  border-color: #b7a99c;
  box-shadow: 0 0 0 3px rgba(183,169,156,0.15);
}

.type-course-access-panel .check-row { margin-top: 14px; }
.type-course-access-panel .check-row input { accent-color: #b7a99c; }
.type-course-access-panel .check-row label { color: rgba(255,255,255,0.68); font-size: 0.61rem; }

.type-course-access-panel .signup-submit {
  min-height: 51px;
  margin-top: 23px;
  color: var(--night);
  border-color: var(--paper-2);
  background: var(--paper-2);
}

.type-course-access-panel .signup-submit:hover,
.type-course-access-panel .signup-submit:focus-visible {
  color: var(--paper-2);
  background: transparent;
}

.type-course-access-panel .signup-status {
  color: var(--paper-2);
  border-left-color: #b7a99c;
  background: #1b1b1b;
}

.type-course-access-panel .form-note { color: rgba(255,255,255,0.46); }

.type-lesson-result {
  width: min(380px, 42%);
  margin: -24px 0 76px auto;
}

.type-lesson-result-frame {
  aspect-ratio: 4 / 5;
  background: var(--line);
  overflow: hidden;
}

.type-lesson-result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(0.76) contrast(1.04);
  transform: scale(1.48);
  transform-origin: 56% 30%;
  transition: filter 450ms ease, transform 650ms cubic-bezier(.2,.7,.2,1);
}

.type-lesson-result:hover img {
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.52);
}

.type-lesson-result figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: var(--ink-dark);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .type-course-access-shell {
    width: calc(100vw - 48px);
    grid-template-columns: 1fr;
  }

  .type-course-access-copy { padding: 62px 46px 58px; }
  .type-course-access-copy h2 { font-size: clamp(3.5rem, 8vw, 5.5rem); }
  .type-course-access-panel { margin: 0 20px 20px; }
}

@media (max-width: 980px) {
  .type-course-access-section { padding: 76px 0; }

  .type-course-access-shell {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
  }

  .type-course-access-copy { padding: 58px 30px 54px; }

  .type-course-access-copy h2 {
    font-size: clamp(3.25rem, 9.5vw, 4.8rem);
    line-height: 0.84;
  }

  .type-course-access-panel {
    margin: 0 16px 16px;
    padding: clamp(34px, 8vw, 54px) clamp(22px, 6vw, 42px);
  }

  .type-course-access-panel h3 { font-size: clamp(2.5rem, 7vw, 3.4rem); }
  .type-lesson-result { width: min(390px, 82%); margin: -8px 0 62px auto; }
}

@media (max-width: 520px) {
  .type-course-access-copy { padding: 48px 22px; }
  .type-course-access-copy h2 { font-size: clamp(2.15rem, 11vw, 3rem); letter-spacing: 0.02em; }
  .type-course-access-copy li { padding: 12px 0; }
  .type-course-access-panel { margin: 0 16px 16px; }
  .type-course-access-panel h3 { font-size: clamp(2.1rem, 9.6vw, 2.85rem); }
  .type-lesson-result { width: 88%; }
  .type-lesson-result figcaption { flex-direction: column; gap: 6px; }
}

@media (max-width: 360px) {
  .edu-nav-inner { gap: 12px; }
  .edu-brand strong { font-size: 1.25rem; }
  .edu-brand span { font-size: 0.41rem; letter-spacing: 0.22em; }
  .edu-menu-button { gap: 7px; font-size: 0.52rem; }
  .type-hero-course h2 { font-size: clamp(3.05rem, 15vw, 3.5rem); }
  .type-path-row { grid-template-columns: 32px minmax(0, 1fr); gap: 12px; }
  .type-path-row h3 { font-size: clamp(2.45rem, 13vw, 3.2rem); }
  .type-lesson-intro h2 { font-size: clamp(3.1rem, 15.5vw, 3.45rem); }
  .type-lesson-list { grid-template-columns: minmax(0, 1fr); }
  .type-lesson-list article { min-width: 0; }
}


/* V15 dark editorial lesson framework */
.lesson-framework-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f1ede7;
  background:
    radial-gradient(circle at 78% 22%, rgba(183, 169, 156, 0.07), transparent 31%),
    linear-gradient(145deg, #171615 0%, #10100f 58%, #191817 100%);
  border-top: 1px solid rgba(199, 185, 171, 0.14);
  border-bottom: 1px solid rgba(199, 185, 171, 0.18);
}

.lesson-framework-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(560px, 1.26fr);
  gap: clamp(72px, 8vw, 140px);
  min-height: 760px;
  padding-top: clamp(100px, 9vw, 150px);
  padding-bottom: clamp(96px, 8vw, 132px);
}

.lesson-framework-watermark {
  position: absolute;
  z-index: -1;
  top: -0.15em;
  left: -0.14em;
  color: rgba(255, 255, 255, 0.028);
  font-family: var(--serif);
  font-size: clamp(24rem, 40vw, 42rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.11em;
  pointer-events: none;
  user-select: none;
}

.lesson-framework-intro {
  align-self: center;
  max-width: 570px;
}

.lesson-framework-kicker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 42px;
  color: #b9a796;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.lesson-framework-kicker span {
  width: 56px;
  height: 1px;
  background: currentColor;
}

.lesson-framework-intro h2 {
  max-width: 600px;
  margin: 0;
  color: #f4f0ea;
  font-family: var(--serif);
  font-size: clamp(5rem, 7vw, 8.1rem);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: -0.055em;
}

.lesson-framework-intro h2 em {
  display: block;
  margin-top: 0.08em;
  color: #b9a796;
  font-weight: 400;
}

.lesson-framework-accent {
  width: 92px;
  height: 1px;
  margin: 48px 0 35px;
  background: #b9a796;
}

.lesson-framework-intro > p:last-child {
  max-width: 500px;
  margin: 0;
  color: rgba(244, 240, 234, 0.7);
  font-size: 0.82rem;
  line-height: 1.95;
}

.lesson-framework-content {
  align-self: center;
  min-width: 0;
}

.lesson-framework-note {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  margin: 0 0 42px;
  color: #b9a796;
}

.lesson-framework-note p {
  margin: 0;
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lesson-framework-burst {
  position: relative;
  width: 56px;
  height: 30px;
  overflow: hidden;
}

.lesson-framework-burst::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -25px;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

.lesson-framework-burst::after {
  content: '';
  position: absolute;
  inset: 2px 1px auto;
  height: 26px;
  background: repeating-conic-gradient(from 260deg at 50% 100%, currentColor 0deg 1deg, transparent 1deg 12deg);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  opacity: 0.9;
}

.lesson-framework-list {
  border-top: 1px solid rgba(199, 185, 171, 0.32);
}

.lesson-framework-list article {
  display: grid;
  grid-template-columns: 98px minmax(190px, 0.86fr) minmax(220px, 1.14fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
  min-height: 132px;
  padding: 22px 10px 22px 18px;
  border-bottom: 1px solid rgba(199, 185, 171, 0.28);
  transition: background 260ms ease, padding 260ms ease;
}

.lesson-framework-list article:hover {
  padding-left: 26px;
  background: rgba(255, 255, 255, 0.025);
}

.lesson-framework-number {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-right: 25px;
  color: #b9a796;
  border-right: 1px solid rgba(199, 185, 171, 0.4);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 4.2vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
}

.lesson-framework-list h3 {
  margin: 0;
  color: #f4f0ea;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lesson-framework-list p {
  max-width: 280px;
  margin: 0;
  color: rgba(244, 240, 234, 0.74);
  font-size: 0.78rem;
  line-height: 1.8;
}

.lesson-framework-rail {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 74px;
  padding: 0 max(48px, calc((100vw - min(1320px, calc(100vw - 96px))) / 2));
  color: #a89482;
  border-top: 1px solid rgba(199, 185, 171, 0.22);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.lesson-framework-rail i {
  padding: 0 17px;
  color: rgba(244, 240, 234, 0.34);
  font-style: normal;
}

@media (max-width: 1180px) {
  .lesson-framework-shell {
    grid-template-columns: minmax(280px, 0.68fr) minmax(500px, 1.32fr);
    gap: 58px;
  }

  .lesson-framework-list article {
    grid-template-columns: 82px minmax(160px, 0.8fr) minmax(200px, 1.2fr);
    gap: 26px;
  }
}

@media (max-width: 980px) {
  .lesson-framework-shell {
    grid-template-columns: 1fr;
    gap: 72px;
    min-height: 0;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lesson-framework-intro { max-width: 680px; }
  .lesson-framework-intro h2 { font-size: clamp(4.5rem, 12vw, 7rem); }
  .lesson-framework-content { width: 100%; }
  .lesson-framework-note { justify-content: flex-start; margin-bottom: 28px; }
  .lesson-framework-watermark { top: 0.02em; left: -0.05em; font-size: clamp(21rem, 63vw, 34rem); }
}

@media (max-width: 700px) {
  .lesson-framework-shell {
    width: calc(100vw - 40px);
    gap: 58px;
    padding-top: 82px;
    padding-bottom: 80px;
  }

  .lesson-framework-kicker { margin-bottom: 34px; }
  .lesson-framework-intro h2 { font-size: clamp(3.65rem, 17vw, 5.4rem); line-height: 0.8; }
  .lesson-framework-intro > p:last-child { font-size: 0.76rem; }

  .lesson-framework-list article {
    grid-template-columns: 68px 1fr;
    gap: 18px 24px;
    min-height: 0;
    padding: 27px 0;
  }

  .lesson-framework-list article:hover { padding-left: 0; }
  .lesson-framework-number { grid-row: 1 / span 2; padding-right: 16px; font-size: 3rem; }
  .lesson-framework-list h3 { align-self: end; font-size: 1.55rem; }
  .lesson-framework-list p { max-width: none; font-size: 0.72rem; }

  .lesson-framework-rail {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding: 25px 20px 28px;
    line-height: 1.8;
  }

  .lesson-framework-rail span:last-child { display: none; }
}

@media (max-width: 380px) {
  .lesson-framework-shell { width: calc(100vw - 30px); }
  .lesson-framework-intro h2 { font-size: clamp(3.25rem, 17.4vw, 4.1rem); }
  .lesson-framework-kicker { gap: 13px; font-size: 0.52rem; }
  .lesson-framework-kicker span { width: 34px; }
  .lesson-framework-list article { grid-template-columns: 58px 1fr; gap: 16px 18px; }
  .lesson-framework-number { font-size: 2.55rem; }
}

/* V16 — cohesive dark Education palette
   Scoped to Education so the lighter Salon journey remains unchanged. */
.type-education-page {
  color: #d8d0c8;
  background: #11100f;
}

.type-education-page .edu-announcement {
  color: rgba(244, 240, 234, 0.82);
  background: #090908;
  border-bottom: 1px solid rgba(199, 185, 171, 0.13);
}

.type-education-page .edu-nav {
  color: #f1ede7;
  border-bottom-color: rgba(199, 185, 171, 0.18);
  background: rgba(15, 14, 13, 0.92);
}

.type-education-page .edu-nav-links a {
  color: rgba(244, 240, 234, 0.76);
}

.type-education-page .edu-nav-links a:hover,
.type-education-page .edu-brand,
.type-education-page .edu-menu-button {
  color: #f4f0ea;
}

.type-education-page .edu-nav-action {
  color: #151412;
  border-color: #b9a796;
  background: #b9a796;
}

.type-education-page .edu-nav-action:hover {
  color: #f4f0ea;
  border-color: #b9a796;
  background: transparent;
}

.type-education-page .type-edu-hero {
  border-bottom-color: rgba(199, 185, 171, 0.18);
  background:
    radial-gradient(circle at 16% 18%, rgba(183, 169, 156, 0.10), transparent 34%),
    linear-gradient(135deg, #1d1b19 0%, #151412 60%, #11100f 100%);
}

.type-education-page .type-hero-copy {
  position: relative;
  isolation: isolate;
}

.type-education-page .type-hero-copy::after {
  content: 'ED';
  position: absolute;
  z-index: -1;
  right: 0.03em;
  bottom: 0.03em;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--serif);
  font-size: clamp(17rem, 27vw, 32rem);
  line-height: 0.66;
  pointer-events: none;
}

.type-education-page .type-label {
  color: #b9a796;
}

.type-education-page .type-hero-copy h1,
.type-education-page .type-section-heading h2 {
  color: #f4f0ea;
}

.type-education-page .type-hero-copy h1 em,
.type-education-page .type-section-heading h2 em {
  color: #b9a796;
}

.type-education-page .type-hero-intro,
.type-education-page .type-path-row p {
  color: rgba(244, 240, 234, 0.67);
}

.type-education-page .type-button-dark {
  color: #151412;
  border-color: #b9a796;
  background: #b9a796;
}

.type-education-page .type-button-dark:hover {
  color: #f4f0ea;
  border-color: #b9a796;
  background: transparent;
}

.type-education-page .type-text-link {
  color: #e8e1da;
  border-bottom-color: rgba(199, 185, 171, 0.42);
}

.type-education-page .type-hero-course {
  border-left: 1px solid rgba(199, 185, 171, 0.18);
  background: #0d0d0c;
}

.type-education-page .type-hero-course::before {
  background:
    linear-gradient(180deg, rgba(10,10,9,0.46) 0%, rgba(10,10,9,0.10) 38%, rgba(10,10,9,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,9,0.38), rgba(10,10,9,0.06));
}

.type-education-page .type-hero-principles {
  color: #e9e1d9;
  border-top-color: rgba(199, 185, 171, 0.24);
  background: #27231f;
}

.type-education-page .type-hero-principles span {
  border-right-color: rgba(199, 185, 171, 0.20);
}

.type-education-page .type-statement {
  background:
    radial-gradient(circle at 82% 22%, rgba(183, 169, 156, 0.07), transparent 32%),
    #0c0c0b;
}

.type-education-page .type-path-section {
  color: #f1ede7;
  background:
    radial-gradient(circle at 78% 14%, rgba(183, 169, 156, 0.08), transparent 28%),
    linear-gradient(155deg, #24211e 0%, #1b1917 58%, #161513 100%);
  border-top: 1px solid rgba(199, 185, 171, 0.16);
  border-bottom: 1px solid rgba(199, 185, 171, 0.16);
}

.type-education-page .type-path-list {
  border-top-color: rgba(199, 185, 171, 0.28);
}

.type-education-page .type-path-row {
  border-bottom-color: rgba(199, 185, 171, 0.25);
}

.type-education-page .type-path-row:hover {
  background: rgba(255, 255, 255, 0.035);
}

.type-education-page .type-path-number,
.type-education-page .type-path-word {
  color: #b9a796;
}

.type-education-page .type-path-row h3 {
  color: #f4f0ea;
}

.type-education-page .type-course-access-section {
  color: #e9e1d9;
  background:
    radial-gradient(circle at 14% 24%, rgba(183, 169, 156, 0.09), transparent 31%),
    linear-gradient(140deg, #171615 0%, #0f0f0e 100%);
  border-bottom: 1px solid rgba(199, 185, 171, 0.16);
}

.type-education-page .type-course-access-shell {
  border-color: rgba(199, 185, 171, 0.18);
  background: #1b1917;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

.type-education-page .type-course-access-copy {
  background:
    linear-gradient(135deg, rgba(183,169,156,0.07), transparent 42%),
    #201d1a;
}

.type-education-page .type-course-access-copy h2 {
  color: #c9bcaf;
}

.type-education-page .type-course-access-copy > p:not(.type-access-kicker) {
  color: rgba(244, 240, 234, 0.68);
}

.type-education-page .type-course-access-copy ul {
  border-top-color: rgba(199, 185, 171, 0.24);
}

.type-education-page .type-course-access-copy li {
  color: #c7b6a5;
  border-bottom-color: rgba(199, 185, 171, 0.23);
}

.type-education-page .type-course-access-copy li span {
  color: #b9a796;
}

.type-education-page .type-course-access-panel {
  border: 1px solid rgba(199, 185, 171, 0.18);
  background: #0a0a09;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

.type-education-page .lesson-framework-section {
  background:
    radial-gradient(circle at 78% 22%, rgba(183, 169, 156, 0.08), transparent 31%),
    linear-gradient(145deg, #121110 0%, #090908 58%, #141311 100%);
}

.type-education-page .type-educator-section {
  background:
    radial-gradient(circle at 18% 30%, rgba(183, 169, 156, 0.08), transparent 30%),
    #1b1917;
  border-top: 1px solid rgba(199, 185, 171, 0.16);
}

.type-education-page .edu-footer {
  background: #090908;
}

@media (max-width: 980px) {
  .type-education-page .type-hero-principles span {
    border-bottom-color: rgba(199, 185, 171, 0.20);
  }

  .type-education-page .type-course-access-shell {
    background: #1a1816;
  }

  .type-education-page .type-course-access-panel {
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .type-education-page .edu-nav {
    background: rgba(15, 14, 13, 0.97);
  }

  .type-education-page .edu-nav-links {
    color: #f4f0ea;
    background: #11100f;
    border-top-color: rgba(199, 185, 171, 0.18);
  }

  .type-education-page .edu-nav-links a {
    border-bottom-color: rgba(199, 185, 171, 0.18);
  }
}

/* V17 — dark, luminous Education palette
   Adds tonal separation and champagne-stone accents without changing Salon. */
.type-education-page {
  --edu-ink: #f5efe8;
  --edu-copy: rgba(245, 239, 232, 0.76);
  --edu-muted: rgba(226, 216, 206, 0.60);
  --edu-champagne: #c7aa8d;
  --edu-stone: #b9ada2;
  --edu-line: rgba(211, 192, 173, 0.24);
  --edu-bg: #181512;
  --edu-bg-soft: #211d19;
  --edu-panel: #2a241f;
  --edu-panel-light: #332b25;
  color: var(--edu-copy);
  background: var(--edu-bg);
}

.type-education-page .edu-announcement {
  color: rgba(245, 239, 232, 0.86);
  background: #100e0c;
  border-bottom-color: var(--edu-line);
}

.type-education-page .edu-nav {
  color: var(--edu-ink);
  border-bottom-color: var(--edu-line);
  background: rgba(20, 17, 15, 0.94);
  box-shadow: 0 10px 40px rgba(0,0,0,0.14);
}

.type-education-page .edu-nav-links a { color: rgba(245,239,232,0.78); }
.type-education-page .edu-nav-links a:hover,
.type-education-page .edu-brand,
.type-education-page .edu-menu-button { color: var(--edu-ink); }

.type-education-page .edu-nav-action,
.type-education-page .type-button-dark {
  color: #1a1613;
  border-color: var(--edu-champagne);
  background: var(--edu-champagne);
  box-shadow: 0 8px 28px rgba(199,170,141,0.12);
}

.type-education-page .edu-nav-action:hover,
.type-education-page .type-button-dark:hover {
  color: var(--edu-ink);
  border-color: var(--edu-champagne);
  background: transparent;
}

.type-education-page .type-edu-hero {
  border-bottom-color: var(--edu-line);
  background:
    radial-gradient(circle at 18% 20%, rgba(199,170,141,0.13), transparent 34%),
    radial-gradient(circle at 72% 12%, rgba(255,255,255,0.035), transparent 26%),
    linear-gradient(135deg, #29231e 0%, #1e1a17 55%, #171411 100%);
}

.type-education-page .type-hero-copy::after {
  color: rgba(245,239,232,0.035);
}

.type-education-page .type-label,
.type-education-page .type-path-number,
.type-education-page .type-path-word,
.type-education-page .lesson-framework-kicker,
.type-education-page .lesson-framework-number {
  color: var(--edu-champagne);
}

.type-education-page .type-hero-copy h1,
.type-education-page .type-section-heading h2,
.type-education-page .type-path-row h3,
.type-education-page .lesson-framework-intro h2,
.type-education-page .lesson-framework-title {
  color: var(--edu-ink);
}

.type-education-page .type-hero-copy h1 em,
.type-education-page .type-section-heading h2 em,
.type-education-page .lesson-framework-intro h2 em {
  color: var(--edu-champagne);
}

.type-education-page .type-hero-intro,
.type-education-page .type-path-row p,
.type-education-page .lesson-framework-copy,
.type-education-page .lesson-framework-description {
  color: var(--edu-copy);
}

.type-education-page .type-text-link {
  color: #eee5dc;
  border-bottom-color: rgba(199,170,141,0.48);
}

.type-education-page .type-hero-course {
  border-left-color: var(--edu-line);
  background: #15120f;
}

.type-education-page .type-hero-course::before {
  background:
    linear-gradient(180deg, rgba(15,12,10,0.32) 0%, rgba(15,12,10,0.08) 34%, rgba(15,12,10,0.82) 100%),
    linear-gradient(90deg, rgba(15,12,10,0.28), rgba(15,12,10,0.03));
}

.type-education-page .type-hero-principles {
  color: #eee5dc;
  border-top-color: var(--edu-line);
  background: #302922;
}
.type-education-page .type-hero-principles span { border-right-color: var(--edu-line); }

.type-education-page .type-statement {
  background:
    radial-gradient(circle at 80% 20%, rgba(199,170,141,0.10), transparent 33%),
    linear-gradient(140deg, #1b1714, #13110f 72%);
}

.type-education-page .type-path-section {
  color: var(--edu-ink);
  background:
    radial-gradient(circle at 76% 18%, rgba(199,170,141,0.13), transparent 30%),
    linear-gradient(150deg, #342d27 0%, #28231f 52%, #201c18 100%);
  border-top-color: var(--edu-line);
  border-bottom-color: var(--edu-line);
}

.type-education-page .type-path-list { border-top-color: rgba(221,199,177,0.34); }
.type-education-page .type-path-row { border-bottom-color: rgba(221,199,177,0.30); }
.type-education-page .type-path-row:hover { background: rgba(255,255,255,0.055); }

.type-education-page .type-course-access-section {
  color: var(--edu-ink);
  background:
    radial-gradient(circle at 18% 22%, rgba(199,170,141,0.14), transparent 32%),
    linear-gradient(145deg, #211c18 0%, #161310 100%);
  border-bottom-color: var(--edu-line);
}

.type-education-page .type-course-access-shell {
  border-color: rgba(221,199,177,0.30);
  background: #2a241f;
  box-shadow: 0 34px 100px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.018) inset;
}

.type-education-page .type-course-access-copy {
  background:
    linear-gradient(135deg, rgba(199,170,141,0.12), transparent 45%),
    #302923;
}

.type-education-page .type-course-access-copy h2 { color: #dbc9b9; }
.type-education-page .type-course-access-copy > p:not(.type-access-kicker) { color: var(--edu-copy); }
.type-education-page .type-course-access-copy ul { border-top-color: rgba(221,199,177,0.30); }
.type-education-page .type-course-access-copy li {
  color: #d4c1af;
  border-bottom-color: rgba(221,199,177,0.28);
}
.type-education-page .type-course-access-copy li span { color: var(--edu-champagne); }

.type-education-page .type-course-access-panel {
  border-color: rgba(221,199,177,0.30);
  background: #12100e;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 18px 50px rgba(0,0,0,0.18);
}

.type-education-page .lesson-framework-section {
  background:
    radial-gradient(circle at 76% 20%, rgba(199,170,141,0.11), transparent 31%),
    linear-gradient(145deg, #171411 0%, #0f0d0c 58%, #181411 100%);
}

.type-education-page .lesson-framework-row,
.type-education-page .lesson-framework-list {
  border-color: rgba(221,199,177,0.28);
}

.type-education-page .type-educator-section {
  background:
    radial-gradient(circle at 18% 30%, rgba(199,170,141,0.12), transparent 30%),
    linear-gradient(145deg, #28221d, #1c1815 72%);
  border-top-color: var(--edu-line);
}

.type-education-page .edu-footer {
  background: #100e0c;
}

@media (max-width: 980px) {
  .type-education-page .type-course-access-shell { background: #28221d; }
}

@media (max-width: 700px) {
  .type-education-page .edu-nav { background: rgba(20,17,15,0.98); }
  .type-education-page .edu-nav-links {
    color: var(--edu-ink);
    background: #181512;
    border-top-color: var(--edu-line);
  }
  .type-education-page .edu-nav-links a { border-bottom-color: var(--edu-line); }
}

/* V18 — earth + acid Education palette
   Grounded mocha and espresso tones with restrained chartreuse punches.
   Education only: Salon and the split gateway remain unchanged. */
.type-education-page {
  --earth-cream: #f4e7d7;
  --earth-cream-soft: #e7d7c6;
  --earth-copy: rgba(244, 231, 215, 0.77);
  --earth-muted: rgba(231, 215, 198, 0.58);
  --earth-caramel: #c99569;
  --earth-mocha: #6f4c37;
  --earth-mocha-soft: #8d684e;
  --earth-espresso: #170f0b;
  --earth-cocoa: #241711;
  --earth-panel: #352319;
  --earth-panel-light: #463024;
  --earth-line: rgba(224, 192, 160, 0.24);
  --earth-acid: #d9ff18;
  --earth-acid-hot: #edff63;
  --earth-acid-dim: rgba(217, 255, 24, 0.18);
  color: var(--earth-copy);
  background: var(--earth-espresso);
}

.type-education-page .edu-announcement {
  color: var(--earth-acid);
  background: #120b08;
  border-bottom-color: rgba(217,255,24,0.24);
}

.type-education-page .edu-announcement a {
  position: relative;
}

.type-education-page .edu-announcement a::after {
  content: '';
  position: absolute;
  right: -16px;
  bottom: 0.05em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--earth-acid);
  box-shadow: 0 0 18px rgba(217,255,24,0.72);
}

.type-education-page .edu-nav {
  color: var(--earth-cream);
  border-bottom-color: var(--earth-line);
  background: rgba(23,15,11,0.95);
  box-shadow: 0 12px 44px rgba(0,0,0,0.22);
}

.type-education-page .edu-nav-links a { color: rgba(244,231,215,0.76); }
.type-education-page .edu-nav-links a:hover,
.type-education-page .edu-brand,
.type-education-page .edu-menu-button { color: var(--earth-cream); }

.type-education-page .edu-nav-links a::after {
  background: var(--earth-acid);
  box-shadow: 0 0 12px rgba(217,255,24,0.34);
}

.type-education-page .edu-nav-action,
.type-education-page .type-button-dark,
.type-education-page .type-course-access-panel .signup-submit {
  color: #15110a;
  border-color: var(--earth-acid);
  background: var(--earth-acid);
  box-shadow: 0 9px 30px rgba(217,255,24,0.14);
}

.type-education-page .edu-nav-action:hover,
.type-education-page .type-button-dark:hover,
.type-education-page .type-course-access-panel .signup-submit:hover,
.type-education-page .type-course-access-panel .signup-submit:focus-visible {
  color: var(--earth-acid-hot);
  border-color: var(--earth-acid);
  background: transparent;
  box-shadow: 0 0 0 1px rgba(217,255,24,0.15), 0 0 24px rgba(217,255,24,0.11);
}

.type-education-page .type-edu-hero {
  border-bottom-color: var(--earth-line);
  background:
    radial-gradient(circle at 14% 18%, rgba(142,95,62,0.24), transparent 32%),
    radial-gradient(circle at 72% 8%, rgba(217,255,24,0.035), transparent 22%),
    linear-gradient(135deg, #38271e 0%, #241711 48%, #170f0b 100%);
}

.type-education-page .type-hero-copy::after {
  color: rgba(244,231,215,0.026);
}

.type-education-page .type-label,
.type-education-page .type-path-number,
.type-education-page .lesson-framework-number {
  color: var(--earth-caramel);
}

.type-education-page .type-label::before,
.type-education-page .lesson-framework-kicker span {
  background: currentColor;
}

.type-education-page .type-hero-copy h1,
.type-education-page .type-section-heading h2,
.type-education-page .type-path-row h3,
.type-education-page .lesson-framework-intro h2,
.type-education-page .type-educator-copy h2 {
  color: var(--earth-cream);
}

.type-education-page .type-hero-copy h1 em,
.type-education-page .type-section-heading h2 em,
.type-education-page .lesson-framework-intro h2 em,
.type-education-page .type-educator-copy h2 em {
  color: var(--earth-caramel);
}

.type-education-page .type-hero-intro,
.type-education-page .type-path-row p,
.type-education-page .lesson-framework-intro > p:last-child,
.type-education-page .lesson-framework-list p,
.type-education-page .type-educator-copy > p:not(.type-label) {
  color: var(--earth-copy);
}

.type-education-page .type-text-link {
  color: var(--earth-cream);
  border-bottom-color: rgba(217,255,24,0.40);
}

.type-education-page .type-text-link span,
.type-education-page .type-course-title > p {
  color: var(--earth-acid);
}

.type-education-page .type-hero-course {
  border-left-color: var(--earth-line);
  background: #1b110c;
}

.type-education-page .type-hero-course-visual {
  filter: saturate(0.68) sepia(0.10) contrast(1.04) brightness(0.84);
}

.type-education-page .type-hero-course:hover .type-hero-course-visual {
  filter: saturate(0.78) sepia(0.06) contrast(1.04) brightness(0.88);
}

.type-education-page .type-hero-course::before {
  background:
    linear-gradient(180deg, rgba(21,12,8,0.30) 0%, rgba(21,12,8,0.03) 34%, rgba(21,12,8,0.88) 100%),
    linear-gradient(90deg, rgba(77,47,31,0.35), rgba(21,12,8,0.02));
}

.type-education-page .type-script { color: #d2a67f; }
.type-education-page .type-course-facts { border-top-color: var(--earth-line); }

.type-education-page .type-hero-principles {
  color: var(--earth-cream);
  border-top-color: var(--earth-line);
  background: #312118;
}

.type-education-page .type-hero-principles span {
  position: relative;
  border-right-color: var(--earth-line);
  transition: color 220ms ease, background 220ms ease;
}

.type-education-page .type-hero-principles span::after {
  content: '';
  position: absolute;
  right: 28%;
  bottom: 0;
  left: 28%;
  height: 2px;
  background: var(--earth-acid);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.type-education-page .type-hero-principles span:hover {
  color: var(--earth-acid-hot);
  background: rgba(217,255,24,0.035);
}

.type-education-page .type-hero-principles span:hover::after { transform: scaleX(1); }

.type-education-page .type-statement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(130,80,48,0.18), transparent 31%),
    linear-gradient(140deg, #21140e, #140d09 76%);
}

.type-education-page .type-statement::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -100px;
  width: 430px;
  height: 330px;
  border-radius: 46% 54% 42% 58% / 52% 42% 58% 48%;
  background:
    radial-gradient(circle at 24% 42%, rgba(217,255,24,0.82) 0 2px, transparent 3px),
    radial-gradient(circle at 33% 56%, rgba(217,255,24,0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 48% 35%, rgba(217,255,24,0.58) 0 4px, transparent 5px),
    radial-gradient(circle at 62% 62%, rgba(217,255,24,0.52) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 42%, rgba(217,255,24,0.44) 0 2px, transparent 3px),
    radial-gradient(ellipse at 53% 52%, rgba(217,255,24,0.46), rgba(217,255,24,0.12) 34%, transparent 65%);
  filter: blur(1px);
  opacity: 0.62;
  transform: rotate(-10deg);
  pointer-events: none;
}

.type-education-page .type-statement h2 em { color: var(--earth-caramel); }
.type-education-page .type-statement-copy p { color: var(--earth-copy); }

.type-education-page .type-path-section {
  color: var(--earth-cream);
  background:
    radial-gradient(circle at 78% 16%, rgba(217,255,24,0.025), transparent 24%),
    radial-gradient(circle at 18% 26%, rgba(139,91,59,0.20), transparent 28%),
    linear-gradient(150deg, #4a3326 0%, #352319 50%, #271a13 100%);
  border-top-color: var(--earth-line);
  border-bottom-color: var(--earth-line);
}

.type-education-page .type-path-list { border-top-color: rgba(234,204,174,0.28); }
.type-education-page .type-path-row {
  position: relative;
  border-bottom-color: rgba(234,204,174,0.25);
}
.type-education-page .type-path-row:hover {
  background: rgba(217,255,24,0.035);
  box-shadow: inset 3px 0 0 var(--earth-acid);
}
.type-education-page .type-path-word { color: var(--earth-caramel); }
.type-education-page .type-path-row:nth-child(2) .type-path-word,
.type-education-page .type-path-row:nth-child(4) .type-path-word { color: var(--earth-acid); }

.type-education-page .type-course-access-section {
  color: var(--earth-cream);
  background:
    radial-gradient(circle at 17% 18%, rgba(154,99,62,0.20), transparent 31%),
    linear-gradient(145deg, #2b1b13 0%, #170f0b 100%);
  border-bottom-color: var(--earth-line);
}

.type-education-page .type-course-access-shell {
  border-color: rgba(228,194,160,0.30);
  background: #38251b;
  box-shadow: 0 36px 110px rgba(0,0,0,0.34), 0 0 0 1px rgba(217,255,24,0.035) inset;
}

.type-education-page .type-course-access-copy {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(197,149,105,0.17), transparent 44%),
    #463024;
}

.type-education-page .type-course-access-copy::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 3px;
  background: var(--earth-acid);
  box-shadow: 0 0 18px rgba(217,255,24,0.30);
}

.type-education-page .type-course-access-copy h2 { color: var(--earth-cream-soft); }
.type-education-page .type-course-access-copy > p:not(.type-access-kicker) { color: var(--earth-copy); }
.type-education-page .type-course-access-copy ul { border-top-color: rgba(234,204,174,0.28); }
.type-education-page .type-course-access-copy li {
  color: #e0c4aa;
  border-bottom-color: rgba(234,204,174,0.24);
}
.type-education-page .type-course-access-copy li span { color: var(--earth-acid); }

.type-education-page .type-course-access-panel {
  border-color: rgba(228,194,160,0.28);
  background: #120b08;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 20px 55px rgba(0,0,0,0.22);
}

.type-education-page .type-course-access-panel .field input {
  color: var(--earth-cream);
  border-color: rgba(231,215,198,0.24);
  background: rgba(244,231,215,0.055);
}
.type-education-page .type-course-access-panel .field input:focus {
  border-color: var(--earth-acid);
  box-shadow: 0 0 0 3px rgba(217,255,24,0.08);
}
.type-education-page .type-course-access-panel .check-row input { accent-color: var(--earth-acid); }

.type-education-page .lesson-framework-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(217,255,24,0.035), transparent 28%),
    radial-gradient(circle at 18% 26%, rgba(130,80,48,0.17), transparent 30%),
    linear-gradient(145deg, #1f130e 0%, #0f0907 58%, #21140e 100%);
}
.type-education-page .lesson-framework-kicker,
.type-education-page .lesson-framework-note,
.type-education-page .lesson-framework-burst,
.type-education-page .lesson-framework-rail { color: var(--earth-caramel); }
.type-education-page .lesson-framework-list { border-top-color: rgba(234,204,174,0.28); }
.type-education-page .lesson-framework-list article { border-bottom-color: rgba(234,204,174,0.24); }
.type-education-page .lesson-framework-list article:hover {
  background: rgba(217,255,24,0.035);
  box-shadow: inset 3px 0 0 var(--earth-acid);
}
.type-education-page .lesson-framework-list article:nth-child(2) .lesson-framework-number,
.type-education-page .lesson-framework-list article:nth-child(4) .lesson-framework-number,
.type-education-page .lesson-framework-note { color: var(--earth-acid); }
.type-education-page .lesson-framework-number { border-right-color: rgba(234,204,174,0.30); }
.type-education-page .lesson-framework-rail { border-top-color: rgba(234,204,174,0.22); }

.type-education-page .type-educator-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 30%, rgba(151,95,58,0.20), transparent 30%),
    linear-gradient(145deg, #352319, #1e130e 74%);
  border-top-color: var(--earth-line);
}

.type-education-page .type-educator-section::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -110px;
  bottom: -120px;
  width: 420px;
  height: 360px;
  border-radius: 48% 52% 60% 40% / 44% 56% 44% 56%;
  background:
    radial-gradient(circle at 44% 45%, rgba(217,255,24,0.74) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 36%, rgba(217,255,24,0.55) 0 3px, transparent 4px),
    radial-gradient(circle at 66% 57%, rgba(217,255,24,0.52) 0 2px, transparent 3px),
    radial-gradient(ellipse at 50% 54%, rgba(217,255,24,0.32), rgba(217,255,24,0.06) 38%, transparent 68%);
  filter: blur(1px);
  opacity: 0.62;
  transform: rotate(12deg);
  pointer-events: none;
}

.type-education-page .type-experience-mark { border-right-color: var(--earth-line); }
.type-education-page .type-experience-mark strong { color: var(--earth-cream); }
.type-education-page .type-experience-mark span,
.type-education-page .type-educator-copy blockquote { color: #d5aa83; }
.type-education-page .type-educator-copy blockquote {
  border-top-color: rgba(234,204,174,0.25);
  border-left-color: var(--earth-acid);
}

.type-education-page .edu-footer {
  background: #100906;
  border-top: 1px solid rgba(217,255,24,0.12);
}

@media (max-width: 980px) {
  .type-education-page .type-course-access-shell { background: #38251b; }
  .type-education-page .type-statement::after,
  .type-education-page .type-educator-section::after { opacity: 0.34; transform: scale(0.78); }
}

@media (max-width: 700px) {
  .type-education-page .edu-nav { background: rgba(23,15,11,0.985); }
  .type-education-page .edu-nav-links {
    color: var(--earth-cream);
    background: #170f0b;
    border-top-color: var(--earth-line);
  }
  .type-education-page .edu-nav-links a { border-bottom-color: var(--earth-line); }
  .type-education-page .type-statement::after,
  .type-education-page .type-educator-section::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .type-education-page .type-hero-principles span,
  .type-education-page .type-hero-principles span::after,
  .type-education-page .type-path-row,
  .type-education-page .lesson-framework-list article { transition: none; }
}



/* V19 — tactile brutalism, asymmetric flow, kinetic type and performance-first depth.
   Education only. Salon and split gateway remain untouched. */
.v19-page {
  --v19-bg: #17100c;
  --v19-bg-2: #21150f;
  --v19-panel: rgba(61, 39, 28, 0.74);
  --v19-panel-strong: #3b261c;
  --v19-line: rgba(226, 191, 153, 0.28);
  --v19-cream: #f1e6d8;
  --v19-copy: rgba(241, 230, 216, 0.72);
  --v19-muted: rgba(241, 230, 216, 0.48);
  --v19-caramel: #c79367;
  --v19-acid: #d9ff18;
  --v19-acid-hot: #ecff72;
  --v19-serif: 'Cormorant Garamond', Georgia, serif;
  --v19-sans: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --v19-variable: 'Roboto Flex', 'Arial Narrow', sans-serif;
  color: var(--v19-copy);
  background: var(--v19-bg);
  font-family: var(--v19-sans);
}

.v19-page::before {
  content: '';
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  mix-blend-mode: soft-light;
}

.v19-page .edu-announcement {
  color: var(--v19-acid-hot);
  border-bottom: 1px solid rgba(217,255,24,.2);
  background: #0d0907;
}

.v19-page .edu-announcement a::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
}

.v19-page .edu-nav {
  color: var(--v19-cream);
  border-bottom: 1px solid var(--v19-line);
  background: rgba(20, 13, 9, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.v19-page .edu-nav-inner { max-width: 1500px; }
.v19-page .edu-brand strong { color: var(--v19-cream); }
.v19-page .edu-brand span,
.v19-page .edu-nav-links a,
.v19-page .edu-menu-button { color: rgba(241,230,216,.72); }
.v19-page .edu-nav-links a:hover { color: var(--v19-acid-hot); }
.v19-page .edu-nav-action {
  color: #17100c;
  border: 1px solid var(--v19-acid);
  background: var(--v19-acid);
  box-shadow: 7px 7px 0 rgba(119, 81, 45, .42);
}
.v19-page .edu-nav-action:hover { color: var(--v19-acid); background: transparent; box-shadow: 3px 3px 0 rgba(217,255,24,.22); }

.v19-hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height) - var(--announcement-height));
  overflow: clip;
  border-bottom: 1px solid var(--v19-line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px) 0 0 / 44px 44px,
    radial-gradient(circle at 20% 24%, rgba(161, 101, 62, .22), transparent 30%),
    linear-gradient(135deg, #25170f 0%, #17100c 56%, #100b08 100%);
}

.v19-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(420px, .82fr);
  min-height: inherit;
  max-width: 1680px;
  margin: 0 auto;
}

.v19-measure {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-rows: auto 1fr auto 1fr auto;
  align-items: center;
  width: 42px;
  padding: 28px 0;
  color: var(--v19-muted);
  border-right: 1px solid var(--v19-line);
  background: rgba(13,9,7,.32);
  font: 600 .5rem/1 var(--v19-variable);
  letter-spacing: .14em;
  text-align: center;
}
.v19-measure i { width: 1px; height: 100%; margin: auto; background: linear-gradient(var(--v19-line), transparent 80%); }
.v19-measure span:nth-of-type(2) { color: var(--v19-acid); }

.v19-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(88px, 9vw, 150px) clamp(48px, 7vw, 120px) 70px clamp(76px, 8vw, 145px);
  border-right: 1px solid var(--v19-line);
}

.v19-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  color: var(--v19-caramel);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.v19-kicker > span { width: 30px; height: 1px; background: currentColor; }

.v19-kinetic-index {
  position: absolute;
  z-index: -1;
  right: 2%;
  bottom: 2%;
  color: rgba(241,230,216,.028);
  font-family: var(--v19-variable);
  font-size: clamp(9rem, 21vw, 24rem);
  font-variation-settings: 'wght' 270, 'wdth' 135, 'opsz' 120;
  line-height: .7;
  letter-spacing: -.09em;
  transform-origin: right bottom;
  pointer-events: none;
}

.v19-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--v19-cream);
  font-family: var(--v19-serif);
  font-size: clamp(5.1rem, 8.2vw, 9.8rem);
  font-weight: 400;
  line-height: .79;
  letter-spacing: -.052em;
}
.v19-hero h1 span,
.v19-hero h1 em { display: block; }
.v19-hero h1 em { color: var(--v19-caramel); font-weight: 400; }
.v19-hero-intro { max-width: 490px; margin: 35px 0 0; color: var(--v19-copy); font-size: .92rem; line-height: 1.75; }
.v19-hero-actions { display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; margin-top: 36px; }

.v19-button-acid,
.v19-page .signup-submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-height: 52px;
  padding: 0 22px;
  color: #15100b;
  border: 1px solid var(--v19-acid);
  border-radius: 0;
  background: var(--v19-acid);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 rgba(101, 66, 39, .5);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}
.v19-button-acid:hover,
.v19-page .signup-submit:hover { color: var(--v19-acid); background: transparent; transform: translate(3px,3px); box-shadow: 3px 3px 0 rgba(217,255,24,.24); }

.v19-text-link {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  min-height: 48px;
  color: var(--v19-cream);
  border-bottom: 1px solid var(--v19-line);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.v19-text-link span { color: var(--v19-acid); }
.v19-proof { display: flex; gap: 12px 24px; flex-wrap: wrap; margin-top: 58px; padding-top: 18px; border-top: 1px solid var(--v19-line); color: var(--v19-muted); font-size: .52rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.v19-course-card {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  margin: clamp(20px, 3vw, 42px) clamp(20px, 3vw, 42px) clamp(20px, 3vw, 42px) 0;
  overflow: hidden;
  border: 1px solid rgba(234,204,174,.42);
  background: #1d120d;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
.v19-course-card::after { content:''; position:absolute; top:0; right:0; width:24px; height:24px; border-left:1px solid var(--v19-line); border-bottom:1px solid var(--v19-line); }
.v19-course-card img { position:absolute; inset:0; height:100%; object-fit:cover; object-position:center 34%; filter:saturate(.66) sepia(.13) contrast(1.04) brightness(.78); transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 500ms ease; }
.v19-course-card:hover img { transform: scale(1.025); filter:saturate(.75) sepia(.08) contrast(1.05) brightness(.82); }
.v19-course-shade { position:absolute; inset:0; background:linear-gradient(180deg, rgba(20,12,8,.18), rgba(20,12,8,.04) 35%, rgba(20,12,8,.93) 100%), linear-gradient(90deg, rgba(44,27,18,.35), transparent 70%); }
.v19-course-top { position:absolute; z-index:2; top:26px; right:28px; left:28px; display:flex; justify-content:space-between; color:var(--v19-cream); font-size:.52rem; font-weight:700; letter-spacing:.17em; text-transform:uppercase; }
.v19-course-copy { position:absolute; z-index:2; right:28px; bottom:98px; left:28px; }
.v19-course-copy p { margin:0 0 16px; color:var(--v19-acid); font-size:.55rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.v19-course-copy h2 { margin:0; color:var(--v19-cream); font-family:var(--v19-serif); font-size:clamp(3.1rem,4vw,5.4rem); font-weight:400; line-height:.82; letter-spacing:-.035em; }
.v19-course-copy em { display:block; margin-top:12px; color:var(--v19-caramel); font-family:var(--v19-serif); font-size:1.55rem; }
.v19-course-facts { position:absolute; z-index:2; right:28px; bottom:0; left:28px; display:flex; gap:22px; align-items:center; min-height:70px; color:var(--v19-cream); border-top:1px solid var(--v19-line); font-size:.5rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.v19-course-facts b { margin-left:auto; color:var(--v19-acid); font-size:1rem; }

.v19-framework,
.v19-access,
.v19-philosophy,
.v19-faq { content-visibility: auto; contain-intrinsic-size: auto 900px; }

.v19-framework { padding: clamp(90px,10vw,155px) max(42px, calc((100vw - 1450px)/2)); border-bottom:1px solid var(--v19-line); background:linear-gradient(145deg,#3d291e,#281b14 58%,#1e140f); }
.v19-section-head { display:grid; grid-template-columns:1fr minmax(430px,1.4fr) .75fr; gap:40px; align-items:end; margin-bottom:60px; }
.v19-section-head .v19-kicker { align-self:start; }
.v19-section-head h2 { margin:0; color:var(--v19-cream); font-family:var(--v19-serif); font-size:clamp(4rem,6vw,7rem); font-weight:400; line-height:.8; letter-spacing:-.045em; }
.v19-section-head h2 em { color:var(--v19-caramel); font-weight:400; }
.v19-section-head > p:last-child { max-width:190px; margin:0 0 8px auto; color:var(--v19-acid); font:600 .68rem/1.7 var(--v19-variable); letter-spacing:.12em; text-transform:uppercase; }
.v19-framework-grid { display:grid; grid-template-columns:repeat(12,1fr); align-items:start; border-top:1px solid var(--v19-line); }
.v19-framework-grid article { position:relative; min-height:320px; padding:26px 26px 32px; border-right:1px solid var(--v19-line); border-bottom:1px solid var(--v19-line); background:rgba(18,11,8,.18); transition: transform 240ms ease, background 240ms ease; }
.v19-framework-grid article:nth-child(1){grid-column:1/4; margin-top:0;border-left:1px solid var(--v19-line)}
.v19-framework-grid article:nth-child(2){grid-column:4/7; margin-top:44px}
.v19-framework-grid article:nth-child(3){grid-column:7/10; margin-top:16px}
.v19-framework-grid article:nth-child(4){grid-column:10/13; margin-top:62px}
.v19-framework-grid article:hover { transform:translateY(-7px); background:rgba(217,255,24,.045); box-shadow:inset 0 3px 0 var(--v19-acid); }
.v19-step { color:var(--v19-caramel); font-family:var(--v19-serif); font-size:1.05rem; }
.v19-signal { position:absolute; top:28px; right:26px; margin:0; color:var(--v19-acid); font-size:.5rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; }
.v19-framework-grid h3 { margin:92px 0 16px; color:var(--v19-cream); font-family:var(--v19-serif); font-size:2.8rem; font-weight:400; }
.v19-framework-grid article > p:last-of-type { max-width:240px; margin:0; color:var(--v19-copy); font-size:.75rem; line-height:1.7; }
.v19-framework-grid article > a { position:absolute; right:24px; bottom:24px; display:grid; place-items:center; width:34px; height:34px; color:var(--v19-acid); border:1px solid rgba(217,255,24,.42); border-radius:50%; }

.v19-access { padding:clamp(90px,9vw,145px) max(26px,calc((100vw - 1450px)/2)); border-bottom:1px solid var(--v19-line); background:radial-gradient(circle at 74% 28%,rgba(217,255,24,.035),transparent 24%),linear-gradient(140deg,#1b110c,#0e0907); }
.v19-access-shell { display:grid; grid-template-columns:.88fr 1.12fr; max-width:1320px; margin:auto; border:1px solid rgba(229,194,157,.40); background:rgba(66,42,30,.48); -webkit-backdrop-filter:blur(18px) saturate(1.12); backdrop-filter:blur(18px) saturate(1.12); clip-path:polygon(0 0,calc(100% - 28px) 0,100% 28px,100% 100%,0 100%); box-shadow:16px 16px 0 rgba(95,61,35,.28); }
.v19-access-copy { padding:clamp(45px,6vw,82px); border-right:1px solid var(--v19-line); background:linear-gradient(145deg,rgba(153,94,56,.22),rgba(40,25,18,.46)); }
.v19-access-copy h2 { margin:0; color:var(--v19-cream); font-family:var(--v19-serif); font-size:clamp(4rem,6vw,7.2rem); font-weight:400; line-height:.78; letter-spacing:-.048em; }
.v19-access-copy > p:not(.v19-kicker) { max-width:440px; margin:28px 0 0; color:var(--v19-copy); line-height:1.8; }
.v19-access-copy ul { display:grid; gap:0; margin:38px 0 0; padding:0; border-top:1px solid var(--v19-line); list-style:none; }
.v19-access-copy li { padding:13px 0; color:var(--v19-cream); border-bottom:1px solid var(--v19-line); font-size:.58rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
.v19-access-copy li::before { content:'+'; margin-right:13px; color:var(--v19-acid); }
.v19-access-panel { padding:clamp(42px,6vw,78px); background:rgba(12,7,5,.74); }
.v19-panel-index { color:var(--v19-acid); font-size:.52rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.v19-access-panel h3 { margin:18px 0 8px; color:var(--v19-cream); font-family:var(--v19-serif); font-size:clamp(3rem,4vw,5rem); font-weight:400; line-height:.9; }
.v19-access-panel > p:not(.v19-panel-index) { margin:0 0 28px; color:var(--v19-copy); }
.v19-page .field label { color:var(--v19-caramel); }
.v19-page .field input { color:var(--v19-cream); border:1px solid rgba(241,230,216,.24); background:rgba(241,230,216,.05); }
.v19-page .field input:focus { border-color:var(--v19-acid); box-shadow:0 0 0 3px rgba(217,255,24,.08); }
.v19-page .check-row input { accent-color:var(--v19-acid); }
.v19-page .check-row label,.v19-page .form-note { color:var(--v19-muted); }
.v19-page .signup-submit { width:100%; margin-top:26px; }

.v19-lesson { border-bottom:1px solid var(--v19-line); }
.v19-page .lesson-framework-list article { transition:background 180ms ease,box-shadow 180ms ease; }
.v19-page .lesson-framework-list article:hover { background:rgba(217,255,24,.035); box-shadow:inset 3px 0 0 var(--v19-acid); }

.v19-philosophy { padding:clamp(90px,10vw,150px) max(26px,calc((100vw - 1450px)/2)); border-bottom:1px solid var(--v19-line); background:linear-gradient(135deg,#2e1e16,#17100c 72%); }
.v19-philosophy-grid { position:relative; display:grid; grid-template-columns:1.05fr .72fr .65fr; gap:50px; min-height:430px; padding:50px; overflow:hidden; border:1px solid var(--v19-line); background:rgba(29,18,13,.62); }
.v19-philosophy h2 { margin:0; color:var(--v19-cream); font-family:var(--v19-serif); font-size:clamp(4.2rem,6vw,7.3rem); font-weight:400; line-height:.79; letter-spacing:-.048em; }
.v19-philosophy h2 em { color:var(--v19-acid); font-weight:400; }
.v19-caroline-copy { align-self:center; position:relative; z-index:2; }
.v19-caroline-copy p { margin:0 0 18px; color:var(--v19-copy); line-height:1.75; }
.v19-caroline-copy a { display:inline-flex; gap:20px; margin-top:16px; color:var(--v19-acid); font-size:.56rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.v19-acid-field { position:absolute; right:-80px; bottom:-130px; width:460px; height:430px; border-radius:48% 52% 59% 41% / 43% 62% 38% 57%; background:radial-gradient(circle at 24% 38%,rgba(217,255,24,.9) 0 2px,transparent 3px),radial-gradient(circle at 42% 52%,rgba(217,255,24,.78) 0 4px,transparent 5px),radial-gradient(circle at 60% 34%,rgba(217,255,24,.62) 0 3px,transparent 4px),radial-gradient(ellipse at 50% 52%,rgba(217,255,24,.50),rgba(217,255,24,.08) 42%,transparent 70%); filter:blur(1px); opacity:.74; transform:rotate(-12deg); }
.v19-benefit-grid { display:grid; grid-template-columns:repeat(4,1fr); margin-top:24px; border:1px solid var(--v19-line); }
.v19-benefit-grid article { min-height:190px; padding:25px; border-right:1px solid var(--v19-line); }
.v19-benefit-grid article:last-child { border-right:0; }
.v19-benefit-grid span { color:var(--v19-acid); font-size:.52rem; font-weight:700; letter-spacing:.15em; }
.v19-benefit-grid h3 { margin:42px 0 10px; color:var(--v19-cream); font-family:var(--v19-serif); font-size:2rem; font-weight:400; }
.v19-benefit-grid p { margin:0; color:var(--v19-copy); font-size:.72rem; line-height:1.7; }

.v19-faq { display:grid; grid-template-columns:.72fr 1.28fr; gap:80px; padding:clamp(90px,9vw,140px) max(42px,calc((100vw - 1450px)/2)); background:#120c09; }
.v19-faq h2 { margin:0; color:var(--v19-cream); font-family:var(--v19-serif); font-size:clamp(4rem,6vw,7rem); font-weight:400; line-height:.84; }
.v19-faq-list { border-top:1px solid var(--v19-line); }
.v19-faq details { border-bottom:1px solid var(--v19-line); }
.v19-faq summary { display:flex; align-items:center; justify-content:space-between; min-height:92px; color:var(--v19-cream); cursor:pointer; font-family:var(--v19-serif); font-size:1.8rem; list-style:none; }
.v19-faq summary::-webkit-details-marker { display:none; }
.v19-faq summary span { color:var(--v19-acid); font-family:var(--v19-sans); font-size:1rem; transition:transform 180ms ease; }
.v19-faq details[open] summary span { transform:rotate(45deg); }
.v19-faq details p { max-width:620px; margin:0 0 28px; color:var(--v19-copy); line-height:1.8; }

.v19-page .edu-footer { color:var(--v19-copy); border-top:1px solid rgba(217,255,24,.14); background:#090604; }

@supports (animation-timeline: view()) {
  .v19-kinetic-index {
    animation: v19-index-shift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .v19-section-head h2,
  .lesson-framework-intro h2,
  .v19-philosophy h2 {
    animation: v19-type-breathe linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 55%;
    transform-origin:left center;
  }
  @keyframes v19-index-shift {
    from { font-variation-settings:'wght' 220,'wdth' 90,'opsz' 80; transform:scaleX(.82); }
    to { font-variation-settings:'wght' 620,'wdth' 145,'opsz' 140; transform:scaleX(1.08); }
  }
  @keyframes v19-type-breathe {
    from { letter-spacing:-.055em; transform:scaleX(.94); opacity:.5; }
    to { letter-spacing:-.035em; transform:scaleX(1); opacity:1; }
  }
}

@media (max-width: 1120px) {
  .v19-hero-grid { grid-template-columns:1fr .78fr; }
  .v19-hero-copy { padding-left:78px; padding-right:48px; }
  .v19-course-card { min-height:650px; }
  .v19-section-head { grid-template-columns:1fr 1.4fr; }
  .v19-section-head > p:last-child { display:none; }
  .v19-framework-grid article:nth-child(n) { grid-column:span 6; margin-top:0; }
  .v19-framework-grid article:nth-child(odd) { border-left:1px solid var(--v19-line); }
  .v19-access-shell { grid-template-columns:1fr; }
  .v19-access-copy { border-right:0; border-bottom:1px solid var(--v19-line); }
  .v19-philosophy-grid { grid-template-columns:1fr .75fr; }
  .v19-acid-field { opacity:.46; }
}

@media (max-width: 800px) {
  .v19-page::before { opacity:.04; }
  .v19-hero { min-height:auto; }
  .v19-hero-grid { grid-template-columns:1fr; }
  .v19-measure { display:none; }
  .v19-hero-copy { min-height:620px; padding:90px 26px 58px; border-right:0; border-bottom:1px solid var(--v19-line); }
  .v19-hero h1 { font-size:clamp(4.4rem,17vw,7.2rem); }
  .v19-kinetic-index { right:-4%; font-size:38vw; }
  .v19-course-card { min-height:690px; margin:20px; }
  .v19-framework,.v19-access,.v19-philosophy,.v19-faq { padding-right:20px; padding-left:20px; }
  .v19-section-head { grid-template-columns:1fr; }
  .v19-section-head h2 { font-size:clamp(3.7rem,13vw,6rem); }
  .v19-framework-grid article:nth-child(n) { grid-column:1/-1; min-height:250px; border-left:1px solid var(--v19-line); }
  .v19-access-shell { clip-path:none; box-shadow:8px 8px 0 rgba(95,61,35,.24); }
  .v19-access-copy,.v19-access-panel { padding:42px 26px; }
  .v19-philosophy-grid { grid-template-columns:1fr; min-height:620px; padding:34px 26px; }
  .v19-acid-field { right:-180px; bottom:-130px; }
  .v19-benefit-grid { grid-template-columns:1fr 1fr; }
  .v19-benefit-grid article:nth-child(2) { border-right:0; }
  .v19-benefit-grid article:nth-child(-n+2) { border-bottom:1px solid var(--v19-line); }
  .v19-faq { grid-template-columns:1fr; gap:42px; }
}

@media (max-width: 560px) {
  .v19-hero-copy { min-height:570px; }
  .v19-hero-actions { align-items:stretch; flex-direction:column; }
  .v19-button-acid,.v19-text-link { width:100%; }
  .v19-course-card { min-height:610px; }
  .v19-course-copy h2 { font-size:3.4rem; }
  .v19-framework-grid h3 { margin-top:68px; }
  .v19-benefit-grid { grid-template-columns:1fr; }
  .v19-benefit-grid article { border-right:0; border-bottom:1px solid var(--v19-line); }
  .v19-benefit-grid article:last-child { border-bottom:0; }
  .v19-page .form-row { grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .v19-page *, .v19-page *::before, .v19-page *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
\n\n/* V20 — returning learner shortcut */\n.v20-returning-course {\n  margin-top: 30px;\n  padding-top: 30px;\n  border-top: 1px solid var(--v19-line);\n}\n.v20-returning-kicker {\n  margin: 0 0 16px;\n  color: var(--v19-acid);\n  font-size: .56rem;\n  font-weight: 700;\n  letter-spacing: .18em;\n  text-transform: uppercase;\n}\n.v20-returning-welcome {\n  margin: 0 0 12px;\n  color: var(--v19-cream);\n  font-family: var(--v19-serif);\n  font-size: clamp(2rem, 3.3vw, 3.4rem);\n  line-height: .98;\n}\n.v20-returning-welcome strong {\n  color: var(--v19-acid);\n  font-weight: 400;\n}\n.v20-returning-course > p:not(.v20-returning-kicker):not(.v20-returning-welcome):not(.form-note) {\n  max-width: 430px;\n  margin: 0 0 24px;\n  color: var(--v19-copy);\n  line-height: 1.7;\n}\n.v20-watch-button {\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n  width: 100%;\n  text-decoration: none;\n}\n.course-access-active .edu-nav-action {\n  color: #111;\n  background: var(--v19-acid);\n  border-color: var(--v19-acid);\n}\n.course-access-active .edu-announcement a::after {\n  content: ' →';\n  color: var(--v19-acid);\n}\n@media (max-width: 620px) {\n  .v20-returning-course { margin-top: 24px; padding-top: 24px; }\n  .v20-returning-welcome { font-size: clamp(2rem, 11vw, 2.8rem); }\n}\n

/* V22 — lead magnet conversion layer */
.v22-lead-optin {
  margin-top: 20px;
  padding: 17px 18px;
  border: 1px solid rgba(217,255,24,.28);
  background: rgba(217,255,24,.055);
}
.v22-lead-optin label strong {
  display: block;
  margin-bottom: 4px;
  color: var(--v19-cream);
  font-size: .69rem;
  letter-spacing: .01em;
}
.v22-lead-optin label span {
  display: block;
  margin-top: 5px;
  color: rgba(241,230,218,.46);
  font-size: .56rem;
  letter-spacing: .035em;
}
@media (max-width: 620px) {
  .v22-lead-optin { padding: 15px 14px; }
}
