:root {
  --ink: #0b1114;
  --ink-soft: #11191d;
  --limestone: #f2eee6;
  --limestone-deep: #e9e3d8;
  --paper: #f8f5ef;
  --slate: #687276;
  --slate-light: #a7adae;
  --brass: #cda85d;
  --brass-bright: #dfbd74;
  --line-light: rgba(16, 22, 25, 0.18);
  --line-dark: rgba(223, 189, 116, 0.3);
  --display: Baskerville, "Baskerville Old Face", "Iowan Old Style", "Times New Roman", serif;
  --body: Montserrat, "Gill Sans", "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100% - 96px));
  --section-space: clamp(6rem, 10vw, 9rem);
  color-scheme: light dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--limestone);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ink);
  background: var(--brass-bright);
}

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

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

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

:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 5px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--paper);
  clip-path: inset(50%);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

.hero {
  position: relative;
  min-height: min(780px, 100svh);
  overflow: hidden;
  color: var(--limestone);
  background: var(--ink);
  isolation: isolate;
}

.hero-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 28% 32%, rgba(62, 76, 82, 0.2), transparent 31rem),
    radial-gradient(circle at 78% 38%, rgba(205, 168, 93, 0.11), transparent 28rem),
    linear-gradient(112deg, #090f12 0%, #0b1216 54%, #171713 100%);
}

.hero-atmosphere::after,
.light-section::after,
.closing::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 128px;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 94px;
  height: 94px;
  place-items: center;
}

.brand-mark img {
  width: 90px;
  height: 81px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2.3rem);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  max-width: 155px;
  padding-block: 0.6rem;
  color: rgba(248, 245, 239, 0.9);
  line-height: 1.3;
  text-align: center;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

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

.nav-cta {
  min-height: 44px;
  max-width: 230px;
  padding: 0.55rem 13px;
  color: var(--brass-bright);
  border: 1px solid rgba(223, 189, 116, 0.75);
  background: rgba(9, 14, 16, 0.68);
  backdrop-filter: blur(8px);
  line-height: 1.3;
  text-align: center;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--ink);
  border-color: var(--brass-bright);
  background: var(--brass-bright);
}

.nav-toggle {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: calc(min(780px, 100svh) - 128px);
  padding-block: 2.5rem 5.5rem;
}

.hero-copy {
  width: min(51%, 620px);
}

.eyebrow,
.section-kicker,
.project-index {
  margin: 0 0 1.8rem;
  color: var(--brass-bright);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.projects h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.15rem, 5vw, 4.8rem);
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  white-space: nowrap;
}

.hero-intro {
  max-width: 580px;
  margin: 2rem 0 0;
  color: rgba(238, 235, 228, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-top: 2.6rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.45rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.button-outline {
  color: var(--brass-bright);
  border: 1px solid var(--brass);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--ink);
  border-color: var(--brass-bright);
  background: var(--brass-bright);
  transform: translateY(-2px);
}

.button-solid {
  color: var(--ink);
  border: 1px solid var(--brass-bright);
  background: var(--brass-bright);
}

.button-solid:hover,
.button-solid:focus-visible {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
  transform: translateY(-2px);
}

.text-link {
  position: relative;
  padding: 0.85rem 0 0.55rem;
  color: rgba(248, 245, 239, 0.9);
  font-size: 0.95rem;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--brass);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.55);
}

.text-link span {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform 220ms ease;
}

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

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 50px;
  right: 0;
  bottom: 0;
  left: 48%;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(243, 239, 231, 0.035) 18% 37%, transparent 37% 44%, rgba(243, 239, 231, 0.025) 44% 70%, transparent 70%),
    radial-gradient(ellipse at 69% 40%, rgba(214, 178, 107, 0.13), transparent 43%);
}

.hero-photo {
  position: absolute;
  z-index: 2;
  right: clamp(0.5rem, 3.5vw, 4rem);
  bottom: -100px;
  width: auto;
  max-width: none;
  height: 118%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.88) contrast(1.02) drop-shadow(0 28px 46px rgba(0, 0, 0, 0.28));
}

.hero-photo-wash {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(11, 17, 20, 0.56) 10%, transparent 31%),
    linear-gradient(0deg, rgba(7, 11, 13, 0.58) 0%, transparent 17%);
  pointer-events: none;
}

.architectural-lines {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.architectural-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(transparent 7%, rgba(223, 189, 116, 0.5), transparent 88%);
}

.architectural-lines span:nth-child(1) { left: 32%; }
.architectural-lines span:nth-child(2) { left: 63%; }
.architectural-lines span:nth-child(3) { left: 86%; }

.light-section,
.closing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.light-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.85), transparent 28rem),
    linear-gradient(145deg, var(--paper), var(--limestone));
}

.approach {
  padding-block: var(--section-space) calc(var(--section-space) * 0.88);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(5rem, 9vw, 9rem);
  align-items: start;
}

.section-intro {
  position: static;
}

.section-intro h2,
.projects h2 {
  font-size: clamp(2.65rem, 4.1vw, 3.65rem);
  line-height: 1.04;
}

.section-intro h2 span {
  display: block;
  white-space: nowrap;
}

.section-intro .section-kicker,
.projects .section-kicker,
.closing .section-kicker {
  margin-bottom: 1.2rem;
}

.section-intro p:last-child {
  max-width: 520px;
  margin: 2.1rem 0 0;
  color: #3f494d;
  font-size: 1.05rem;
  line-height: 1.62;
}

.brass-rule {
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 2.1rem;
  background: var(--brass);
}

.steps {
  margin: 0;
  padding: 0 0 0 clamp(2rem, 4vw, 4rem);
  border-left: 1px solid rgba(184, 137, 67, 0.72);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.2rem;
  min-height: 150px;
  padding: 0.45rem 0 2.3rem;
}

.steps li:last-child {
  min-height: 0;
  padding-bottom: 0.45rem;
}

.step-number {
  color: var(--brass);
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
}

.steps h3,
.featured-project h3,
.project-row h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.steps h3 {
  font-size: 1.7rem;
  line-height: 1.15;
}

.steps p {
  max-width: 380px;
  margin: 0.55rem 0 0;
  color: #465155;
  font-size: 1rem;
  line-height: 1.65;
}

.projects {
  padding-block: 1.75rem clamp(5rem, 7vw, 6.5rem);
}

