@font-face {
  font-family: "Avenir Next Pro";
  src: url("assets/fonts/AvenirNextLTPro-Demi.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Next Pro";
  src: url("assets/fonts/AvenirNextLTPro-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy: #102a43;
  --navy-deep: #0b1f31;
  --white: #f7f5ef;
  --sand: #e8ddc8;
  --teal: #2f8f83;
  --teal-text: #216b63;
  --copper: #c9823b;
  --slate: #27323a;
  --ink-soft: #4b5961;
  --line: rgba(39, 50, 58, 0.2);
  --line-light: rgba(247, 245, 239, 0.24);
  --heading: "Avenir Next Pro", "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --shell: min(1180px, calc(100vw - 80px));
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --focus: #f2b36f;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--slate);
  background: var(--white);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

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

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

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(3.15rem, 5.7vw, 6.8rem);
  font-weight: 600;
  line-height: 0.94;
}

h1 em {
  color: var(--sand);
  font-style: normal;
  font-weight: 400;
}

h2 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.45rem, 4.35vw, 4.85rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.15vw, 2rem);
}

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

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

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

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

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 1.3rem;
  color: var(--teal-text);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.115em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

.eyebrow span {
  padding-inline: 0.55rem;
  color: var(--copper);
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  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: var(--navy);
  background: var(--white);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

/* Header */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(247, 245, 239, 0.18);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-stuck {
  position: fixed;
  background: rgba(16, 42, 67, 0.98);
  box-shadow: 0 8px 28px rgba(5, 18, 29, 0.15);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: 184px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.35rem, 2.6vw, 2.7rem);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.045em;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  text-transform: uppercase;
}

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

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

.nav-cta {
  padding: 0.9rem 1.15rem;
  color: var(--navy);
  background: var(--sand);
}

.nav-cta:hover {
  background: var(--white);
}

