:root {
  color-scheme: dark;
  --font-heading: "The Seasons", "The Seasons Regular", "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Akzidenz Grotesk Next", "Akzidenz-Grotesk Next", "Helvetica Neue", Arial, sans-serif;
  --black: #141414;
  --ink: #141414;
  --charcoal: #1a1a1a;
  --panel: #1a1a1a;
  --panel-soft: #272727;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --white: #fff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-55: rgba(255, 255, 255, 0.55);
  --gold: #c2a15b;
  --header-bg: #141414;
  --header-bg-strong: #141414;
  --menu-bg: #141414;
  --search-bg: rgba(20, 20, 20, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --surface-raised: rgba(255, 255, 255, 0.06);
  --button-bg: rgba(39, 39, 39, 0.82);
  --button-primary-bg: rgba(255, 255, 255, 0.9);
  --button-hover-bg: #beaa75;
  --button-hover-color: #141414;
  --dot-bg: rgba(255, 255, 255, 0.42);
  --newsletter-border: rgba(255, 255, 255, 0.58);
  --newsletter-placeholder: rgba(255, 255, 255, 0.6);
  --hero-text: #fff;
  --hero-muted: rgba(255, 255, 255, 0.76);
  --hero-soft: rgba(255, 255, 255, 0.88);
  --toggle-bg: rgba(255, 255, 255, 0.08);
  --toggle-knob: #fff;
  --toggle-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  --placeholder-filter: none;
  --header-height: 88px;
  --outer: clamp(22px, 5.4vw, 86px);
  --font-size-nav: 14px;
  --font-size-mobile-nav: clamp(19px, 5vw, 22px);
  --font-size-kicker: 15px;
  --font-size-hero-title: clamp(32px, 4.6vw, 68px);
  --font-size-section-title: clamp(28px, 3.6vw, 54px);
  --font-size-card-title: clamp(20px, 2vw, 30px);
  --font-size-body-copy: clamp(15px, 1.05vw, 17px);
  --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
  --fast: 180ms var(--ease);
  --slow: 900ms var(--ease);
}

html[data-theme="light"] {
  color-scheme: light;
  --black: #fff;
  --ink: #fff;
  --charcoal: #f4f4f4;
  --panel: #f7f7f7;
  --panel-soft: #e8e8e8;
  --line: rgba(7, 7, 7, 0.14);
  --line-strong: rgba(7, 7, 7, 0.28);
  --white: #060606;
  --white-70: rgba(6, 6, 6, 0.72);
  --white-55: rgba(6, 6, 6, 0.56);
  --gold: #9f7d35;
  --header-bg: rgba(255, 255, 255, 0.58);
  --header-bg-strong: rgba(255, 255, 255, 0.72);
  --menu-bg: rgba(255, 255, 255, 0.97);
  --search-bg: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(7, 7, 7, 0.055);
  --surface-raised: rgba(7, 7, 7, 0.07);
  --button-bg: rgba(7, 7, 7, 0.11);
  --button-primary-bg: rgba(7, 7, 7, 0.92);
  --button-hover-bg: #beaa75;
  --button-hover-color: #141414;
  --dot-bg: rgba(7, 7, 7, 0.28);
  --newsletter-border: rgba(7, 7, 7, 0.44);
  --newsletter-placeholder: rgba(7, 7, 7, 0.55);
  --toggle-bg: rgba(7, 7, 7, 0.08);
  --toggle-knob: #060606;
  --toggle-shadow: 0 6px 16px rgba(7, 7, 7, 0.18);
  --placeholder-filter: saturate(0.82) brightness(1.1) contrast(0.92);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 40px);
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: background var(--fast), color var(--fast);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-kicker,
.section-label,
.footer-statement-copy,
.footer-companies p,
.search-form label {
  font-family: var(--font-heading);
}

p,
a,
button,
input,
textarea,
select,
label,
address,
small,
span,
li {
  font-family: inherit;
}

body.no-scroll {
  overflow: hidden;
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }

  .site-cursor-layer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
  }

  .site-cursor,
  .site-cursor-trail {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 999px;
    opacity: 0;
    transform: translate3d(-40px, -40px, 0) translate(-50%, -50%);
    will-change: transform, opacity;
  }

  .site-cursor {
    width: 10px;
    height: 10px;
    background: var(--button-hover-bg);
    box-shadow: 0 0 16px rgba(190, 170, 117, 0.28);
    transition:
      width var(--fast),
      height var(--fast),
      border-color var(--fast),
      background var(--fast),
      box-shadow var(--fast),
      opacity 140ms ease;
  }

  .site-cursor-trail {
    width: 22px;
    height: 22px;
    background: radial-gradient(
      circle,
      rgba(190, 170, 117, 0.22) 0 18%,
      rgba(190, 170, 117, 0.08) 38%,
      rgba(190, 170, 117, 0) 72%
    );
    filter: blur(2px);
    transform: translate3d(-40px, -40px, 0) translate(-50%, -50%) scale(var(--cursor-trail-scale, 1));
    transition: opacity 180ms ease;
  }

  html.custom-cursor-visible .site-cursor {
    opacity: 0.98;
  }

  html.custom-cursor-visible .site-cursor-trail {
    opacity: var(--cursor-trail-opacity, 0.08);
  }

  html.custom-cursor-interactive .site-cursor {
    width: 18px;
    height: 18px;
    border: 1px solid var(--button-hover-bg);
    background: rgba(190, 170, 117, 0.08);
    box-shadow: 0 0 22px rgba(190, 170, 117, 0.32);
  }
}

::selection {
  background: var(--white);
  color: var(--black);
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--outer);
  background: var(--header-bg);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  transition: background var(--fast), border-color var(--fast), box-shadow var(--fast);
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: var(--header-bg-strong);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 152px;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(62px, 5.8vw, 72px);
  max-width: min(220px, 20vw);
  object-fit: contain;
}

.brand-logo-light {
  display: none;
}

html[data-theme="light"] .brand-logo-dark {
  display: none;
}

html[data-theme="light"] .brand-logo-light {
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(18px, 2.15vw, 34px);
  color: var(--white);
  font-size: var(--font-size-nav);
  line-height: 1;
}

.desktop-nav a,
.text-link,
.site-footer a {
  transition: opacity var(--fast), color var(--fast);
}

.desktop-nav:hover a {
  opacity: 0.48;
}

.desktop-nav a:hover,
.site-footer a:hover {
  opacity: 1;
  color: var(--button-hover-bg);
}

.mobile-menu a:hover {
  color: var(--button-hover-bg);
}

.desktop-nav a.is-active,
.mobile-menu a.is-active {
  opacity: 1;
  color: var(--white);
}

.desktop-nav a.is-active,
.mobile-menu a.is-active {
  color: var(--white);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  transition: background var(--fast), color var(--fast), transform var(--fast);
}

.icon-button:hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
  transform: translateY(-1px);
}

.search-toggle:hover {
  background: transparent;
  color: inherit;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.icon-button svg,
.rail-button svg,
.serve-accordion svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: 10px;
  border-radius: 999px;
  place-items: center;
  transition: background var(--fast), color var(--fast), transform var(--fast);
}

.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--toggle-bg);
  color: var(--white-55);
  transition: background var(--fast), border-color var(--fast), color var(--fast), transform var(--fast);
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  background: var(--toggle-bg);
  color: var(--white-55);
  transform: translateY(-1px);
}

.theme-toggle-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
}

.theme-toggle-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
}

.theme-toggle-sun::before {
  content: "\2600";
}

.theme-toggle-moon::before {
  content: "\263E";
}

.theme-toggle-knob {
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--toggle-knob);
  box-shadow: var(--toggle-shadow);
  transform: translateX(24px);
  transition: transform var(--fast), background var(--fast);
}

.theme-toggle-moon {
  color: var(--black);
}

html[data-theme="light"] .theme-toggle-knob {
  transform: translateX(0);
}

html[data-theme="light"] .theme-toggle-sun {
  color: var(--black);
}

html[data-theme="light"] .theme-toggle-moon {
  color: var(--white-55);
}

.menu-button span {
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--fast), opacity var(--fast), background var(--fast);
}

.menu-button:hover {
  background: transparent;
  color: inherit;
  transform: translateY(-1px);
}

.menu-button:focus-visible,
.menu-button[aria-expanded="true"] {
  background: transparent;
  color: inherit;
}

.menu-button span + span {
  margin-top: -16px;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 40;
  inset: var(--header-height) 0 auto 0;
  display: none;
  padding: 26px var(--outer) 34px;
  border-bottom: 1px solid var(--line);
  background: var(--menu-bg);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fast), transform var(--fast);
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
  font-size: var(--font-size-mobile-nav);
}

.search-panel {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: 110px var(--outer);
  background: var(--search-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fast);
}

.search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

.search-form {
  display: grid;
  width: min(760px, 100%);
  gap: 20px;
}

.search-form label {
  color: var(--white-55);
  font-size: 14px;
}

.search-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: clamp(30px, 6vw, 72px);
  font-weight: 300;
}

.search-results {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-results:empty {
  display: none;
}

.search-results a,
.search-results p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 16px;
  background: var(--surface-raised);
}

.search-results a {
  transition: background var(--fast), color var(--fast);
}

.search-results a:hover {
  background: var(--white);
  color: var(--black);
}

.search-results small {
  color: currentColor;
  opacity: 0.55;
}

.close-search {
  justify-self: start;
}

.hero {
  padding: calc(var(--header-height) + 4px) var(--outer) 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  min-height: min(760px, calc(100svh - 120px));
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
}

.hero.is-intro-active .hero-carousel {
  background: transparent;
}

.hero.is-intro-active .hero-dots {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.hero-intro-slide {
  background: transparent;
  color: var(--white);
}

.hero-intro-slide .hero-copy {
  width: min(1120px, calc(100% - 44px));
  color: var(--white);
}

.hero-intro-slide h1 {
  max-width: 980px;
}

.hero-carousel::after {
  position: absolute;
  z-index: 5;
  top: 14%;
  bottom: 14%;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--button-hover-bg) 22%, #fff 50%, var(--button-hover-bg) 78%, transparent);
  box-shadow: 0 0 28px rgba(190, 170, 117, 0.42);
  content: "";
  opacity: 0;
  transform: translateX(-24px);
  pointer-events: none;
}

.hero-carousel.is-transitioning::after {
  animation: hero-cursor-sweep 980ms var(--ease) both;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 100%;
  opacity: 0;
  filter: none;
  transform: translate3d(100%, 0, 0);
  transition: transform 900ms var(--ease), opacity 900ms var(--ease);
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-slide.active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  pointer-events: auto;
}

.hero-slide.is-exiting {
  z-index: 1;
  opacity: 0;
  filter: none;
  transform: translate3d(-100%, 0, 0);
}

.hero-slide.active .hero-placeholder {
  animation: none;
}

.hero-slide.active .hero-copy {
  animation: none;
}

.placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #222, #090909 58%, #171717);
  filter: var(--placeholder-filter);
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    var(--scene-lines, linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px)),
    var(--scene-shapes, linear-gradient(135deg, transparent, transparent));
  background-size: var(--scene-size, 82px 82px, auto);
  opacity: 0.95;
}