.projects-heading {
  margin-bottom: 3rem;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(580px, 1.3fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  padding-block: 2.5rem 3rem;
  border-top: 1px solid var(--line-light);
}

.project-index {
  margin-bottom: 1rem;
  color: #8b6a30;
  letter-spacing: 0.13em;
}

.featured-project h3 {
  font-size: 2rem;
  line-height: 1.16;
}

.project-copy > p:last-child {
  max-width: 390px;
  margin: 1rem 0 0;
  color: #465155;
  font-size: 1rem;
  line-height: 1.62;
}

.project-flow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flow-node {
  display: grid;
  width: clamp(88px, 8vw, 108px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  padding: 0.5rem;
  border: 1px solid var(--brass);
  border-radius: 50%;
  background: rgba(248, 245, 239, 0.45);
  text-align: center;
}

.flow-node span {
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  font-weight: 500;
}

.flow-arrow {
  width: clamp(22px, 3vw, 44px);
  flex: 0 1 auto;
  color: var(--brass);
  font-size: 1.45rem;
  text-align: center;
}

.project-list {
  border-top: 1px solid var(--brass);
}

.project-row {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) 1.25fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(184, 137, 67, 0.62);
}

.project-row-number {
  color: #8b6a30;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.project-row h3 {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.project-row p {
  margin: 0;
  color: #465155;
  font-size: 0.98rem;
}

.closing {
  padding-top: clamp(4.75rem, 7vw, 6rem);
  color: var(--limestone);
  background:
    radial-gradient(circle at 80% 20%, rgba(65, 76, 79, 0.16), transparent 33rem),
    linear-gradient(120deg, #0a1013, #10181c 58%, #0a1013);
}

.closing-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(5rem, 10vw, 10rem);
  padding-bottom: clamp(4rem, 6vw, 5rem);
}

.closing h2 {
  font-size: clamp(2.6rem, 4vw, 3.65rem);
  line-height: 1.04;
}

.about > p:not(.section-kicker, .expertise, .certificate),
.contact > p:not(.section-kicker) {
  max-width: 510px;
  margin: 1.5rem 0 0;
  color: rgba(238, 235, 228, 0.74);
  font-size: 1rem;
}

.company-proof {
  margin-top: 2rem;
}

.company-proof > p {
  margin: 0;
  color: rgba(238, 235, 228, 0.58);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.company-proof ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.company-proof li {
  padding-left: 0.85rem;
  color: rgba(248, 245, 239, 0.9);
  border-left: 1px solid var(--brass);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.company-proof a {
  text-decoration-color: transparent;
  text-underline-offset: 0.25em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.company-proof a:hover,
.company-proof a:focus-visible {
  color: var(--brass-bright);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.expertise {
  margin: 2rem 0 0;
  color: var(--brass-bright);
  font-size: 0.95rem;
  line-height: 1.8;
}

.expertise span {
  padding-inline: 0.25rem;
  color: rgba(223, 189, 116, 0.52);
}

.certificate {
  margin: 0.55rem 0 0;
  color: rgba(238, 235, 228, 0.66);
  font-size: 0.875rem;
}

.contact .button {
  margin-top: 2rem;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 150px;
  padding-block: 1.8rem;
  border-top: 1px solid var(--line-dark);
}

.footer-brand {
  display: block;
  width: 150px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  color: rgba(238, 235, 228, 0.7);
  font-size: 0.9rem;
}

.footer-links a {
  padding-block: 0.7rem;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brass-bright);
}

.copyright {
  margin: 0;
  color: rgba(238, 235, 228, 0.65);
  font-size: 0.8rem;
}

/* Editorial service and proof chapter */
.services,
.projects {
  background: linear-gradient(145deg, var(--paper), var(--limestone));
}

.services {
  padding-block: clamp(6rem, 8vw, 7rem) clamp(4.5rem, 6vw, 5.5rem);
}

.services-teaser {
  padding-block: clamp(5.5rem, 7vw, 6.5rem);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 24%, rgba(255, 255, 255, 0.82), transparent 28rem),
    linear-gradient(145deg, var(--paper), var(--limestone));
}

.services-teaser-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}

.services-teaser-intro h2 {
  max-width: 620px;
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.services-teaser-intro > p:not(.chapter-label) {
  max-width: 48ch;
  margin: 1.5rem 0 0;
  color: #3f494d;
  font-size: 1.04rem;
  line-height: 1.65;
}

.services-teaser-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 1.7rem;
  color: #253034;
  align-items: center;
}

.services-teaser-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(16, 22, 25, 0.22);
  list-style: none;
}

.services-teaser-list li {
  border-bottom: 1px solid rgba(16, 22, 25, 0.18);
}

.services-teaser-list a {
  display: grid;
  min-height: 88px;
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1rem;
  transition: background-color 180ms ease;
}

.services-teaser-list a:hover,
.services-teaser-list a:focus-visible {
  background: rgba(233, 227, 216, 0.48);
}

.services-teaser-list a:focus-visible {
  outline-color: #6f4e1d;
}

.services-teaser-copy {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.5rem;
  align-items: baseline;
}

.services-teaser-copy strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.16;
}

.services-teaser-copy > span {
  color: #465155;
  font-size: 0.98rem;
  line-height: 1.58;
}

.services-teaser-arrow {
  color: #87652f;
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.services-teaser-list a:hover .services-teaser-arrow,
.services-teaser-list a:focus-visible .services-teaser-arrow {
  transform: translateX(4px);
}

.chapter-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: 1rem clamp(4rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 5vw, 4.5rem);
}

.chapter-label {
  grid-column: 1;
  margin: 0;
  color: #87652f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.chapter-intro h2 {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.chapter-intro > p:last-child:not(.chapter-label) {
  grid-column: 2;
  margin: 0;
  color: #3f494d;
  font-size: 1.05rem;
  line-height: 1.62;
}

.offer-list {
  position: relative;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  background: linear-gradient(90deg, transparent 0 60%, rgba(233, 227, 216, 0.32) 60% 100%);
  list-style: none;
}

.offer-item {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1.05fr) 104px minmax(340px, 0.9fr);
  gap: 0 clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: start;
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}

.offer-primary {
  background: linear-gradient(90deg, rgba(184, 137, 67, 0.055), transparent 58%);
}

.offer-primary .offer-service h3 {
  color: #6f4f20;
}

.offer-number {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  column-gap: 0.42rem;
  align-self: stretch;
  align-content: start;
  align-items: start;
  padding-right: 1.5rem;
  color: var(--brass);
  border-right: 1px solid rgba(184, 137, 67, 0.55);
  font-family: var(--display);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-weight: 400;
  line-height: 1;
}

.offer-number-zero {
  position: relative;
  margin-top: 0.16rem;
  font-size: 1.35rem;
  line-height: 1;
}

.offer-number-zero::after {
  position: absolute;
  right: 0.08em;
  bottom: -0.42rem;
  left: 0.08em;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.9;
}

.offer-number-digit {
  min-width: 0.58em;
  font-size: 5rem;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-align: center;
}

.offer-service h3,
.flagship-case h3,
.project-row h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.offer-service h3 {
  font-size: 1.9rem;
  line-height: 1.16;
}

.offer-service > p,
.offer-benefit > p:last-child,
.offer-benefit > .benefit-copy {
  max-width: 46ch;
  margin: 0.7rem 0 0;
  color: #465155;
  font-size: 1.05rem;
  line-height: 1.6;
}

.offer-connector {
  position: relative;
  align-self: center;
  width: 100%;
  height: 1px;
  background: var(--brass);
}

.offer-connector::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.offer-benefit {
  min-height: 100%;
  padding: 0.2rem clamp(1.25rem, 2.5vw, 2rem);
}

.benefit-label {
  margin: 0;
  color: #795a28;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.offer-benefit > p:last-child,
.offer-benefit > .benefit-copy {
  margin-top: 0.45rem;
  color: #202a2e;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.55;
}

.offer-item[id] {
  scroll-margin-top: 2rem;
}

.service-detail-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 1rem;
  padding-block: 0.55rem;
  color: #684b1f;
  border-bottom: 1px solid rgba(104, 75, 31, 0.5);
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-detail-link span {
  margin-left: 0.4rem;
  transition: transform 180ms ease;
}

.service-detail-link:hover span,
.service-detail-link:focus-visible span {
  transform: translate(3px, -3px);
}

.service-fit {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 137, 67, 0.34);
}

.service-fit > p:first-child {
  margin: 0;
  color: #795a28;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-fit > p:last-child {
  margin: 0.45rem 0 0;
  color: #465155;
  font-size: 0.96rem;
  line-height: 1.58;
}

/* Training chapter */
.training {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(5.5rem, 7vw, 6.5rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 12%, rgba(205, 168, 93, 0.12), transparent 30%),
    linear-gradient(120deg, var(--ink-soft), var(--ink) 72%);
}

.training::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(223, 189, 116, 0.055) 24% calc(24% + 1px), transparent calc(24% + 1px) 100%),
    linear-gradient(90deg, transparent 0 72%, rgba(223, 189, 116, 0.04) 72% calc(72% + 1px), transparent calc(72% + 1px) 100%);
  content: "";
  pointer-events: none;
}

.training-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "intro program"
    "cta program";
  grid-template-rows: auto 1fr;
  column-gap: clamp(3.5rem, 7vw, 7rem);
  row-gap: 2.25rem;
  align-items: start;
}

.training-intro {
  grid-area: intro;
  max-width: 440px;
  padding-right: clamp(1.5rem, 2.5vw, 3rem);
}

.training .chapter-label {
  color: var(--brass-bright);
}