.nav-toggle {
  display: none;
  padding: 0.5rem;
  color: var(--white);
  background: transparent;
  border: 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle-lines {
  display: grid;
  width: 28px;
  gap: 7px;
}

.nav-toggle-lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 1.2rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 1px;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button span {
  font-size: 1.1rem;
}

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

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

/* Hero */
.hero {
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  color: var(--white);
  background: var(--navy);
}

.hero-copy {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  overflow: hidden;
  padding: 150px max(3.5rem, calc((100vw - 1180px) / 2)) 80px;
}

.hero-copy::before {
  position: absolute;
  right: 8%;
  bottom: 14%;
  width: 42%;
  height: 34%;
  border-right: 1px solid rgba(247, 245, 239, 0.12);
  border-bottom: 1px solid rgba(247, 245, 239, 0.12);
  content: "";
}

.hero-copy-inner {
  position: relative;
  z-index: 2;
  width: min(630px, 100%);
}

.hero h1 {
  color: var(--white);
}

.hero-summary {
  max-width: 45ch;
  margin-bottom: 2.3rem;
  color: rgba(247, 245, 239, 0.83);
  font-size: clamp(1.15rem, 1.5vw, 1.38rem);
  line-height: 1.5;
}

.hero-actions {
  display: grid;
  width: min(100%, 300px);
  gap: 0.7rem;
}

.hero-actions > p {
  width: 100%;
  margin: 0;
  color: rgba(247, 245, 239, 0.64);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.hero-path {
  position: absolute;
  z-index: 1;
  right: -1px;
  bottom: 18%;
  left: 54%;
  height: 3px;
  background: var(--teal);
}

.hero-path span {
  position: absolute;
  top: 50%;
  left: 35%;
  width: 12px;
  height: 12px;
  background: var(--copper);
  border: 3px solid var(--navy);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--navy);
}

.hero-visual::before {
  display: none;
}

.hero-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(16, 42, 67, 0.13);
  content: "";
  pointer-events: none;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: 48% 50%;
  transform: scale(1.03);
  transform-origin: center;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  width: 200px;
  min-height: 116px;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  color: var(--navy);
  background: var(--sand);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-stamp img {
  width: 48px;
  height: auto;
  object-fit: contain;
}

/* Outcomes */
.section-intro-split {
  display: grid;
  grid-template-columns: 0.85fr 1.55fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.section-intro-split > div > p {
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.outcome-list {
  display: grid;
  padding: 0;
  margin: clamp(4rem, 7vw, 6.5rem) 0 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.outcome-list li {
  padding: 2rem 2rem 0 0;
}

.outcome-list li + li {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.outcome-list p {
  max-width: 33ch;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.item-number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--teal-text);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Audiences */
.section-heading-row {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: 1.35fr 0.65fr;
  gap: 4rem;
  align-items: end;
}

.section-heading-row > p {
  max-width: 39ch;
  margin-bottom: 1.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(39, 50, 58, 0.35);
  border-bottom: 1px solid rgba(39, 50, 58, 0.35);
}

.audience-grid article {
  position: relative;
  min-height: 620px;
  padding: 2.3rem 1.05rem 2.7rem;
  overflow: hidden;
}

.audience-grid article + article {
  padding-left: 1.05rem;
  border-left: 1px solid rgba(39, 50, 58, 0.35);
}

.audience-grid article > *:not(.audience-code) {
  position: relative;
  z-index: 1;
}

.audience-grid article p:last-child {
  max-width: 34ch;
  margin-bottom: 0;
}

.audience-photo {
  position: relative;
  margin: 0 0 2.2rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}

.audience-photo picture,
.audience-photo img {
  width: 100%;
  height: 100%;
}

.audience-photo img {
  object-fit: cover;
}

.audience-grid article:nth-child(1) .audience-photo img {
  object-position: 54% center;
}

.audience-grid article:nth-child(2) .audience-photo img {
  object-position: 56% center;
}

.audience-grid article:nth-child(3) .audience-photo img {
  object-position: 39% center;
}

.audience-code {
  position: absolute;
  right: 0.45rem;
  bottom: -2.6rem;
  color: rgba(16, 42, 67, 0.07);
  font-family: var(--heading);
  font-size: 13rem;
  font-weight: 600;
  line-height: 1;
}

/* Service model */
.service-model {
  position: relative;
  overflow: hidden;
}

.service-model::after {
  position: absolute;
  top: 5%;
  right: -7%;
  width: 34vw;
  height: 34vw;
  max-width: 520px;
  max-height: 520px;
  border: 1px solid rgba(247, 245, 239, 0.07);
  border-radius: 50%;
  content: "";
}

.service-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 4rem;
  align-items: end;
}

.service-heading > p {
  max-width: 36ch;
  margin-bottom: 1.5rem;
  color: rgba(247, 245, 239, 0.7);
}

.service-steps {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 4rem 0 0;
  margin: 2rem 0 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.service-steps::before {
  position: absolute;
  top: 1.4rem;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--teal);
  content: "";
}

.service-steps li {
  position: relative;
  padding-right: 2.1rem;
}

.step-node {
  position: absolute;
  top: -3.05rem;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--navy);
  border: 3px solid var(--sand);
  border-radius: 50%;
}

.service-steps li:nth-child(3) .step-node {
  background: var(--copper);
  border-color: var(--copper);
}

.service-steps .item-number {
  margin-bottom: 1.2rem;
  color: var(--sand);
}

.service-steps p {
  max-width: 29ch;
  color: rgba(247, 245, 239, 0.68);
}

.commitments {
  position: relative;
  z-index: 1;
  display: grid;
  padding-top: clamp(4rem, 7vw, 7rem);
  margin: clamp(4rem, 7vw, 7rem) 0 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
}

.commitments > div + div {
  padding-left: 2rem;
  border-left: 1px solid var(--line-light);
}

.commitments dt {
  margin-bottom: 0.55rem;
  color: var(--sand);
  font-family: var(--heading);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.commitments dd {
  color: rgba(247, 245, 239, 0.66);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.045em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* Care */
.care-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: clamp(4rem, 9vw, 9rem);
  align-items: center;
}

.care-visual {
  position: relative;
  padding: 0 2.4rem 2.4rem 0;
}

.care-visual::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 46%;
  background: var(--sand);
  content: "";
}

.care-visual picture {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.care-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.image-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(265px, 68%);
  padding: 1rem 1.2rem;
  margin: 0;
  color: var(--navy);
  background: var(--sand);
  font-family: var(--mono);
  font-size: 0.67rem;
  line-height: 1.5;
}

.image-note span {
  margin-right: 0.5rem;
  color: var(--copper);
}

.care-copy .lead {
  max-width: 49ch;
  margin-bottom: 3.5rem;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

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

.pillar-list > div {
  display: grid;
  padding: 1.45rem 0;
  grid-template-columns: minmax(200px, 0.85fr) 1.15fr;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.pillar-list dt {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.pillar-list dt span {
  margin-right: 1rem;
  color: var(--teal-text);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.pillar-list dd {
  margin: 0;
  color: var(--ink-soft);
}

/* Site fit */
.fit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 9vw, 9rem);
  align-items: center;
}

.fit-layout > div > p:last-child {
  max-width: 48ch;
}

.fit-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(39, 50, 58, 0.35);
}

.fit-list li {
  position: relative;
  padding: 1.25rem 2.6rem 1.25rem 0;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.06rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(39, 50, 58, 0.35);
}

.fit-list li::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

/* About */
.about-layout {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}

.about-mark {
  display: grid;
  height: 100%;
  min-height: 420px;
  place-items: center;
  background: var(--navy);
}

.about-mark img {
  width: clamp(150px, 18vw, 230px);
}

.about-copy {
  padding: clamp(3rem, 7vw, 7rem);
  background: var(--white);
}

.about-copy h2 {
  max-width: 12ch;
}

.about-copy > p:not(.eyebrow) {
  max-width: 52ch;
  color: var(--ink-soft);
}

/* Client proof */
.client-proof {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.client-proof::before {
  position: absolute;
  top: 0;
  left: calc(50% - 590px);
  width: 72px;
  height: 8px;
  background: var(--copper);
  content: "";
}

.proof-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 4rem;
  align-items: end;
}

.proof-heading > p {
  max-width: 34ch;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}

.testimonial-grid {
  display: grid;
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial {
  display: flex;
  min-width: 0;
  padding: 0 3.25rem 3.25rem 0;
  flex-direction: column;
}

.testimonial + .testimonial {
  padding-right: 0;
  padding-left: 3.25rem;
  border-left: 1px solid var(--line);
}

.testimonial-logo {
  display: flex;
  min-height: 170px;
  margin-bottom: 3rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.testimonial-logo img {
  width: min(100%, 500px);
  height: auto;
}

.testimonial-logo-ardenvo img {
  width: min(100%, 470px);
}

.testimonial blockquote {
  display: flex;
  height: 100%;
  margin: 0;
  flex-direction: column;
}

.testimonial blockquote p {
  margin-bottom: 2.5rem;
  color: var(--navy);
  font-family: var(--heading);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.32;
}

.testimonial blockquote footer {
  margin-top: auto;
  color: var(--teal-text);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Assessment */
.assessment {
  position: relative;
  overflow: hidden;
}

.assessment::before {
  position: absolute;
  top: 0;
  left: calc(50% - 590px);
  width: 3px;
  height: 88px;
  background: var(--teal);
  content: "";
}

.assessment-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.assessment-copy {
  padding-top: 2.3rem;
}

.assessment-copy > p:not(.eyebrow) {
  max-width: 43ch;
  color: rgba(247, 245, 239, 0.72);
}

.contact-lines {
  display: grid;
  margin-top: 3.5rem;
  gap: 0.55rem;
}

.contact-lines a {
  width: fit-content;
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
}

.contact-lines p {
  margin: 1rem 0 0;
  color: var(--sand);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.assessment-form {
  padding: clamp(2rem, 4.5vw, 4rem);
  color: var(--slate);
  background: var(--white);
}

.form-heading {
  display: flex;
  margin-bottom: 2.5rem;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.form-heading > p:last-child {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field label {
  color: var(--navy);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(39, 50, 58, 0.38);
  border-radius: 0;
  outline: 0;
}

.field textarea {
  min-height: 112px;
  padding: 0.75rem;
  resize: vertical;
  border: 1px solid rgba(39, 50, 58, 0.38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 2px 0 var(--teal);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #a83c31;
  box-shadow: 0 2px 0 #a83c31;
}

.field textarea::placeholder {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.turnstile-shell {
  min-height: 65px;
  margin-top: 2rem;
}

.turnstile-shell iframe {
  max-width: 100%;
}

.button-submit {
  width: 100%;
  margin-top: 1.4rem;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button-submit:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-note {
  max-width: 66ch;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-status {
  min-height: 1.7rem;
  padding-top: 0.75rem;
  color: var(--navy);
  font-weight: 600;
}

.form-status.is-error {
  color: #8a2e25;
}

/* Footer */
.site-footer {
  padding: 4.5rem 0 1.5rem;
  color: var(--slate);
  background: var(--sand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  gap: 4rem;
}

.footer-grid > div:first-child img {
  width: 205px;
  margin-bottom: 1.2rem;
}

.footer-grid > div:first-child p {
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.12rem;
  font-weight: 500;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-nav a,
.footer-contact a {
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact p:last-child {
  max-width: 32ch;
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  padding-top: 2rem;
  margin-top: 3.5rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(39, 50, 58, 0.3);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 56px, 1040px);
  }

  .hero {
    min-height: 760px;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .hero-copy {
    padding-inline: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.8vw, 5.5rem);
  }

  .assessment::before {
    left: 28px;
  }

  .client-proof::before {
    left: 28px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100vw - 48px);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    visibility: hidden;
    width: min(420px, 100vw);
    height: 100dvh;
    padding: 7.5rem 2.5rem 3rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    box-shadow: -20px 0 44px rgba(0, 0, 0, 0.14);
    opacity: 0;
    transform: translateX(100%);
    transition: visibility 180ms, opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav a {
    padding: 1.25rem 0;
    font-size: 0.84rem;
    border-bottom: 1px solid var(--line-light);
  }

  .primary-nav .nav-cta {
    margin-top: 1.5rem;
    padding-inline: 1.2rem;
    text-align: center;
    border-bottom: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-lines i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

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

  .hero-copy {
    min-height: 710px;
    padding: 145px 3rem 85px;
  }

  .hero-visual {
    height: 560px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual img {
    object-position: 43% 50%;
    transform: scale(1.05);
  }

  .section-intro-split,
  .section-heading-row,
  .service-heading,
  .care-layout,
  .fit-layout,
  .assessment-layout {
    grid-template-columns: 1fr;
  }

  .section-heading-row,
  .service-heading {
    gap: 1rem;
  }

  .proof-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading-row > p,
  .service-heading > p,
  .proof-heading > p {
    margin-bottom: 0;
  }

  .testimonial {
    padding-right: 2rem;
  }

  .testimonial + .testimonial {
    padding-left: 2rem;
  }

  .outcome-list {
    grid-template-columns: 1fr;
  }

  .outcome-list li {
    display: grid;
    padding: 2rem 0;
    grid-template-columns: 60px 0.8fr 1.2fr;
    gap: 1rem;
    align-items: start;
    border-bottom: 1px solid var(--line);
  }

  .outcome-list li + li {
    padding-left: 0;
    border-left: 0;
  }

  .outcome-list .item-number {
    margin: 0;
  }

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

  .audience-grid article {
    min-height: 0;
    padding: 2.3rem 0;
  }

  .audience-photo {
    aspect-ratio: 16 / 10;
  }

  .audience-grid article + article {
    padding-left: 0;
    border-top: 1px solid rgba(39, 50, 58, 0.35);
    border-left: 0;
  }

  .audience-code {
    right: 1rem;
    bottom: -1.5rem;
    font-size: 10rem;
  }

  .service-steps,
  .commitments {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }

  .service-steps::before {
    display: none;
  }

  .service-steps li {
    padding: 0 2rem 0 1.5rem;
    border-left: 3px solid var(--teal);
  }

  .step-node {
    top: 0;
    left: -8px;
  }

  .commitments > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .care-layout {
    gap: 5rem;
  }

  .care-visual {
    width: min(620px, 100%);
  }

  .about-layout {
    grid-template-columns: 0.58fr 1.42fr;
  }

  .assessment-copy {
    padding-top: 0;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 36px);
    --section-space: 5rem;
  }

  body {
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-link img {
    width: 156px;
  }

  .nav-toggle-label {
    display: none;
  }

  .primary-nav {
    width: 100vw;
  }

  .hero-copy {
    min-height: 680px;
    padding: 122px 1.4rem 78px;
  }

  .hero-copy::before {
    right: 1.4rem;
    width: 65%;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15.3vw, 4.45rem);
  }

  .hero-summary {
    font-size: 1.08rem;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
  }

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

  .hero-path {
    left: 35%;
  }

  .hero-visual {
    height: 390px;
  }

  .hero-stamp {
    width: 175px;
    min-height: 96px;
    grid-template-columns: 43px 1fr;
    padding: 0.9rem;
  }

  .hero-stamp img {
    width: 39px;
  }

  .section-intro-split {
    gap: 1rem;
  }

  .outcome-list li {
    grid-template-columns: 42px 1fr;
  }

  .outcome-list li p {
    grid-column: 2;
  }

  .service-steps,
  .commitments {
    grid-template-columns: 1fr;
  }

  .service-steps {
    gap: 2.8rem;
  }

  .service-steps li {
    padding-right: 0;
  }

  .commitments {
    padding-top: 3rem;
  }

  .commitments > div,
  .commitments > div + div,
  .commitments > div:nth-child(3) {
    display: grid;
    padding: 0 0 1.5rem;
    grid-template-columns: 120px 1fr;
    align-items: end;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .commitments dt {
    margin: 0;
  }

  .commitments dd {
    margin: 0 0 0.4rem;
  }

  .care-visual {
    padding: 0 1.5rem 2.5rem 0;
  }

  .pillar-list > div {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .about-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .about-mark {
    min-height: 250px;
  }

  .about-mark img {
    width: 128px;
  }

  .about-copy {
    padding: 3.2rem 1.4rem;
  }

  .client-proof::before {
    left: 18px;
    width: 48px;
  }

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

  .testimonial,
  .testimonial + .testimonial {
    padding: 0 0 3rem;
    border-left: 0;
  }

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

  .testimonial-logo {
    min-height: 142px;
    margin-bottom: 2.4rem;
  }

  .testimonial blockquote p {
    font-size: 1.45rem;
  }

  .assessment::before {
    left: 18px;
    height: 48px;
  }

  .assessment-form {
    padding: 2rem 1.25rem;
  }

  .form-heading {
    flex-direction: column;
    gap: 0;
  }

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

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

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

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

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

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

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

@media print {
  .site-header,
  .hero-path,
  .assessment-form,
  .site-footer {
    display: none;
  }

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

  .hero {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    min-height: 0;
    padding: 2rem;
  }

  .hero h1,
  .section-navy h2,
  .section-navy h3 {
    color: var(--navy);
  }
}