.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    var(--scene-subject, linear-gradient(135deg, transparent, transparent)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.44)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 42%, rgba(0, 0, 0, 0.22));
}

.placeholder span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 8px;
}

.pattern-merchant {
  --scene-lines:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, transparent 0 58%, rgba(255, 255, 255, 0.06) 58% 59%, transparent 59%);
  --scene-size: auto, auto;
  --scene-shapes:
    linear-gradient(112deg, rgba(255, 255, 255, 0.12) 0 32%, transparent 32% 100%),
    radial-gradient(ellipse at 50% 71%, rgba(255, 255, 255, 0.16), transparent 28%);
  --scene-subject:
    radial-gradient(ellipse at 44% 74%, rgba(0, 0, 0, 0.88) 0 18%, transparent 19%),
    radial-gradient(ellipse at 36% 66%, rgba(0, 0, 0, 0.86) 0 7%, transparent 8%),
    radial-gradient(ellipse at 55% 66%, rgba(0, 0, 0, 0.86) 0 7%, transparent 8%),
    linear-gradient(180deg, transparent 0 63%, rgba(0, 0, 0, 0.72) 64% 100%);
  background:
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.14), transparent 20%),
    linear-gradient(135deg, #252525, #080808 60%, #171717);
}

.pattern-venture {
  --scene-lines:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
  --scene-size: auto, auto;
  --scene-shapes:
    radial-gradient(circle at 24% 42%, rgba(255, 255, 255, 0.16) 0 1.6%, transparent 1.8%),
    radial-gradient(circle at 44% 31%, rgba(194, 161, 91, 0.3) 0 1.4%, transparent 1.6%),
    radial-gradient(circle at 68% 48%, rgba(255, 255, 255, 0.16) 0 1.5%, transparent 1.7%),
    linear-gradient(145deg, transparent 0 48%, rgba(194, 161, 91, 0.22) 49% 50%, transparent 51%);
  --scene-subject:
    radial-gradient(ellipse at 35% 68%, rgba(0, 0, 0, 0.82) 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 62% 70%, rgba(0, 0, 0, 0.84) 0 8%, transparent 8.5%),
    linear-gradient(90deg, transparent 0 22%, rgba(0, 0, 0, 0.78) 22% 30%, transparent 30% 56%, rgba(0, 0, 0, 0.78) 56% 66%, transparent 66%),
    linear-gradient(180deg, transparent 0 72%, rgba(0, 0, 0, 0.74) 72% 100%);
  background:
    radial-gradient(circle at 70% 34%, rgba(194, 161, 91, 0.28), transparent 22%),
    linear-gradient(135deg, #2a2a2a, #080808 62%, #181818);
}

.pattern-capital {
  --scene-lines:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 52px);
  --scene-size: auto, auto;
  --scene-shapes:
    linear-gradient(180deg, transparent 0 54%, rgba(255, 255, 255, 0.16) 54% 55%, transparent 55%),
    linear-gradient(90deg, transparent 0 18%, rgba(194, 161, 91, 0.2) 18% 21%, transparent 21% 36%, rgba(255, 255, 255, 0.12) 36% 39%, transparent 39% 57%, rgba(255, 255, 255, 0.1) 57% 61%, transparent 61% 78%, rgba(194, 161, 91, 0.17) 78% 82%, transparent 82%);
  --scene-subject:
    linear-gradient(180deg, transparent 0 63%, rgba(0, 0, 0, 0.78) 63% 100%),
    radial-gradient(ellipse at 49% 66%, rgba(255, 255, 255, 0.1), transparent 25%);
  background:
    radial-gradient(circle at 64% 30%, rgba(255, 255, 255, 0.13), transparent 20%),
    linear-gradient(135deg, #242424, #050505 58%, #171717);
}

.pattern-trade {
  --scene-lines:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 88px),
    linear-gradient(180deg, transparent 0 56%, rgba(255, 255, 255, 0.1) 56% 57%, transparent 57%);
  --scene-size: auto, auto;
  --scene-shapes:
    linear-gradient(26deg, transparent 0 48%, rgba(255, 255, 255, 0.14) 49% 50%, transparent 51%),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(194, 161, 91, 0.12) 58px 60px, transparent 60px 118px);
  --scene-subject:
    linear-gradient(90deg, transparent 0 10%, rgba(0, 0, 0, 0.8) 10% 21%, transparent 21% 25%, rgba(0, 0, 0, 0.82) 25% 38%, transparent 38% 44%, rgba(0, 0, 0, 0.8) 44% 58%, transparent 58% 64%, rgba(0, 0, 0, 0.8) 64% 77%, transparent 77%),
    linear-gradient(180deg, transparent 0 61%, rgba(0, 0, 0, 0.82) 61% 100%);
  background:
    radial-gradient(circle at 75% 28%, rgba(194, 161, 91, 0.18), transparent 19%),
    linear-gradient(135deg, #1c1c1c, #060606 58%, #262626);
}

.pattern-boardroom {
  --scene-lines:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.085) 0 2px, transparent 2px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.038) 0 1px, transparent 1px 44px);
  --scene-size: auto, auto;
  --scene-shapes:
    linear-gradient(104deg, rgba(255, 255, 255, 0.13) 0 31%, transparent 31%),
    radial-gradient(ellipse at 50% 72%, rgba(255, 255, 255, 0.16), transparent 24%);
  --scene-subject:
    radial-gradient(ellipse at 24% 71%, rgba(0, 0, 0, 0.86) 0 8%, transparent 8.5%),
    radial-gradient(ellipse at 38% 68%, rgba(0, 0, 0, 0.84) 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 61% 68%, rgba(0, 0, 0, 0.84) 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 77% 71%, rgba(0, 0, 0, 0.86) 0 8%, transparent 8.5%),
    linear-gradient(180deg, transparent 0 66%, rgba(0, 0, 0, 0.82) 66% 100%);
  background:
    radial-gradient(circle at 63% 28%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #2c2c2c, #070707 58%, #161616);
}

.pattern-advisory {
  --scene-lines:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 84px);
  --scene-size: auto, auto;
  --scene-shapes:
    radial-gradient(circle at 30% 44%, rgba(255, 255, 255, 0.14) 0 1.4%, transparent 1.6%),
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.12) 0 1.3%, transparent 1.5%),
    radial-gradient(circle at 70% 49%, rgba(194, 161, 91, 0.24) 0 1.5%, transparent 1.7%),
    linear-gradient(122deg, transparent 0 42%, rgba(255, 255, 255, 0.12) 43% 44%, transparent 45%);
  --scene-subject:
    linear-gradient(180deg, transparent 0 68%, rgba(0, 0, 0, 0.78) 68% 100%),
    radial-gradient(ellipse at 54% 70%, rgba(0, 0, 0, 0.82) 0 12%, transparent 12.8%);
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.13), transparent 21%),
    linear-gradient(135deg, #242424, #070707 58%, #1b1b1b);
}

.pattern-creative {
  --scene-lines:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 62px);
  --scene-size: auto, auto;
  --scene-shapes:
    linear-gradient(140deg, transparent 0 28%, rgba(255, 255, 255, 0.13) 28% 30%, transparent 30% 100%),
    linear-gradient(52deg, transparent 0 62%, rgba(194, 161, 91, 0.2) 62% 64%, transparent 64%),
    radial-gradient(circle at 67% 36%, rgba(255, 255, 255, 0.14), transparent 16%);
  --scene-subject:
    linear-gradient(90deg, transparent 0 18%, rgba(0, 0, 0, 0.78) 18% 32%, transparent 32% 40%, rgba(0, 0, 0, 0.76) 40% 58%, transparent 58% 66%, rgba(0, 0, 0, 0.78) 66% 82%, transparent 82%),
    linear-gradient(180deg, transparent 0 66%, rgba(0, 0, 0, 0.8) 66% 100%);
  background:
    radial-gradient(circle at 72% 31%, rgba(194, 161, 91, 0.18), transparent 20%),
    linear-gradient(135deg, #262626, #080808 58%, #171717);
}

.pattern-impact {
  --scene-lines:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 62px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 88px);
  --scene-size: auto, auto;
  --scene-shapes:
    radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.14), transparent 12%),
    radial-gradient(circle at 62% 38%, rgba(194, 161, 91, 0.2), transparent 14%),
    linear-gradient(180deg, transparent 0 56%, rgba(255, 255, 255, 0.08) 56% 57%, transparent 57%);
  --scene-subject:
    radial-gradient(ellipse at 28% 70%, rgba(0, 0, 0, 0.8) 0 6%, transparent 6.5%),
    radial-gradient(ellipse at 48% 68%, rgba(0, 0, 0, 0.82) 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 67% 70%, rgba(0, 0, 0, 0.8) 0 6%, transparent 6.5%),
    linear-gradient(180deg, transparent 0 70%, rgba(0, 0, 0, 0.78) 70% 100%);
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 255, 255, 0.12), transparent 19%),
    linear-gradient(135deg, #282828, #070707 56%, #1c1c1c);
}

.pattern-podcast,
.pattern-summit,
.pattern-research {
  --scene-lines:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 56px);
  --scene-size: auto, auto;
  --scene-shapes:
    linear-gradient(150deg, transparent 0 52%, rgba(255, 255, 255, 0.14) 53% 54%, transparent 55%),
    radial-gradient(circle at 64% 36%, rgba(194, 161, 91, 0.16), transparent 18%);
  --scene-subject:
    radial-gradient(ellipse at 50% 61%, rgba(0, 0, 0, 0.86) 0 11%, transparent 11.8%),
    linear-gradient(90deg, transparent 0 35%, rgba(0, 0, 0, 0.78) 35% 41%, transparent 41% 59%, rgba(0, 0, 0, 0.78) 59% 65%, transparent 65%),
    linear-gradient(180deg, transparent 0 70%, rgba(0, 0, 0, 0.78) 70% 100%);
  background:
    radial-gradient(circle at 70% 32%, rgba(255, 255, 255, 0.13), transparent 20%),
    linear-gradient(135deg, #252525, #080808 60%, #171717);
}

.pattern-merchant,
.pattern-boardroom,
.pattern-venture,
.pattern-capital,
.pattern-trade,
.pattern-advisory,
.pattern-creative,
.pattern-impact,
.pattern-podcast,
.pattern-summit,
.pattern-research {
  --scene-lines: linear-gradient(transparent, transparent);
  --scene-shapes: linear-gradient(transparent, transparent);
  --scene-subject: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38));
  background-position: center;
  background-size: cover;
}

.pattern-merchant,
.pattern-boardroom {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.44)),
    url("assets/placeholders/merchant-boardroom.svg");
}

.pattern-venture {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42)),
    url("assets/placeholders/venture-studio.svg");
}

.pattern-capital {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.42)),
    url("assets/placeholders/capital-market.svg");
}

.pattern-trade {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.42)),
    url("assets/placeholders/trade-logistics.svg");
}

.pattern-advisory {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42)),
    url("assets/placeholders/advisory-map.svg");
}

