:root {
  --cream: #faf7f0;
  --field: #eef0e5;
  --sage: #e8ede6;
  --ink: #2a2421;
  --muted: #625a52;
  --copper: #a75c31;
  --copper-bright: #c68346;
  --navy: #11192d;
  --navy-soft: #1b2a4a;
  --white: #fffdf8;
  --line: rgba(42, 36, 33, 0.14);
  --copper-line: rgba(167, 92, 49, 0.42);
  --shadow: 0 24px 80px rgba(42, 36, 33, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.78), transparent 30rem),
    linear-gradient(110deg, var(--cream), var(--field));
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(42, 36, 33, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(167, 92, 49, 0.07) 0 1px, transparent 1px);
  background-size: 6px 6px, 8px 8px;
  mix-blend-mode: multiply;
  content: "";
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 210;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(20px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.monogram {
  display: block;
  width: 44px;
  color: var(--copper);
  font-family: var(--display);
  font-size: 42px;
  line-height: 0.74;
}

.monogram span {
  display: block;
}

.monogram span:last-child {
  margin-top: -7px;
  margin-left: 10px;
}

.brand-lockup strong {
  display: block;
  color: #222426;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-lockup small {
  display: block;
  margin-top: 3px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: rgba(42, 36, 33, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.site-footer a {
  transition: color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--copper);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  font-weight: 800;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cta {
  padding: 12px 18px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
}

.button {
  gap: 12px;
  padding: 12px 13px 12px 20px;
  border: 1px solid transparent;
  text-align: center;
  line-height: 1.2;
}

.button::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 17px;
  line-height: 1;
  content: "→";
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.button:hover::after {
  transform: translateX(3px);
}

.button:active,
.header-cta:active {
  transform: translateY(0) scale(0.985);
}

.button:focus-visible,
.header-cta:focus-visible,
.site-nav a:focus-visible,
.site-footer a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--copper-bright);
  outline-offset: 4px;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(17, 25, 45, 0.12);
}

.button-primary.copper {
  background: var(--copper-bright);
  color: var(--navy);
}

.button-secondary {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(255, 255, 255, 0.2);
}

.button-secondary::after {
  background: rgba(167, 92, 49, 0.1);
}

.menu-toggle {
  display: none;
}

.section-light,
.section-cream {
  background: linear-gradient(110deg, var(--cream), var(--field));
}

.hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(500px, 0.95fr) minmax(540px, 1.04fr) minmax(190px, 0.34fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  min-height: calc(100dvh - 82px);
  padding: clamp(88px, 9vw, 126px) 0 clamp(54px, 7vw, 96px) clamp(22px, 5vw, 80px);
  overflow: hidden;
}

.hero-section::before,
.section-cream::before,
.section-sage::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 112px 112px;
  opacity: 0.24;
  content: "";
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.story-copy h2,
.program-copy h2,
.final-card h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 560px;
  font-size: 76px;
  overflow-wrap: break-word;
}

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

.hero-copy h1 em {
  margin-top: 8px;
  color: var(--copper);
  font-style: italic;
  font-weight: 500;
}

.hero-lede,
.section-heading p,
.program-lede,
.final-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  text-wrap: pretty;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

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

.map-title,
.map-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.map-title {
  margin-bottom: 18px;
}

.map-title span,
.map-footer span,
.mini-rule {
  height: 1px;
  background: var(--copper-line);
}

.map-title p,
.map-caption {
  margin: 0;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.classification-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(236, 235, 222, 0.32);
  box-shadow: var(--shadow);
  transform: translate3d(var(--drift-x, 0), var(--drift-y, 0), 0);
  transition: transform 240ms ease-out;
}

.classification-board::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  opacity: 0.48;
  background:
    radial-gradient(70% 62% at 18% 100%, rgba(142, 153, 133, 0.46) 0 38%, transparent 39%),
    radial-gradient(80% 72% at 52% 110%, rgba(126, 141, 123, 0.38) 0 40%, transparent 41%),
    radial-gradient(66% 58% at 88% 100%, rgba(111, 128, 110, 0.44) 0 39%, transparent 40%),
    linear-gradient(180deg, transparent, rgba(120, 137, 116, 0.38));
  content: "";
}

.classification-board.compact {
  min-height: 520px;
}