.training-intro h2 {
  margin: 1.15rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.training-intro > p:last-child {
  max-width: 40ch;
  margin: 1.5rem 0 0;
  color: rgba(238, 235, 228, 0.76);
  font-size: 1.05rem;
  line-height: 1.66;
}

.training-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(223, 189, 116, 0.3);
  list-style: none;
}

.training-program {
  grid-area: program;
}

.training-topic {
  display: grid;
  grid-template-columns: 2.75rem minmax(190px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.25rem, 2.4vw, 2.35rem);
  align-items: start;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(223, 189, 116, 0.24);
}

.training-index {
  padding-top: 0.38rem;
  color: var(--brass-bright);
  font-size: 0.78rem;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.training-topic h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 1.8vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.training-topic-heading {
  min-width: 0;
}

.training-topic .training-audience {
  margin: 0 0 0.45rem;
  color: rgba(238, 235, 228, 0.56);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.training-topic > p {
  margin: 0;
  color: rgba(238, 235, 228, 0.74);
  font-size: 1rem;
  line-height: 1.6;
}

.training-cta {
  grid-area: cta;
  max-width: 410px;
  align-self: start;
  padding: 0 clamp(1.5rem, 2.5vw, 3rem) 0 0;
}

.training-cta p {
  margin: 0;
}

.training-cta strong,
.training-cta span {
  display: block;
}

.training-cta strong {
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.training-cta span {
  margin-top: 0.35rem;
  color: rgba(238, 235, 228, 0.66);
  font-size: 0.92rem;
  line-height: 1.55;
}

.training-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.35rem;
  align-items: center;
  margin-top: 1.4rem;
}

.training-cta-actions .button {
  margin-top: 0;
  text-align: center;
}

.training-cta-actions .text-link {
  width: fit-content;
}

.first-call {
  padding-block: 0 clamp(5.25rem, 7vw, 6.75rem);
}

.first-call > .shell {
  padding-top: clamp(5rem, 7vw, 6.25rem);
}

.first-call-intro {
  margin-bottom: clamp(2.75rem, 4vw, 3.5rem);
}

.first-call-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.first-call-steps li,
.first-call-note {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.first-call-steps li {
  align-items: baseline;
  padding-block: clamp(1.55rem, 2.2vw, 1.95rem);
  border-bottom: 1px solid rgba(16, 22, 25, 0.16);
}

.first-call-steps h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.16;
}

.first-call-steps p {
  max-width: 700px;
  margin: 0;
  color: #465155;
  font-size: 1.02rem;
  line-height: 1.62;
}

.first-call-note {
  align-items: start;
  margin-top: clamp(2rem, 3vw, 2.75rem);
  padding-top: clamp(1.25rem, 2vw, 1.6rem);
  border-top: 1px solid rgba(184, 137, 67, 0.72);
}

.first-call-note p {
  margin: 0;
}

.first-call-note-label {
  color: #795a28;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.first-call-note > p:last-child {
  max-width: 700px;
  color: #465155;
  font-size: 0.96rem;
  line-height: 1.62;
}

.first-call-note strong {
  color: #273236;
  font-weight: 650;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-copy {
    width: 54%;
  }

  .hero-visual {
    left: 51%;
  }

  .approach-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }

  .featured-project {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-flow {
    justify-content: flex-start;
  }

  .flow-node {
    width: min(19vw, 125px);
  }

  .training-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "program"
      "cta";
    grid-template-rows: auto;
    row-gap: 3.25rem;
  }

  .training-intro,
  .training-cta {
    max-width: 760px;
    padding-right: 0;
  }

  .closing-grid {
    gap: 5rem;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 40px);
    --section-space: 5.7rem;
  }

  .hero {
    min-height: auto;
  }

  .site-header {
    height: 94px;
  }

  .brand-mark {
    width: 66px;
    height: 66px;
  }

  .brand-mark img {
    width: 62px;
    height: 56px;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--limestone);
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
  }

  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    content: "";
  }

  .nav-toggle-lines::before { transform: translateY(-8px); }
  .nav-toggle-lines::after { transform: translateY(7px); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { transform: translateY(-1px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 7rem max(2rem, 8vw);
    visibility: hidden;
    color: var(--limestone);
    background: rgba(8, 13, 16, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a:not(.nav-cta) {
    font-family: var(--display);
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .primary-nav .nav-cta {
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero-content {
    display: block;
    min-height: 0;
    padding-block: 3.8rem 3.25rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 640px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(3rem, 10vw, 4.8rem);
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: min(100vw, 440px);
    background:
      linear-gradient(90deg, transparent 0 17%, rgba(243, 239, 231, 0.035) 17% 39%, transparent 39% 48%, rgba(243, 239, 231, 0.025) 48% 72%, transparent 72%),
      radial-gradient(ellipse at 58% 42%, rgba(214, 178, 107, 0.12), transparent 48%);
  }

  .hero-photo {
    top: 0;
    right: 50%;
    bottom: auto;
    width: auto;
    max-width: none;
    height: 135%;
    object-position: center bottom;
    filter: saturate(0.9) contrast(1.02) drop-shadow(0 22px 36px rgba(0, 0, 0, 0.24));
    transform: translateX(50%);
  }

  .hero-photo-wash {
    background:
      linear-gradient(180deg, var(--ink) 0%, rgba(11, 17, 20, 0.08) 12%, transparent 32%),
      linear-gradient(0deg, rgba(8, 12, 14, 0.62), transparent 22%);
  }

  .approach-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    gap: 4.5rem;
  }

  .section-intro {
    position: static;
  }

  .steps {
    padding-left: 2rem;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .project-row p {
    grid-column: auto;
  }

  .closing-grid {
    gap: 5.5rem;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .hero-content {
    padding-top: 3.4rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.25rem);
  }

  .hero h1 span:last-child {
    white-space: normal;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    height: min(100vw, 440px);
    max-height: 440px;
  }

  .section-intro h2,
  .projects h2,
  .closing h2 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  .section-intro h2 span {
    white-space: normal;
  }

  .steps {
    padding-left: 1.25rem;
  }

  .steps li {
    grid-template-columns: 46px 1fr;
    gap: 0.75rem;
  }

  .step-number {
    font-size: 2.7rem;
  }

  .steps h3 {
    font-size: 1.5rem;
  }

  .project-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .flow-node {
    width: 100%;
    min-height: 64px;
    aspect-ratio: auto;
    border-radius: 999px;
  }

  .flow-arrow {
    display: none;
  }

  .project-row {
    padding-block: 1.4rem;
  }

  .project-row h3,
  .project-row p {
    font-size: 0.9rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-block: 2.5rem;
  }

  .footer-brand {
    width: 132px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 0.7rem 1.4rem;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  .services-teaser-grid {
    grid-template-columns: 1fr;
    gap: 3.25rem;
  }

  .services-teaser-intro {
    max-width: 660px;
  }

  .services-teaser-list {
    max-width: 760px;
  }
}

@media (max-width: 820px) {

  .services {
    padding-block: 5rem 4rem;
  }

  .training {
    padding-block: 4.75rem;
  }

  .training-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "program"
      "cta";
    grid-template-rows: auto;
    gap: 3.25rem;
  }

  .training-intro {
    max-width: 640px;
    padding-right: 0;
    border-right: 0;
  }

  .training-intro h2 {
    font-size: clamp(2.55rem, 9vw, 3.25rem);
  }

  .training-intro > p:last-child {
    max-width: 62ch;
  }

  .training-topic {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.4rem 1rem;
    padding-block: 1.5rem;
  }

  .training-topic-heading,
  .training-topic > p {
    grid-column: 2;
  }

  .training-topic > p {
    margin-top: 0.45rem;
  }

  .training-cta {
    max-width: none;
    padding-right: 0;
  }

  .training-cta .button {
    margin-top: 0;
  }

  .chapter-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3.5rem;
  }

  .chapter-label,
  .chapter-intro h2,
  .chapter-intro > p:last-child:not(.chapter-label) {
    grid-column: 1;
  }

  .chapter-intro > p:last-child:not(.chapter-label) {
    max-width: 62ch;
    margin-top: 0.5rem;
  }

  .offer-item {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1rem 1.25rem;
    padding-block: 1.9rem;
  }

  .offer-list {
    background: transparent;
  }

  .offer-number {
    grid-template-columns: 0.78rem minmax(0, 1fr);
    column-gap: 0.22rem;
    padding-right: 0.85rem;
  }

  .offer-number-zero {
    margin-top: 0.08rem;
    font-size: 0.88rem;
  }

  .offer-number-zero::after {
    bottom: -0.28rem;
  }

  .offer-number-digit {
    font-size: 3.2rem;
  }

  .offer-service,
  .offer-benefit {
    grid-column: 2;
  }

  .offer-connector {
    display: none;
  }

  .offer-benefit {
    min-height: 0;
    margin-top: 0.45rem;
    padding: 1rem 1.1rem;
    border-top: 0;
    border-left: 0;
    background: rgba(233, 227, 216, 0.42);
  }

  .first-call > .shell {
    padding-top: 4.5rem;
  }

  .first-call-steps li,
  .first-call-note {
    grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(2rem, 6vw, 4rem);
  }
}

@media (max-width: 620px) {
  .services-teaser {
    padding-block: 4.5rem;
  }

  .services-teaser-grid {
    gap: 2.75rem;
  }

  .services-teaser-intro h2 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .services-teaser-intro > p:not(.chapter-label) {
    font-size: 1rem;
  }

  .services-teaser-list a {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 1.1rem;
    gap: 1rem;
    padding: 1.35rem 0.35rem;
  }

  .services-teaser-copy {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .services-teaser-copy strong {
    font-size: 1.5rem;
  }

  .services {
    padding-block: 4.5rem 3.75rem;
  }

  .training {
    padding-block: 4.25rem;
  }

  .training-grid {
    gap: 2.75rem;
  }

  .training-intro h2 {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .training-intro > p:last-child {
    font-size: 1rem;
  }

  .training-topic {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 0.4rem 0.75rem;
    padding-block: 1.35rem;
  }

  .training-topic h3 {
    font-size: 1.45rem;
  }

  .training-cta .button {
    width: 100%;
  }

  .training-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .training-cta-actions .text-link {
    align-self: flex-start;
  }

  .chapter-intro {
    margin-bottom: 3rem;
  }

  .chapter-intro h2 {
    font-size: clamp(2.35rem, 9vw, 3rem);
    line-height: 1.06;
  }

  .chapter-intro > p:last-child:not(.chapter-label) {
    font-size: 1rem;
  }

  .first-call {
    padding-bottom: 4.75rem;
  }

  .first-call > .shell {
    padding-top: 4.5rem;
  }

  .first-call-steps li,
  .first-call-note {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .first-call-steps li {
    padding-block: 1.45rem;
  }

  .first-call-steps h3 {
    font-size: 1.5rem;
  }

  .first-call-steps p,
  .first-call-note > p:last-child {
    font-size: 1rem;
  }

  .first-call-note {
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .offer-item {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    padding-block: 1.7rem;
  }

  .services-detail-page .offer-benefit {
    grid-column: 1 / -1;
    margin-top: 0.85rem;
  }

  .offer-number-zero {
    font-size: 0.78rem;
  }

  .offer-number-digit {
    font-size: 2.8rem;
  }

  .offer-service h3 {
    font-size: 1.5rem;
  }

  .offer-service > p,
  .offer-benefit > p:last-child,
  .offer-benefit > .benefit-copy {
    font-size: 1rem;
  }
}

@media (min-width: 821px) and (max-width: 1050px) {
  .services-detail-page .offer-item {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1rem 1.5rem;
    padding-block: 2rem;
  }

  .services-detail-page .offer-list {
    background: transparent;
  }

  .services-detail-page .offer-number {
    grid-template-columns: 0.78rem minmax(0, 1fr);
    column-gap: 0.22rem;
    padding-right: 0.85rem;
  }

  .services-detail-page .offer-number-zero {
    margin-top: 0.08rem;
    font-size: 0.88rem;
  }

  .services-detail-page .offer-number-zero::after {
    bottom: -0.28rem;
  }

  .services-detail-page .offer-number-digit {
    font-size: 3.2rem;
  }

  .services-detail-page .offer-service,
  .services-detail-page .offer-benefit {
    grid-column: 2;
  }

  .services-detail-page .offer-connector {
    display: none;
  }

  .services-detail-page .offer-benefit {
    min-height: 0;
    margin-top: 0.5rem;
    padding: 1.25rem 1.4rem;
    background: rgba(233, 227, 216, 0.42);
  }
}

/* Production multi-page foundation */
.primary-nav > a[aria-current]:not(.nav-cta) {
  color: var(--paper);
}

.primary-nav > a[aria-current]:not(.nav-cta)::after {
  transform: scaleX(1);
}

.footer-links a[aria-current="page"] {
  color: var(--brass-bright);
}

.inner-page {
  color: var(--paper);
  background: var(--ink);
}

.page-site-header {
  color: var(--paper);
  background: var(--ink);
}

.page-hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  padding-block: clamp(4rem, 7vw, 7rem);
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}

.page-hero-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(223, 189, 116, 0.055) 58% calc(58% + 1px), transparent calc(58% + 1px)),
    linear-gradient(90deg, transparent 0 82%, rgba(223, 189, 116, 0.04) 82% calc(82% + 1px), transparent calc(82% + 1px)),
    radial-gradient(circle at 76% 35%, rgba(205, 168, 93, 0.13), transparent 31rem),
    radial-gradient(circle at 18% 28%, rgba(70, 86, 92, 0.2), transparent 28rem),
    linear-gradient(118deg, #090f12, #0b1216 58%, #171713);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.48fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: end;
}

.page-hero-copy {
  max-width: 820px;
}

.page-hero-copy h1,
.legal-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.page-hero-copy h1 {
  font-size: clamp(3.4rem, 5.4vw, 5.25rem);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 2rem 0 0;
  color: rgba(238, 235, 228, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.68;
}

.page-hero-aside {
  padding: 1.7rem 0 0 clamp(1.5rem, 3vw, 2.6rem);
  border-top: 1px solid rgba(223, 189, 116, 0.45);
  border-left: 1px solid rgba(223, 189, 116, 0.28);
}

.page-hero-aside > p {
  margin: 0;
  color: var(--brass-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero-aside ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.page-hero-aside li {
  padding-block: 0.75rem;
  color: rgba(248, 245, 239, 0.86);
  border-bottom: 1px solid rgba(223, 189, 116, 0.18);
  font-size: 0.98rem;
  line-height: 1.5;
}

.curriculum {
  padding-block: clamp(6rem, 9vw, 8rem);
}

.course-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(184, 137, 67, 0.62);
  list-style: none;
}

.course-module {
  display: grid;
  grid-template-columns: 96px minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line-light);
}

.course-symbol {
  width: 96px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #101417;
  border: 1px solid rgba(184, 137, 67, 0.34);
  box-shadow: 0 0.75rem 1.8rem rgba(16, 20, 23, 0.12);
}

.course-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-label,
.course-outcomes > p {
  margin: 0;
  color: #795a28;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.course-summary h3 {
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.7vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.course-summary > p:last-child {
  max-width: 42ch;
  margin: 1rem 0 0;
  color: #465155;
  font-size: 1rem;
  line-height: 1.62;
}

.course-outcomes {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(184, 137, 67, 0.42);
}

.course-outcomes ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.course-outcomes li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  color: #2f3a3e;
  font-size: 1rem;
  line-height: 1.56;
}

.course-outcomes li::before {
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 0.65rem;
  height: 1px;
  background: var(--brass);
  content: "";
}

.training-method {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5.5rem, 8vw, 7rem);
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.62), transparent 27rem),
    var(--limestone-deep);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(4rem, 7vw, 7rem);
  align-items: start;
}

.method-intro h2 {
  max-width: 700px;
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.method-intro > p:last-child {
  max-width: 48ch;
  margin: 1.5rem 0 0;
  color: #3f494d;
  font-size: 1.04rem;
  line-height: 1.65;
}

.method-list {
  position: relative;
  margin: 0;
  padding: 0.35rem 0;
  border: 1px solid rgba(184, 137, 67, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 245, 239, 0.66)),
    var(--paper);
  box-shadow: 0 1.35rem 3.25rem rgba(16, 22, 25, 0.1);
  list-style: none;
}

.method-list::before {
  position: absolute;
  top: 2.2rem;
  bottom: 2.2rem;
  left: 1.8rem;
  width: 1px;
  background: rgba(184, 137, 67, 0.48);
  content: "";
}

.method-list li {
  position: relative;
  padding: 1.55rem 1.75rem 1.55rem 3.8rem;
}

.method-list li + li {
  border-top: 1px solid rgba(16, 22, 25, 0.14);
}

.method-list li::before {
  position: absolute;
  top: 2rem;
  left: 1.5rem;
  width: 0.62rem;
  height: 0.62rem;
  border: 1px solid #9b7537;
  background: var(--paper);
  content: "";
  transform: rotate(45deg);
}

.method-list h3 {
  max-width: 30ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.16;
}

.method-list p {
  max-width: 52ch;
  margin: 0.6rem 0 0;
  color: #354145;
  font-size: 1.03rem;
  line-height: 1.65;
}

.page-cta {
  padding-block: clamp(5.5rem, 8vw, 7rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 30%, rgba(205, 168, 93, 0.1), transparent 26rem),
    var(--ink);
}

.page-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.65fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: end;
}

.page-cta h2 {
  max-width: 760px;
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.2vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.page-cta-action > p {
  margin: 0;
  color: rgba(238, 235, 228, 0.74);
  font-size: 1rem;
  line-height: 1.65;
}

.page-cta-action .button {
  margin-top: 2rem;
}

.global-footer {
  color: var(--limestone);
  background: linear-gradient(120deg, #080d10, #0d1518 58%, #080d10);
}

.legal-hero {
  padding-block: clamp(4rem, 7vw, 6rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 34%, rgba(205, 168, 93, 0.1), transparent 24rem),
    linear-gradient(118deg, #090f12, #0e171b);
}

.legal-hero .eyebrow {
  margin-bottom: 1.25rem;
}

.legal-hero h1 {
  font-size: clamp(3.4rem, 5.4vw, 5rem);
}

.legal-hero > .shell > p:last-child {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: rgba(238, 235, 228, 0.72);
  font-size: 1.05rem;
}

.legal-content {
  padding-block: clamp(5rem, 8vw, 7rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 2rem;
}

.legal-sidebar > p:not(.chapter-label) {
  max-width: 24ch;
  margin: 1rem 0 0;
  color: #526065;
  font-size: 0.92rem;
  line-height: 1.6;
}

.legal-article {
  width: 100%;
  max-width: 780px;
}

.legal-draft-notice {
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(150, 92, 46, 0.5);
  background: rgba(205, 168, 93, 0.12);
}

.legal-draft-notice strong {
  display: block;
  color: #684417;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-draft-notice p {
  margin: 0.55rem 0 0;
  color: #3f494d;
}

.legal-article > section {
  padding-block: 2.4rem;
  border-bottom: 1px solid var(--line-light);
}

.legal-article h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.4vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-article p,
.legal-article address,
.legal-article li {
  color: #3f494d;
  font-size: 1rem;
  line-height: 1.68;
}

.legal-article p,
.legal-article address {
  margin: 1rem 0 0;
}

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

.legal-article a {
  color: #684b1f;
  text-decoration: underline;
  text-decoration-color: rgba(104, 75, 31, 0.42);
  text-underline-offset: 0.2em;
}

.legal-placeholder {
  color: #8b3d27;
  background: rgba(164, 71, 44, 0.08);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.legal-placeholder-block {
  margin-top: 1.25rem;
  padding: 1.2rem 1.35rem;
  border-left: 3px solid #a46a2e;
  background: rgba(205, 168, 93, 0.1);
}

.legal-placeholder-block strong {
  color: #684417;
}

.legal-placeholder-block ul {
  margin: 0.7rem 0 0;
  padding-left: 1.25rem;
}

.legal-source-note {
  margin-top: 2.5rem !important;
  color: #5a6569 !important;
  font-size: 0.9rem !important;
}

.about-profile-link {
  width: fit-content;
  margin-top: 1.5rem;
  color: var(--brass-bright);
}

.profile-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  isolation: isolate;
}

.profile-hero-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 80% 38%, rgba(205, 168, 93, 0.15), transparent 30rem),
    radial-gradient(circle at 14% 28%, rgba(61, 79, 86, 0.18), transparent 32rem),
    linear-gradient(118deg, #080e11, #0b1216 60%, #171713);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.82fr);
  gap: clamp(3.5rem, 5vw, 5.5rem);
  align-items: center;
  min-height: 720px;
}

.profile-hero-copy {
  align-self: center;
  min-width: 0;
  max-width: 700px;
  padding-block: 5rem;
}

.profile-hero-copy h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.65rem, 4.6vw, 4.9rem);
  font-weight: 400;
  hyphens: none;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.profile-current-role {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  align-items: center;
  margin-top: 2rem;
}

.profile-current-role > span {
  color: var(--brass-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.profile-current-role a {
  display: inline-block;
  max-width: 100%;
  min-height: 44px;
  padding-block: 0.65rem;
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(223, 189, 116, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.profile-current-role a:hover,
.profile-current-role a:focus-visible {
  color: var(--brass-bright);
  text-decoration-color: currentColor;
}

.profile-hero-copy > p:not(.eyebrow) {
  max-width: 60ch;
  margin: 1.55rem 0 0;
  color: rgba(238, 235, 228, 0.78);
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  line-height: 1.7;
}

.profile-hero-action {
  display: flex;
  margin-top: 2.15rem;
}

.profile-hero-action .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.profile-portrait {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0;
  justify-self: end;
}

.profile-portrait-frame {
  position: relative;
  display: flex;
  height: auto;
  aspect-ratio: 4 / 5;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(223, 189, 116, 0.27);
  background:
    linear-gradient(90deg, rgba(223, 189, 116, 0.05) 1px, transparent 1px) 0 0 / 25% 100%,
    radial-gradient(circle at 52% 34%, rgba(223, 189, 116, 0.15), transparent 18rem);
}

.profile-portrait-frame::after {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3.3rem;
  height: 3.3rem;
  border-right: 1px solid rgba(223, 189, 116, 0.54);
  border-bottom: 1px solid rgba(223, 189, 116, 0.54);
  content: "";
}

.profile-portrait img {
  width: min(100%, 470px);
  max-height: 640px;
  object-fit: contain;
  object-position: center bottom;
}

.profile-portrait.profile-portrait-editorial .profile-portrait-frame {
  background: #090f12;
}

.profile-portrait.profile-portrait-editorial .profile-portrait-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 17, 0.08), transparent 28%, rgba(8, 14, 17, 0.16)),
    linear-gradient(90deg, rgba(223, 189, 116, 0.035), transparent 18% 82%, rgba(223, 189, 116, 0.035));
  content: "";
  pointer-events: none;
}

.profile-portrait.profile-portrait-editorial .profile-portrait-frame::after {
  display: none;
}

.profile-portrait.profile-portrait-editorial img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 42%;
}

.profile-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  color: rgba(238, 235, 228, 0.64);
  border-top: 1px solid rgba(223, 189, 116, 0.22);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.profile-portrait figcaption span:first-child {
  color: var(--paper);
  font-weight: 600;
}

@media (min-width: 1600px) {
  .profile-hero-grid {
    width: auto;
    max-width: 1480px;
    margin-right: 48px;
    margin-left: max(48px, calc((100vw - 1240px) / 2));
    grid-template-columns: minmax(0, 0.96fr) minmax(500px, 0.78fr);
    gap: clamp(5rem, 6vw, 8rem);
  }

  .profile-portrait {
    max-width: 560px;
  }
}

.profile-foundation,
.profile-focus {
  padding-block: clamp(6rem, 9vw, 8rem);
}

.profile-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-principles li {
  padding-top: 1.6rem;
  border-top: 1px solid rgba(184, 137, 67, 0.6);
}

.profile-principles li > span {
  color: #795a28;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.profile-principles h3 {
  max-width: 15ch;
  margin: 1.25rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.profile-principles p {
  max-width: 40ch;
  margin: 1rem 0 0;
  color: #465155;
  font-size: 1rem;
  line-height: 1.65;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(4rem, 7vw, 6rem) 0 0;
  color: var(--paper);
  border: 1px solid rgba(223, 189, 116, 0.3);
  background:
    radial-gradient(circle at 85% 20%, rgba(205, 168, 93, 0.12), transparent 20rem),
    var(--ink);
}

.profile-facts > div {
  min-width: 0;
  padding: clamp(1.8rem, 3vw, 2.8rem);
}

.profile-facts > div + div {
  border-left: 1px solid rgba(223, 189, 116, 0.24);
}

.profile-facts dt {
  color: var(--brass-bright);
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 0.9;
}

.profile-facts dd {
  max-width: 28ch;
  margin: 1.1rem 0 0;
  color: rgba(238, 235, 228, 0.76);
  font-size: 0.95rem;
  line-height: 1.55;
}

.profile-journey {
  padding-block: clamp(6rem, 9vw, 8rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 14%, rgba(70, 86, 92, 0.2), transparent 29rem),
    linear-gradient(120deg, #0a1013, #111a1e 62%, #090f12);
}

.profile-journey-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: start;
}

.profile-journey-intro {
  position: sticky;
  top: 2rem;
  min-width: 0;
}

.profile-journey-intro h2 {
  max-width: 660px;
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4vw, 3.55rem);
  font-weight: 400;
  hyphens: auto;
  letter-spacing: -0.03em;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.profile-journey-intro > p:last-child {
  max-width: 46ch;
  margin: 1.5rem 0 0;
  color: rgba(238, 235, 228, 0.72);
  font-size: 1rem;
  line-height: 1.68;
}

.profile-timeline {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(223, 189, 116, 0.5);
  list-style: none;
}

.profile-timeline li {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.8rem);
  padding-block: clamp(2rem, 3.5vw, 2.8rem);
  border-bottom: 1px solid rgba(223, 189, 116, 0.2);
}

.profile-timeline li > div {
  min-width: 0;
}

.profile-time {
  padding-top: 0.2rem;
  color: var(--brass-bright);
  font-size: 0.78rem;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.profile-time-label,
.profile-focus-index,
.profile-credentials > div > p {
  margin: 0;
  color: #795a28;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.profile-timeline .profile-time-label {
  color: var(--brass-bright);
}

.profile-timeline h3 {
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.35vw, 2.15rem);
  font-weight: 400;
  hyphens: auto;
  letter-spacing: -0.02em;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.profile-timeline .timeline-ai h3 {
  font-size: clamp(1.85rem, 2.55vw, 2.3rem);
}

.profile-timeline .timeline-ai > div > p:last-child {
  color: rgba(238, 235, 228, 0.82);
}

.profile-role-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(223, 189, 116, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.profile-role-link:hover,
.profile-role-link:focus-visible {
  color: var(--brass-bright);
  text-decoration-color: currentColor;
}

.profile-timeline li p:last-child {
  max-width: 62ch;
  margin: 0.95rem 0 0;
  color: rgba(238, 235, 228, 0.72);
  font-size: 1rem;
  hyphens: auto;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.profile-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.profile-focus-grid article {
  min-width: 0;
  padding: 1.7rem clamp(1.4rem, 2.5vw, 2rem) 2rem;
  border-top: 1px solid rgba(184, 137, 67, 0.64);
  background: rgba(255, 255, 255, 0.28);
}

.profile-focus-grid h3 {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.profile-focus-grid article > p:not(.profile-focus-index) {
  margin: 1rem 0 0;
  color: #465155;
  font-size: 1rem;
  line-height: 1.62;
}

.profile-inline-link {
  width: fit-content;
  margin-top: 1.5rem;
  color: #684b1f;
}

.profile-inline-link::after {
  background: #87652f;
}

.profile-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.profile-credentials > div {
  padding-block: 2rem;
}

.profile-credentials > div + div {
  padding-left: clamp(2rem, 5vw, 5rem);
  border-left: 1px solid var(--line-light);
}

.profile-credentials ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.profile-credentials li {
  color: #354145;
  font-size: 0.95rem;
  line-height: 1.55;
}

.profile-credentials a {
  text-decoration: underline;
  text-decoration-color: rgba(104, 75, 31, 0.4);
  text-underline-offset: 0.22em;
}

/* Audience-first routes: companies and private learners */
.audience-entry,
.private-learning {
  padding-block: clamp(6rem, 9vw, 8rem);
}

.audience-path-list,
.private-path-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(184, 137, 67, 0.62);
  list-style: none;
}

.audience-path-list li {
  border-bottom: 1px solid var(--line-light);
}

.audience-path-list a {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr) 2rem;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 138px;
  padding-block: 1.9rem;
  transition: background 220ms ease, padding 220ms ease;
}

.audience-path-list a:hover,
.audience-path-list a:focus-visible {
  padding-inline: 1rem;
  background: rgba(233, 227, 216, 0.42);
}

.audience-path-meta,
.private-path-label,
.audience-proof-label,
.private-path-details dt {
  color: #795a28;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.audience-path-copy strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.7vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.audience-path-copy > span {
  display: block;
  max-width: 68ch;
  margin-top: 0.7rem;
  color: #354145;
  font-size: 1.02rem;
  line-height: 1.62;
}

.audience-path-arrow {
  color: #795a28;
  font-size: 1.25rem;
  transition: transform 220ms ease;
}

.audience-path-list a:hover .audience-path-arrow,
.audience-path-list a:focus-visible .audience-path-arrow {
  transform: translate(3px, -3px);
}

.audience-proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
  margin-top: clamp(4rem, 7vw, 6rem);
  padding-block: 2.25rem;
  border-top: 1px solid rgba(184, 137, 67, 0.62);
  border-bottom: 1px solid var(--line-light);
}

.audience-proof-strip p {
  max-width: 72ch;
  margin: 0;
  color: #354145;
  font-size: 1rem;
  line-height: 1.65;
}

.audience-proof-strip .audience-proof-label {
  margin-bottom: 0.65rem;
  color: #795a28;
  font-size: 0.78rem;
  line-height: 1.45;
}

.audience-proof-strip nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
}

.audience-proof-strip .text-link {
  width: max-content;
  min-height: 44px;
  color: #253034;
}

.private-path {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(2.5rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--line-light);
  scroll-margin-top: 2rem;
}

.private-path-heading h3 {
  max-width: 24ch;
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.private-path-heading > p:last-child {
  max-width: 44ch;
  margin: 1rem 0 0;
  color: #465155;
  font-size: 1rem;
  line-height: 1.62;
}

.private-path-details {
  margin: 0;
  padding-left: clamp(1.5rem, 3vw, 2.7rem);
  border-left: 1px solid rgba(184, 137, 67, 0.42);
}

.private-path-details > div {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1.2rem;
  padding-block: 1.25rem;
}

.private-path-details > div:first-child {
  padding-top: 0.1rem;
}

.private-path-details > div + div {
  border-top: 1px solid rgba(16, 22, 25, 0.12);
}

.private-path-details dd {
  margin: 0;
  color: #2f3a3e;
  font-size: 1rem;
  line-height: 1.62;
}

.audience-context-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.25rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(184, 137, 67, 0.42);
}

.audience-context-links p {
  width: 100%;
  margin: 0 0 0.25rem;
  color: #795a28;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.audience-context-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #253034;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(121, 90, 40, 0.52);
  text-underline-offset: 0.25em;
}

.audience-context-links a:focus-visible,
.audience-path-list a:focus-visible {
  outline-color: #6f4e1d;
}

.audience-page-cta {
  border-top: 1px solid rgba(223, 189, 116, 0.16);
}

/* Compact, audience-neutral training bridge on the homepage */
.training-bridge {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(5.25rem, 7.5vw, 7rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 18%, rgba(205, 168, 93, 0.12), transparent 29rem),
    linear-gradient(120deg, var(--ink-soft), var(--ink) 72%);
}

.training-bridge::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 27%, rgba(223, 189, 116, 0.055) 27% calc(27% + 1px), transparent calc(27% + 1px) 100%),
    linear-gradient(90deg, transparent 0 74%, rgba(223, 189, 116, 0.04) 74% calc(74% + 1px), transparent calc(74% + 1px) 100%);
  content: "";
  pointer-events: none;
}

.training-bridge-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}

.training-bridge .chapter-label {
  color: var(--brass-bright);
}

.training-bridge h2 {
  max-width: 620px;
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.75rem, 4vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.03;
}

.training-bridge-copy > p:first-child {
  max-width: 59ch;
  margin: 0;
  color: rgba(238, 235, 228, 0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.16rem);
  line-height: 1.68;
}

.training-bridge-range {
  margin: 1.65rem 0 0;
  color: var(--brass-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.65;
  text-transform: uppercase;
}

.training-bridge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.6rem;
  margin-top: 1.8rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(223, 189, 116, 0.28);
}

.training-bridge-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.35rem;
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(223, 189, 116, 0.52);
  text-underline-offset: 0.28em;
}

.training-bridge-links a span {
  color: var(--brass-bright);
  transition: transform 200ms ease;
}

.training-bridge-links a:hover span,
.training-bridge-links a:focus-visible span {
  transform: translate(3px, -3px);
}

.training-bridge-links a:focus-visible {
  outline-color: var(--brass-bright);
}

.private-learning .chapter-intro > p:not(.chapter-label) {
  grid-column: 2;
  margin: 0;
  color: #3f494d;
  font-size: 1.05rem;
  line-height: 1.68;
}

.private-path-nav {
  grid-column: 1 / -1;
}

.private-method .method-list {
  border-width: 1px 0;
  box-shadow: 0 0.8rem 2rem rgba(16, 22, 25, 0.06);
}

/* School offer: one institution, distinct learning paths */
.school-hero .page-hero-copy {
  max-width: 850px;
}

.school-pathways,
.school-topics {
  padding-block: clamp(6rem, 9vw, 8rem);
}

.school-pathways-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(4.5rem, 8vw, 8rem);
  align-items: start;
}