.pattern-creative {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.4)),
    url("assets/placeholders/creative-studio.svg");
}

.pattern-impact {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.4)),
    url("assets/placeholders/impact-field.svg");
}

.pattern-podcast,
.pattern-summit,
.pattern-research {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.4)),
    url("assets/placeholders/insights-stage.svg");
}

.hero-image-1 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    url("assets/hero/home-slide-1.avif");
}

.hero-image-2 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    url("assets/hero/home-slide-2.avif");
}

.hero-image-3 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    url("assets/hero/connecting-global-capital.png");
}

.hero-image-4 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58)),
    url("assets/hero/home-slide-4.avif");
}

.home-story-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    url("assets/home/read-icrd-story.png");
}

.home-venture-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    url("assets/home/venture-building-v2.avif");
}

.home-capital-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    url("assets/home/capital-raising-v2.avif");
}

.home-trade-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    url("assets/home/trade-commodities.avif");
}

.insight-podcast-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38)),
    url("assets/insights/modern-merchant-podcast-20260520.avif");
}

.insight-summit-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38)),
    url("assets/insights/africa-investment-summit-20260522.png");
}

.insight-research-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.38)),
    url("assets/insights/research-publications.avif");
}

.think-final-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48)),
    url("assets/insights/bring-icrd-room.avif");
}

.home-final-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)),
    url("assets/home/africas-century-v2.avif");
}

.focus-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    url("assets/page-headers/what-we-do-hero.avif");
}

.serve-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    url("assets/page-headers/who-we-serve-hero.avif");
}

.think-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    url("assets/page-headers/think-do-hero.avif");
}

.contact-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    url("assets/page-headers/contact-hero.avif");
}

.careers-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72)),
    url("assets/join/careers-hero-custom.avif");
}

.internship-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72)),
    url("assets/join/internship-hero-custom.avif");
  background-position: center top;
}

.fellowship-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.74)),
    url("assets/join/fellowship-hero-custom.avif");
}

.venture-studio-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72)),
    url("assets/join/venture-studio-hero-custom.avif");
}

.alumni-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.74)),
    url("assets/join/alumni-hero-custom.avif");
}

.partners-hero-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.72)),
    url("assets/join/ecosystem-hero-custom.avif");
}

.serve-fit-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    url("assets/serve/know-where-you-fit-tractor.png");
}

.focus-advisory-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    url("assets/focus/advisory-services.avif");
}

.focus-creative-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    url("assets/focus/creative-agency.avif");
}

.focus-philanthropy-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    url("assets/focus/philanthropy-social-investment.avif");
}

.focus-platform-path-image {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    url("assets/focus/platform-path.avif");
}

body[data-page="careers"] .final-placeholder {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    url("assets/join/careers-bottom-20260526.avif");
  background-position: center;
}

body[data-page="internship"] .final-placeholder {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    url("assets/join/internship-bottom-20260526.avif");
  background-position: center;
}

body[data-page="fellowship"] .final-placeholder {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58)),
    url("assets/join/fellowship-bottom-custom.avif");
}

body[data-page="venture-studio"] .studio-build-room .placeholder {
  background-image: url("assets/join/venture-studio-collaboration.avif");
}

body[data-page="venture-studio"] .studio-build-room .placeholder::before,
body[data-page="venture-studio"] .studio-build-room .placeholder::after {
  content: none;
}

body[data-page="venture-studio"] .final-placeholder {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    url("assets/join/venture-studio-bottom-custom.avif");
}

body[data-page="alumni-network"] .final-placeholder {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    url("assets/join/alumni-bottom-custom.avif");
}

body[data-page="ecosystem-partners"] .final-placeholder {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    url("assets/join/ecosystem-bottom-custom.avif");
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(980px, calc(100% - 44px));
  color: var(--hero-text);
  text-align: center;
  text-wrap: balance;
}

.hero-kicker {
  margin: 0 0 12px;
  color: var(--hero-muted);
  font-size: var(--font-size-kicker);
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin: 0;
  font-size: var(--font-size-hero-title);
  font-weight: 400;
  line-height: 1.08;
}

.hero h2 {
  font-size: var(--font-size-hero-title);
}

.typing-heading {
  display: inline-grid;
  align-items: start;
}

.typing-measure,
.typing-render {
  grid-area: 1 / 1;
}

.typing-measure {
  visibility: hidden;
}

.typing-render {
  display: inline;
}

.typing-cursor {
  display: inline-block;
  width: 0.085em;
  height: 0.92em;
  margin-left: 0.09em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--white), var(--button-hover-bg));
  box-shadow: 0 0 18px rgba(190, 170, 117, 0.46);
  transform: translateY(0.1em);
  animation: typing-cursor-blink 860ms steps(1, end) infinite;
}

@keyframes typing-cursor-blink {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0.24;
  }
}

@keyframes hero-cursor-sweep {
  0% {
    opacity: 0;
    transform: translateX(-24px);
  }

  12%,
  74% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(100vw);
  }
}

@keyframes hero-media-reveal {
  0% {
    clip-path: inset(0 0 0 100%);
    transform: scale(1.045);
  }

  100% {
    clip-path: inset(0);
    transform: scale(1);
  }
}

@keyframes hero-copy-rise {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--hero-soft);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.button,
.close-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 11px 30px;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
}

.button.primary {
  background: var(--button-primary-bg);
  color: var(--black);
}

.button-arrow::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.hero-copy .button.primary,
.final-copy .button.primary {
  background: rgba(255, 255, 255, 0.92);
  color: #000;
}

.hero-copy .button:not(.primary),
.final-copy .button:not(.primary) {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.button:hover,
.close-search:hover {
  transform: translateY(-1px);
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
}

.scroll-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity var(--fast), visibility var(--fast), transform var(--fast), background var(--fast), color var(--fast), border-color var(--fast);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  border-color: var(--button-hover-bg);
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button.primary:hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
}

.hero-copy .button.primary:hover,
.final-copy .button.primary:hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
}

.hero-copy .button:not(.primary):hover,
.final-copy .button:not(.primary):hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 78px;
  transition: opacity var(--fast), transform var(--fast);
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: var(--dot-bg);
  transition: width var(--fast), background var(--fast);
}

.hero-dots button.active {
  width: 42px;
  background: var(--white);
}

.hero-dots button:hover {
  background: var(--button-hover-bg);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 120px));
  margin: calc(var(--header-height) + 4px) var(--outer) 0;
  overflow: hidden;
  border-radius: 8px;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(1060px, calc(100% - 44px));
  margin: auto;
  min-height: inherit;
  color: var(--hero-text);
  text-align: center;
  text-wrap: balance;
}

.page-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: var(--font-size-hero-title);
  font-weight: 400;
  line-height: 1.08;
}

.page-hero-copy > p:not(.hero-kicker) {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--hero-soft);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 300;
  line-height: 1.45;
}

.section-grid,
.focus,
.difference,
.insights,
.serve,
.final-cta {
  margin: 0 var(--outer);
  padding: clamp(80px, 11vw, 160px) 0;
}

.about {
  padding-top: clamp(42px, 4.6vw, 72px);
  padding-bottom: clamp(36px, 4.5vw, 64px);
}

.about + .focus {
  padding-top: clamp(36px, 4.5vw, 64px);
}

.home-split,
.operating-model,
.pathways,
.editorial-list,
.contact-routing {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  margin: 0 var(--outer);
  padding: clamp(80px, 11vw, 150px) 0;
  border-top: 1px solid var(--line);
}

body[data-page="insights"] .editorial-list {
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(34px, 4.4vw, 66px);
}

body[data-page="insights"] .editorial-list + .final-cta {
  border-top: 0;
}

.operating-model h2,
.pathways h2,
.editorial-list h2,
.contact-routing h2 {
  margin: 10px 0 0;
  font-size: var(--font-size-section-title);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.home-split h2 {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: var(--font-size-section-title);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.home-split {
  padding-bottom: clamp(20px, 2.6vw, 40px);
}

.home-split + .insights {
  padding-top: clamp(20px, 2.6vw, 40px);
}

.metric-list {
  display: grid;
  align-content: start;
  border-bottom: 1px solid var(--line);
}

.metric-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.metric-list span,
.serve-detail span {
  color: var(--white-55);
  font-size: 13px;
}

.metric-list p {
  margin: 0;
  color: var(--white-70);
  font-size: clamp(17px, 1.8vw, 24px);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
}

.section-label {
  color: var(--white-55);
  font-size: 13px;
  font-weight: 500;
}

.section-grid > .section-label {
  grid-column: 1 / 4;
}

.section-copy {
  grid-column: 4 / 9;
}

.origin-section {
  align-items: start;
}

.origin-copy {
  grid-column: 4 / 10;
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.origin-lead {
  max-width: 760px;
  margin: 0;
  font-size: clamp(26px, 3.25vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.origin-principles {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.origin-principles article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.origin-principles span {
  color: var(--white-55);
  font-size: 13px;
}

.origin-principles h2 {
  margin: 0;
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 400;
  line-height: 1.1;
}

.origin-principles p {
  max-width: 580px;
  margin: 7px 0 0;
  color: var(--white-55);
  font-size: 14px;
  line-height: 1.45;
}

.large-copy p {
  margin: 0;
  font-size: clamp(17px, 2.1vw, 31px);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: pretty;
}

.large-copy p + p {
  margin-top: 28px;
  color: var(--white-55);
}

.about-detail {
  grid-column: 10 / -1;
  display: grid;
  gap: 18px;
  align-content: start;
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
}

.about-detail p {
  margin: 0;
  color: var(--white-70);
  font-size: 14px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head.compact {
  display: grid;
  justify-content: start;
  max-width: 840px;
}

.section-head h2 {
  max-width: 870px;
  margin: 10px 0 0;
  font-size: var(--font-size-section-title);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.focus .section-head > div {
  flex: 1;
  min-width: 0;
}

.focus .section-head h2 {
  max-width: min(1120px, 100%);
  font-size: var(--font-size-section-title);
  line-height: 1.08;
  text-wrap: normal;
}

.rail-controls {
  display: flex;
  gap: 10px;
}

.rail-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--panel-soft);
  transition: background var(--fast), color var(--fast);
}

.rail-button:hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
}

.focus-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 34vw);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.focus-rail::-webkit-scrollbar {
  display: none;
}

.focus-card {
  position: relative;
  display: block;
  scroll-snap-align: start;
  cursor: pointer;
  transition: opacity var(--fast);
}

.focus-rail:has(.focus-card:hover) .focus-card:not(:hover) {
  opacity: 0.58;
}

.card-placeholder,
.insight-placeholder {
  aspect-ratio: 16 / 9;
  transition: transform var(--slow);
}

.focus-card:hover .card-placeholder,
.insight-card:hover .insight-placeholder {
  transform: scale(1.018);
}

.focus-card h3 {
  margin: 18px 0 0;
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.08;
}

.focus-card p {
  min-height: 72px;
  margin: 12px 0 18px;
  color: var(--white-55);
  font-size: 14px;
}

.practice-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 var(--outer);
  padding: 34px 0 0;
}

.practice-index a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--white-70);
  font-size: 13px;
  transition: background var(--fast), border-color var(--fast), color var(--fast);
}

.practice-index a:hover {
  border-color: var(--button-hover-bg);
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
}

.practice-list {
  margin: 0 var(--outer);
  padding: clamp(60px, 8vw, 120px) 0;
}

.practice-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(36px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.practice-row:last-child {
  border-bottom: 1px solid var(--line);
}

.practice-media {
  aspect-ratio: 16 / 10;
}

.practice-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.practice-copy h2 {
  margin: 10px 0 0;
  font-size: var(--font-size-section-title);
  font-weight: 400;
  line-height: 1.08;
}

.practice-copy p {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--white-55);
  font-size: clamp(15px, 1.45vw, 19px);
}

.practice-copy .lead {
  color: var(--white);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
}

.practice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  transition: background var(--fast), border-color var(--fast), color var(--fast), transform var(--fast);
}