.classification-column {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 48px 16px 46px;
  border-right: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 72px 72px 0 0;
  background: linear-gradient(180deg, rgba(250, 247, 240, 0.82), rgba(226, 226, 210, 0.34));
}

.classification-column:last-of-type {
  border-right: 0;
}

.classification-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  color: var(--copper);
  font-family: var(--display);
  font-size: 25px;
}

.classification-icon.crown {
  border: 0;
  font-size: 38px;
}

.classification-column h2 {
  margin: 28px 0 14px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.classification-column .mini-rule {
  width: 34px;
  margin-bottom: 18px;
}

.classification-column p {
  max-width: 130px;
  margin: 0;
  color: #424640;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.classification-column strong {
  margin-top: auto;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.trajectory {
  position: absolute;
  right: 22px;
  bottom: 78px;
  z-index: 3;
  width: calc(100% - 44px);
  height: 210px;
  overflow: visible;
  pointer-events: none;
}

.trajectory path,
.trajectory circle {
  fill: none;
  stroke: var(--copper);
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.trajectory .trend-line {
  opacity: 0.92;
}

.trajectory circle {
  fill: var(--field);
  stroke-width: 3;
}

.trajectory marker path {
  fill: none;
  stroke: var(--copper);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-caption {
  margin-top: 18px;
}

.portrait-panel {
  position: relative;
  height: calc(100vh - 82px);
  min-height: 680px;
  overflow: hidden;
  background: #544b42;
}

.portrait-panel::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 247, 240, 0.98), rgba(250, 247, 240, 0.2) 20%, rgba(17, 25, 45, 0.02)),
    linear-gradient(180deg, rgba(250, 247, 240, 0.02), rgba(17, 25, 45, 0.06));
  content: "";
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.authority-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
}

.authority-strip div {
  min-height: 130px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.authority-strip div:last-child {
  border-right: 0;
}

.authority-strip strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.authority-strip span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 138px) clamp(22px, 5vw, 80px);
}

.section-sage {
  background: var(--sage);
}

.section-dark,
.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-dark .eyebrow,
.section-navy .eyebrow {
  color: #e2a260;
}

.section-dark p,
.section-navy p {
  color: rgba(255, 255, 255, 0.74);
}

.split-layout,
.story-grid,
.program-layout,
.final-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.section-heading {
  max-width: 740px;
}

.section-heading.centered {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.program-copy h2,
.final-card h2 {
  font-size: 76px;
}

.section-heading p {
  margin: 22px 0 0;
}

.trap-grid,
.door-grid,
.system-steps,
.resource-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

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

.trap-grid article,
.door-grid article,
.system-steps article,
.resource-card,
.testimonial-card,
.program-card,
.credential-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.62);
}

.trap-grid article,
.door-grid article,
.system-steps article,
.resource-card,
.testimonial-card {
  padding: 28px;
}

.trap-grid span,
.system-steps span,
.resource-card span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trap-grid h3,
.door-grid h3,
.system-steps h3,
.resource-card h3,
.testimonial-card footer,
.program-card h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
}

.trap-grid p,
.door-grid p,
.system-steps p,
.resource-card p,
.testimonial-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.four-doors {
  max-width: 1320px;
  margin: 0 auto;
}

.door-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
}

.door-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.story-section {
  padding-top: 0;
  padding-bottom: 0;
}

.story-grid {
  align-items: stretch;
}

.image-stack {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  margin-left: calc(clamp(22px, 5vw, 80px) * -1);
}

.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.credential-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(280px, calc(100% - 56px));
  padding: 24px;
  background: rgba(250, 247, 240, 0.92);
  color: var(--ink);
}

.credential-card strong {
  display: block;
  font-family: var(--display);
  font-size: 44px;
}

.credential-card span {
  color: var(--muted);
  line-height: 1.5;
}

.story-copy {
  align-self: center;
  max-width: 700px;
  padding: clamp(82px, 10vw, 138px) 0;
}

.story-copy p {
  font-size: 17px;
  line-height: 1.72;
}

.story-copy blockquote {
  margin: 34px 0;
  padding-left: 24px;
  border-left: 4px solid var(--copper-bright);
  color: var(--white);
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.08;
}

.text-link {
  color: #e2a260;
  font-weight: 800;
}