.school-pathways-intro {
  position: sticky;
  top: 4rem;
}

.school-pathways-intro h2,
.school-stance-intro h2,
.school-formats-intro h2 {
  max-width: 720px;
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.75rem, 4vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.school-pathways-intro > p:last-child,
.school-stance-intro > p:last-child,
.school-formats-intro > p:not(.chapter-label, .school-safety-note) {
  max-width: 48ch;
  margin: 1.5rem 0 0;
  color: #3f494d;
  font-size: 1.04rem;
  line-height: 1.68;
}

.school-path-nav,
.private-path-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.15rem;
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 137, 67, 0.42);
}

.school-path-nav a,
.private-path-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #354145;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(121, 90, 40, 0.52);
  text-underline-offset: 0.25em;
}

.school-path-nav a:focus-visible,
.private-path-nav a:focus-visible {
  outline-color: #6f4e1d;
}

.school-path-list,
.school-topic-list,
.school-stance-list,
.school-format-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.school-path-list {
  border-top: 1px solid rgba(184, 137, 67, 0.62);
}

.school-path {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(2.4rem, 4vw, 3.2rem);
  border-bottom: 1px solid var(--line-light);
  scroll-margin-top: 2rem;
}

.school-path-label {
  margin: 0;
  color: #795a28;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.school-path-heading h3 {
  margin: 0.7rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.5vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.school-path-heading > p:last-child {
  max-width: 42ch;
  margin: 1rem 0 0;
  color: #465155;
  font-size: 1rem;
  line-height: 1.62;
}

.school-learning-arc {
  margin: 0;
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(184, 137, 67, 0.42);
}

.school-learning-arc > div {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1rem;
}

.school-learning-arc > div:first-child {
  padding-top: 0.1rem;
}

.school-learning-arc > div + div {
  border-top: 1px solid rgba(16, 22, 25, 0.12);
}

.school-learning-arc dt {
  color: #795a28;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.school-learning-arc dd {
  margin: 0;
  color: #2f3a3e;
  font-size: 1rem;
  line-height: 1.6;
}

.school-stance {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5.8rem, 8vw, 7.5rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 76% 30%, rgba(205, 168, 93, 0.11), transparent 28rem),
    linear-gradient(118deg, #090f12, #10191d 58%, #141512);
}

.school-stance-grid,
.school-formats-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}