.explore-link::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.explore-link:hover {
  border-color: var(--button-hover-bg);
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
  transform: translateY(-1px);
}

.service-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fast);
}

.service-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-panel {
  position: relative;
  display: grid;
  gap: 22px;
  width: min(980px, 100%);
  max-height: min(760px, calc(100svh - 36px));
  overflow: auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(194, 161, 91, 0.12), transparent 38%),
    var(--panel);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(18px) scale(0.97);
  transition: transform var(--slow);
}

.service-overlay.is-open .service-panel {
  transform: translateY(0) scale(1);
}

.service-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--white);
  transition: background var(--fast), color var(--fast), transform var(--fast);
}

.service-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.service-close:hover {
  border-color: var(--button-hover-bg);
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
  transform: translateY(-1px);
}

.service-panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-right: 58px;
  color: var(--white-55);
  font-size: 13px;
}

.service-panel h2 {
  max-width: 760px;
  margin: 0;
  padding-right: 58px;
  font-size: var(--font-size-section-title);
  font-weight: 400;
  line-height: 1.08;
}

.service-panel p {
  margin: 0;
  color: var(--white-70);
}

.service-panel-lead {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(19px, 2.1vw, 30px);
  line-height: 1.18;
}

.service-panel > p:not(.service-panel-lead) {
  max-width: 820px;
  font-size: clamp(15px, 1.2vw, 18px);
}

.service-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: clamp(22px, 4vw, 48px);
  padding-top: 8px;
}

.service-panel-grid section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-panel h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.service-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
  color: var(--white-70);
  font-size: 14px;
}

.service-panel li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.service-panel .button {
  justify-self: start;
  margin-top: 6px;
}

.difference {
  border-top: 1px solid var(--line);
}

.difference-list {
  margin-top: clamp(34px, 6vw, 74px);
  border-bottom: 1px solid var(--line);
}

.difference-list article {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  transition: opacity var(--fast), transform var(--fast);
}

.difference-list:hover article {
  opacity: 0.5;
}

.difference-list article:hover {
  opacity: 1;
  transform: translateX(8px);
}

.difference-list span {
  color: var(--white-55);
  font-size: 13px;
}

.difference-list h3 {
  margin: 0;
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.08;
}

.difference-list p {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--white-55);
  font-size: clamp(15px, 1.5vw, 19px);
}

.text-link {
  color: var(--white);
  font-size: 14px;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--button-hover-bg);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  transition: opacity var(--fast);
}

.insight-grid:hover .insight-card:not(:hover) {
  opacity: 0.58;
}

.insight-card p {
  margin: 18px 0 8px;
  color: var(--white-55);
  font-size: 13px;
}

.insight-card h3 {
  margin: 0;
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.1;
}

.insight-card span {
  display: block;
  margin-top: 10px;
  color: var(--white-55);
  font-size: 14px;
}

.insight-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 var(--outer);
  padding: clamp(72px, 10vw, 140px) 0;
}

.insight-feature-grid article {
  transition: opacity var(--fast);
}

.insight-feature-grid:hover article:not(:hover) {
  opacity: 0.58;
}

.insight-feature-media {
  aspect-ratio: 4 / 5;
}

.insight-feature-grid p {
  margin: 18px 0 8px;
  color: var(--white-55);
  font-size: 13px;
}

.insight-feature-grid h2 {
  margin: 0;
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.04;
}

.insight-feature-grid span {
  display: block;
  margin-top: 12px;
  color: var(--white-55);
  font-size: 15px;
}

.think-article {
  margin: 0 var(--outer);
  padding: 72px 0 120px;
  border-bottom: 1px solid var(--line);
}

.page-hero + .think-article {
  padding-top: 54px;
}

.think-article-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 68px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.think-article-intro {
  display: grid;
  align-content: end;
}

.think-article-intro .section-label {
  margin-bottom: 18px;
}

.think-article-intro h2 {
  max-width: 980px;
  margin: 0;
  font-size: var(--font-size-section-title);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.think-article-intro > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--white-55);
  font-size: var(--font-size-body-copy);
  line-height: 1.55;
}

.think-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: var(--white-55);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.think-article-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 14px 2px 0;
  border-radius: 999px;
  background: var(--white-55);
  opacity: 0.7;
}

.think-article-media {
  margin: 0;
}

.think-article-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.think-article-media figcaption {
  margin-top: 10px;
  color: var(--white-55);
  font-size: 12px;
}

.think-article-body {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 860px);
  gap: 76px;
  padding-top: 82px;
}

.think-article-section {
  display: grid;
  grid-column: 2;
  gap: 18px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.think-article-section + .think-article-section {
  padding-top: clamp(26px, 3vw, 40px);
}

.think-article-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.think-article-section h3 {
  margin: 0;
  color: var(--white);
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.08;
}

.think-article-section p,
.think-article-section li {
  color: var(--white-55);
  font-size: var(--font-size-body-copy);
  line-height: 1.62;
}

.think-article-section p {
  margin: 0;
}

.think-article-section ul,
.think-article-section ol {
  display: grid;
  gap: 14px;
  margin: 4px 0 0;
  padding-left: 20px;
}

.think-article-section strong {
  color: var(--white);
  font-weight: 400;
}

.think-article-section em {
  color: var(--white-70);
}

.think-article-author {
  padding-top: 18px;
}

.serve {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.serve .section-head {
  margin-bottom: 0;
}

.serve-accordion {
  border-bottom: 1px solid var(--line);
}

.serve-accordion article {
  border-top: 1px solid var(--line);
}

.serve-accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
  padding: 20px 0;
  text-align: left;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
}

.serve-accordion button svg {
  transition: transform var(--fast);
}

.serve-accordion button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-panel {
  color: var(--white-55);
  font-size: 15px;
}

.accordion-panel p {
  max-width: 640px;
  margin: 0;
  padding: 0 0 24px;
}

.serve-detail {
  display: grid;
  gap: 1px;
  margin: 0 var(--outer);
  padding: clamp(72px, 10vw, 140px) 0;
}

.serve-detail article {
  display: grid;
  grid-template-columns: 58px minmax(240px, 0.6fr) minmax(0, 1fr) minmax(190px, 0.42fr);
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.serve-detail article:last-child {
  border-bottom: 0;
}

.serve-detail h2 {
  margin: 0;
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.08;
}

.serve-detail p {
  max-width: 680px;
  margin: 0;
  color: var(--white-55);
  font-size: 15px;
}

.join-aside {
  grid-column: 10 / -1;
  display: grid;
  align-content: start;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.join-aside article {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.join-aside article:last-child {
  border-bottom: 0;
}

.join-aside span,
.join-detail strong,
.join-logo-slot span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-aside h2 {
  margin: 8px 0 0;
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 400;
  line-height: 1.08;
}

.join-aside p {
  margin: 10px 0 0;
  color: var(--white-55);
  font-size: 14px;
}

.join-detail article {
  grid-template-columns: 58px minmax(220px, 0.54fr) minmax(0, 0.92fr) minmax(180px, 0.32fr);
}

.join-detail strong {
  display: block;
  font-weight: 400;
}

.join-detail .text-link {
  justify-self: end;
  color: var(--white-70);
  font-size: 14px;
}

.join-manifesto {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  margin: 0 var(--outer);
  padding: var(--section-rhythm) 0;
  border-top: 1px solid var(--line);
}

.join-manifesto h2 {
  max-width: 700px;
  margin: 10px 0 0;
  font-size: var(--font-size-section-title);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.join-manifesto-list {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.join-manifesto-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.join-manifesto-list span {
  color: var(--white-55);
  font-size: 13px;
}

.join-manifesto-list h3 {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 400;
  line-height: 1.08;
}

.join-manifesto-list p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--white-55);
  font-size: 15px;
}

.join-logo-wall {
  margin: 0 var(--outer);
  padding: var(--section-rhythm) 0;
  border-top: 1px solid var(--line);
}

.join-logo-wall .section-head {
  align-items: start;
}

.join-logo-wall .section-head p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--white-55);
  font-size: 15px;
}

.join-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.join-logo-slot {
  display: grid;
  min-height: 142px;
  place-items: center;
  padding: 24px;
  background: var(--surface-soft);
  color: var(--white-55);
  text-align: center;
}

.join-logo-slot span {
  display: block;
}

.join-logo-slot small {
  display: block;
  margin-top: 8px;
  color: var(--white-55);
  font-size: 13px;
  line-height: 1.35;
}

.pathway-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.pathway-grid article,
.principle-grid article {
  padding: clamp(22px, 3vw, 36px);
  background: var(--surface-soft);
}

.pathway-grid h3,
.principle-grid h3 {
  margin: 0;
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.08;
}

.pathway-grid p,
.principle-grid p {
  margin: 14px 0 0;
  color: var(--white-55);
  font-size: 15px;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  margin: 0 var(--outer);
  padding: clamp(72px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}

.page-hero + .contact-form-section,
.page-hero + .serve-detail,
.page-hero + .insight-feature-grid,
.page-hero + .section-grid {
  padding-top: clamp(42px, 5vw, 72px);
}

body[data-page="insights"] .page-hero + .think-article-grid,
body[data-page="contact"] .page-hero + .contact-form-section,
body[data-page="careers"] .page-hero + .join-editorial,
body[data-page="internship"] .page-hero + .internship-fieldbook,
body[data-page="fellowship"] .page-hero + .fellowship-dossier,
body[data-page="venture-studio"] .page-hero + .studio-blueprint,
body[data-page="alumni-network"] .page-hero + .alumni-constellation,
body[data-page="ecosystem-partners"] .page-hero + .partner-architecture {
  margin-top: clamp(28px, 3.2vw, 52px);
}

.page-hero + .section-grid.reveal {
  opacity: 1;
  transform: none;
}

.page-hero + .contact-form-section.reveal,
.page-hero + .serve-detail.reveal,
.page-hero + .insight-feature-grid.reveal {
  opacity: 1;
  transform: none;
}

body[data-page="about"] {
  --black: #141414;
  --ink: #141414;
  --charcoal: #1a1a1a;
  --panel: #050505;
  --panel-soft: #111;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.2);
  --white: #fff;
  --white-70: rgba(255, 255, 255, 0.72);
  --white-55: rgba(255, 255, 255, 0.55);
  --header-bg: #141414;
  --header-bg-strong: #141414;
  --menu-bg: #141414;
  --search-bg: rgba(20, 20, 20, 0.96);
  background: #141414;
  color: #fff;
}

html[data-theme="light"] body[data-page="about"] {
  --black: #fff;
  --ink: #fff;
  --charcoal: #f4f4f4;
  --panel: #f7f7f7;
  --panel-soft: #e8e8e8;
  --line: rgba(7, 7, 7, 0.14);
  --line-strong: rgba(7, 7, 7, 0.28);
  --white: #060606;
  --white-70: rgba(6, 6, 6, 0.72);
  --white-55: rgba(6, 6, 6, 0.56);
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-bg-strong: rgba(255, 255, 255, 0.96);
  --menu-bg: rgba(255, 255, 255, 0.97);
  --search-bg: rgba(255, 255, 255, 0.96);
  background: #fff;
  color: #060606;
}

html[data-theme="light"] body[data-page="about"] .brand-logo-dark {
  display: none;
}

html[data-theme="light"] body[data-page="about"] .brand-logo-light {
  display: block;
}

/* ─── Light mode – People featured card ───────────────────────── */
html[data-theme="light"] body[data-page="about"] .people-featured {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] body[data-page="about"] .people-featured-portrait {
  background: #e8e8e8;
}

html[data-theme="light"] body[data-page="about"] .people-featured-content {
  background: #fff;
}

html[data-theme="light"] body[data-page="about"] .people-featured-name {
  color: #141414;
}

html[data-theme="light"] body[data-page="about"] .people-featured-quote {
  color: rgba(20, 20, 20, 0.64);
}

html[data-theme="light"] body[data-page="about"] .people-featured-stats {
  border-top-color: rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] body[data-page="about"] .people-featured-stats dd {
  color: rgba(20, 20, 20, 0.5);
}

html[data-theme="light"] body[data-page="about"] .people-featured-tags li {
  border-color: rgba(0, 0, 0, 0.15);
  color: rgba(20, 20, 20, 0.6);
}

html[data-theme="light"] body[data-page="about"] .people-featured .people-view-more {
  border-color: rgba(20, 20, 20, 0.35);
  background: rgba(20, 20, 20, 0.07);
  color: #141414;
}

html[data-theme="light"] body[data-page="about"] .people-featured .people-view-more:hover,
html[data-theme="light"] body[data-page="about"] .people-featured .people-view-more:focus-visible {
  background: #141414;
  color: #fff;
}

.company-page {
  min-height: 100svh;
  padding: 0 var(--outer);
  background: var(--black);
  color: var(--white);
}

.company-hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 120px));
  margin-top: calc(var(--header-height) + 4px);
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  isolation: isolate;
  place-items: center;
  text-align: center;
}

