:root {
  --ink: #173247;
  --ink-deep: #102737;
  --paper: #f7f5ef;
  --paper-bright: #fffdf8;
  --blue: #009ddc;
  --blue-dark: #007aa9;
  --green: #c1d72e;
  --slate: #485d6b;
  --line: rgba(23, 50, 71, 0.16);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --section-space: clamp(5rem, 9vw, 8.5rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h2 {
  max-width: 17ch;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

h3 {
  font-weight: 600;
  line-height: 1.2;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: white;
  background: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--ink);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1.1rem;
}

.button-light {
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
}

.button-light:hover {
  background: var(--green);
  border-color: var(--green);
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, gap 160ms ease;
}

.text-link .link-label,
.card-link .link-label {
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.text-link:hover,
.card-link:hover {
  gap: 0.7rem;
  color: var(--blue-dark);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 39, 55, 0.96);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 32px rgba(16, 39, 55, 0.24);
}

.header-inner {
  display: flex;
  min-height: 6.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 4.9rem;
}

.brand {
  display: inline-flex;
  width: clamp(190px, 18vw, 238px);
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2vw, 2.2rem);
  color: white;
  font-size: 0.94rem;
  font-weight: 600;
}

.primary-nav > a:not(.button) {
  text-decoration: none;
}

.primary-nav > a:not(.button):hover,
.nav-dropdown > summary:hover {
  color: var(--green);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary span {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform 160ms ease;
}

.nav-dropdown[open] summary span {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 1rem);
  left: -1.1rem;
  display: grid;
  width: 320px;
  padding: 0.75rem 0;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 24px 60px rgba(23, 50, 71, 0.14);
}

.site-header .button {
  color: var(--ink-deep);
  background: var(--green);
  border-color: var(--green);
}

.site-header .button:hover {
  color: var(--ink-deep);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
}

.nav-dropdown-panel a {
  padding: 0.65rem 1.1rem;
  text-decoration: none;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
  color: var(--blue-dark);
  background: rgba(0, 157, 220, 0.07);
}

.menu-toggle {
  display: none;
}

.page-step-links {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  padding-top: clamp(9.5rem, 15vw, 12.5rem);
  background:
    radial-gradient(circle at 82% 40%, rgba(0, 157, 220, 0.2), transparent 38%),
    linear-gradient(135deg, var(--ink-deep) 0%, var(--ink) 58%, #1a3d55 100%);
}

.hero::before {
  position: absolute;
  top: -420px;
  right: -330px;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(193, 215, 46, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 130px rgba(193, 215, 46, 0.025), 0 0 0 260px rgba(0, 157, 220, 0.025);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero .eyebrow {
  color: var(--green);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.8rem;
  font-size: clamp(3.35rem, 6.6vw, 6.5rem);
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: #55c2ea;
}

.hero-lede {
  max-width: 710px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.hero .text-link {
  color: white;
}

.hero .text-link:hover {
  color: var(--green);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.35rem;
}

.hero-explore span[aria-hidden] {
  font-size: 1.08em;
  transition: transform 160ms ease;
}

.hero-explore:hover span[aria-hidden] {
  transform: translateY(3px);
}

.partner-proof {
  display: grid;
  max-width: 680px;
  grid-template-columns: 30px 1fr;
  align-items: start;
  gap: 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.partner-proof-mark {
  position: relative;
  width: 26px;
  height: 26px;
  margin-top: 0.2rem;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.partner-proof-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-visual {
  display: grid;
  align-self: start;
  justify-items: center;
  gap: clamp(0.8rem, 1vw, 1rem);
  min-height: 0;
  margin: 0;
  padding-top: clamp(0.75rem, 2vw, 2rem);
}

.ripple-graphic {
  width: min(100%, 560px);
}

.ripple-caption {
  width: min(400px, 88%);
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.ripple-wave {
  fill: none;
  stroke: var(--green);
  stroke-width: 7;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  vector-effect: non-scaling-stroke;
}

.ripple-wave-team {
  animation: ripple-wave 5.4s 0.55s cubic-bezier(0.2, 0.72, 0.2, 1) infinite;
}

.ripple-wave-organization {
  animation: ripple-wave 5.4s 1.25s cubic-bezier(0.2, 0.72, 0.2, 1) infinite;
}

.ripple-ring circle {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-dasharray: 2 8;
  stroke-linecap: round;
  transform-origin: center;
}

.ripple-ring-outer circle,
.ripple-ring-inner circle {
  opacity: 0.72;
}

.ripple-center-halo {
  fill: rgba(0, 157, 220, 0.12);
  stroke: rgba(85, 194, 234, 0.5);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: ripple-center-pulse 5.4s ease-out infinite;
}

.ripple-center {
  fill: var(--blue);
}

.ripple-svg-label rect {
  fill: rgba(16, 39, 55, 0.92);
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 1.5;
}

.ripple-svg-label text {
  fill: white;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-anchor: middle;
  text-transform: uppercase;
}

.credibility-bar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 39, 55, 0.9);
  backdrop-filter: blur(10px);
}

.credibility-bar > div {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem clamp(1rem, 3vw, 2rem);
}

.credibility-bar > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.credibility-bar strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.25rem);
  font-weight: 500;
  white-space: nowrap;
}

.credibility-bar span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}

.section {
  padding-block: var(--section-space);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.offering-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.52);
  transition: background-color 180ms ease, transform 180ms ease;
}

.offering-card:hover {
  z-index: 1;
  background: var(--paper-bright);
  box-shadow: 0 26px 70px rgba(23, 50, 71, 0.09);
  transform: translateY(-4px);
}

.offering-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.offering-card h3 {
  max-width: 15ch;
  min-width: 0;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.offering-card p {
  max-width: 58ch;
  margin-bottom: 2rem;
  color: var(--slate);
  font-size: 1.04rem;
}

.offering-card .card-link {
  margin-top: auto;
}

.mini-ripple {
  position: relative;
  display: block;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.mini-ripple::before,
.mini-ripple::after {
  position: absolute;
  display: block;
  border-radius: 50%;
  content: "";
}

.mini-ripple::before {
  inset: 10px;
  border: 2px solid rgba(193, 215, 46, 0.72);
}

.mini-ripple::after {
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.mini-ripple-leader {
  border-color: rgba(193, 215, 46, 0.32);
}

.mini-ripple-leader::before {
  border-color: rgba(193, 215, 46, 0.32);
}

.mini-ripple-team {
  border-color: rgba(193, 215, 46, 0.3);
}

.mini-ripple-team::before {
  border-color: var(--green);
  border-width: 3px;
}

.mini-ripple-organization {
  border-width: 3px;
}

.mini-ripple-organization::before {
  border-color: rgba(193, 215, 46, 0.38);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.section-dark::before {
  position: absolute;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(193, 215, 46, 0.16);
  border-radius: 50%;
  content: "";
}

.why::before {
  top: -360px;
  right: -220px;
  box-shadow: 0 0 0 110px rgba(193, 215, 46, 0.035), 0 0 0 220px rgba(0, 157, 220, 0.025);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.why-intro h2 {
  margin-bottom: 1.5rem;
}

.why-intro > p:last-child {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.principles {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.principle {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 1.25rem;
  padding-block: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-mark,
.about-ripple {
  position: relative;
  width: 26px;
  height: 26px;
  margin-top: 0.1rem;
  border: 1.5px solid rgba(193, 215, 46, 0.76);
  border-radius: 50%;
}

.principle-mark::after,
.about-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
}

.about-ripple {
  border-color: var(--green);
}

.principle h3 {
  margin-bottom: 0.55rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.impact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

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

.impact-story {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.impact-story-featured {
  color: white;
  background: var(--ink-deep);
}

.story-category {
  margin-bottom: 1.5rem;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-story-featured .story-category {
  color: var(--green);
}

.impact-story h3 {
  max-width: 18ch;
  margin-bottom: 1.35rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.impact-story > p:not(.story-category) {
  color: var(--slate);
}

.impact-story-featured > p:not(.story-category) {
  color: rgba(255, 255, 255, 0.74);
}

.story-impact {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.6;
}

.story-impact strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--blue-dark);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-story-featured .story-impact {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.impact-story-featured .story-impact strong {
  color: var(--green);
}

.about {
  background: var(--paper-bright);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-intro h2 {
  margin-bottom: 1.75rem;
}

.about-lede {
  max-width: 52ch;
  margin-bottom: 1.75rem;
  color: var(--slate);
  font-size: 1.15rem;
}

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

.about-point {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 1.25rem;
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.about-point p {
  margin: 0;
  color: var(--slate);
}

.about-point strong {
  color: var(--ink);
}

.conversation::before {
  right: -180px;
  bottom: -460px;
  box-shadow: 0 0 0 110px rgba(193, 215, 46, 0.035), 0 0 0 220px rgba(0, 157, 220, 0.025);
}

.conversation-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
}

.conversation h2 {
  margin-bottom: 1.3rem;
}

.conversation p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
}

.site-footer {
  padding-top: 4.5rem;
  color: white;
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: 3.5rem;
}

.footer-logo {
  width: 230px;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  width: 100%;
}

.footer-brand p,
.footer-contact p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.site-footer a {
  color: white;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes ripple-arrive {
  from {
    opacity: 0;
    transform: scale(0.66);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ripple-center-pulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.86);
  }
  10% {
    opacity: 0.9;
    transform: scale(1.25);
  }
  22% {
    opacity: 0.35;
    transform: scale(1);
  }
}

@keyframes ripple-wave {
  0% {
    opacity: 0;
    transform: scale(0.16);
  }
  4% {
    opacity: 0.82;
  }
  20% {
    opacity: 0.5;
  }
  30%, 100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  /* A backdrop filter makes fixed children relative to the header in Safari.
     Keep the mobile navigation fixed to the viewport instead. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 0;
    color: white;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--ink);
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: none;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: max(7rem, calc(5.5rem + env(safe-area-inset-top))) 1.5rem calc(2rem + env(safe-area-inset-bottom));
    color: var(--ink);
    background: var(--paper);
    font-family: var(--serif);
    font-size: 1.7rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a,
  .nav-dropdown > summary {
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .button {
    margin-top: 1.5rem;
    font-family: var(--sans);
    font-size: 1rem;
  }

  .nav-dropdown-panel {
    position: static;
    width: auto;
    padding: 0.3rem 0 0.8rem 1rem;
    border: 0;
    box-shadow: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 1rem;
  }

  .nav-dropdown-panel a {
    padding: 0.45rem 0;
  }

  .page-step-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0 0 1rem;
    font-family: var(--sans);
    font-size: 0.875rem;
    line-height: 1.3;
  }

  .page-step-links a {
    display: grid;
    gap: 0.2rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper-bright);
    text-decoration: none;
  }

  .page-step-links a:last-child {
    grid-column: 2;
    text-align: right;
  }

  .page-step-links span {
    color: var(--blue-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

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

  .hero-copy {
    padding-bottom: 2rem;
  }

  .hero-visual {
    width: min(100%, 620px);
    justify-self: center;
    padding: 1rem 0 clamp(2.75rem, 7vw, 4rem);
  }

  .offering-grid,
  .impact-grid,
  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .offering-card {
    min-height: 360px;
  }

  .impact-story {
    min-height: auto;
  }

  .story-impact {
    margin-top: 2.5rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 32px);
    --section-space: 4.5rem;
  }

  .header-inner {
    min-height: 5rem;
  }

  .brand {
    width: 184px;
  }

  .hero {
    padding-top: 8.2rem;
  }

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

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

  .partner-proof {
    grid-template-columns: 24px 1fr;
  }

  .hero-visual {
    width: 100%;
    padding-top: 0.75rem;
  }

  .ripple-caption {
    width: min(100%, 320px);
  }

  .credibility-bar {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .credibility-bar > div {
    min-height: 78px;
  }

  .credibility-bar > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .offering-grid {
    border-left: 0;
  }

  .offering-card {
    min-height: auto;
    padding-block: 2.3rem;
    border-left: 1px solid var(--line);
  }

  .impact-heading,
  .conversation-inner {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .impact-heading {
    display: flex;
  }

  .conversation-inner {
    gap: 2rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

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

/* Internal page system */

.nav-dropdown.is-current > summary,
.nav-dropdown-panel a[aria-current="page"] {
  color: var(--green);
}

.internal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(10rem, 15vw, 13rem) 0 clamp(5.5rem, 9vw, 8rem);
  color: white;
  background:
    radial-gradient(circle at 84% 46%, rgba(0, 157, 220, 0.2), transparent 30%),
    linear-gradient(135deg, var(--ink-deep) 0%, var(--ink) 62%, #1a3d55 100%);
}

.internal-hero::before,
.internal-hero::after {
  position: absolute;
  border: 1px solid rgba(193, 215, 46, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.internal-hero::before {
  top: -380px;
  right: -300px;
  width: 840px;
  height: 840px;
  box-shadow:
    0 0 0 120px rgba(193, 215, 46, 0.025),
    0 0 0 240px rgba(0, 157, 220, 0.022);
}

.internal-hero::after {
  bottom: -410px;
  left: -360px;
  width: 620px;
  height: 620px;
  opacity: 0.5;
}

.internal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.internal-hero-copy h1 {
  max-width: 13ch;
  margin-bottom: 1.75rem;
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
}

.internal-hero-lede {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  line-height: 1.68;
}

.system-ripple {
  display: grid;
  justify-items: center;
  margin: 0;
}

.system-ripple figcaption {
  margin-bottom: 0.85rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-ripple-stage {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
}

.system-ring,
.system-center {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.system-ring {
  border: 2px solid rgba(193, 215, 46, 0.72);
}

.system-ring-outer {
  width: 92%;
  height: 92%;
}

.system-ring-inner {
  width: 59%;
  height: 59%;
  border-width: 3px;
}

.system-center {
  width: 28px;
  height: 28px;
  background: var(--blue);
  box-shadow:
    0 0 0 18px rgba(0, 157, 220, 0.1),
    0 0 36px rgba(0, 157, 220, 0.38);
  animation: internal-center-pulse 5.4s ease-out infinite;
}

.system-label {
  position: absolute;
  left: 50%;
  padding: 0.22rem 0.65rem;
  color: white;
  background: rgba(16, 39, 55, 0.94);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.system-label-organization {
  top: 9.6%;
}

.system-label-team {
  top: 28.8%;
}

.system-label-leader {
  top: 59.2%;
}

.system-ripple > p {
  max-width: 30ch;
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
  text-align: center;
}

.overview-offerings {
  background: var(--paper);
}

.overview-section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  align-items: end;
  gap: 2rem 5rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.overview-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.55rem;
}

.overview-section-heading h2 {
  max-width: 14ch;
}

.overview-section-heading > p:last-child {
  max-width: 38ch;
  margin: 0 0 0.45rem;
  color: var(--slate);
  font-size: 1.12rem;
}

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

.overview-offering {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 7rem;
}

.overview-offering-heading {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 1.35rem;
}

.overview-offering-heading .mini-ripple {
  margin-top: 0.2rem;
}

.offering-level {
  margin: 0 0 0.55rem;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.overview-offering h3 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.overview-offering-body {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1.15fr);
  gap: 2rem clamp(2.5rem, 5vw, 5rem);
}

.offering-summary {
  margin: 0;
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.7;
}

.consider-list {
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 2px solid rgba(0, 157, 220, 0.22);
}

.consider-list h4 {
  margin: 0 0 0.9rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.consider-list ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  color: var(--slate);
  list-style: none;
}

.consider-list li {
  position: relative;
  padding-left: 1.15rem;
}

.consider-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.overview-offering-body .card-link {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.35rem;
}

.shared-approach::before {
  top: -330px;
  left: -260px;
  box-shadow:
    0 0 0 110px rgba(193, 215, 46, 0.03),
    0 0 0 220px rgba(0, 157, 220, 0.022);
}

.shared-approach-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(4rem, 8vw, 8rem);
}

.shared-approach-intro h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
}

.shared-approach-intro > p:last-child {
  max-width: 37ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
}

.approach-elements {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.approach-element {
  min-height: 290px;
  padding: clamp(1.75rem, 3vw, 2.7rem);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.approach-marker {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 2rem;
  border: 1.5px solid rgba(193, 215, 46, 0.72);
  border-radius: 50%;
}

.approach-marker::before,
.approach-marker::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.approach-marker::before {
  width: 19px;
  height: 19px;
  border: 1px solid rgba(193, 215, 46, 0.48);
}

.approach-marker::after {
  width: 7px;
  height: 7px;
  background: var(--blue);
}

.approach-element h3 {
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.approach-element p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.context-prompt {
  background: var(--paper-bright);
}

.context-prompt-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(2.5rem, 5vw, 5rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 157, 220, 0.045), transparent 42%),
    var(--paper-bright);
}

.context-prompt-mark {
  position: relative;
  width: min(100%, 220px);
  aspect-ratio: 1;
  justify-self: center;
  border: 2px solid rgba(193, 215, 46, 0.72);
  border-radius: 50%;
}

.context-prompt-mark::before,
.context-prompt-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.context-prompt-mark::before {
  width: 62%;
  height: 62%;
  border: 2px solid rgba(193, 215, 46, 0.72);
}

.context-prompt-mark::after {
  width: 14px;
  height: 14px;
  background: var(--blue);
}

.context-prompt h2 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
}

.context-prompt h2 + p {
  max-width: 62ch;
  margin-bottom: 1.65rem;
  color: var(--slate);
  font-size: 1.08rem;
}

@keyframes internal-center-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 14px rgba(0, 157, 220, 0.08),
      0 0 28px rgba(0, 157, 220, 0.24);
  }
  14% {
    box-shadow:
      0 0 0 24px rgba(0, 157, 220, 0.14),
      0 0 44px rgba(0, 157, 220, 0.46);
  }
  30% {
    box-shadow:
      0 0 0 18px rgba(0, 157, 220, 0.1),
      0 0 36px rgba(0, 157, 220, 0.34);
  }
}

@media (max-width: 1050px) {
  .internal-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
    gap: 3rem;
  }

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

  .overview-offering-body {
    grid-template-columns: 1fr;
  }

  .overview-offering-body .card-link {
    grid-column: 1;
  }
}

@media (max-width: 820px) {
  .internal-hero-grid,
  .overview-section-heading,
  .overview-offering,
  .shared-approach-grid,
  .context-prompt-inner {
    grid-template-columns: 1fr;
  }

  .internal-hero-grid {
    gap: 4rem;
  }

  .internal-hero-copy h1 {
    max-width: 14ch;
  }

  .system-ripple {
    width: min(100%, 430px);
    justify-self: center;
  }

  .overview-section-heading .eyebrow {
    grid-column: 1;
  }

  .overview-section-heading > p:last-child {
    margin: 0;
  }

  .overview-offering {
    gap: 2.5rem;
  }

  .overview-offering h3 {
    max-width: 18ch;
  }

  .shared-approach-grid {
    gap: 3.5rem;
  }

  .context-prompt-mark {
    width: min(50vw, 200px);
  }
}

@media (max-width: 560px) {
  .internal-hero {
    padding-top: 8.5rem;
  }

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

  .system-ripple-stage {
    width: min(100%, 330px);
  }

  .overview-offering-heading {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }

  .overview-offering-heading .mini-ripple {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .consider-list {
    padding-left: 1.25rem;
  }

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

  .approach-element {
    min-height: auto;
  }

  .context-prompt-inner {
    padding: 2rem;
  }
}

/* Shared Insight to Impact pathway */

.leadership-hero .internal-hero-copy h1 {
  max-width: 10.5ch;
  line-height: 1.08;
}

.insight-impact-path {
  display: grid;
  align-self: stretch;
  align-content: center;
  margin: 0;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 39, 55, 0.48);
  backdrop-filter: blur(8px);
}

.insight-impact-path figcaption {
  margin-bottom: 2rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.insight-impact-path-line {
  position: relative;
  display: grid;
  gap: clamp(0.85rem, 1.6vw, 1.15rem);
  margin-bottom: 2rem;
}

.insight-impact-path-line::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 9px;
  width: 1px;
  background: rgba(193, 215, 46, 0.46);
  content: "";
}

.insight-impact-path-line span {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 1rem;
}

.insight-impact-path-line i {
  width: 19px;
  height: 19px;
  border: 5px solid var(--ink-deep);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px rgba(193, 215, 46, 0.72);
}

.insight-impact-path-line strong {
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.16;
}

.insight-impact-path-line span:last-child i {
  background: var(--green);
}

.insight-impact-path > p {
  max-width: 38ch;
  margin: 0;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
}

.participation-models {
  background: var(--paper);
}

.offering-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 2rem 5rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.offering-page-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.55rem;
}

.offering-page-heading h2 {
  max-width: 13ch;
}

.offering-page-heading > p:last-child {
  max-width: 38ch;
  margin: 0 0 0.45rem;
  color: var(--slate);
  font-size: 1.12rem;
}

.models-layout {
  display: grid;
  gap: 1.35rem;
}

.model-featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(2.5rem, 5vw, 5rem);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 157, 220, 0.18), transparent 32%),
    var(--ink-deep);
}

.model-featured::after {
  position: absolute;
  right: -230px;
  bottom: -370px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(193, 215, 46, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(193, 215, 46, 0.025);
  content: "";
  pointer-events: none;
}

.model-featured-intro,
.model-includes {
  position: relative;
  z-index: 1;
}

.model-kicker {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.model-featured .mini-ripple {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}

.model-featured h3,
.model-secondary h3,
.practice-featured h3,
.practice-secondary h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.model-featured h3 {
  max-width: 12ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.45rem, 4.6vw, 4.35rem);
  line-height: 1.02;
}

.model-tagline {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.3;
}

.model-featured .model-tagline {
  color: white;
}

.model-featured-intro > p:last-child,
.model-includes > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.model-includes {
  align-self: center;
  padding-left: clamp(2rem, 4vw, 4rem);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.model-includes > p {
  margin-bottom: 1.5rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  color: var(--slate);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.check-list li::before {
  position: absolute;
  top: 0.69em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.check-list-light {
  color: rgba(255, 255, 255, 0.82);
}

.model-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.model-secondary {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.model-secondary-heading {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.model-secondary h3 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.05;
}

.model-secondary > p:not(.model-tagline) {
  color: var(--slate);
}

.model-secondary h4 {
  margin: 1.5rem 0 1rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.focus-note {
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.leadership-practice::before {
  top: -350px;
  right: -260px;
  box-shadow:
    0 0 0 110px rgba(193, 215, 46, 0.03),
    0 0 0 220px rgba(0, 157, 220, 0.022);
}

.practice-heading,
.practice-layout {
  position: relative;
}

.practice-heading {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.practice-heading h2 {
  max-width: 15ch;
}

.practice-layout {
  display: grid;
  gap: 1.35rem;
}

.practice-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  color: var(--ink);
  background: var(--paper-bright);
}

.practice-story-copy {
  padding: clamp(2.5rem, 5vw, 5rem);
}

.practice-model {
  margin-bottom: 1.25rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.practice-featured h3 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  line-height: 1.04;
}

.practice-featured .practice-story-copy > p:not(.practice-model),
.practice-secondary > p:not(.practice-model) {
  color: var(--slate);
}

.practice-impact-copy {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.practice-evidence {
  display: grid;
  align-content: center;
  margin: 0;
  padding: clamp(2.25rem, 4vw, 4rem);
  color: white;
  background: var(--blue-dark);
}

.practice-evidence > div {
  padding-block: 1.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.practice-evidence > div:last-child {
  border-bottom: 0;
}

.practice-evidence dt {
  margin-bottom: 0.35rem;
  color: white;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.practice-evidence dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.practice-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.practice-secondary {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 39, 55, 0.42);
}

.practice-secondary .practice-model {
  color: var(--green);
}

.practice-secondary h3 {
  max-width: 17ch;
  margin-bottom: 1.35rem;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.practice-secondary > p:not(.practice-model) {
  color: rgba(255, 255, 255, 0.7);
}

.practice-secondary .practice-impact-copy {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.leadership-outcomes {
  background: var(--paper-bright);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 9rem);
}

.outcomes-intro {
  position: sticky;
  top: 8rem;
}

.outcomes-intro h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
}

.outcomes-intro > p:last-child {
  max-width: 43ch;
  margin: 0;
  color: var(--slate);
  font-size: 1.1rem;
}

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

.outcomes-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  align-content: center;
  gap: 1.35rem;
  min-height: 110px;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.outcomes-list p {
  max-width: 52ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.outcome-ripple {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(193, 215, 46, 0.34);
  border-radius: 50%;
}

.outcome-ripple::before,
.outcome-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.outcome-ripple::before {
  width: 23px;
  height: 23px;
  border: 1.5px solid rgba(193, 215, 46, 0.34);
}

.outcome-ripple::after {
  width: 8px;
  height: 8px;
  background: var(--blue);
}

@media (max-width: 980px) {
  .model-featured,
  .practice-featured {
    grid-template-columns: 1fr;
  }

  .model-includes {
    padding-top: 2.5rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .practice-evidence {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .practice-evidence > div {
    padding: 0 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 0;
  }

  .practice-evidence > div:first-child {
    padding-left: 0;
  }

  .practice-evidence > div:last-child {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .offering-page-heading,
  .model-secondary-grid,
  .practice-secondary-grid,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .offering-page-heading .eyebrow {
    grid-column: 1;
  }

  .offering-page-heading > p:last-child {
    margin: 0;
  }

  .outcomes-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .insight-impact-path {
    padding: 2rem;
  }

  .model-featured,
  .model-secondary,
  .practice-story-copy,
  .practice-secondary {
    padding: 2rem;
  }

  .model-secondary-heading {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }

  .model-secondary-heading .mini-ripple {
    width: 48px;
    height: 48px;
  }

  .practice-evidence {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .practice-evidence > div,
  .practice-evidence > div:first-child,
  .practice-evidence > div:last-child {
    padding: 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .practice-evidence > div:last-child {
    border-bottom: 0;
  }

  .outcomes-list li {
    grid-template-columns: 38px 1fr;
    gap: 1rem;
  }

  .outcome-ripple {
    width: 36px;
    height: 36px;
  }
}

/* Executive Coaching & Transitions */

.coaching-hero .internal-hero-copy h1 {
  max-width: 10.8ch;
  line-height: 1.07;
}

/* Team Cohesion & Alignment */

.team-hero .internal-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.5vw, 5.35rem);
  line-height: 1.06;
}

/* Culture & Employee Engagement */

.culture-hero .internal-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.85rem, 5.2vw, 5.05rem);
  line-height: 1.06;
}

.culture-moments {
  background: var(--paper);
}

.culture-practice {
  position: relative;
}

.culture-practice::before {
  top: -350px;
  right: -260px;
  box-shadow:
    0 0 0 110px rgba(193, 215, 46, 0.03),
    0 0 0 220px rgba(0, 157, 220, 0.022);
}

.culture-practice .practice-heading,
.culture-practice-feature,
.culture-practice-secondary {
  position: relative;
}

.culture-practice .practice-heading h2 {
  max-width: 18ch;
}

.culture-practice-intro {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.7);
}

.culture-practice-feature {
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
}

.culture-practice-secondary {
  margin-top: 1.35rem;
}

.culture-practice-secondary h3 {
  max-width: 20ch;
}

.culture-story-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
}

.culture-story-section {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.culture-story-section h4 {
  margin: 0 0 0.65rem;
  color: white;
  font-size: 1.05rem;
}

.culture-story-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.culture-story-impact {
  border-top-color: rgba(193, 215, 46, 0.9);
}

.culture-story-impact p {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.culture-process::before {
  top: -350px;
  right: -260px;
  box-shadow:
    0 0 0 110px rgba(193, 215, 46, 0.03),
    0 0 0 220px rgba(0, 157, 220, 0.022);
}

.team-moments {
  background: var(--paper);
}

.team-practice::before {
  top: -350px;
  right: -260px;
  box-shadow:
    0 0 0 110px rgba(193, 215, 46, 0.03),
    0 0 0 220px rgba(0, 157, 220, 0.022);
}

.team-practice .practice-heading,
.team-practice-feature {
  position: relative;
}

.team-practice .practice-heading h2 {
  max-width: 18ch;
}

.team-practice-feature {
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
}

.team-practice-impact {
  display: grid;
  align-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  color: white;
  background: var(--blue-dark);
}

.team-practice-impact h4 {
  max-width: 13ch;
  margin: 0 0 1.75rem;
  color: white;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.team-impact-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.team-impact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 1.15rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.team-impact-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.45;
}

.coaching-moments {
  background: var(--paper);
}

.offering-application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.offering-discipline h3,
.coaching-story h3,
.story-section h4 {
  font-family: var(--serif);
  font-weight: 500;
}

.coaching-architecture::before,
.team-process::before {
  top: -390px;
  right: -250px;
  box-shadow: 0 0 0 110px rgba(193, 215, 46, 0.03), 0 0 0 220px rgba(0, 157, 220, 0.022);
}

.architecture-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 9rem);
}

.architecture-intro {
  position: sticky;
  top: 8rem;
}

.architecture-intro h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
}

.architecture-intro > p:last-child {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.offering-disciplines {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.offering-discipline {
  display: grid;
  grid-template-columns: minmax(190px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.discipline-heading {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 1.15rem;
}

.discipline-heading .outcome-ripple {
  margin-top: 0.05rem;
}

.offering-discipline h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
}

.offering-discipline > p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.coaching-partnership,
.team-partnership,
.culture-partnership,
.leadership-partnership {
  background: var(--paper-bright);
}

.partnership-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 8rem);
  margin-bottom: clamp(5rem, 9vw, 8rem);
}

.partnership-principle {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.partnership-principle h2,
.assessment-informed h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.partnership-principle h2 {
  max-width: 12ch;
}

.partnership-principle > p:last-child,
.assessment-informed > p:not(.eyebrow) {
  max-width: 60ch;
  margin: 0;
  color: var(--slate);
  font-size: 1.04rem;
}

.coaching-details {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  align-items: stretch;
  gap: 1.35rem;
}

.assessment-informed {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.assessment-informed h2 {
  max-width: 13ch;
}

.assessment-links {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.assessment-links a {
  width: fit-content;
  color: var(--ink);
  font-weight: 650;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
}

.assessment-links a:hover {
  color: var(--blue-dark);
}

.engagement-length {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  color: white;
  background: var(--blue-dark);
}

.engagement-length::after {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(193, 215, 46, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(193, 215, 46, 0.05);
  content: "";
}

.engagement-length > * {
  position: relative;
  z-index: 1;
}

.engagement-length h2 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
  color: white;
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
  line-height: 1.04;
}

.engagement-length-ripple {
  margin-bottom: 2rem;
}

.team-engagement-format h2 {
  max-width: 11ch;
}

.engagement-length > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.engagement-length > p:last-child strong {
  color: white;
  font-weight: 650;
}

.coaching-practice {
  position: relative;
}

.coaching-practice::before {
  top: -350px;
  right: -260px;
  box-shadow: 0 0 0 110px rgba(193, 215, 46, 0.03), 0 0 0 220px rgba(0, 157, 220, 0.022);
}

.coaching-practice .practice-heading,
.coaching-practice .coaching-story-grid {
  position: relative;
}

.coaching-practice .practice-heading h2 {
  max-width: 16ch;
}

.coaching-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.coaching-story {
  padding: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--ink);
  background: var(--paper-bright);
}

.coaching-story h3 {
  max-width: 15ch;
  min-height: 3.3em;
  margin-bottom: 2.25rem;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  letter-spacing: -0.027em;
  line-height: 1.06;
}

.story-section {
  padding-block: 1.35rem;
  border-top: 1px solid var(--line);
}

.story-section h4 {
  margin: 0 0 0.55rem;
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.story-section p {
  margin: 0;
  color: var(--slate);
}

.story-outcome {
  border-top-color: rgba(193, 215, 46, 0.9);
}

.story-outcome h4 {
  color: var(--ink);
}

.story-outcome p {
  color: var(--ink);
  font-weight: 500;
}

.coaching-outcomes {
  background: var(--paper-bright);
}

.coaching-outcomes .outcomes-intro h2 {
  max-width: 12ch;
}

.team-outcomes {
  background: var(--paper-bright);
}

.team-outcomes .outcomes-intro h2 {
  max-width: 12ch;
}

.culture-outcomes {
  background: var(--paper-bright);
}

.culture-outcomes .outcomes-intro h2 {
  max-width: 13ch;
}

@media (max-width: 980px) {
  .team-practice-feature,
  .culture-practice-feature {
    grid-template-columns: 1fr;
  }

  .culture-story-columns {
    grid-template-columns: 1fr;
  }

  .architecture-grid {
    gap: 4rem;
  }

  .offering-discipline {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .partnership-principles {
    gap: 4rem;
  }

  .coaching-details {
    grid-template-columns: 1fr;
  }

  .engagement-length {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  .offering-application-grid,
  .architecture-grid,
  .partnership-principles,
  .coaching-story-grid {
    grid-template-columns: 1fr;
  }

  .architecture-intro {
    position: static;
  }

  .partnership-principles {
    gap: 3rem;
  }

  .coaching-story {
    border-bottom: 0;
  }

  .coaching-story:last-child {
    border-bottom: 0;
  }

  .coaching-story h3 {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .assessment-informed,
  .engagement-length,
  .coaching-story {
    padding: 2rem;
  }

  .team-practice-impact {
    padding: 2rem;
  }

  .offering-discipline {
    padding-block: 1.65rem;
  }

  .engagement-length {
    min-height: 390px;
  }
}
.client-impact-hero {
  padding-bottom: clamp(6rem, 11vw, 10rem);
}
.client-impact-hero-content { position: relative; z-index: 1; }
.client-impact-hero h1 { max-width: 11ch; margin-bottom: 1.5rem; font-size: clamp(3.5rem, 7vw, 7rem); }
.client-impact-hero .internal-hero-lede { max-width: 730px; }
.client-impact-intro { padding-bottom: clamp(3.5rem, 6vw, 5rem); background: var(--paper-bright); }
.client-impact-intro-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 8vw, 8rem); align-items: start; }
.client-impact-intro-grid h2 { max-width: 12ch; }
.client-impact-intro-grid > div:last-child { padding-top: 1.7rem; color: var(--slate); font-size: 1.13rem; }
.client-confidentiality { margin-top: 1.4rem; font-size: 0.95rem; }
.client-story-nav { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 3.5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.client-story-nav a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 5rem; padding: 1rem; border-right: 1px solid var(--line); font-weight: 650; line-height: 1.25; text-decoration: none; }
.client-story-nav a:first-child { padding-left: 0; }
.client-story-nav a:last-child { border-right: 0; }
.client-story-nav a:hover { color: var(--blue-dark); }
.client-story-nav span { color: var(--blue-dark); }
.client-chapter { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.client-chapter-alt { background: var(--paper-bright); }
.client-chapter-heading { margin-bottom: 2.8rem; }
.client-chapter-heading h2 { max-width: 19ch; font-size: clamp(2.7rem, 4.8vw, 4.5rem); }
.client-story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; align-items: stretch; }
.client-story-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.client-story { display: flex; flex-direction: column; padding: clamp(1.7rem, 2.7vw, 2.7rem); border: 1px solid var(--line); background: #fffdf8; box-shadow: 0 18px 50px rgba(16,39,55,.045); }
.client-chapter-alt .client-story { background: var(--paper); }
.client-story-top { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 1.3rem; }
.client-story-top .mini-ripple { flex: 0 0 20px; width: 20px; height: 20px; border-width: 1.5px; }
.client-story-top .mini-ripple::before { inset: 4px; border-width: 1.5px; }
.client-story-top .mini-ripple::after { width: 4px; height: 4px; }
.client-story-top .story-category { min-width: 0; margin: 0; line-height: 1.4; }
.client-story h3 { margin-bottom: 1.6rem; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.35rem); font-weight: 500; letter-spacing: -.025em; }
.client-story-detail { margin-bottom: 1.2rem; }
.client-story h4 { margin: 0 0 .4rem; color: var(--blue-dark); font-size: .8rem; font-weight: 700; letter-spacing: .11em; line-height: 1.35; text-transform: uppercase; }
.client-story p { margin-bottom: 0; color: var(--slate); }
.client-story-result { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.client-story-result h4 { color: var(--ink); }
@media (max-width: 1050px) {
  .client-story-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .client-impact-intro-grid, .client-story-grid, .client-story-grid-three { grid-template-columns: 1fr; }
  .client-story-nav { grid-template-columns: repeat(2, 1fr); }
  .client-story-nav a:nth-child(2) { border-right: 0; }
  .client-story-nav a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .client-story-nav a:nth-child(3) { padding-left: 0; }
  .client-impact-intro-grid > div:last-child { padding-top: 0; }
}
.about-hero { padding-bottom: clamp(5rem, 8vw, 7rem); }
.about-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: center; gap: clamp(3rem, 6vw, 6rem); }
.about-hero h1 { max-width: 15ch; margin-bottom: 1.8rem; font-size: clamp(3.1rem, 5.1vw, 5.5rem); }
.about-hero .internal-hero-lede { max-width: 660px; }
.about-portrait { width: min(100%, 430px); min-width: 0; margin: 0; justify-self: center; }
.about-portrait img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; }
.about-portrait figcaption { margin-top: .65rem; color: rgba(255,255,255,.72); font-size: .88rem; text-align: center; }
.about-credibility { border-top: 1px solid rgba(255,255,255,.12); color: white; background: var(--ink-deep); }
.about-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.about-proof-grid > div { display: flex; flex-direction: column; justify-content: center; min-height: 8.3rem; padding: 1.1rem 1.5rem; border-right: 1px solid rgba(255,255,255,.16); }
.about-proof-grid > div:first-child { padding-left: 0; }
.about-proof-grid > div:last-child { border-right: 0; }
.about-proof-grid strong { color: white; font-family: var(--serif); font-size: clamp(1.8rem, 2.6vw, 2.8rem); font-weight: 500; line-height: 1.1; }
.about-proof-grid span { margin-top: .4rem; color: rgba(255,255,255,.72); font-size: .85rem; font-weight: 650; line-height: 1.3; }
.about-narrative-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 9vw, 8rem); }
.about-narrative-grid h2 { max-width: 13ch; }
.about-prose { padding-top: 1.8rem; color: var(--slate); font-size: clamp(1.1rem, 1.4vw, 1.23rem); line-height: 1.7; }
.about-prose p:last-child { margin-bottom: 0; }
.about-systems::before { right: -15rem; bottom: -25rem; box-shadow: 0 0 0 120px rgba(193,215,46,.04), 0 0 0 230px rgba(0,157,220,.025); }
.about-systems .about-narrative-grid { position: relative; z-index: 1; }
.about-systems .about-prose { color: rgba(255,255,255,.8); }
.about-relationship { background: var(--paper-bright); }
.about-industries::before { top: -360px; right: -260px; opacity: .5; }
.about-industries > .shell { position: relative; z-index: 1; }
.about-industries h2 { max-width: 17ch; }
.about-industries-intro { margin: 1.7rem 0 1.6rem; color: rgba(255,255,255,.78); font-size: 1.14rem; }
.about-industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.about-industry-grid > div { display: grid; grid-template-columns: 28px minmax(0, 1fr); align-items: start; gap: 1rem; min-height: 9rem; padding: 1.8rem; border: 1px solid var(--line); background: var(--paper-bright); }
.about-industry-grid h3 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; line-height: 1.3; }
.about-bullet { position: relative; display: block; width: 28px; height: 28px; border: 1.5px solid var(--green); border-radius: 50%; }
.about-bullet::before { position: absolute; inset: 5px; border: 1.5px solid var(--green); border-radius: 50%; content: ""; }
.about-bullet::after { position: absolute; top: 50%; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); content: ""; transform: translate(-50%, -50%); }
.about-industry-breadth { margin: 1.5rem 0 0; color: rgba(255,255,255,.72); }
.about-credentials { background: var(--paper-bright); }
.about-credentials-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 9vw, 8rem); }
.about-credentials-grid h2 { max-width: 13ch; }
.about-primary-credentials { display: grid; gap: 1rem; margin: 0 0 2.6rem; padding: 0; list-style: none; }
.about-primary-credentials li { display: grid; grid-template-columns: 28px minmax(0, 1fr); align-items: start; gap: 1rem; }
.about-primary-credentials p { margin: 0; font-size: 1.17rem; font-weight: 600; line-height: 1.5; }
.about-credentials-grid h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.about-credentials-grid > div:last-child > p { color: var(--slate); }
.about-education { padding-top: 1rem; border-top: 1px solid var(--line); font-size: .95rem; }
@media (max-width: 900px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-portrait { margin: 1rem auto 0; }
  .about-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .about-proof-grid > div:nth-child(2) { border-right: 0; }
  .about-proof-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .about-proof-grid > div:nth-child(3) { padding-left: 0; }
  .about-industry-grid { grid-template-columns: 1fr; }
  .about-industry-grid > div { min-height: 0; }
}
@media (max-width: 680px) {
  .about-narrative-grid, .about-credentials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-prose { padding-top: 0; }
  .about-proof-grid > div { min-height: 7rem; padding: 1rem; }
  .about-proof-grid strong { font-size: 1.8rem; }
  .about-portrait { width: min(78vw, 360px); }
}

/* Selected client marks retain original colors and aspect ratios. */
.about-client-logos { margin-top: 3.5rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,.2); scroll-margin-top: 7rem; }
.about-client-logos h3 { margin: 0 0 1.8rem; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.1rem); font-weight: 500; color: white; }
.client-logo-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 1rem; padding: 0; margin: 0; list-style: none; }
.client-logo-card { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; min-width: 0; margin: 0; padding: 1.4rem 1rem 1.2rem; background: #fff; border: 1px solid rgba(255,255,255,.2); color: var(--ink); }
.client-logo-card.client-logo-dark { background: var(--ink-deep); color: white; }
.client-logo-image { width: 100%; height: 94px; display: flex; align-items: center; justify-content: center; }
.client-logo-image img { display: block; width: auto; height: auto; max-width: 100%; max-height: 86px; object-fit: contain; }
.client-logo-name { display: block; min-height: 2.6em; font-size: .875rem; line-height: 1.3; text-align: center; }
@media(max-width:1000px) { .client-logo-grid { grid-template-columns: repeat(3,minmax(0,1fr)); } }
@media(max-width:600px) { .client-logo-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: .75rem; } .client-logo-card { padding: 1rem .75rem; } .client-logo-image { height: 78px; } .client-logo-image img { max-height: 72px; } }
@media(max-width:340px) { .client-logo-grid { grid-template-columns: 1fr; } }

.conversation-booking { width: 22rem; max-width: 100%; min-width: 0; }
.conversation-booking .button { width: 100%; text-align: center; white-space: normal; }
.conversation .conversation-booking .conversation-duration { width: 100%; max-width: 100%; margin: .75rem 0 0; padding-inline: .4rem; font-size: .875rem; line-height: 1.5; text-align: center; }

.conversation-email { position: relative; margin-top: 3.5rem; padding-top: 2.25rem; border-top: 1px solid rgba(255,255,255,.2); }
.conversation-email h3 { margin: 0 0 .65rem; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2rem); font-weight: 500; }
.conversation .conversation-email p { max-width: 100%; margin: 0; color: rgba(255,255,255,.8); font-size: 1.0625rem; line-height: 1.5; }
.conversation-email a { color: #fff; font-weight: 600; overflow-wrap: anywhere; text-underline-offset: .2em; }