.school-stance .chapter-label,
.school-formats .chapter-label,
.school-page-cta .chapter-label {
  color: var(--brass-bright);
}

.school-stance-intro > p:last-child,
.school-formats-intro > p:not(.chapter-label, .school-safety-note) {
  color: rgba(238, 235, 228, 0.74);
}

.school-stance-list,
.school-format-list {
  border-top: 1px solid rgba(223, 189, 116, 0.42);
}

.school-stance-list li {
  position: relative;
  padding: 1.5rem 0 1.5rem 2.7rem;
  border-bottom: 1px solid rgba(223, 189, 116, 0.18);
}

.school-stance-list li::before {
  position: absolute;
  top: 2.2rem;
  left: 0.2rem;
  width: 0.62rem;
  height: 0.62rem;
  border: 1px solid var(--brass-bright);
  content: "";
  transform: rotate(45deg);
}

.school-stance-list h3,
.school-format-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.16;
}

.school-stance-list p,
.school-format-list p {
  max-width: 58ch;
  margin: 0.6rem 0 0;
  color: rgba(238, 235, 228, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.school-topic-list {
  border-top: 1px solid rgba(184, 137, 67, 0.62);
}

.school-topic-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding: 2rem 0 2rem 2.35rem;
  border-bottom: 1px solid var(--line-light);
}

.school-topic-row::before {
  position: absolute;
  top: 50%;
  left: 0.2rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid #9b7537;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.school-topic-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.14;
}

.school-topic-row p {
  max-width: 62ch;
  margin: 0;
  color: #354145;
  font-size: 1.02rem;
  line-height: 1.65;
}

.school-formats {
  padding-block: clamp(5.8rem, 8vw, 7.2rem) clamp(4rem, 6vw, 5.5rem);
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 26%, rgba(72, 88, 94, 0.18), transparent 25rem),
    var(--ink);
}