.company-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.3), rgba(20, 20, 20, 0.7));
  content: "";
  pointer-events: none;
}

.company-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  padding: 0 22px;
  color: var(--hero-text);
}

.company-hero h1 {
  margin: 0;
  color: var(--hero-text);
  font-size: var(--font-size-hero-title);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.company-hero p:not(.hero-kicker) {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--hero-muted);
  font-size: clamp(14px, 1.06vw, 17px);
  font-weight: 300;
  line-height: 1.42;
}

.company-anchor-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 18;
  margin: clamp(14px, 2vw, 24px) calc(var(--outer) * -1) 0;
  padding: 0 var(--outer);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--header-bg-strong);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.company-anchor-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 5vw, 74px);
  width: 100%;
  max-width: 1160px;
  min-height: 66px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.company-anchor-nav-inner::-webkit-scrollbar {
  display: none;
}

.company-anchor-nav a {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 66px;
  color: var(--white-55);
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  transition: color var(--fast);
}

.company-anchor-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: transparent;
  content: "";
  transition: background var(--fast);
}

.company-anchor-nav a:hover,
.company-anchor-nav a:focus-visible {
  color: var(--white);
}

.company-anchor-nav a.is-active {
  color: var(--gold);
}

.company-anchor-nav a.is-active::after {
  background: var(--gold);
}

.company-tab-panel,
.company-section,
.practice-row {
  scroll-margin-top: calc(var(--header-height) + 86px);
}

.company-section {
  display: grid;
  grid-template-columns: minmax(156px, 0.44fr) minmax(0, 0.72fr);
  gap: clamp(34px, 6vw, 112px);
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(58px, 7.4vw, 108px) 0;
  border-top: 1px solid var(--line);
}

.company-section h2,
.company-section h3,
.company-section p {
  margin: 0;
}

.company-section h2 {
  color: var(--white);
  font-size: clamp(17px, 1.35vw, 23px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.company-section-content {
  display: grid;
  gap: 20px;
  color: var(--white-55);
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 300;
  line-height: 1.44;
}

.company-services .company-section-content,
.company-point-list {
  gap: 0;
}

.company-services article,
.company-point-list article {
  padding: 0 0 32px;
  border-bottom: 1px solid var(--line);
}

.company-services article + article,
.company-point-list article + article {
  padding-top: 32px;
}

.company-services h3,
.company-point-list h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(15px, 1.06vw, 18px);
  font-weight: 400;
  line-height: 1.24;
}

.company-services p,
.company-point-list p {
  max-width: 610px;
  margin: 0;
}

.company-services p + p,
.company-point-list p + p {
  margin-top: 9px;
}

.company-services strong,
.company-point-list strong {
  color: var(--white-70);
  font-weight: 400;
}

.company-people {
  grid-template-columns: minmax(132px, 0.24fr) minmax(0, 1fr);
  max-width: 1320px;
}

.company-people-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.98fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #486b6d;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.34);
}

.company-people-portrait {
  position: relative;
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--panel);
  min-height: clamp(560px, 58vw, 820px);
  box-shadow: none;
}

.company-people-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.company-people-bio {
  display: grid;
  gap: clamp(16px, 1.9vw, 24px);
  align-content: start;
  padding: clamp(38px, 6vw, 78px);
  background: #486b6d;
}

.company-people-bio .section-label {
  margin: -6px 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.company-people-bio h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.96;
}

.company-people-bio p:not(.section-label) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.16vw, 20px);
  line-height: 1.62;
}

.company-philosophy {
  padding-bottom: clamp(92px, 10vw, 150px);
}

.company-closing {
  padding-top: 18px;
  color: var(--white);
  font-size: clamp(19px, 1.55vw, 27px);
  font-weight: 400;
  line-height: 1.2;
}

.company-closing span {
  display: block;
  max-width: 680px;
  margin-top: 12px;
  color: var(--white-70);
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 300;
  line-height: 1.44;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--white-55);
  font-size: 13px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--surface-soft);
  color: var(--white);
  padding: 14px 15px;
  resize: vertical;
}

.field select {
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--white);
}

.contact-form-note,
.contact-form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--white-55);
  font-size: 13px;
  line-height: 1.5;
}

.contact-form-status {
  color: var(--white-70);
}

.contact-form .button {
  justify-self: start;
}

.contact-direct {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  margin: 0 var(--outer);
  padding: clamp(56px, 8vw, 106px) 0;
  border-top: 1px solid var(--line);
}

.contact-direct h2 {
  max-width: 520px;
  margin: 12px 0 0;
  font-size: var(--font-size-section-title);
  font-weight: 400;
  line-height: 1.04;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-direct-grid article,
.contact-direct-grid address {
  min-height: 190px;
  margin: 0;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--white-70);
  font-style: normal;
  line-height: 1.48;
}

.contact-direct-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: var(--font-size-kicker);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct-grid a {
  color: var(--white);
  text-decoration: none;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 620px;
  margin-bottom: clamp(26px, 3.6vw, 52px);
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
}

.final-placeholder {
  position: absolute;
  inset: 0;
}

.final-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(960px, calc(100% - 44px));
  color: var(--hero-text);
}

.final-copy h2 {
  margin: 0;
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.final-copy p {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--hero-muted);
  font-size: clamp(16px, 1.5vw, 22px);
}

body[data-page="alumni-network"] .final-copy h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.06;
}

body[data-page="insights"] .final-copy h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.06;
}

.site-footer {
  --black: #141414;
  --white: #fff;
  --white-70: rgba(255, 255, 255, 0.7);
  --white-55: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(210px, 0.5fr) minmax(190px, 0.42fr) minmax(190px, 0.42fr);
  grid-template-areas:
    "offices companies links join"
    "wordmark wordmark wordmark wordmark"
    "legal legal legal legal";
  gap: clamp(28px, 4vw, 58px) clamp(34px, 4.8vw, 76px);
  align-items: start;
  padding: clamp(76px, 8vw, 112px) var(--outer) clamp(62px, 7vw, 96px);
  border-top: 1px solid var(--line-strong);
  background: var(--black);
  color: var(--white-55);
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 300;
}

.footer-offices {
  grid-area: offices;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px);
}

.footer-offices address {
  margin: 0;
  color: var(--white-55);
  font-style: normal;
  line-height: 1.42;
}

.footer-offices strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white-70);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.22vw, 23px);
  font-weight: 300;
  line-height: 1.12;
}

.footer-offices a {
  color: var(--white-70);
  font-family: var(--font-body);
  text-decoration: none;
}

.footer-companies {
  grid-area: companies;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
  max-width: 360px;
}

.footer-companies p {
  margin: 0;
  color: var(--white-70);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.22vw, 23px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.footer-company-row {
  display: block;
  margin: 0;
  color: var(--white-55);
  line-height: 1.35;
}

.footer-company-row a {
  color: var(--white-70);
  font-family: var(--font-body);
  font-weight: 300;
  text-decoration: none;
}

.footer-legal a {
  color: var(--white-70);
  font-family: var(--font-body);
  font-weight: 300;
  text-decoration: none;
}

.footer-links {
  grid-area: links;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
}

.footer-join {
  grid-area: join;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: start;
}

.footer-nav-heading {
  margin: 0;
  color: var(--white-70);
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.22vw, 23px);
  font-weight: 300;
  line-height: 1.12;
}

.footer-links a,
.footer-join a {
  color: var(--white-70);
  font-family: var(--font-body);
  font-size: clamp(13px, 0.95vw, 18px);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0;
  text-decoration: none;
}

.footer-legal {
  grid-area: legal;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas:
    ". logo ."
    "copyright . policies";
  align-items: center;
  gap: 18px 24px;
  align-self: end;
  padding-top: clamp(22px, 2.8vw, 38px);
  border-top: 1px solid var(--line);
  color: var(--white-55);
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 300;
  line-height: 1.35;
}

.footer-legal a {
  justify-self: start;
}

.footer-legal-logo {
  grid-area: logo;
  justify-self: center;
  width: clamp(70px, 6.25vw, 112px);
  height: auto;
  object-fit: contain;
}

.footer-legal p {
  margin: 0;
}

.footer-copyright {
  grid-area: copyright;
  justify-self: start;
  text-align: left;
}

.footer-policy-links {
  grid-area: policies;
  justify-self: end;
  text-align: right;
}

.footer-statement {
  grid-area: statement;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  align-self: start;
  justify-self: start;
  max-width: 980px;
  margin: 0;
}

