:root {
  --ink: #071824;
  --ink-soft: #0d2936;
  --ink-mid: #153a49;
  --paper: #f4f3ef;
  --paper-warm: #ece9e1;
  --white: #ffffff;
  --text: #102731;
  --muted: #5d6c72;
  --line: rgba(16, 39, 49, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --accent: #69c7cf;
  --accent-light: #a5e0e4;
  --accent-dark: #1f7180;
  --sand: #d3b27b;
  --danger: #8d2d29;
  --success: #1f6b4a;
  --shell: 1240px;
  --header-height: 78px;
  --radius: 10px;
  --radius-large: 22px;
  --shadow: 0 30px 84px rgba(7, 24, 36, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

p,
figure,
ul,
ol,
dl {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.35rem, 6.45vw, 6.85rem);
  letter-spacing: -0.068em;
}

h2 {
  font-size: clamp(2.45rem, 4.8vw, 4.85rem);
  letter-spacing: -0.058em;
}

h3 {
  font-size: clamp(1.38rem, 2.2vw, 1.95rem);
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--accent-dark);
  font-size: 0.71rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 25px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

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

.large-copy {
  color: var(--text);
  font-size: clamp(1.1rem, 1.7vw, 1.36rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 730;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button span,
.button b {
  font-weight: 600;
  transition: transform 220ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover span,
.button:hover b,
.button:focus-visible span,
.button:focus-visible b {
  transform: translate(3px, -1px);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--accent);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--accent-dark);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 0.88rem;
  font-weight: 730;
  text-decoration: none;
}

.text-link span {
  transition: transform 220ms var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  color: var(--white);
  background: rgba(7, 24, 36, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 24, 36, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.34rem;
  font-weight: 560;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav > a {
  position: relative;
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transition: right 240ms var(--ease);
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a[aria-current="page"] {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a[aria-current="page"]::after {
  right: 0;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px !important;
  color: var(--ink) !important;
  background: var(--white);
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 12px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 0.8rem;
  font-weight: 680;
}

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

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  transform: translateY(-5px);
}

.nav-toggle-icon::after {
  transform: translateY(5px);
}

.nav-open .nav-toggle-icon {
  background: transparent;
}

.nav-open .nav-toggle-icon::before {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-icon::after {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 900px;
  padding: calc(var(--header-height) + 88px) 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 19%, rgba(105, 199, 207, 0.18), transparent 27%),
    linear-gradient(135deg, #061722 0%, #092530 58%, #0c3340 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.044) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.044) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.76) 72%, transparent 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.82fr);
  align-items: center;
  gap: clamp(58px, 7vw, 112px);
  padding-bottom: 86px;
}

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

.hero h1 span {
  display: block;
  color: var(--accent-light);
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.07rem, 1.65vw, 1.32rem);
  line-height: 1.55;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(105, 199, 207, 0.11);
}

.system-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 22px;
  background: rgba(3, 17, 25, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  box-shadow: inset 0 0 80px rgba(105, 199, 207, 0.04), 0 30px 80px rgba(0, 0, 0, 0.2);
}

.system-stage::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 96px;
  height: 96px;
  border-right: 1px solid rgba(105, 199, 207, 0.45);
  border-bottom: 1px solid rgba(105, 199, 207, 0.45);
  border-radius: 0 0 14px 0;
  pointer-events: none;
}

.stage-topline,
.stage-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.57rem;
  font-weight: 720;
  letter-spacing: 0.13em;
}

.stage-topline {
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-participants,
.stage-systems {
  display: grid;
  gap: 9px;
}

.stage-participants {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.stage-systems {
  grid-template-columns: repeat(4, 1fr);
}

.stage-participants span,
.stage-systems span {
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 650;
  text-align: center;
}

.stage-connectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  height: 42px;
}

.stage-connectors i {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--accent), rgba(105, 199, 207, 0.12));
}

.stage-connectors-bottom {
  grid-template-columns: repeat(4, 1fr);
}

.stage-connectors-bottom i {
  background: linear-gradient(rgba(105, 199, 207, 0.12), var(--accent));
}

.stage-core {
  padding: 29px 24px 25px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 7px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.stage-core small {
  display: block;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.stage-core strong {
  display: block;
  margin: 3px 0 21px;
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  font-weight: 280;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.stage-core div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(7, 24, 36, 0.25);
}

.stage-core div span {
  padding-top: 11px;
  font-size: 0.66rem;
  font-weight: 720;
}

.stage-footer {
  margin-top: 17px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-bar > div {
  min-height: 126px;
  padding: 27px 26px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-bar > div + div {
  padding-left: 26px;
}

.proof-bar > div:last-child {
  border-right: 0;
}

.proof-bar strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.proof-bar span {
  display: block;
  max-width: 220px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.79rem;
  line-height: 1.45;
}

.section {
  padding: clamp(92px, 10vw, 152px) 0;
}

.section-ink {
  color: var(--white);
  background: var(--ink);
}

.section-sand {
  background: var(--paper-warm);
}

.section-intro {
  background: var(--white);
}

.intro-grid,
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.52fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: end;
}

.intro-grid {
  margin-bottom: clamp(56px, 7vw, 96px);
}

.intro-grid h2,
.section-head h2 {
  max-width: 850px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section-head {
  margin-bottom: clamp(54px, 7vw, 88px);
}

.section-head > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.section-head-light > p {
  color: rgba(255, 255, 255, 0.62);
}

.trigger-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}

.trigger-list article {
  min-height: 292px;
  padding: 34px;
  background: var(--white);
  transition: background 200ms ease;
}

.trigger-list article:hover {
  background: #f8f7f3;
}

.trigger-list article > span,
.outcome-grid article > span,
.next-grid article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--accent-dark);
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.trigger-list h3 {
  max-width: 520px;
  margin-bottom: 15px;
}

.trigger-list p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.service-ledger {
  border-top: 1px solid var(--line-light);
}

.service-ledger article {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(260px, 0.78fr) minmax(310px, 1fr) 90px;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  padding: clamp(44px, 6vw, 72px) 0;
  border-bottom: 1px solid var(--line-light);
}

.service-ledger article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 420ms var(--ease);
}

.service-ledger article:hover::before {
  width: 100%;
}

.service-index {
  color: var(--accent);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 280;
  letter-spacing: -0.07em;
  line-height: 1;
}

.service-title > p {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-title h3 {
  font-size: clamp(1.9rem, 3vw, 3.05rem);
}

.service-body > p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.67);
}

.service-body ul {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.service-body li {
  position: relative;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.service-body li + li {
  margin-top: 5px;
}

.service-body li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 1px;
  background: var(--accent);
}

.service-ledger article > a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 5px;
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
}

.service-ledger article > a span {
  transition: transform 220ms var(--ease);
}

.service-ledger article > a:hover span,
.service-ledger article > a:focus-visible span {
  transform: translateX(5px);
}

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

.outcome-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 9vw, 130px);
  align-items: start;
}

.outcome-statement {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.outcome-statement h2 {
  max-width: 580px;
}

.outcome-statement .text-link {
  margin-top: 34px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}

.outcome-grid article {
  min-height: 285px;
  padding: 32px;
  background: var(--paper);
}

.outcome-grid h3 {
  margin-bottom: 14px;
}

.outcome-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

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

.process-rail article {
  position: relative;
  min-height: 310px;
  padding: 30px 27px 30px 0;
  border-right: 1px solid var(--line);
}

.process-rail article + article {
  padding-left: 27px;
}

.process-rail article:last-child {
  border-right: 0;
}

.process-rail article > span {
  display: block;
  margin-bottom: 75px;
  color: var(--accent-dark);
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.process-rail small {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-dark);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-rail h3 {
  margin-bottom: 13px;
}

.process-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.process-rail article::before {
  content: "";
  position: absolute;
  top: 57px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--paper-warm);
  border: 2px solid var(--accent-dark);
  border-radius: 50%;
}

.process-rail article + article::before {
  left: 27px;
}

.consulting-section {
  background: var(--white);
}

.consulting-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1.05fr);
  gap: clamp(54px, 9vw, 128px);
  align-items: center;
}