.school-safety-note {
  max-width: 48ch;
  margin: 2rem 0 0;
  padding-left: 1.2rem;
  color: rgba(238, 235, 228, 0.82);
  border-left: 1px solid rgba(223, 189, 116, 0.72);
  font-size: 0.94rem;
  line-height: 1.65;
}

.school-format-list li {
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  padding-block: 1.65rem;
  border-bottom: 1px solid rgba(223, 189, 116, 0.18);
}

.school-format-list p {
  margin-top: 0;
}

.school-page-cta {
  padding-top: 0;
}

.school-page-cta .page-cta-grid {
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  border-top: 1px solid rgba(223, 189, 116, 0.32);
}

@media (max-width: 1050px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    gap: 4rem;
  }

  .course-module {
    grid-template-columns: 80px minmax(220px, 0.78fr) minmax(0, 1.22fr);
    gap: 2rem;
  }

  .course-symbol {
    width: 80px;
  }

  .method-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(400px, 1.22fr);
    gap: 4rem;
  }

  .profile-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 2.75rem;
  }

  .profile-hero-copy h1 {
    font-size: clamp(3.2rem, 5.4vw, 4.25rem);
  }

  .profile-journey-grid {
    grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
    gap: 4rem;
  }

  .audience-path-list a {
    grid-template-columns: minmax(105px, 0.28fr) minmax(0, 1fr) 1.5rem;
    gap: 2rem;
  }

  .private-path {
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
    gap: 3rem;
  }

  .school-pathways-grid {
    grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
    gap: 4rem;
  }

  .school-path {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .school-learning-arc {
    padding-left: 0;
    border-left: 0;
  }
}