.footer-logo {
  flex: 0 0 auto;
  width: clamp(76px, 7vw, 118px);
  height: auto;
  object-fit: contain;
}

.footer-statement-copy {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
}

.footer-statement-copy span {
  display: block;
  margin-top: 10px;
  color: var(--white-70);
  font-size: clamp(18px, 1.65vw, 27px);
  font-weight: 300;
  line-height: 1.14;
}

.footer-wordmark {
  grid-area: wordmark;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: clamp(18px, 3vw, 44px) 0 0;
  color: var(--white-70);
  font-family: var(--font-heading);
  font-size: clamp(42px, 3.22vw, 53px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
}

.footer-wordmark-logo {
  flex: 0 0 auto;
  width: clamp(48px, 6vw, 112px);
  height: auto;
  object-fit: contain;
}

.footer-wordmark span {
  display: inline-block;
  max-width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

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

@media (max-width: 1180px) {
  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    grid-template-areas:
      "offices companies"
      "links join"
      "wordmark wordmark"
      "legal legal";
  }

  .footer-statement {
    max-width: 860px;
  }

  .footer-statement-copy {
    font-size: clamp(32px, 4.6vw, 50px);
  }

  .footer-wordmark {
    font-size: clamp(52px, 6vw, 76px);
  }
}

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

  .desktop-nav,
  .search-toggle {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero-carousel {
    min-height: min(760px, calc(100svh - 120px));
    aspect-ratio: auto;
  }

  .hero h1,
  .hero h2 {
    font-size: var(--font-size-hero-title);
  }

  .section-grid,
  .serve,
  .home-split,
  .join-manifesto,
  .people-intro,
  .operating-model,
  .pathways,
  .editorial-list,
  .contact-routing,
  .contact-direct,
  .contact-form-section {
    grid-template-columns: 1fr;
  }

  .contact-direct-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 690px;
  }

  .section-grid > .section-label,
  .section-copy,
  .about-detail,
  .join-aside {
    grid-column: auto;
  }

  .about-detail {
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
    align-items: end;
  }

  .focus-rail {
    grid-auto-columns: minmax(280px, 72vw);
  }

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

  .think-article {
    padding: 58px 0 96px;
  }

  .think-article-header,
  .think-article-body {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .think-article-header {
    padding-bottom: 52px;
  }

  .think-article-intro h2 {
    font-size: var(--font-size-section-title);
  }

  .think-article-section {
    grid-column: auto;
  }

  .practice-row,
  .serve-detail article,
  .join-detail article {
    grid-template-columns: 1fr;
  }

  .insight-feature-grid,
  .pathway-grid,
  .principle-grid,
  .join-logo-grid {
    grid-template-columns: 1fr;
  }

  .join-detail .text-link {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "offices"
      "companies"
      "links"
      "join"
      "wordmark"
      "legal";
    gap: 34px;
  }

  .footer-legal {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-areas:
      ". logo ."
      "copyright . policies";
    justify-items: stretch;
    gap: 16px 20px;
    text-align: left;
  }

  .footer-legal p {
    text-align: inherit;
  }

  .footer-copyright {
    justify-self: start;
    text-align: left;
  }

  .footer-policy-links {
    justify-self: end;
    text-align: right;
  }

  .footer-legal a,
  .footer-legal-logo {
    justify-self: center;
  }

  .footer-statement {
    justify-self: start;
    max-width: 740px;
    text-align: left;
  }

  .company-people {
    grid-template-columns: 1fr;
  }

  .company-people-profile {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
    justify-items: start;
    gap: 0;
  }

  .company-people-portrait {
    width: 100%;
    min-height: 620px;
  }
}

@media (max-width: 670px) {
  :root {
    --header-height: 74px;
    --outer: 22px;
    --font-size-hero-title: clamp(30px, 8vw, 46px);
    --font-size-section-title: clamp(28px, 7vw, 42px);
    --font-size-card-title: clamp(20px, 5.6vw, 28px);
  }

  .brand {
    min-width: 112px;
  }

  .brand-logo {
    width: auto;
    height: 50px;
    max-width: 136px;
  }

  .company-hero {
    min-height: 650px;
    padding: 0;
  }

  .company-section {
    grid-template-columns: minmax(118px, 0.42fr) minmax(0, 1fr);
    gap: 24px;
    padding: 54px 0;
  }

  .company-section h2 {
    font-size: 16px;
  }

  .company-people {
    grid-template-columns: 1fr;
  }

  .company-people-profile {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    padding: 0;
  }

  .company-people-portrait {
    width: 100%;
    min-height: 500px;
  }

  .company-people-portrait img {
    object-position: center center;
  }

  .company-people-bio {
    justify-items: start;
    width: 100%;
    padding: 28px;
  }

  .company-section-content {
    font-size: 14px;
  }

  .company-anchor-nav-inner {
    justify-content: flex-start;
    gap: 32px;
    min-height: 58px;
  }

  .company-anchor-nav a {
    min-height: 58px;
    font-size: 13px;
  }

  .company-tab-panel,
  .company-section {
    scroll-margin-top: calc(var(--header-height) + 72px);
  }

  .company-services article,
  .company-point-list article {
    padding-bottom: 26px;
  }

  .company-services article + article,
  .company-point-list article + article {
    padding-top: 26px;
  }

  .hero {
    padding-right: 38px;
    padding-left: 38px;
  }

  .hero-carousel {
    min-height: 650px;
  }

  .hero-copy {
    width: calc(100% - 32px);
  }

  .hero-kicker {
    margin-bottom: 12px;
  }

  .hero-copy > p:not(.hero-kicker) {
    margin-top: 16px;
    font-size: 15px;
  }

  .button-row {
    margin-top: 20px;
  }

  .button,
  .close-search {
    min-height: 36px;
    padding: 10px 20px;
    font-size: 13px;
  }

  .practice-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .explore-link {
    min-height: 34px;
    padding: 9px 16px;
    font-size: 13px;
  }

  .service-overlay {
    align-items: end;
    padding: 12px;
  }

  .service-panel {
    gap: 16px;
    max-height: calc(100svh - 24px);
    padding: 28px 20px 24px;
  }

  .service-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .service-panel h2,
  .service-panel-meta {
    padding-right: 44px;
  }

  .service-panel h2 {
    font-size: var(--font-size-section-title);
  }

  .service-panel-lead {
    font-size: 20px;
  }

  .service-panel > p:not(.service-panel-lead),
  .service-panel li,
  .service-panel-grid p {
    font-size: 14px;
  }

  .service-panel-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-panel-grid section {
    padding-top: 16px;
  }

  .service-panel ul {
    gap: 8px;
  }

  .hero-dots {
    height: 64px;
  }

  .section-grid,
  .focus,
  .difference,
  .insights,
  .serve,
  .join-manifesto,
  .join-logo-wall,
  .people-intro,
  .home-split,
  .operating-model,
  .pathways,
  .editorial-list,
  .contact-routing,
  .contact-direct,
  .contact-form-section,
  .insight-feature-grid,
  .serve-detail,
  .practice-list,
  .final-cta {
    padding: 76px 0;
  }

  .people-copy h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .people-copy p {
    font-size: 15px;
  }

  .people-media {
    min-height: 300px;
  }

  .page-hero {
    min-height: 650px;
    margin-right: 38px;
    margin-left: 38px;
  }

  .page-hero-copy h1 {
    font-size: var(--font-size-hero-title);
  }

  .page-hero-copy > p:not(.hero-kicker) {
    font-size: 13px;
    font-weight: 300;
  }

  .think-article {
    padding: 42px 0 76px;
  }

  .page-hero + .think-article {
    padding-top: 42px;
  }

  .think-article-header {
    gap: 28px;
    padding-bottom: 38px;
  }

  .think-article-intro h2 {
    font-size: var(--font-size-section-title);
  }

  .think-article-intro > p {
    font-size: 15px;
  }

  .think-article-meta {
    display: grid;
    gap: 8px;
    font-size: 11px;
  }

  .think-article-meta span + span::before {
    display: none;
  }

  .think-article-media img {
    border-radius: 6px;
  }

  .think-article-body {
    gap: 0;
    padding-top: 44px;
  }

  .think-article-section {
    gap: 14px;
    padding-bottom: 38px;
  }

  .think-article-section h3 {
    font-size: 24px;
  }

  .think-article-section p,
  .think-article-section li {
    font-size: 15px;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .rail-controls {
    display: none;
  }

  .about-detail {
    grid-template-columns: 1fr;
  }

  .focus-card p {
    min-height: 0;
  }

  .difference-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .serve-accordion button {
    font-size: 18px;
  }

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

  .final-cta {
    min-height: 560px;
  }

  .site-footer {
    padding-top: 58px;
    padding-bottom: 64px;
    font-size: 15px;
  }

  .footer-offices {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-company-row {
    display: block;
    margin-top: 0;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-join {
    gap: 12px;
  }

  .footer-statement {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-logo {
    width: 86px;
  }

  .footer-statement-copy {
    font-size: clamp(30px, 8.2vw, 42px);
  }

  .footer-statement-copy span {
    font-size: clamp(17px, 4.4vw, 21px);
  }

  .footer-wordmark {
    font-size: clamp(28px, 8.4vw, 39px);
  }

  .footer-legal-logo {
    width: 73px;
  }
}

@media (max-width: 480px) {
  .footer-legal {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "copyright"
      "policies";
    justify-items: start;
  }

  .footer-legal-logo {
    justify-self: center;
  }

  .footer-policy-links {
    justify-self: start;
    text-align: left;
  }

  .company-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .company-section-content {
    max-width: 100%;
  }
}

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

body[data-page="insights"] .think-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px) 18px;
  margin: 0 var(--outer);
  padding: clamp(68px, 9vw, 128px) 0 clamp(42px, 7vw, 88px);
}

body[data-page="insights"] .think-article-grid:has(.think-article.is-expanded) {
  opacity: 1;
  transform: none;
}

body[data-page="insights"] .think-article-grid .think-article {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  transition: opacity var(--fast), transform var(--fast), background var(--fast), border-color var(--fast);
}

body[data-page="insights"] .think-article-grid:hover .think-article:not(:hover):not(.is-expanded) {
  opacity: 0.58;
}

body[data-page="insights"] .think-article-grid .think-article-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 0;
  cursor: pointer;
  outline: 0;
}

body[data-page="insights"] .think-article-grid .think-article-header:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 8px;
}

body[data-page="insights"] .think-article-grid .think-article-media {
  order: -1;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

body[data-page="insights"] .think-article-grid .think-article-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1.001);
  transition: transform var(--slow), filter var(--fast);
}

body[data-page="insights"] .think-article-grid .think-article:hover .think-article-media img,
body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-media img {
  transform: scale(1.035);
}

body[data-page="insights"] .think-article-grid .think-article-media figcaption {
  display: none;
}

body[data-page="insights"] .think-article-grid .think-article-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 16px;
  align-items: start;
  padding-top: 14px;
}

body[data-page="insights"] .think-article-grid .think-article-intro h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: none;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