.consulting-image {
  position: relative;
  margin: 0;
}

.consulting-image::before {
  content: "";
  position: absolute;
  top: 24px;
  right: -24px;
  bottom: -24px;
  left: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.consulting-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consulting-copy h2 {
  max-width: 720px;
}

.consulting-copy > .large-copy {
  max-width: 650px;
  margin: 26px 0 0;
}

.principle-list {
  margin: 38px 0 30px;
  border-top: 1px solid var(--line);
}

.principle-list > div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list strong {
  color: var(--accent-dark);
  font-size: 0.88rem;
}

.principle-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mandate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.mandate-grid article {
  min-height: 285px;
  padding: 34px;
  background: var(--ink);
  transition: background 220ms ease;
}

.mandate-grid article:hover {
  background: var(--ink-soft);
}

.mandate-grid small {
  display: block;
  margin-bottom: 70px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mandate-grid h3 {
  max-width: 500px;
  margin-bottom: 14px;
}

.mandate-grid p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.9rem;
}

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

.team-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.team-teaser > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.team-teaser .large-copy {
  max-width: 580px;
  margin-top: 24px;
  color: var(--muted);
}

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

.team-ledger a {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(260px, 1fr) 34px;
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.team-ledger a > span {
  font-size: 1.05rem;
  font-weight: 680;
}

.team-ledger small {
  color: var(--muted);
  font-size: 0.82rem;
}

.team-ledger b {
  color: var(--accent-dark);
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 220ms var(--ease);
}

.team-ledger a:hover b,
.team-ledger a:focus-visible b {
  transform: translateX(5px);
}

.cta-section {
  padding-top: 0;
  background: var(--paper);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: end;
  overflow: hidden;
  padding: clamp(46px, 7vw, 82px);
  color: var(--white);
  background: var(--accent-dark);
  border-radius: var(--radius-large);
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.cta-panel::before {
  top: -275px;
  right: -185px;
  width: 500px;
  height: 500px;
}

.cta-panel::after {
  top: -190px;
  right: -105px;
  width: 345px;
  height: 345px;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 840px;
  font-size: clamp(2.55rem, 5vw, 5.15rem);
}

.cta-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero,
.legal-hero {
  position: relative;
  min-height: 600px;
  padding: calc(var(--header-height) + 112px) 0 100px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 23%, rgba(105, 199, 207, 0.17), transparent 28%),
    linear-gradient(135deg, var(--ink), var(--ink-mid));
}

.page-hero::before,
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 93%);
}