.system-steps {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
}

.program-layout {
  align-items: center;
}

.program-copy h2 {
  color: var(--white);
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.program-meta span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.program-card {
  padding: clamp(28px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.program-card h3 {
  color: var(--white);
  font-size: 42px;
}

.program-card ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.program-card li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper-bright);
  content: "";
}

.program-guarantee {
  margin: -4px 0 30px;
  padding: 18px 20px;
  border-left: 4px solid var(--copper-bright);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.58;
}

.modules-section {
  overflow: visible;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: 48px auto 0;
}

.module-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.64);
}

.module-grid span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.module-grid h3,
.fit-grid h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.04;
}

.module-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.fit-grid article {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.66);
}

.fit-grid ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.58;
}

.fit-grid li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
  content: "";
}

.testimonial-grid {
  grid-template-columns: 1.1fr 0.9fr;
  max-width: 1320px;
  margin: 44px auto 0;
}

.testimonial-card.featured {
  grid-row: span 3;
  padding: clamp(32px, 5vw, 62px);
  background: var(--navy);
  color: var(--white);
}

.testimonial-card.featured p {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--display);
  font-size: 48px;
  line-height: 1.08;
}

.testimonial-card footer {
  margin-top: 28px;
}

.testimonial-card footer span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 14px;
}

.testimonial-card.featured footer span {
  color: rgba(255, 255, 255, 0.64);
}

.resource-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 48px auto 0;
}

.resource-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 180ms ease, background-color 180ms ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.primary-resource {
  background: var(--navy);
  color: var(--white);
}

.primary-resource p {
  color: rgba(255, 255, 255, 0.74);
}

.insights-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.article-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.article-list a {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.05;
  transition: color 160ms ease, padding-left 160ms ease;
}

.article-list a:hover {
  padding-left: 14px;
  color: var(--copper);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px;
  color: var(--white);
  font-family: var(--display);
  font-size: 30px;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  line-height: 1.68;
}

.section-final {
  background:
    linear-gradient(rgba(17, 25, 45, 0.62), rgba(17, 25, 45, 0.72)),
    url("assets/briefing-room.jpg") center/cover;
}

.final-card {
  max-width: 1180px;
  padding: clamp(28px, 5vw, 64px);
  background: rgba(250, 247, 240, 0.94);
  box-shadow: var(--shadow);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(22px, 5vw, 80px);
  background: var(--navy);
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .hero-section .reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

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

  .site-nav.is-open {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding-right: clamp(22px, 5vw, 80px);
  }

  .hero-copy h1 {
    font-size: 72px;
  }

  .portrait-panel {
    display: none;
  }

  .authority-strip,
  .door-grid,
  .system-steps,
  .resource-grid,
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .story-grid,
  .program-layout,
  .final-card,
  .insights-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 0;
  }

  .image-stack {
    margin: 0;
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .brand-lockup strong {
    font-size: 16px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 15px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-lede,
  .section-heading p,
  .program-lede,
  .final-card p {
    font-size: 16px;
  }

  .classification-board {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .classification-column {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 0;
  }

  .trajectory {
    display: none;
  }

  .map-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .authority-strip,
  .trap-grid,
  .door-grid,
  .system-steps,
  .resource-grid,
  .module-grid,
  .fit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .authority-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 72px 20px;
  }

  .section-heading h2,
  .story-copy h2,
  .program-copy h2,
  .final-card h2 {
    font-size: 42px;
  }

  .testimonial-card.featured p,
  .article-list a {
    font-size: 34px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 430px) {
  body,
  main,
  section,
  .site-header,
  .section,
  .hero-section {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-copy,
  .hero-visual {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    min-width: 0;
  }

  .hero-copy > *,
  .hero-lede,
  .button-row,
  .button {
    max-width: calc(100vw - 40px);
  }

  .eyebrow {
    max-width: calc(100vw - 40px);
    overflow-wrap: break-word;
  }

  .hero-copy h1 {
    max-width: calc(100vw - 40px);
    font-size: 32px;
  }

  .hero-lede,
  .hero-copy h1 {
    overflow-wrap: break-word;
  }

  .hero-section {
    display: block;
    padding: 44px 20px 72px;
  }

  .hero-visual {
    margin-top: 44px;
  }

  .brand-lockup {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