body[data-page="insights"] .think-article-grid .think-article-intro .section-label {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 4px 8px 5px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--white-70);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

body[data-page="insights"] .think-article-grid .think-article-intro > p:not(.section-label),
body[data-page="insights"] .think-article-grid .think-article-meta,
body[data-page="insights"] .think-article-grid .think-article:not(.is-expanded) .think-article-body,
body[data-page="insights"] .think-article-grid .think-article-body[hidden] {
  display: none;
}

body[data-page="insights"] .think-article-grid .think-article.is-expanded {
  grid-column: 1 / -1;
  padding: clamp(18px, 2.4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
  opacity: 1;
}

body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: end;
  cursor: pointer;
}

body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-media {
  order: 0;
  grid-column: 2;
  grid-row: 1;
}

body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-intro {
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: 1fr;
  align-content: end;
  padding-top: 0;
}

body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-intro h2 {
  grid-column: 1;
  grid-row: auto;
  font-family: var(--font-heading);
  font-size: var(--font-size-section-title);
  line-height: 1.06;
}

body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-intro .section-label {
  grid-column: 1;
  grid-row: auto;
  width: fit-content;
  margin-bottom: 8px;
  padding: 0;
  border: 0;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: var(--font-size-kicker);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-intro > p:not(.section-label) {
  display: block;
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--white-55);
  font-size: var(--font-size-body-copy);
  line-height: 1.55;
}

body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: var(--white-55);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-height: none;
  margin-top: clamp(28px, 4vw, 54px);
  padding: clamp(20px, 3vw, 38px);
  overflow: visible;
  overscroll-behavior: auto;
  border-top: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  margin: 0 var(--outer);
  padding: clamp(64px, 8vw, 118px) 0;
  border-bottom: 1px solid var(--line);
}

body[data-page="legal"] .legal-content.reveal {
  opacity: 1;
  transform: none;
}

.legal-content article {
  display: grid;
  gap: clamp(28px, 3vw, 42px);
}

.legal-section {
  display: grid;
  gap: 12px;
}

.legal-section h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.08;
}

.legal-section h3 {
  margin: 8px 0 0;
  color: var(--white-70);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 400;
  line-height: 1.18;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--white-55);
  font-size: var(--font-size-body-copy);
  line-height: 1.62;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-section ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-section a {
  color: var(--white-70);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--white-55);
  font-size: 14px;
  line-height: 1.45;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.legal-table th:first-child,
.legal-table td:first-child {
  border-left: 0;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  color: var(--white-70);
  font-weight: 400;
}

.legal-note {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--white-70);
  font-size: 14px;
  line-height: 1.5;
}

body[data-page="legal"] .legal-hero {
  min-height: clamp(320px, 44svh, 520px);
  border: 1px solid var(--line);
  background: var(--black);
}

body[data-page="legal"] .legal-hero .page-hero-copy {
  color: var(--white);
}

body[data-page="legal"] .legal-hero .page-hero-copy > p:not(.hero-kicker) {
  color: var(--white-70);
}

.people-page {
  position: relative;
  min-height: 100svh;
  margin-top: var(--header-height);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.people-page::before {
  position: absolute;
  top: -18vw;
  right: -8vw;
  left: -8vw;
  height: 38vw;
  min-height: 260px;
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 52px, var(--line) 53px 54px, transparent 55px 104px),
    repeating-linear-gradient(135deg, transparent 0 72px, var(--line) 73px 74px, transparent 75px 124px);
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.people-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(44px, 8vw, 132px);
  align-items: center;
  margin: 0 var(--outer);
  padding: clamp(86px, 10vw, 148px) 0 clamp(84px, 9vw, 132px);
}

.people-copy {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
  max-width: 560px;
}

.people-copy h1 {
  margin: 0;
  color: var(--white-70);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
}

.people-copy p {
  margin: 0;
  color: var(--white-70);
  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 300;
  line-height: 1.56;
}

.people-media {
  min-height: clamp(300px, 34vw, 500px);
  border-radius: clamp(18px, 2vw, 28px);
}

.people-media span {
  display: none;
}

body[data-page="insights"] .think-article-grid .think-article-section {
  grid-column: 1;
  max-width: 900px;
  width: 100%;
  justify-self: center;
}

body[data-page="insights"] .think-article-close {
  position: fixed;
  top: calc(var(--header-height) + 14px);
  right: var(--outer);
  z-index: 70;
  min-height: 34px;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--black) 92%, transparent);
  color: var(--white-70);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

body[data-page="insights"] .think-article-close:hover,
body[data-page="insights"] .think-article-close:focus-visible {
  border-color: var(--gold);
  color: var(--white);
}

@media (max-width: 980px) {
  body[data-page="insights"] .think-article-grid,
  body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-header {
    grid-template-columns: 1fr;
  }

  body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-media,
  body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-intro {
    grid-column: 1;
  }

  body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-media {
    grid-row: 1;
  }

  body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-intro {
    grid-row: 2;
  }
}

@media (max-width: 670px) {
  body[data-page="insights"] .think-article-grid {
    gap: 34px;
    padding: 56px 0 34px;
  }

  body[data-page="insights"] .think-article-grid .think-article-intro {
    grid-template-columns: 1fr;
  }

  body[data-page="insights"] .think-article-grid .think-article-intro .section-label {
    grid-column: 1;
    grid-row: 2;
    width: fit-content;
  }

  body[data-page="insights"] .think-article-grid .think-article.is-expanded {
    padding: 16px;
  }

  body[data-page="insights"] .think-article-grid .think-article.is-expanded .think-article-body {
    padding: 18px;
  }
}

/* Unified section separator rhythm */
:root {
  --section-rhythm: clamp(72px, 8vw, 120px);
  --section-row-rhythm: clamp(30px, 4vw, 52px);
}

.section-grid,
.focus,
.difference,
.insights,
.serve,
.home-split,
.operating-model,
.pathways,
.editorial-list,
.contact-routing,
.contact-direct,
.contact-form-section,
.insight-feature-grid,
body[data-page="insights"] .think-article-grid,
.legal-content,
.company-section,
.final-cta {
  padding-top: var(--section-rhythm);
  padding-bottom: var(--section-rhythm);
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.about,
.about + .focus,
.home-split,
.home-split + .insights,
  .page-hero + .contact-form-section,
  .page-hero + .serve-detail,
  .page-hero + .insight-feature-grid,
  .page-hero + .section-grid,
  .page-hero + .join-manifesto,
  .page-hero + .join-logo-wall {
  padding-top: var(--section-rhythm);
  padding-bottom: var(--section-rhythm);
}

.company-tab-panel .company-section {
  border-top: 0;
}

.practice-row,
.serve-detail article,
.difference-list article {
  padding-top: var(--section-row-rhythm);
  padding-bottom: var(--section-row-rhythm);
}

.company-services article,
.company-point-list article {
  padding-bottom: var(--section-row-rhythm);
}

.company-services article + article,
.company-point-list article + article {
  padding-top: var(--section-row-rhythm);
}

@media (max-width: 670px) {
  :root {
    --section-rhythm: 72px;
    --section-row-rhythm: 34px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-rhythm: 64px;
    --section-row-rhythm: 30px;
  }
}

/* People profile card refinement */
.company-people {
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1260px;
}

.company-people-profile {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  height: clamp(380px, 40vw, 544px);
  min-height: 0;
  border: 0;
  border-radius: clamp(18px, 1.8vw, 26px);
  background: #fff;
}

.company-people-portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 0;
  padding: 0;
  aspect-ratio: auto;
  background: #eef0f7;
  overflow: hidden;
}

.company-people-portrait img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 18%;
}

.company-people-bio {
  height: 100%;
  min-height: 0;
  padding: clamp(28px, 4vw, 52px) clamp(30px, 4.4vw, 58px);
  background: #fff;
  color: #141414;
  overflow: hidden;
  scrollbar-width: none;
}

.company-people-bio::-webkit-scrollbar {
  display: none;
}

.company-people-bio .section-label {
  color: #141414;
  font-size: clamp(15px, 1.3vw, 20px);
}

.company-people-bio h3 {
  color: #141414;
  font-size: clamp(34px, 3.4vw, 46px);
}

.company-people-bio p:not(.section-label) {
  max-width: 510px;
  color: #141414;
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 1.5;
}

.people-view-more {
  justify-self: start;
  margin-top: 4px;
  padding: 10px 22px;
  border: 1px solid #141414;
  border-radius: 999px;
  background: #141414;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: background var(--fast), color var(--fast), transform var(--fast);
}

.people-view-more:hover,
.people-view-more:focus-visible {
  background: transparent;
  color: #141414;
  transform: translateY(-1px);
}

.people-profile-overlay {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fast);
}

.people-profile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.people-profile-expanded {
  position: relative;
  width: min(1120px, 100%);
  height: min(640px, calc(100svh - 48px));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(18px) scale(0.96);
  transition: transform var(--slow);
}

.people-profile-overlay.is-open .people-profile-expanded {
  transform: translateY(0) scale(1);
}

.people-profile-expanded .company-people-bio {
  gap: 9px;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
}

.people-profile-expanded .company-people-bio h3 {
  font-size: clamp(32px, 3vw, 46px);
}

.people-profile-expanded .company-people-bio .section-label {
  font-size: clamp(13px, 1vw, 17px);
}

.people-profile-expanded .company-people-bio p:not(.section-label) {
  max-width: 640px;
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.34;
}

.people-profile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(20, 20, 20, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #141414;
  font-size: 12px;
  cursor: pointer;
  transition: background var(--fast), color var(--fast), transform var(--fast);
}

.people-profile-close:hover,
.people-profile-close:focus-visible {
  background: #141414;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .company-people-profile {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
    height: 384px;
  }

  .people-profile-expanded {
    height: min(640px, calc(100svh - 48px));
  }

  .company-people-bio {
    padding: 28px;
  }
}