.page-hero-grid,
.legal-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.48fr);
  gap: clamp(58px, 9vw, 120px);
  align-items: end;
}

.page-hero h1,
.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(3.55rem, 6.7vw, 6.9rem);
}

.page-hero-copy {
  padding: 26px 0 4px 27px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.page-hero-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.02rem;
}

.hero-mini-nav,
.direct-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.hero-mini-nav a,
.direct-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.81rem;
  font-weight: 650;
  text-decoration: none;
}

.hero-mini-nav a:hover,
.direct-links a:hover,
.hero-mini-nav a:focus-visible,
.direct-links a:focus-visible {
  color: var(--white);
}

.service-detail {
  border-bottom: 1px solid var(--line);
}

.service-detail-alt {
  background: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.18fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.detail-sticky {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.detail-number {
  display: block;
  margin-bottom: 30px;
  color: var(--accent-dark);
  font-size: clamp(3.3rem, 6vw, 6.5rem);
  font-weight: 250;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.detail-sticky h2 {
  font-size: clamp(2.55rem, 4.6vw, 4.6rem);
}

.detail-sticky p {
  margin: 22px 0 0;
  color: var(--muted);
}

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

.detail-intro {
  padding: 28px 0 38px;
  border-bottom: 1px solid var(--line);
}

.detail-intro h3 {
  max-width: 660px;
  margin-bottom: 17px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.detail-intro p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.work-package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
  border: 1px solid var(--line);
}

.work-package-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--paper);
}

.service-detail-alt .work-package-grid article {
  background: var(--white);
}

.work-package-grid small {
  display: block;
  margin-bottom: 48px;
  color: var(--accent-dark);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-package-grid h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.work-package-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.result-box {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding: 29px;
  color: var(--white);
  background: var(--ink-soft);
  border-radius: var(--radius);
}

.result-box > span {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
}

.integration-section {
  color: var(--white);
  background: var(--ink-soft);
}

.integration-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.2fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: center;
}

.integration-grid h2 {
  max-width: 620px;
}

.integration-grid > div:first-child > p:last-child {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.63);
}