@media (min-width: 921px) and (max-width: 1050px) {
  .primary-nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .primary-nav > a:not(.nav-cta) {
    max-width: 145px;
  }

  .primary-nav .nav-cta {
    max-width: 215px;
    padding-inline: 10px;
  }
}

@media (max-width: 920px) {
  .site-header {
    height: 94px;
  }

  .brand-mark {
    width: 66px;
    height: 66px;
  }

  .brand-mark img {
    width: 62px;
    height: 56px;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--limestone);
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
  }

  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .nav-toggle-lines,
  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    display: block;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-toggle-lines::before,
  .nav-toggle-lines::after {
    content: "";
  }

  .nav-toggle-lines::before { transform: translateY(-8px); }
  .nav-toggle-lines::after { transform: translateY(7px); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { transform: translateY(-1px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 7rem max(2rem, 8vw);
    visibility: hidden;
    color: var(--limestone);
    background: rgba(8, 13, 16, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: visibility 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a:not(.nav-cta) {
    max-width: none;
    font-family: var(--display);
    font-size: clamp(2rem, 9vw, 3.2rem);
    text-align: left;
  }

  .primary-nav .nav-cta {
    margin-top: 1.5rem;
    font-size: 0.95rem;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 820px) {
  .page-hero {
    min-height: 0;
    padding-block: 3.5rem 5rem;
  }

  .page-hero-grid,
  .method-grid,
  .page-cta-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-grid,
  .method-grid,
  .page-cta-grid {
    gap: 3.25rem;
  }

  .training-bridge-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .training-bridge-copy > p:first-child {
    max-width: 64ch;
  }

  .private-learning .chapter-intro > p:not(.chapter-label) {
    grid-column: 1;
    margin-top: 1.4rem;
  }

  .private-path-nav {
    grid-column: 1;
  }

  .page-hero-copy h1 {
    font-size: clamp(3rem, 10vw, 4.4rem);
  }

  .page-hero-aside {
    max-width: 640px;
    padding: 1.4rem 0 0;
    border-left: 0;
  }

  .curriculum {
    padding-block: 5rem;
  }

  .course-module {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 1.1rem 1.4rem;
  }

  .course-symbol {
    width: 72px;
  }

  .course-summary,
  .course-outcomes {
    grid-column: 2;
  }

  .course-outcomes {
    margin-top: 0.5rem;
    padding: 1.25rem 0 0;
    border-top: 1px solid rgba(184, 137, 67, 0.36);
    border-left: 0;
  }

  .method-list {
    max-width: 680px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar > p:not(.chapter-label) {
    max-width: 58ch;
  }

  .legal-article {
    max-width: none;
  }

  .profile-hero {
    min-height: 0;
  }

  .profile-hero-grid,
  .profile-journey-grid {
    grid-template-columns: 1fr;
  }

  .profile-hero-grid {
    min-height: 0;
    gap: 1rem;
    padding-bottom: 4rem;
  }

  .profile-hero-copy {
    padding-block: 4rem 2.5rem;
  }

  .profile-portrait {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .profile-portrait-frame {
    height: 590px;
  }

  .profile-portrait.profile-portrait-editorial {
    width: min(100%, 480px);
  }

  .profile-portrait.profile-portrait-editorial .profile-portrait-frame {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .profile-principles,
  .profile-focus-grid {
    grid-template-columns: 1fr;
  }

  .profile-principles {
    gap: 2.5rem;
  }

  .profile-principles h3,
  .profile-principles p {
    max-width: 52ch;
  }

  .profile-journey-intro {
    position: static;
  }

  .school-pathways-grid,
  .school-stance-grid,
  .school-formats-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .school-pathways-intro {
    position: static;
    max-width: 680px;
  }

  .school-path {
    max-width: 760px;
  }

  .school-stance-intro,
  .school-formats-intro {
    max-width: 680px;
  }

  .school-topic-row {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    gap: 2.5rem;
  }

  .audience-proof-strip {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .private-path {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .private-path-details {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .page-hero {
    padding-block: 2.8rem 4.25rem;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 3.7rem);
  }

  .course-module {
    grid-template-columns: 64px minmax(0, 1fr);
    padding-block: 2.2rem;
  }

  .course-symbol {
    width: 64px;
  }

  .course-summary h3 {
    font-size: 1.8rem;
  }

  .method-list::before {
    left: 1.45rem;
  }

  .method-list li {
    padding: 1.4rem 1.1rem 1.4rem 3.1rem;
  }

  .method-list li::before {
    top: 1.85rem;
    left: 1.16rem;
    width: 0.58rem;
    height: 0.58rem;
  }

  .method-list h3 {
    font-size: 1.55rem;
  }

  .training-method,
  .page-cta {
    padding-block: 4.5rem;
  }

  .method-intro h2,
  .page-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .page-cta-action .button {
    width: 100%;
  }

  .legal-hero {
    padding-block: 3rem 4rem;
  }

  .legal-hero h1 {
    font-size: 3rem;
  }

  .legal-content {
    padding-block: 4rem;
  }

  .legal-draft-notice,
  .legal-placeholder-block {
    padding: 1.1rem;
  }

  .profile-hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 3.65rem);
  }

  .profile-portrait-frame {
    height: 480px;
  }

  .profile-portrait img {
    width: min(100%, 390px);
  }

  .profile-portrait.profile-portrait-editorial {
    width: min(100%, 360px);
  }

  .profile-portrait.profile-portrait-editorial img {
    width: 100%;
  }

  .profile-portrait figcaption {
    flex-direction: column;
    gap: 0.35rem;
  }

  .profile-foundation,
  .profile-journey,
  .profile-focus {
    padding-block: 4.75rem;
  }

  .profile-facts,
  .profile-credentials {
    grid-template-columns: 1fr;
  }

  .profile-facts > div + div,
  .profile-credentials > div + div {
    border-left: 0;
  }

  .profile-facts > div + div {
    border-top: 1px solid rgba(223, 189, 116, 0.24);
  }

  .profile-credentials > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .profile-timeline li {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-block: 1.6rem;
  }

  .profile-time {
    padding-top: 0;
  }

  .profile-timeline .timeline-ai h3 {
    font-size: 1.75rem;
  }

  .school-pathways,
  .school-topics,
  .school-stance,
  .school-formats {
    padding-block: 4.5rem;
  }

  .school-pathways-intro h2,
  .school-stance-intro h2,
  .school-formats-intro h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .school-path {
    padding-block: 2.25rem;
  }

  .school-learning-arc > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .school-topic-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1.7rem 0 1.7rem 2rem;
  }

  .school-topic-row::before {
    top: 2.28rem;
    transform: rotate(45deg);
  }

  .school-format-list li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .school-page-cta {
    padding-top: 0;
  }

  .audience-entry,
  .private-learning {
    padding-block: 4.5rem;
  }

  .audience-path-list a {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    min-height: 0;
    padding: 1.8rem 2.25rem 1.8rem 0;
  }

  .audience-path-list a:hover,
  .audience-path-list a:focus-visible {
    padding-inline: 0.75rem 2.25rem;
  }

  .audience-path-arrow {
    position: absolute;
    top: 2rem;
    right: 0.35rem;
  }

  .audience-path-copy strong {
    font-size: 1.8rem;
  }

  .private-path {
    padding-block: 2.3rem;
  }

  .private-path-heading h3 {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .private-path-details > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .training-bridge {
    padding-block: 4.6rem;
  }

  .training-bridge h2 {
    font-size: clamp(2.5rem, 11.5vw, 3.15rem);
  }

  .training-bridge-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .private-method .method-list {
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .course-module {
    gap: 1rem 1.1rem;
  }

  .course-outcomes {
    grid-column: 1 / -1;
    margin-top: 1rem;
  }
}

@media (max-width: 360px) {
  .profile-current-role {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .profile-current-role a {
    margin-top: 0.1rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