@media (max-width: 760px) {
  .company-people-profile {
    grid-template-columns: 1fr;
    height: auto;
  }

  .company-people-portrait {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .company-people-bio {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .people-profile-expanded {
    grid-template-columns: 1fr;
    height: auto;
    max-height: calc(100svh - 36px);
    overflow: auto;
  }

  .people-profile-expanded .company-people-bio {
    height: auto;
    overflow: visible;
  }
}

@media (max-width: 480px) {
  .company-people-bio {
    padding: 28px;
  }
}

/* ─── People – Featured Profile (redesign) ─────────────────────── */

.people-featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1fr);
  height: clamp(380px, calc(100svh - 220px), 520px);
  border-radius: clamp(16px, 1.6vw, 24px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.people-featured-portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8e8e8;
}

.people-featured-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.people-featured-content {
  display: flex;
  flex-direction: column;
  gap: clamp(9px, 1.1vw, 15px);
  padding: clamp(24px, 3.2vw, 42px);
  background: #fff;
  overflow: hidden;
}

.people-featured-eyebrow {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.people-featured-name {
  margin: 0;
  color: #141414;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.92;
}

.people-featured-quote {
  margin: 0;
  padding-left: clamp(12px, 1.2vw, 16px);
  border-left: 2px solid var(--gold);
  color: rgba(20, 20, 20, 0.64);
  font-family: var(--font-heading);
  font-size: clamp(12px, 1vw, 16px);
  font-style: italic;
  line-height: 1.5;
}

.people-featured-stats {
  display: flex;
  gap: clamp(16px, 3vw, 48px);
  margin: 0;
  padding: clamp(10px, 1vw, 14px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.people-featured-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.people-featured-stats dt {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1;
}

.people-featured-stats dd {
  margin: 0;
  color: rgba(20, 20, 20, 0.5);
  font-family: var(--font-body);
  font-size: clamp(10px, 0.68vw, 11px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.people-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.people-featured-tags li {
  padding: 6px 13px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  color: rgba(20, 20, 20, 0.6);
  font-family: var(--font-body);
  font-size: clamp(10px, 0.68vw, 11px);
  letter-spacing: 0.05em;
}

.people-featured .people-view-more {
  align-self: start;
  margin-top: 4px;
  border-color: rgba(20, 20, 20, 0.35);
  background: rgba(20, 20, 20, 0.07);
  color: #141414;
}

.people-featured .people-view-more:hover,
.people-featured .people-view-more:focus-visible {
  background: #141414;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .people-featured {
    grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1fr);
    height: clamp(360px, calc(100svh - 220px), 480px);
  }
}

@media (max-width: 680px) {
  .people-featured {
    grid-template-columns: 1fr;
    height: auto;
  }

  .people-featured-portrait {
    aspect-ratio: 3 / 4;
    min-height: 0;
    height: auto;
  }

  .people-featured-portrait img {
    object-position: center center;
  }

  .people-featured-content {
    padding: clamp(26px, 6vw, 40px);
    overflow: visible;
  }
}

@media (max-width: 430px) {
  .people-featured-content {
    gap: 12px;
    padding: 26px;
  }

  .people-featured-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .people-featured-stats dd {
    font-size: 9px;
    line-height: 1.25;
  }
}

/* Join pages - distinct editorial systems */
.join-editorial {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 104px);
  margin: 0 var(--outer);
  padding: var(--section-rhythm) 0;
  border-top: 1px solid var(--line);
}

.join-editorial h2,
.career-board h2,
.internship-fieldbook h2,
.internship-rhythm h2,
.fellowship-dossier h2,
.studio-blueprint h2,
.alumni-constellation h2,
.partner-architecture h2 {
  margin: 10px 0 0;
  font-size: var(--font-size-section-title);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.join-editorial p {
  margin: calc(10px + 13px * 1.45) 0 0;
  color: var(--white-55);
  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.28;
}

.join-editorial-copy {
  margin: calc(10px + 13px * 1.45) 0 0;
}

.join-editorial-copy p {
  margin: 0;
}

.join-editorial-copy p + p {
  margin-top: 1em;
}

.career-board,
.internship-fieldbook,
.fellowship-dossier,
.studio-blueprint,
.alumni-constellation,
.partner-architecture,
.partner-logo-theatre {
  margin: 0 var(--outer);
  padding: var(--section-rhythm) 0;
  border-top: 1px solid var(--line);
}

.career-board-head,
.internship-fieldbook-head,
.fellowship-dossier-head,
.studio-blueprint-head,
.alumni-constellation-head,
.partner-architecture-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.54fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.career-board-head p,
.fellowship-dossier-head p,
.studio-blueprint-head p,
.alumni-constellation-head p,
.partner-architecture-head p {
  max-width: 760px;
  margin: calc(10px + 13px * 1.45) 0 0;
  color: var(--white-55);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.career-role-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.career-role-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: clamp(22px, 3vw, 38px);
  background: var(--surface-soft);
}

.career-role-card span,
.internship-note span,
.fellowship-card span,
.studio-stage span,
.alumni-node span,
.partner-row span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-role-card h3,
.internship-note h3,
.fellowship-card h3,
.studio-stage h3,
.alumni-node h3,
.partner-row h3 {
  margin: 12px 0 0;
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.06;
}

.career-role-card p,
.internship-note p,
.fellowship-card p,
.studio-stage p,
.alumni-node p,
.partner-row p {
  margin: 14px 0 0;
  color: var(--white-55);
  font-size: 15px;
  line-height: 1.5;
}

.career-principle-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
}

.career-principle-strip article {
  padding: clamp(20px, 2.6vw, 34px);
  background: var(--surface-soft);
}

.career-principle-strip strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.05;
}

.career-principle-strip p {
  margin: 12px 0 0;
  color: var(--white-55);
  font-size: 15px;
  line-height: 1.55;
}

body[data-page="careers"] .career-role-card p,
body[data-page="careers"] .career-principle-strip p {
  font-size: 15px;
  line-height: 1.55;
}

body[data-page="careers"] .join-editorial p {
  font-size: 15px;
  line-height: 1.55;
}

body[data-page="careers"] .join-editorial {
  grid-template-columns: minmax(420px, 0.84fr) minmax(0, 1fr);
}

@media (max-width: 1024px) {
  body[data-page="careers"] .join-editorial {
    grid-template-columns: 1fr;
  }

  body[data-page="careers"] .join-editorial p {
    margin-top: 0;
  }
}

body[data-page="careers"] .join-editorial h2 {
  text-wrap: normal;
  text-wrap-style: auto;
}

body[data-page="fellowship"] .fellowship-dossier h2 {
  max-width: 760px;
  font-size: clamp(27px, 3vw, 46px);
}

body[data-page="alumni-network"] .alumni-constellation h2 {
  max-width: 780px;
  font-size: clamp(27px, 3vw, 46px);
}

body[data-page="alumni-network"] .join-editorial p {
  font-size: 15px;
  line-height: 1.55;
}

.internship-fieldbook {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
}

.internship-fieldbook-head {
  display: block;
  margin: 0;
}

.fieldbook-index {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--white-55);
  font-size: 13px;
}

.fieldbook-index span {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.internship-fieldbook h2,
.internship-rhythm h2 {
  max-width: 760px;
  font-size: clamp(28px, 3vw, 44px);
}

.internship-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.internship-note {
  min-height: 240px;
  padding: clamp(22px, 3vw, 38px);
  background: var(--surface-soft);
}

.internship-rhythm {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(28px, 6vw, 84px);
  margin: 0 var(--outer);
  padding: var(--section-rhythm) 0;
  border-top: 1px solid var(--line);
}

.internship-rhythm ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.internship-rhythm li {
  display: grid;
  grid-template-columns: 86px minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 58px);
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.internship-rhythm li:last-child {
  border-bottom: 1px solid var(--line);
}

.internship-rhythm li span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 28px;
}

.internship-rhythm li h3 {
  margin: 0;
  color: var(--white);
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.08;
}

.internship-rhythm li p {
  margin: 0;
  color: var(--white-55);
  font-size: 15px;
  line-height: 1.55;
}

.fellowship-dossier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fellowship-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 240px;
  padding: clamp(24px, 3.4vw, 44px);
  background: var(--surface-soft);
}

.fellowship-card.thesis {
  grid-column: span 2;
  min-height: 0;
  align-content: center;
  background:
    linear-gradient(150deg, rgba(194, 161, 91, 0.16), transparent 42%),
    var(--surface-raised);
}

.fellowship-card.thesis p {
  margin: 8px 0 0;
  max-width: 820px;
  color: var(--white-70);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
}

.fellowship-track-list {
  display: grid;
  margin: 0 var(--outer);
  padding: var(--section-rhythm) 0;
  border-top: 1px solid var(--line);
}

.fellowship-track-list article {
  display: grid;
  grid-template-columns: 86px minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 58px);
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.fellowship-track-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.fellowship-track-list span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 28px;
}

.fellowship-track-list h3 {
  margin: 0;
  font-size: var(--font-size-card-title);
  font-weight: 400;
  line-height: 1.08;
}

.fellowship-track-list p {
  margin: 0;
  color: var(--white-55);
  font-size: 15px;
  line-height: 1.55;
}

.studio-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.studio-stage {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 280px;
  padding: clamp(22px, 3vw, 38px);
  background: var(--surface-soft);
}

.studio-build-room {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  margin: 0 var(--outer);
  padding: var(--section-rhythm) 0;
  border-top: 1px solid var(--line);
}

.studio-build-room .placeholder {
  min-height: 460px;
}

.studio-build-room-list {
  display: grid;
  align-content: center;
  gap: 1px;
}

.studio-build-room-list article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.studio-build-room-list h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
}

.studio-build-room-list p {
  margin: 8px 0 0;
  color: var(--white-55);
  font-size: 15px;
}

.alumni-network-map {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.alumni-node {
  display: grid;
  min-height: 210px;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 38px);
  background: var(--surface-soft);
}

.alumni-node.hub {
  grid-row: span 2;
  min-height: 438px;
  place-content: center;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(194, 161, 91, 0.18), transparent 44%),
    var(--surface-raised);
}

.alumni-node.hub h3 {
  font-size: clamp(24px, 2.6vw, 38px);
}

.alumni-signal-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
}

.alumni-signal-strip span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 18px;
  background: var(--surface-soft);
  color: var(--white-70);
  text-align: center;
}

.partner-system {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partner-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 3vw, 38px);
  background: var(--surface-soft);
}

.partner-logo-theatre .section-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--white-55);
  font-size: 15px;
}

.partner-logo-theatre .join-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-logo-theatre .join-logo-slot {
  min-height: 168px;
}

@media (max-width: 1024px) {
  .join-editorial,
  .career-board-head,
  .internship-fieldbook,
  .internship-rhythm,
  .fellowship-dossier-head,
  .studio-blueprint-head,
  .studio-build-room,
  .alumni-constellation-head,
  .partner-architecture-head {
    grid-template-columns: 1fr;
  }

  .join-editorial p,
  .career-board-head p,
  .fellowship-dossier-head p,
  .studio-blueprint-head p,
  .alumni-constellation-head p,
  .partner-architecture-head p {
    margin-top: 0;
  }

  .join-editorial-copy {
    margin-top: 0;
  }

  .career-role-matrix,
  .fellowship-dossier-grid,
  .studio-map,
  .alumni-network-map,
  .alumni-signal-strip,
  .partner-logo-theatre .join-logo-grid {
    grid-template-columns: 1fr;
  }

  .career-role-card.featured,
  .fellowship-card.thesis,
  .alumni-node.hub {
    grid-row: auto;
    min-height: 300px;
  }

  .career-principle-strip,
  .internship-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .internship-note:nth-child(2),
  .internship-note:nth-child(3),
  .studio-stage:nth-child(even) {
    transform: none;
    margin-top: 0;
  }

  .partner-row,
  .fellowship-track-list article {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 670px) {
  .join-editorial,
  .career-board,
  .internship-fieldbook,
  .internship-rhythm,
  .fellowship-dossier,
  .fellowship-track-list,
  .studio-blueprint,
  .studio-build-room,
  .alumni-constellation,
  .partner-architecture,
  .partner-logo-theatre {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .career-principle-strip,
  .internship-notes {
    grid-template-columns: 1fr;
  }

  .internship-rhythm li {
    grid-template-columns: 1fr;
  }
}