.integration-map {
  display: grid;
  gap: 10px;
}

.integration-map > div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.integration-map strong {
  display: flex;
  align-items: center;
  padding: 16px;
  color: var(--accent);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.integration-map span {
  display: flex;
  align-items: center;
  padding: 16px 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.engagement-section {
  background: var(--white);
}

.engagement-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.engagement-grid > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.engagement-grid > div:first-child p:last-child {
  margin-top: 24px;
  color: var(--muted);
}

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

.engagement-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 25px;
  padding: 31px 0 35px;
  border-bottom: 1px solid var(--line);
}

.engagement-list article > span {
  color: var(--accent-dark);
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.engagement-list h3 {
  margin-bottom: 12px;
}

.engagement-list p {
  margin: 0;
  color: var(--muted);
}

.company-story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.story-grid > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.story-grid > div:first-child h2 {
  max-width: 620px;
}

.story-grid > div:last-child > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.story-facts {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.story-facts > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.story-facts strong {
  color: var(--accent-dark);
  font-size: 0.86rem;
}

.story-facts span {
  color: var(--muted);
  font-size: 0.9rem;
}

.principle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  gap: 1px;
}

.principle-cards article {
  min-height: 310px;
  padding: 32px;
  background: var(--paper-warm);
}

.principle-cards article > span {
  display: block;
  margin-bottom: 92px;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.principle-cards h3 {
  margin-bottom: 14px;
}

.principle-cards p {
  margin: 0;
  color: var(--muted);
}

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

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

.team-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.team-card-photo > img,
.team-card-monogram > .monogram {
  width: 100%;
  aspect-ratio: 4 / 4.2;
}

.team-card-photo > img {
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.84) contrast(1.02);
}

.monogram {
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 18%, rgba(105, 199, 207, 0.2), transparent 30%),
    var(--ink-soft);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 260;
  letter-spacing: -0.07em;
}

.team-card-body {
  padding: 28px 28px 30px;
}

.team-card-body > small {
  display: block;
  margin-bottom: 15px;
  color: var(--accent-dark);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card-body h3 {
  margin-bottom: 8px;
}

.team-role {
  min-height: 48px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.85rem;
}

.team-card-body ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.security-section {
  background: var(--ink-soft);
}

.security-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(40px, 8vw, 105px);
  align-items: center;
}

.security-mark {
  display: grid;
  place-items: center;
  width: 145px;
  height: 145px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 780;
}

.security-grid h2 {
  margin-bottom: 22px;
}

.security-grid p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.discretion-section {
  background: var(--white);
}

.discretion-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.discretion-grid > div:last-child {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.discretion-grid > div:last-child p {
  color: var(--muted);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.53fr) minmax(0, 1.12fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.contact-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.contact-sidebar h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
}

.contact-sidebar dl {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.contact-sidebar dl > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-sidebar dt {
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: 0.67rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-sidebar dd {
  margin: 0;
}

.contact-sidebar dd a {
  text-decoration: none;
}

.contact-assurance {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  color: var(--white);
  background: var(--ink-soft);
  border-radius: 7px;
}

.contact-assurance > span {
  color: var(--accent);
  font-weight: 800;
}

.contact-assurance p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-assurance strong {
  color: var(--white);
}

.form-panel {
  padding: clamp(32px, 5vw, 58px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.55rem);
}

.form-heading > p:last-child {
  margin: 15px 0 34px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px 19px;
}

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

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.field label span {
  color: var(--accent-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--text);
  background: #f8f7f3;
  border: 1px solid rgba(16, 39, 49, 0.2);
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 11px 13px;
}

.field textarea {
  min-height: 180px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px rgba(31, 113, 128, 0.12);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: var(--danger);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-submit-row > p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-submit-row .button[disabled] {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.form-message {
  margin: 0 0 22px;
  padding: 13px 15px;
  border-radius: 6px;
  font-size: 0.86rem;
}

.form-message[hidden] {
  display: none;
}

.form-message.is-error {
  color: #6c201d;
  background: #f8e4e2;
  border: 1px solid #e2b9b5;
}

.form-message.is-success {
  color: #155039;
  background: #e3f2ea;
  border: 1px solid #b8d9c8;
}

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

.next-grid article {
  min-height: 260px;
  padding: 30px 28px 30px 0;
  border-right: 1px solid var(--line);
}

.next-grid article + article {
  padding-left: 28px;
}

.next-grid article:last-child {
  border-right: 0;
}

.next-grid h3 {
  margin-bottom: 13px;
}

.next-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.legal-hero {
  min-height: 430px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 105px);
  align-items: start;
}

.legal-layout aside {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.legal-layout nav {
  display: grid;
  gap: 8px;
}

.legal-layout nav a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.legal-layout nav a:hover,
.legal-layout nav a:focus-visible {
  color: var(--ink);
}

.legal-copy {
  max-width: 800px;
}

.legal-copy h2 {
  margin: 48px 0 18px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.legal-copy h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-copy h3 {
  margin: 25px 0 10px;
  font-size: 1.18rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-notice {
  margin: 0 0 36px;
  padding: 20px;
  color: var(--text) !important;
  background: var(--paper-warm);
  border-left: 3px solid var(--accent-dark);
}

.status-page {
  display: grid;
  min-height: 100vh;
  padding: calc(var(--header-height) + 80px) 0 80px;
  place-items: center;
  background: var(--paper);
}

.status-card {
  max-width: 850px;
  padding: clamp(42px, 7vw, 82px);
  color: var(--white);
  background: var(--ink-soft);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.status-icon,
.status-code {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 35px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 50%;
  font-size: 1.9rem;
  font-weight: 800;
}

.status-code {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.status-card h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.status-card .large-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 74px 0 27px;
  color: var(--white);
  background: #04131b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(150px, 0.5fr));
  gap: 44px;
  padding-bottom: 60px;
}

.footer-intro p {
  max-width: 370px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column strong {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address,
.footer-column span {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.84rem;
  font-style: normal;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  text-decoration: none;
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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


.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 28px 0 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts > div {
  padding: 15px;
  background: rgba(7, 24, 36, 0.42);
}

.hero-facts dt {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.integration-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.integration-map > span {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 680;
  text-align: center;
}

.integration-map > .map-core {
  grid-row: 1 / 3;
  min-height: 234px;
  color: var(--ink);
  background: var(--accent);
  border-color: transparent;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 280;
  letter-spacing: -0.07em;
}

.engagement-list {
  counter-reset: engagement;
}

.engagement-list article {
  counter-increment: engagement;
}

.engagement-list article::before {
  content: "0" counter(engagement);
  grid-row: 1 / 3;
  color: var(--accent-dark);
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.engagement-list h3,
.engagement-list p {
  grid-column: 2;
}

.team-card-photo > figure {
  margin: 0;
}

.team-card-photo > figure,
.team-card-photo > figure img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
}

.team-card-photo > figure img {
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.84) contrast(1.02);
}

.result-box > small {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
    gap: 55px;
  }

  .service-ledger article {
    grid-template-columns: 72px minmax(230px, 0.75fr) minmax(270px, 1fr) 72px;
    gap: 30px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 30px 18px 60px;
    background: rgba(7, 24, 36, 0.99);
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 300ms var(--ease), visibility 300ms;
  }

  .js .nav-open .site-nav {
    visibility: visible;
    transform: translateX(0);
  }

  .js .site-nav > a {
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.12rem;
  }

  .js .nav-contact {
    justify-content: center;
    margin-top: 20px;
    border: 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 66px);
  }

  .hero-grid,
  .intro-grid,
  .section-head,
  .outcome-layout,
  .consulting-grid,
  .team-teaser,
  .page-hero-grid,
  .detail-grid,
  .integration-grid,
  .engagement-grid,
  .story-grid,
  .discretion-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .system-stage {
    width: min(100%, 620px);
    margin-inline: auto;
  }

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

  .proof-bar > div:nth-child(2) {
    border-right: 0;
  }

  .proof-bar > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .service-ledger article {
    grid-template-columns: 72px minmax(0, 1fr) 70px;
  }

  .service-body {
    grid-column: 2 / 4;
  }

  .service-ledger article > a {
    grid-column: 3;
    grid-row: 1;
  }

  .outcome-statement,
  .team-teaser > div:first-child,
  .detail-sticky,
  .engagement-grid > div:first-child,
  .story-grid > div:first-child,
  .contact-sidebar,
  .legal-layout aside {
    position: static;
  }

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

  .process-rail article:nth-child(2) {
    border-right: 0;
  }

  .process-rail article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .team-ledger a {
    grid-template-columns: minmax(180px, 0.8fr) 1fr 30px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .page-hero-copy {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .principle-cards {
    grid-template-columns: 1fr;
  }

  .principle-cards article {
    min-height: 260px;
  }

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

  .team-card {
    display: grid;
    grid-template-columns: minmax(250px, 0.78fr) 1fr;
  }

  .team-card-photo > img,
  .team-card-monogram > .monogram {
    height: 100%;
    min-height: 370px;
    aspect-ratio: auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-layout nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .legal-layout nav::-webkit-scrollbar {
    display: none;
  }

  .legal-layout nav a {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
  }

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

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

@media (max-width: 650px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  h1 {
    font-size: clamp(3.05rem, 14.6vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 48px);
  }

  .hero-grid {
    gap: 56px;
    padding-bottom: 60px;
  }

  .hero-lead {
    margin-top: 24px;
  }

  .actions {
    align-items: stretch;
  }

  .actions .button {
    width: 100%;
  }

  .system-stage {
    padding: 15px;
  }

  .stage-participants span,
  .stage-systems span {
    min-height: 44px;
    padding: 6px 3px;
    font-size: 0.6rem;
  }

  .stage-core {
    padding: 23px 18px 20px;
  }

  .stage-core div span {
    font-size: 0.57rem;
  }

  .stage-topline,
  .stage-footer {
    font-size: 0.48rem;
  }

  .proof-bar {
    grid-template-columns: 1fr;
  }

  .proof-bar > div,
  .proof-bar > div + div {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .proof-bar > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 80px 0;
  }

  .intro-grid,
  .section-head {
    gap: 28px;
    margin-bottom: 48px;
  }

  .trigger-list,
  .outcome-grid,
  .mandate-grid,
  .work-package-grid {
    grid-template-columns: 1fr;
  }

  .trigger-list article,
  .outcome-grid article,
  .mandate-grid article {
    min-height: 245px;
    padding: 28px;
  }

  .trigger-list article > span,
  .outcome-grid article > span,
  .mandate-grid small {
    margin-bottom: 50px;
  }

  .service-ledger article {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-body,
  .service-ledger article > a {
    grid-column: auto;
    grid-row: auto;
  }

  .service-index {
    font-size: 2.5rem;
  }

  .service-ledger article > a {
    width: fit-content;
    margin-top: 8px;
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .process-rail article,
  .process-rail article + article {
    min-height: auto;
    padding: 28px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-rail article:last-child {
    border-bottom: 0;
  }

  .process-rail article > span {
    margin-bottom: 45px;
  }

  .process-rail article + article::before {
    left: 0;
  }

  .consulting-image::before {
    display: none;
  }

  .principle-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .team-ledger a {
    grid-template-columns: 1fr 24px;
    gap: 8px 16px;
  }

  .team-ledger small {
    grid-column: 1;
  }

  .team-ledger b {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .cta-panel {
    padding: 38px 24px;
    border-radius: var(--radius);
  }

  .page-hero,
  .legal-hero {
    padding: calc(var(--header-height) + 74px) 0 72px;
  }

  .page-hero h1,
  .legal-hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.65rem);
  }

  .detail-number {
    font-size: 3.1rem;
  }

  .work-package-grid article {
    min-height: 215px;
  }

  .result-box {
    grid-template-columns: 1fr;
  }

  .integration-map > div {
    grid-template-columns: 1fr;
  }

  .integration-map strong {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .engagement-list article {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .story-facts > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .principle-cards article {
    min-height: 250px;
    padding: 28px;
  }

  .principle-cards article > span {
    margin-bottom: 55px;
  }

  .team-card {
    display: block;
  }

  .team-card-photo > img,
  .team-card-monogram > .monogram {
    min-height: 340px;
    aspect-ratio: 4 / 4.2;
  }

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

  .security-mark {
    width: 108px;
    height: 108px;
  }

  .form-panel {
    padding: 28px 20px 30px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .form-submit-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .form-submit-row .button {
    width: 100%;
  }

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

  .next-grid article,
  .next-grid article + article {
    min-height: auto;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .next-grid article:last-child {
    border-bottom: 0;
  }

  .next-grid article > span {
    margin-bottom: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

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

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

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

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

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

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

/* Defensive sizing for nested CSS grids and off-canvas navigation. */
body {
  overflow-x: hidden;
}

.hero-grid > *,
.page-hero-grid > *,
.intro-grid > *,
.section-head > *,
.outcome-layout > *,
.consulting-grid > *,
.team-teaser > *,
.detail-grid > *,
.integration-grid > *,
.engagement-grid > *,
.story-grid > *,
.security-grid > *,
.discretion-grid > *,
.contact-layout > *,
.system-stage,
.stage-participants > *,
.stage-systems > *,
.stage-core > * {
  min-width: 0;
}

@media (max-width: 920px) {
  .team-card-photo > figure,
  .team-card-photo > figure img {
    height: 100%;
    min-height: 370px;
    aspect-ratio: auto;
  }
}

@media (max-width: 650px) {
  .integration-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .integration-map > .map-core {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 160px;
  }

  .integration-map > span {
    min-height: 88px;
  }

  .team-card-photo > figure,
  .team-card-photo > figure img {
    min-height: 340px;
    aspect-ratio: 4 / 4.2;
  }

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

/* Mobile navigation stays inside the viewport and therefore cannot create horizontal scrolling. */
@media (max-width: 920px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .js .site-nav {
    width: auto;
    height: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    clip-path: inset(0 0 0 100%);
    transition: opacity 240ms var(--ease), clip-path 300ms var(--ease), visibility 300ms;
  }

  .js .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    clip-path: inset(0);
  }
}

/* Final small-screen overflow safeguards. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

h1,
h2,
h3,
.section-head,
.hero-copy,
.page-hero-copy {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (max-width: 650px) {
  .system-stage::after,
  .consulting-image::before,
  .cta-panel::before,
  .cta-panel::after {
    display: none;
  }

  .hero-grid,
  .hero-copy,
  .section-head,
  .section-head > div,
  .system-stage,
  .cta-panel {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  h1,
  h2,
  h3 {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.8vw, 3.65rem);
    overflow-wrap: normal;
    hyphens: manual;
  }
}
