@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: optional;
}

@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/dm-mono-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: optional;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-variable-latin-subset.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: optional;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-italic-variable-latin-subset.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 800;
  font-display: optional;
}

:root {
  --black: #020508;
  --midnight: #061421;
  --navy: #0a2944;
  --white: #f8fafc;
  --paper: #eef3f7;
  --blue: #087cff;
  --green: #40dc8e;
  --ink-muted: rgba(2, 5, 8, 0.68);
  --white-muted: rgba(248, 250, 252, 0.72);
  --line-dark: rgba(2, 5, 8, 0.18);
  --line-light: rgba(248, 250, 252, 0.22);
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --section-space: clamp(5.5rem, 8vw, 8rem);
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --mono: "DM Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.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;
}

.clipboard-helper {
  position: fixed;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--black);
  background: var(--green);
  transform: translateY(-180%);
}

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

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

#services,
#process,
#contact {
  scroll-margin-top: 4.75rem;
}

.section-label,
.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(0.78rem, 0.76rem + 0.08vw, 0.86rem);
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  min-height: 6.25rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
  transition: min-height 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  min-height: 4.75rem;
  background: rgba(2, 5, 8, 0.97);
}

.brand {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  font-weight: 720;
  letter-spacing: -0.035em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-size: 0.875rem;
  font-weight: 650;
}

.desktop-nav > a:not(.nav-cta) {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--white-muted);
  transition: color 160ms ease;
}

.desktop-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  padding-inline: 1.15rem;
  color: var(--black);
  background: var(--white);
  transition: transform 160ms ease, background-color 160ms ease;
}

.nav-cta:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: max(48rem, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--midnight);
  isolation: isolate;
}

.hero-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: var(--midnight);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 20, 33, 1) 0%, rgba(6, 20, 33, 0.94) 32%, rgba(6, 20, 33, 0.28) 61%, rgba(6, 20, 33, 0.03) 100%);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  transform: scale(1.035);
  transition: transform 1.1s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.is-ready .hero-art img {
  opacity: 1;
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 1.4s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.hero-copy {
  display: flex;
  width: min(100%, 45rem);
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 9rem var(--gutter) 6.5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  color: var(--white-muted);
}

.eyebrow > span:first-child {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 8.1vw, 8.4rem);
  font-weight: 660;
  line-height: 0.78;
  letter-spacing: -0.085em;
}

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

.hero-promise {
  max-width: 34rem;
  margin: clamp(2.25rem, 5vh, 3.75rem) 0 0;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  font-weight: 550;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.hero-support {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: var(--white-muted);
  font-size: clamp(1rem, 1.1vw, 1.13rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.hero-actions .primary-action {
  margin-top: 0;
}

.hero-secondary-action {
  color: var(--white);
  border-bottom: 1px solid rgba(64, 220, 142, 0.72);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 2;
  transition: color 160ms ease, border-color 160ms ease;
}

.hero-secondary-action:hover {
  color: var(--green);
  border-color: var(--green);
}

.hero-reassurance {
  margin: 0.8rem 0 0;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.78rem;
}

.primary-action {
  display: inline-flex;
  width: fit-content;
  min-height: 3.85rem;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  margin-top: 2rem;
  padding: 0.9rem 1.15rem;
  color: var(--white);
  background: var(--blue);
  font-size: 0.88rem;
  font-weight: 750;
  transition: background-color 160ms ease, transform 160ms ease;
}

.primary-action:hover {
  background: #2790ff;
  transform: translateY(-2px);
}

.hero-note {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-note span {
  padding-inline: 0.65rem;
  color: var(--green);
}

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

.welcome > .section-label {
  padding-bottom: clamp(2rem, 5vw, 5rem);
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line-dark);
}

.welcome-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-top: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.welcome h2,
.section-heading h2,
.approach-heading h2,
.contact-heading h2 {
  margin: 0;
  font-size: clamp(2.35rem, 3.9vw, 4.5rem);
  font-weight: 590;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.welcome h2 {
  max-width: 48rem;
}

.welcome-body {
  padding-top: 0.5rem;
}

.welcome-body p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.25vw, 1.24rem);
  line-height: 1.65;
}

.welcome-body p + p {
  margin-top: 1.5rem;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(11rem, 0.45fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.section-heading .section-label {
  color: var(--green);
}

.section-heading h2 {
  max-width: 45rem;
  font-size: clamp(2.25rem, 3.5vw, 4rem);
}

.service {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 8vw, 9rem);
  padding: clamp(2.75rem, 5vw, 5rem) 0;
  border-top: 1px solid var(--line-light);
}

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

.service-number,
.approach-number {
  margin: 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.service h3,
.approach-list h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.55vw, 2.9rem);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service h3 a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
}

.service h3 a::after {
  content: "↗";
  color: var(--green);
  font-size: 0.55em;
  transform: translateY(-0.28em);
  transition: transform 160ms ease;
}

.service h3 a:hover::after {
  transform: translate(0.18em, -0.46em);
}

.service > div > p {
  max-width: 48rem;
  margin: 1.25rem 0 0;
  color: var(--white-muted);
  font-size: clamp(1.03rem, 1.08vw, 1.14rem);
}

.service-scope {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.25fr) minmax(0, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
}

.service-scope p {
  margin: 0;
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-scope p:first-child {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-action {
  display: inline-flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
  color: var(--white);
  border-bottom: 1px solid rgba(64, 220, 142, 0.62);
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.8;
  transition: color 160ms ease, border-color 160ms ease;
}

.service-action:hover {
  color: var(--green);
  border-color: var(--green);
}

.service-guide {
  display: grid;
  grid-template-columns: minmax(16rem, 0.9fr) minmax(18rem, 1fr) auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(4rem, 7vw, 7rem);
  padding: clamp(2rem, 3vw, 3rem) 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service-guide .section-label {
  margin-bottom: 0.75rem;
  color: var(--green);
}

.service-guide h3,
.service-guide p {
  margin: 0;
}

.service-guide h3 {
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-guide > p {
  color: var(--white-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.service-guide > a {
  display: inline-flex;
  gap: 0.65rem;
  white-space: nowrap;
  color: var(--white);
  border-bottom: 1px solid var(--green);
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 2;
}

.standards {
  display: grid;
  grid-template-columns: minmax(22rem, 0.92fr) minmax(28rem, 1.08fr);
  min-height: 48rem;
  color: var(--white);
  background: var(--black);
}

.standards-art {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
}

.standards-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 5, 8, 0.02) 45%, rgba(2, 5, 8, 0.76) 100%);
}

.standards-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 72%;
}

.standards-art figcaption {
  position: absolute;
  z-index: 1;
  right: var(--gutter);
  bottom: 2.5rem;
  left: var(--gutter);
  max-width: 28rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.9rem;
}

.standards-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.standards-panel .section-label {
  color: var(--green);
}

.standards-panel h2 {
  max-width: 38rem;
  margin: 2.25rem 0 0;
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  font-weight: 580;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.standards-lead {
  max-width: 38rem;
  margin: 1.75rem 0 0;
  color: var(--white-muted);
  font-size: clamp(1.03rem, 1.08vw, 1.14rem);
}

.standards-list {
  margin: 3rem 0 0;
}

.standards-list > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.28fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-light);
}

.standards-list > div:last-child {
  border-bottom: 1px solid var(--line-light);
}

.standards-list dt,
.standards-list dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.standards-list dt {
  color: var(--green);
  font-weight: 700;
}

.standards-list dd {
  color: var(--white-muted);
}

.approach {
  display: grid;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(4rem, 10vw, 12rem);
  color: var(--black);
  background: var(--paper);
}

.approach-heading {
  position: sticky;
  top: 3rem;
  align-self: start;
}

.approach-heading .section-label {
  color: var(--ink-muted);
}

.approach-heading h2 {
  margin-top: 2.5rem;
  max-width: 34rem;
  font-size: clamp(2.25rem, 3.45vw, 3.9rem);
}

.approach-heading > p:last-child {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
}

.approach-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.approach-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: clamp(2.8rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line-dark);
}

.approach-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.approach-list h3 {
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
}

.approach-list div > p {
  max-width: 44rem;
  margin: 1.25rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.14vw, 1.16rem);
}

.company-note {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 20rem;
  padding: clamp(4rem, 7vw, 7rem) var(--gutter);
  color: var(--white);
  background: var(--midnight);
}

.company-note-mark {
  display: grid;
  place-items: center;
}

.company-note-mark img {
  width: 6rem;
  height: auto;
}

.company-note-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(2rem, 5vw, 5rem);
  border-left: 1px solid var(--line-light);
}

.company-note-copy .section-label {
  color: var(--green);
}

.company-note-copy > p:last-child {
  max-width: 52rem;
  margin: 2rem 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.7rem);
  font-weight: 480;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

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

.contact-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.4fr) minmax(0, 1.25fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-heading .section-label {
  color: var(--ink-muted);
}

.contact-heading h2 {
  max-width: 34rem;
  font-size: clamp(2.5rem, 3.9vw, 4.4rem);
}

.contact-heading > p:last-child {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.04rem, 1.15vw, 1.18rem);
}

.project-form {
  display: grid;
  gap: 2rem;
  padding-top: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--line-dark);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 5rem);
}

.project-form label {
  display: grid;
  gap: 0.65rem;
}

.project-form label > span {
  font-size: 0.9rem;
  font-weight: 700;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  color: var(--black);
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 1.05rem;
  transition: border-color 160ms ease;
}

.project-form input,
.project-form select {
  min-height: 3.75rem;
}

.project-form textarea {
  min-height: 10rem;
  padding-block: 0.9rem;
  resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--blue);
}

.form-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
}

.submit-button {
  display: inline-flex;
  min-width: min(100%, 18rem);
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 0.9rem 1.15rem;
  color: var(--white);
  border: 0;
  background: var(--blue);
  font-weight: 750;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.submit-button:hover {
  background: #2790ff;
  transform: translateY(-2px);
}

.form-action p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.form-action a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  min-height: 8rem;
  align-items: center;
  padding: 2rem var(--gutter);
  color: var(--white);
  background: var(--black);
  font-size: 0.875rem;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.8rem;
  font-weight: 720;
}

.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.footer-brand span {
  display: grid;
}

.footer-brand small {
  color: var(--white-muted);
  font-size: 0.78rem;
  font-weight: 450;
}

.site-footer > p {
  margin: 0;
  color: var(--white-muted);
}

.landing-hero {
  position: relative;
  min-height: max(43rem, 88svh);
  overflow: hidden;
  color: var(--white);
  background: var(--midnight);
  isolation: isolate;
}

.landing-hero-art {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 44%;
}

.landing-hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--midnight) 0%, rgba(6, 20, 33, 0.88) 15%, rgba(6, 20, 33, 0.12) 64%, rgba(6, 20, 33, 0.03) 100%);
}

.landing-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center;
}

.page-redesign .landing-hero-art img {
  object-position: 55% 64%;
}

.page-repair .landing-hero-art img {
  object-position: 45% 70%;
}

.landing-hero-copy {
  display: flex;
  width: min(55%, 44rem);
  min-height: max(43rem, 88svh);
  flex-direction: column;
  justify-content: center;
  padding: 9rem var(--gutter) 5rem;
}

.landing-hero .eyebrow {
  margin-bottom: 1.75rem;
}

.landing-hero h1 {
  max-width: 44rem;
  margin: 0;
  font-size: clamp(3.1rem, 5.4vw, 6rem);
  font-weight: 620;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.landing-hero-lead {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: var(--white-muted);
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
  line-height: 1.58;
}

.landing-hero .primary-action {
  margin-top: 2rem;
}

.landing-context {
  max-width: 36rem;
  margin: 1.2rem 0 0;
  color: rgba(248, 250, 252, 0.58);
  font-size: 0.86rem;
}

.landing-intro {
  display: grid;
  grid-template-columns: minmax(10rem, 0.34fr) minmax(0, 0.88fr) minmax(20rem, 0.58fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  color: var(--black);
  background: var(--white);
}

.landing-intro .section-label,
.landing-faq .section-label {
  color: var(--ink-muted);
}

.landing-intro h2,
.landing-scope h2,
.landing-steps h2,
.landing-faq h2,
.landing-final h2,
.project-intro h1 {
  margin: 0;
  font-size: clamp(2.35rem, 3.8vw, 4.35rem);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.landing-intro-copy p,
.landing-scope-lead,
.landing-steps-lead,
.landing-faq-lead {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.12vw, 1.16rem);
}

.landing-intro-copy p + p {
  margin-top: 1.35rem;
}

.landing-scope {
  display: grid;
  grid-template-columns: minmax(17rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(4rem, 9vw, 10rem);
  color: var(--white);
  background: var(--navy);
}

.landing-scope-heading .section-label,
.landing-steps-heading .section-label {
  margin-bottom: 2.25rem;
  color: var(--green);
}

.landing-scope h2 {
  font-size: clamp(2.25rem, 3.25vw, 3.8rem);
}

.landing-scope-lead {
  margin-top: 1.5rem;
  color: var(--white-muted);
}

.outcome-list {
  margin: 0;
}

.outcome-list > div {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 1.65rem 0;
  border-top: 1px solid var(--line-light);
}

.outcome-list > div:last-child {
  border-bottom: 1px solid var(--line-light);
}

.outcome-list dt,
.outcome-list dd {
  margin: 0;
  line-height: 1.5;
}

.outcome-list dt {
  color: var(--green);
  font-weight: 720;
}

.outcome-list dd {
  color: var(--white-muted);
}

.landing-steps {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(4rem, 9vw, 10rem);
  color: var(--black);
  background: var(--paper);
}

.landing-steps-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.landing-steps h2 {
  font-size: clamp(2.25rem, 3.25vw, 3.8rem);
}

.landing-steps-lead {
  margin-top: 1.5rem;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line-dark);
}

.step-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.step-list > li > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.step-list h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.step-list p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--ink-muted);
}

.landing-faq {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(4rem, 9vw, 10rem);
  color: var(--black);
  background: var(--white);
}

.landing-faq h2 {
  margin-top: 2.25rem;
  font-size: clamp(2.25rem, 3.25vw, 3.8rem);
}

.landing-faq-lead {
  margin-top: 1.5rem;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 1.48rem;
  right: 0;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 1.15rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 46rem;
  margin: -0.25rem 0 1.75rem;
  color: var(--ink-muted);
}

.landing-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
  color: var(--white);
  background: var(--midnight);
}

.landing-final h2 {
  max-width: 50rem;
  font-size: clamp(2.5rem, 4.25vw, 4.8rem);
}

.landing-final p {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: var(--white-muted);
  font-size: clamp(1.02rem, 1.1vw, 1.14rem);
}

.landing-final .primary-action {
  margin: 0;
  white-space: nowrap;
}

.project-page {
  color: var(--black);
  background: var(--white);
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.5fr);
  gap: clamp(3rem, 9vw, 10rem);
  padding: 11rem var(--gutter) 5rem;
  color: var(--white);
  background: var(--midnight);
}

.project-intro h1 {
  max-width: 50rem;
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.project-intro-copy {
  align-self: end;
}

.project-intro-copy p {
  margin: 0;
  color: var(--white-muted);
  font-size: clamp(1.04rem, 1.16vw, 1.18rem);
}

.project-intro-copy p + p {
  margin-top: 1.25rem;
}

.project-contact {
  padding-top: 5rem;
}

.project-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line-dark);
}

.project-assurance div {
  padding-right: 2rem;
}

.project-assurance p {
  margin: 0;
}

.project-assurance p:first-child {
  margin-bottom: 0.6rem;
  font-weight: 720;
}

.project-assurance p:last-child {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

.qa .reveal,
.qa .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 900px) {
  .welcome-copy,
  .section-heading,
  .service,
  .standards,
  .approach,
  .company-note,
  .contact-heading {
    grid-template-columns: 1fr;
  }

  .welcome-copy,
  .section-heading,
  .service,
  .approach,
  .contact-heading {
    gap: 2.5rem;
  }

  .standards-art {
    min-height: 28rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .standards-panel {
    min-height: auto;
  }

  .approach-heading {
    position: static;
  }

  .company-note-mark {
    min-height: 0;
  }

  .company-note {
    grid-template-columns: 5rem minmax(0, 1fr);
  }

  .service-guide {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .service-guide > p {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 38rem;
  }
}

@media (max-width: 700px) {
  :root {
    --section-space: 5.5rem;
  }

  .site-header {
    min-height: 5.25rem;
  }

  .brand-mark {
    width: 3.25rem;
    height: 3.25rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.38rem;
    padding: 0;
    color: inherit;
    border: 0;
    background: transparent;
  }

  .menu-button > span:not(.sr-only) {
    width: 1.35rem;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 7rem var(--gutter) 3rem;
    color: var(--white);
    background: var(--midnight);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line-light);
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    font-weight: 550;
    letter-spacing: -0.04em;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-art {
    top: 43%;
  }

  .hero-art::after {
    background: linear-gradient(180deg, var(--midnight) 0%, rgba(6, 20, 33, 0.86) 23%, rgba(6, 20, 33, 0.08) 68%);
  }

  .hero-art img {
    object-position: 65% center;
  }

  .hero-copy {
    width: 100%;
    min-height: 100svh;
    justify-content: flex-start;
    padding-top: 8.1rem;
    padding-bottom: 9rem;
  }

  .eyebrow {
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 4.8rem);
    line-height: 0.8;
  }

  .hero-promise {
    max-width: 21rem;
    margin-top: 1.8rem;
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }

  .hero-support {
    max-width: 22rem;
    margin-top: 0.9rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1.3rem;
  }

  .hero-reassurance {
    max-width: 20rem;
    margin-top: 0.65rem;
    line-height: 1.45;
  }

  .primary-action {
    min-height: 3.55rem;
    margin-top: 1.3rem;
    font-size: 0.875rem;
  }

  .hero-note {
    right: auto;
    bottom: 1.4rem;
    left: var(--gutter);
    max-width: calc(100% - 2 * var(--gutter));
    font-size: 0.75rem;
  }

  .welcome-copy {
    padding-top: 3rem;
  }

  .welcome h2,
  .section-heading h2,
  .approach-heading h2,
  .contact-heading h2,
  .standards-panel h2 {
    font-size: clamp(2.15rem, 9.5vw, 3rem);
  }

  .service {
    padding: 3rem 0;
  }

  .service h3,
  .approach-list h3 {
    font-size: clamp(1.7rem, 7.5vw, 2.25rem);
  }

  .service-scope,
  .standards-list > div {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .service-guide {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .service-guide > p {
    grid-column: auto;
    grid-row: auto;
  }

  .service-guide > a {
    width: fit-content;
  }

  .standards-art {
    min-height: 21rem;
  }

  .approach-list li {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .company-note-copy > p:last-child {
    font-size: clamp(1.45rem, 6.4vw, 1.9rem);
  }

  .company-note {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1.25rem;
    min-height: 0;
    padding-block: 4rem;
  }

  .company-note-mark img {
    width: 3.75rem;
  }

  .company-note-copy {
    padding-left: 1.25rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-action {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

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

@media (max-width: 900px) {
  .landing-intro,
  .landing-scope,
  .landing-steps,
  .landing-faq,
  .project-intro {
    grid-template-columns: 1fr;
  }

  .landing-steps-heading {
    position: static;
  }

  .landing-final {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .landing-final .primary-action {
    margin-top: 0.5rem;
  }
}

@media (max-width: 700px) {
  .landing-hero {
    min-height: 52rem;
  }

  .landing-hero-art {
    inset: 46% 0 0;
  }

  .landing-hero-art::after {
    background: linear-gradient(180deg, var(--midnight) 0%, rgba(6, 20, 33, 0.72) 28%, rgba(6, 20, 33, 0.04) 75%);
  }

  .landing-hero-art img,
  .page-redesign .landing-hero-art img,
  .page-repair .landing-hero-art img {
    object-position: 64% center;
  }

  .landing-hero-copy {
    width: 100%;
    min-height: 52rem;
    justify-content: flex-start;
    padding-top: 7.75rem;
    padding-bottom: 17rem;
  }

  .landing-hero h1,
  .project-intro h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

  .landing-hero-lead {
    margin-top: 1.4rem;
    font-size: 1rem;
  }

  .landing-context {
    font-size: 0.8rem;
  }

  .landing-intro h2,
  .landing-scope h2,
  .landing-steps h2,
  .landing-faq h2,
  .landing-final h2 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

  .outcome-list > div,
  .step-list li {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .project-intro {
    padding-top: 8.5rem;
  }

  .project-assurance {
    grid-template-columns: 1fr;
  }

  .project-assurance div {
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--line-dark);
  }
}

@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 .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Second-pass service art direction and brand hardening */
.desktop-nav [aria-current="page"],
.mobile-nav [aria-current="page"] {
  color: var(--green);
}

.brand-mark img,
.footer-brand img,
.company-note-mark img {
  filter: drop-shadow(0 0 0.45rem rgba(8, 124, 255, 0.16));
}

.page-new .landing-hero-art { left: 46%; }
.page-new .landing-hero-art img { object-position: 72% center; }
.new-build-path { background: var(--paper); }
.new-scope { background: #0a3150; }
.page-new .new-scope .outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-light);
}
.page-new .new-scope .outcome-list > div {
  display: block;
  min-height: 10rem;
  padding: 1.7rem;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.page-new .new-scope .outcome-list > div:nth-child(2n) { border-right: 0; }
.page-new .new-scope .outcome-list > div:last-child {
  grid-column: 1 / -1;
  min-height: 7rem;
  border-right: 0;
  border-bottom: 0;
}
.page-new .new-scope .outcome-list dt { margin-bottom: 0.8rem; }

.page-redesign .landing-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 47%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(64, 220, 142, 0.58), transparent);
  transform: rotate(2deg);
  transform-origin: center;
}
.redesign-ledger {
  display: grid;
  grid-template-columns: minmax(17rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(4rem, 8vw, 9rem);
  color: var(--black);
  background: var(--paper);
}
.redesign-ledger-heading { align-self: start; }
.redesign-ledger-heading .section-label { color: var(--ink-muted); }
.redesign-ledger-heading h2 {
  max-width: 30rem;
  margin: 2.2rem 0 0;
  font-size: clamp(2.35rem, 3.7vw, 4.25rem);
  font-weight: 590;
  line-height: 1.01;
  letter-spacing: -0.055em;
}
.redesign-ledger-heading > p:last-child {
  max-width: 32rem;
  margin: 1.6rem 0 0;
  color: var(--ink-muted);
}
.redesign-ledger-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
}
.ledger-card {
  display: flex;
  min-height: 31rem;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.5rem);
}
.ledger-protect { background: var(--white); }
.ledger-rethink { color: var(--white); background: var(--midnight); }
.ledger-kicker {
  margin: 0;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ledger-rethink .ledger-kicker { color: var(--green); }
.ledger-kicker span {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.7rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.ledger-card h3 {
  max-width: 17rem;
  margin: 2.3rem 0 2.5rem;
  font-size: clamp(1.65rem, 2.1vw, 2.35rem);
  font-weight: 620;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.ledger-card ul { margin: auto 0 0; padding: 0; list-style: none; }
.ledger-card li {
  padding: 0.85rem 0;
  color: var(--ink-muted);
  border-top: 1px solid var(--line-dark);
  font-size: 0.94rem;
  line-height: 1.45;
}
.ledger-rethink li { color: var(--white-muted); border-color: var(--line-light); }
.redesign-scope { background: #0a3858; }

.page-repair .landing-hero { background: #02070b; }
.page-repair .landing-hero-art { left: 50%; }
.page-repair .landing-hero-art::after {
  background: linear-gradient(90deg, #02070b 0%, rgba(2, 7, 11, 0.91) 19%, rgba(2, 7, 11, 0.18) 69%, rgba(2, 7, 11, 0.06) 100%);
}
.page-repair .landing-hero-art img { object-position: 66% 68%; opacity: 0.72; }
.repair-diagnostic {
  color: var(--white);
  background: var(--black);
}
.repair-diagnostic-heading {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
.repair-diagnostic-heading .section-label { color: var(--green); }
.repair-diagnostic-heading h2 {
  margin: 0;
  font-size: clamp(2.45rem, 3.8vw, 4.35rem);
  font-weight: 590;
  line-height: 1.01;
  letter-spacing: -0.055em;
}
.repair-diagnostic-heading > p:last-child { margin: 0; color: var(--white-muted); }
.diagnostic-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(4rem, 8vw, 8rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  list-style: none;
}
.diagnostic-flow li {
  min-height: 27rem;
  padding: 2rem clamp(1.5rem, 3vw, 3rem) 2.5rem;
  border-right: 1px solid var(--line-light);
}
.diagnostic-flow li:first-child { padding-left: 0; }
.diagnostic-flow li:last-child { padding-right: 0; border-right: 0; }
.diagnostic-code {
  margin: 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.diagnostic-flow h3 {
  margin: 6rem 0 1.1rem;
  font-size: clamp(1.65rem, 2.2vw, 2.5rem);
  font-weight: 610;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.diagnostic-flow li > p:last-child { margin: 0; color: var(--white-muted); }
.decision-rule {
  display: grid;
  grid-template-columns: minmax(10rem, 0.36fr) minmax(0, 1fr);
  gap: 2rem;
  padding-top: 2rem;
}
.decision-rule p { margin: 0; }
.decision-rule p:first-child { color: var(--green); font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; }
.decision-rule p:last-child { max-width: 48rem; color: var(--white-muted); }
.repair-scope { background: #071f32; }
.page-repair .repair-scope .outcome-list dt::before { content: "// "; color: var(--blue); font-family: var(--mono); }

.not-found-page { color: var(--white); background: var(--black); }
.not-found {
  position: relative;
  display: grid;
  min-height: max(44rem, 100svh);
  place-items: center start;
  overflow: hidden;
  isolation: isolate;
}
.not-found-art { position: absolute; z-index: -2; inset: 0; }
.not-found-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,5,8,.98) 0%, rgba(2,5,8,.9) 42%, rgba(2,5,8,.25) 78%, rgba(2,5,8,.1)); }
.not-found-art img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; opacity: .62; }
.not-found-copy { width: min(48rem, 100%); padding: 10rem var(--gutter) 6rem; }
.not-found-copy .section-label { color: var(--green); }
.not-found-copy h1 { margin: 2rem 0 0; font-size: clamp(3.2rem, 6vw, 6.8rem); font-weight: 590; line-height: .92; letter-spacing: -.07em; }
.not-found-copy > p:last-of-type { max-width: 35rem; margin: 1.8rem 0 0; color: var(--white-muted); }
.not-found-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.3rem; }
.not-found-actions .primary-action { margin: 0; }
.text-action { color: var(--white); border-bottom: 1px solid var(--green); font-weight: 700; }

@media (max-width: 900px) {
  .redesign-ledger,
  .repair-diagnostic-heading { grid-template-columns: 1fr; }
  .redesign-ledger-grid { max-width: 48rem; }
  .diagnostic-flow { grid-template-columns: 1fr; }
  .diagnostic-flow li,
  .diagnostic-flow li:first-child,
  .diagnostic-flow li:last-child { min-height: 0; padding: 2.5rem 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .diagnostic-flow li:last-child { border-bottom: 0; }
  .diagnostic-flow h3 { margin-top: 2.5rem; }
}

@media (max-width: 700px) {
  .page-new .landing-hero-art,
  .page-repair .landing-hero-art { inset: 46% 0 0; }
  .page-new .landing-hero-art img { object-position: 67% center; }
  .page-redesign .landing-hero::after { display: none; }
  .redesign-ledger-grid { grid-template-columns: 1fr; }
  .ledger-card { min-height: 26rem; }
  .page-new .new-scope .outcome-list { grid-template-columns: 1fr; }
  .page-new .new-scope .outcome-list > div,
  .page-new .new-scope .outcome-list > div:nth-child(2n),
  .page-new .new-scope .outcome-list > div:last-child { grid-column: auto; min-height: 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .page-new .new-scope .outcome-list > div:last-child { border-bottom: 0; }
  .decision-rule { grid-template-columns: 1fr; }
  .not-found-copy { padding-top: 8.5rem; }
  .not-found-actions { align-items: stretch; flex-direction: column; }
}


/* WCAG AA contrast for small white CTA text. */
.primary-action,
.submit-button { background: #0064c8; }
.primary-action:hover,
.submit-button:hover { background: #005fbd; }

/* Pass 3: navigation clarity, inquiry resilience, and cross-service routing */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 1.6rem;
  color: rgba(248, 250, 252, 0.58);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: rgba(248, 250, 252, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(64, 220, 142, 0.54);
  text-underline-offset: 0.28em;
}

.breadcrumbs a:hover {
  color: var(--white);
  text-decoration-color: var(--green);
}

.breadcrumbs [aria-current="page"] {
  color: var(--green);
}

.project-intro .breadcrumbs {
  margin-bottom: 2rem;
}

.form-hint {
  margin-top: -0.2rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 520;
}

.form-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: stretch;
}

.brief-copy-button {
  display: inline-flex;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  color: var(--black);
  border: 1px solid var(--line-dark);
  background: transparent;
  font-weight: 740;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.brief-copy-button:hover {
  color: var(--white);
  border-color: var(--midnight);
  background: var(--midnight);
  transform: translateY(-2px);
}

.service-switch {
  display: grid;
  grid-template-columns: minmax(18rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(4rem, 8vw, 9rem);
  color: var(--black);
  background: var(--paper);
}

.service-switch-heading .section-label {
  color: var(--ink-muted);
}

.service-switch-heading h2 {
  max-width: 34rem;
  margin: 2.15rem 0 0;
  font-size: clamp(2.3rem, 3.55vw, 4.1rem);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.service-switch-heading > p:last-child {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
}

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

.service-switch-card {
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--black);
  background: var(--white);
  transition: color 180ms ease, background-color 180ms ease;
}

.service-switch-card + .service-switch-card {
  border-left: 1px solid var(--line-dark);
}

.service-switch-card > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.service-switch-card h3 {
  max-width: 18rem;
  margin: 3.5rem 0 1.1rem;
  font-size: clamp(1.65rem, 2vw, 2.3rem);
  font-weight: 620;
  line-height: 1.04;
  letter-spacing: -0.042em;
}

.service-switch-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.service-switch-card strong {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--blue);
  font-size: 0.9rem;
}

.service-switch-card:hover {
  color: var(--white);
  background: var(--midnight);
}

.service-switch-card:hover p {
  color: var(--white-muted);
}

.service-switch-card:hover strong,
.service-switch-card:hover > span {
  color: var(--green);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--white-muted);
}

.footer-nav a:hover {
  color: var(--white);
}

.not-found-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.not-found-routes a {
  color: var(--white-muted);
  font-size: 0.86rem;
  text-decoration: underline;
  text-decoration-color: rgba(64, 220, 142, 0.52);
  text-underline-offset: 0.28em;
}

.not-found-routes a:hover {
  color: var(--white);
  text-decoration-color: var(--green);
}

@media (max-width: 900px) {
  .service-switch {
    grid-template-columns: 1fr;
  }

  .service-switch-grid {
    max-width: 48rem;
  }
}

@media (max-width: 700px) {
  .form-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .brief-copy-button {
    width: 100%;
  }

  .service-switch-grid {
    grid-template-columns: 1fr;
  }

  .service-switch-card {
    min-height: 21rem;
  }

  .service-switch-card + .service-switch-card {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

/* Homepage editorial service hierarchy */
.home-page .hero-copy {
  width: min(100%, 50rem);
}

.home-page .hero h1 {
  max-width: 47rem;
  font-size: clamp(3.7rem, 6.1vw, 6.65rem);
  font-weight: 610;
  line-height: 0.94;
  letter-spacing: -0.067em;
  text-wrap: balance;
}

.home-page .hero-support {
  max-width: 38rem;
  margin-top: 1.8rem;
  font-size: clamp(1.08rem, 1.25vw, 1.27rem);
}

.home-opening {
  display: grid;
  grid-template-columns: minmax(11rem, 0.4fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 9vw, 11rem);
  color: var(--black);
  background: var(--white);
}

.home-opening > .section-label {
  color: var(--ink-muted);
}

.home-opening-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.72fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.home-opening-copy h2,
.home-services-heading h2,
.approach-heading h2,
.home-faq-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.2vw, 3.65rem);
  font-weight: 590;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.home-opening-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: clamp(1.04rem, 1.14vw, 1.17rem);
}

.home-opening-copy p + p {
  grid-column: 2;
  margin-top: -1rem;
}

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

.home-services-heading {
  display: grid;
  grid-template-columns: minmax(11rem, 0.4fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 9vw, 11rem);
  align-items: start;
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.home-services-heading .section-label,
.home-focused-work .section-label,
.home-graphics .section-label {
  color: var(--green);
}

.home-services-heading h2 {
  max-width: 44rem;
  color: var(--white);
}

.home-major-work {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.home-major-service {
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  padding: clamp(2.5rem, 4.5vw, 4.75rem) clamp(2rem, 4vw, 4.5rem) clamp(2.75rem, 4vw, 4rem) 0;
}

.home-major-service + .home-major-service {
  padding-right: 0;
  padding-left: clamp(2rem, 4vw, 4.5rem);
  border-left: 1px solid var(--line-light);
}

.home-major-service .service-number {
  color: var(--green);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.home-major-service h3 {
  max-width: 28rem;
  margin: clamp(3.5rem, 7vw, 7rem) 0 0;
  font-size: clamp(2rem, 2.9vw, 3.25rem);
  font-weight: 570;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-major-service > p:not(.service-number) {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: var(--white-muted);
  font-size: clamp(1rem, 1.08vw, 1.13rem);
}

.home-major-service .service-action {
  margin-top: auto;
  padding-top: 2.5rem;
  align-self: flex-start;
}

.home-focused-work {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.home-focused-work > * {
  padding: clamp(2rem, 3vw, 3rem);
}

.home-focused-work > *:first-child {
  padding-left: 0;
}

.home-focused-work > *:last-child {
  padding-right: 0;
}

.home-focused-work > * + * {
  border-left: 1px solid var(--line-light);
}

.home-focused-work h3,
.home-focused-work h4,
.home-focused-work p {
  margin: 0;
}

.home-focused-work header h3 {
  max-width: 22rem;
  margin-top: 1.5rem;
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.home-focused-work h4 {
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.home-focused-work article p {
  margin-top: 1.15rem;
  color: var(--white-muted);
  font-size: 0.98rem;
}

.home-focused-work article a {
  display: inline-flex;
  gap: 0.55rem;
  margin-top: 1.5rem;
  border-bottom: 1px solid var(--green);
  font-size: 0.85rem;
  font-weight: 720;
  line-height: 1.9;
}

.home-graphics {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 2fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  padding-top: clamp(3.5rem, 6vw, 6rem);
}

.home-graphics h3,
.home-graphics p {
  margin: 0;
}

.home-graphics h3 {
  font-size: clamp(1.7rem, 2.25vw, 2.55rem);
  font-weight: 570;
  line-height: 1.05;
  letter-spacing: -0.043em;
}

.home-graphics p {
  max-width: 48rem;
  margin-top: 1.2rem;
  color: var(--white-muted);
}

.home-faq {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(4rem, 9vw, 10rem);
  color: var(--black);
  background: var(--white);
}

.home-faq-heading .section-label {
  margin-bottom: 2.2rem;
  color: var(--ink-muted);
}

.project-form label > span small {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 520;
}

.home-page .site-footer {
  grid-template-columns: minmax(14rem, 0.8fr) minmax(18rem, 1.4fr) minmax(15rem, auto) auto;
}

.footer-description {
  max-width: 36rem;
  margin: 0;
  color: var(--white-muted);
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .home-opening-copy {
    grid-template-columns: 1fr;
  }

  .home-opening-copy p + p {
    grid-column: auto;
    margin-top: -0.7rem;
  }

  .home-focused-work {
    grid-template-columns: 1fr 1fr;
  }

  .home-focused-work header {
    grid-column: 1 / -1;
    padding-left: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .home-focused-work article:first-of-type {
    padding-left: 0;
    border-left: 0;
  }

  .home-page .site-footer {
    grid-template-columns: minmax(15rem, 1fr) minmax(18rem, 1.5fr);
  }

  .home-page .site-footer > p:last-child {
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .home-opening,
  .home-services-heading,
  .home-faq {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .home-major-service {
    min-height: 30rem;
  }

  .home-graphics {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .home-page .hero-copy {
    padding-top: 7.6rem;
    padding-bottom: 10rem;
  }

  .home-page .hero h1 {
    max-width: 22rem;
    font-size: clamp(2.85rem, 12.7vw, 3.7rem);
    line-height: 0.98;
  }

  .home-page .hero-support {
    max-width: 22rem;
    margin-top: 1.15rem;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .home-page .hero-art {
    top: 52%;
  }

  .home-opening-copy h2,
  .home-services-heading h2,
  .approach-heading h2,
  .home-faq-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .home-major-work,
  .home-focused-work {
    grid-template-columns: 1fr;
  }

  .home-major-service,
  .home-major-service + .home-major-service {
    min-height: 0;
    padding: 3rem 0;
    border-left: 0;
  }

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

  .home-major-service h3 {
    margin-top: 3rem;
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .home-major-service .service-action {
    margin-top: 2rem;
    padding-top: 0;
  }

  .home-focused-work header {
    grid-column: auto;
  }

  .home-focused-work > *,
  .home-focused-work > *:first-child,
  .home-focused-work > *:last-child {
    padding: 2.4rem 0;
  }

  .home-focused-work > * + *,
  .home-focused-work article:first-of-type {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

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

  .home-page .site-footer > p:last-child {
    justify-self: start;
  }
}

/* Homepage service switchboard: one customer choice, one visible outcome. */
.service-switchboard {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #08243c;
}

.service-switchboard::before {
  position: absolute;
  width: clamp(26rem, 42vw, 46rem);
  aspect-ratio: 1;
  top: clamp(2rem, 8vw, 8rem);
  right: clamp(-25rem, -18vw, -10rem);
  border: 1px solid rgba(64, 220, 142, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.service-switchboard-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(11rem, 0.4fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 9vw, 11rem);
  align-items: start;
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}

.service-switchboard-heading .section-label,
.service-inclusion .section-label {
  color: var(--green);
}

.service-switchboard-heading h2,
.service-switchboard-heading p {
  margin: 0;
}

.service-switchboard-heading h2 {
  max-width: 39rem;
  color: var(--white);
  font-size: clamp(2.15rem, 3.2vw, 3.65rem);
  font-weight: 590;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.service-switchboard-heading div > p {
  max-width: 39rem;
  margin-top: 1.35rem;
  color: var(--white-muted);
  font-size: clamp(1rem, 1.08vw, 1.13rem);
}

.service-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(19rem, 0.46fr) minmax(0, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service-choices {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
}

.service-choice {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.25rem 1rem;
  min-height: 9rem;
  align-content: center;
  padding: 1.65rem clamp(1.5rem, 3vw, 3rem) 1.65rem 0;
  color: var(--white-muted);
  border-bottom: 1px solid var(--line-light);
  transition: color 180ms ease, background-color 180ms ease, padding-left 180ms ease;
}

.service-choice:last-child {
  border-bottom: 0;
}

.service-choice::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-choice:hover,
.service-choice[aria-selected="true"],
.service-stage:not(.is-enhanced) .service-choice:first-child {
  color: var(--white);
  background: rgba(248, 250, 252, 0.045);
}

.service-choice[aria-selected="true"],
.service-stage:not(.is-enhanced) .service-choice:first-child {
  padding-left: 1.15rem;
}

.service-choice[aria-selected="true"]::before,
.service-stage:not(.is-enhanced) .service-choice:first-child::before {
  opacity: 1;
  transform: scaleY(1);
}

.service-choice-number {
  grid-row: 1 / span 2;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.service-choice-title {
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  font-weight: 630;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.service-choice-note {
  max-width: 22rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-panels {
  min-width: 0;
  background: var(--paper);
}

.service-panel {
  min-height: 48rem;
  overflow: hidden;
  color: var(--black);
  background: var(--paper);
}

.service-panel[hidden] {
  display: none;
}

.service-stage.is-enhanced .service-panel:not([hidden]) {
  animation: service-panel-in 420ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

@keyframes service-panel-in {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-panel-copy {
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
  gap: 0 clamp(2rem, 4vw, 4.5rem);
  padding: clamp(2.5rem, 4vw, 4.25rem);
}

.service-panel-copy > * {
  margin: 0;
}

.service-panel-kicker {
  grid-row: 1 / span 3;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.045em;
  line-height: 1.5;
  text-transform: uppercase;
}

.service-panel-copy h3 {
  max-width: 35rem;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.service-panel-copy > p:not(.service-panel-kicker) {
  max-width: 38rem;
  margin-top: 1.25rem;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.08vw, 1.13rem);
}

.service-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  align-items: center;
  margin-top: 1.6rem;
}

.service-panel-link {
  display: inline-flex;
  width: fit-content;
  min-height: 2.9rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  background: var(--blue);
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.2;
}

.service-panel-link:hover {
  color: var(--white);
  background: #2790ff;
}

.service-detail-link {
  color: var(--black);
  border-bottom: 1px solid rgba(2, 5, 8, 0.35);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
}

.service-detail-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.service-specimen {
  width: calc(100% - clamp(2.5rem, 4vw, 4.25rem));
  min-height: 28rem;
  margin-left: clamp(2.5rem, 4vw, 4.25rem);
  overflow: hidden;
  border-top: 1px solid rgba(2, 5, 8, 0.2);
  border-left: 1px solid rgba(2, 5, 8, 0.2);
  background: var(--white);
}

.specimen-meta {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  color: rgba(248, 250, 252, 0.68);
  background: var(--black);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.specimen-page {
  position: relative;
  min-height: 25.5rem;
  overflow: hidden;
  color: var(--black);
  background: #f7f9f8;
}

.specimen-nav,
.redesign-after-nav,
.repair-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.specimen-nav {
  position: relative;
  z-index: 2;
  padding: 1.25rem clamp(1.4rem, 3vw, 2.75rem);
  border-bottom: 1px solid rgba(2, 5, 8, 0.12);
  font-size: 0.73rem;
}

.specimen-nav strong {
  font-size: 0.85rem;
  letter-spacing: -0.03em;
}

.specimen-new-copy {
  position: relative;
  z-index: 2;
  width: 59%;
  padding: clamp(2rem, 4vw, 4rem) 0 2rem clamp(1.4rem, 3vw, 2.75rem);
}

.specimen-new-copy p,
.specimen-new-copy h4 {
  margin: 0;
}

.specimen-new-copy p {
  color: #0a6840;
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.specimen-new-copy h4 {
  max-width: 25rem;
  margin-top: 1rem;
  font-size: clamp(2.25rem, 4.1vw, 4.6rem);
  font-weight: 520;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.specimen-action {
  display: inline-flex;
  margin-top: 1.5rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid currentColor;
  font-size: 0.7rem;
  font-weight: 760;
}

.specimen-new-images {
  position: absolute;
  inset: 4rem 0 0 auto;
  display: grid;
  width: 40%;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.5rem;
  padding: 2rem 0 0 0.5rem;
}

.specimen-new-images span {
  position: relative;
  overflow: hidden;
  background: #08243c;
}

.specimen-new-images span:first-child::before {
  position: absolute;
  inset: 25% 18% 0;
  border: 0.8rem solid #f7f9f8;
  border-bottom: 0;
  content: "";
  opacity: 0.9;
}

.specimen-new-images span:first-child::after {
  position: absolute;
  width: 3.7rem;
  aspect-ratio: 1;
  right: -0.75rem;
  top: 1.25rem;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.specimen-new-images span:last-child {
  background: var(--blue);
}

.specimen-new-images span:last-child::after {
  position: absolute;
  inset: 15% 25% 0;
  border-left: 1px solid rgba(248, 250, 252, 0.7);
  border-right: 1px solid rgba(248, 250, 252, 0.7);
  content: "";
}

.redesign-comparison {
  display: grid;
  min-height: 25.5rem;
  grid-template-columns: minmax(11rem, 0.42fr) minmax(0, 1fr);
}

.redesign-before {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  color: #424242;
  background: #d8d8d2;
  font-family: Arial, sans-serif;
}

.redesign-before p,
.redesign-before strong,
.redesign-before small {
  margin: 0;
}

.redesign-before p {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.redesign-before strong {
  margin-top: clamp(2.5rem, 5vw, 5rem);
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.redesign-before > span {
  width: 100%;
  height: 0.34rem;
  margin-top: 0.7rem;
  background: rgba(66, 66, 66, 0.3);
}

.redesign-before > span:nth-of-type(2) {
  width: 77%;
}

.redesign-before > span:nth-of-type(3) {
  width: 88%;
}

.redesign-before small {
  margin-top: auto;
  font-size: 0.57rem;
  line-height: 1.6;
}

.redesign-after {
  display: flex;
  flex-direction: column;
  padding: 1.25rem clamp(1.5rem, 3vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  background: var(--midnight);
}

.redesign-after-nav {
  padding-bottom: 1rem;
  color: var(--white-muted);
  border-bottom: 1px solid var(--line-light);
  font-size: 0.62rem;
}

.redesign-after-nav strong {
  color: var(--white);
  font-size: 0.8rem;
}

.redesign-after > p {
  margin: clamp(2.5rem, 5vw, 5rem) 0 0;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.redesign-after h4 {
  max-width: 30rem;
  margin: 0.9rem 0 0;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 540;
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.redesign-after .specimen-action {
  margin-top: auto;
  align-self: flex-start;
}

.landing-page {
  position: relative;
  display: flex;
  min-height: 25.5rem;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.5rem, 3.5vw, 3.5rem);
  color: var(--white);
  background: var(--blue);
}

.landing-page::after {
  position: absolute;
  width: clamp(11rem, 24vw, 23rem);
  aspect-ratio: 1;
  right: clamp(-7rem, -6vw, -2rem);
  bottom: clamp(-8rem, -8vw, -3rem);
  border: clamp(2rem, 4vw, 4rem) solid var(--green);
  border-radius: 50%;
  content: "";
}

.landing-date,
.landing-place,
.landing-page h4,
.landing-footer {
  position: relative;
  z-index: 1;
  margin: 0;
}

.landing-date,
.landing-place {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.landing-place {
  align-self: flex-end;
}

.landing-page h4 {
  margin-top: clamp(2rem, 4vw, 4rem);
  font-size: clamp(3.5rem, 7.4vw, 8.3rem);
  font-weight: 650;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.landing-footer {
  display: flex;
  max-width: 70%;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: auto;
  font-size: 0.72rem;
}

.landing-footer span {
  max-width: 15rem;
  color: rgba(248, 250, 252, 0.75);
}

.landing-footer strong {
  white-space: nowrap;
}

.repair-page {
  position: relative;
  min-height: 25.5rem;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3rem) clamp(8rem, 16vw, 16rem) clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
  background: #e5ebef;
}

.repair-desktop {
  min-height: 20rem;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(2, 5, 8, 0.16);
}

.repair-nav {
  color: var(--ink-muted);
  font-size: 0.6rem;
}

.repair-nav strong {
  color: var(--black);
  font-size: 0.78rem;
}

.repair-desktop h4 {
  max-width: 24rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  font-weight: 570;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.repair-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.repair-fields span,
.repair-phone > span:not(.repair-menu) {
  padding-bottom: 0.55rem;
  color: var(--ink-muted);
  border-bottom: 1px solid rgba(2, 5, 8, 0.25);
  font-size: 0.62rem;
}

.repair-fields .repair-message {
  grid-column: 1 / -1;
}

.repair-desktop > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.25rem 0 0;
  font-size: 0.65rem;
}

.repair-desktop > p strong {
  color: #0a6840;
}

.repair-desktop > p span {
  padding: 0.6rem 0.75rem;
  color: var(--white);
  background: var(--blue);
  font-weight: 740;
}

.repair-phone {
  position: absolute;
  z-index: 2;
  display: flex;
  width: clamp(8.5rem, 17vw, 13rem);
  min-height: 21.5rem;
  right: clamp(1.5rem, 3vw, 3rem);
  top: 1.5rem;
  flex-direction: column;
  padding: 1.1rem;
  color: var(--black);
  background: var(--white);
  border: 0.45rem solid var(--black);
}

.repair-phone > strong {
  font-size: 0.68rem;
}

.repair-phone .repair-menu {
  position: absolute;
  top: 1.15rem;
  right: 1rem;
  font-size: 0.52rem;
}

.repair-phone h4 {
  margin: 2.5rem 0 1.5rem;
  font-size: 1.3rem;
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.05em;
}

.repair-phone > span:not(.repair-menu) {
  margin-top: 0.75rem;
  font-size: 0.55rem;
}

.repair-phone b {
  margin-top: auto;
  padding: 0.65rem;
  color: var(--white);
  background: var(--blue);
  font-size: 0.57rem;
  text-align: center;
}

.service-inclusion {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 0.46fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line-light);
}

.service-inclusion p {
  margin: 0;
  padding: clamp(2rem, 3.5vw, 3.5rem) 0;
}

.service-inclusion p:last-child {
  max-width: 52rem;
  padding-left: clamp(2rem, 4vw, 4rem);
  color: var(--white-muted);
  border-left: 1px solid var(--line-light);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
}

@media (max-width: 1100px) {
  .service-stage {
    grid-template-columns: minmax(17rem, 0.42fr) minmax(0, 1fr);
  }

  .service-panel-copy {
    grid-template-columns: 1fr;
  }

  .service-panel-kicker {
    grid-row: auto;
    margin-bottom: 1.25rem;
  }

  .service-choice {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .service-switchboard-heading {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-stage {
    grid-template-columns: 1fr;
  }

  .service-choices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .service-choice {
    min-height: 8.5rem;
    padding: 1.5rem;
  }

  .service-choice:nth-child(odd) {
    border-right: 1px solid var(--line-light);
  }

  .service-choice:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-choice[aria-selected="true"],
  .service-stage:not(.is-enhanced) .service-choice:first-child {
    padding-left: 1.5rem;
  }

  .service-choice::before {
    inset: auto 0 0;
    width: auto;
    height: 3px;
    transform: scaleX(0.35);
  }

  .service-choice[aria-selected="true"]::before,
  .service-stage:not(.is-enhanced) .service-choice:first-child::before {
    transform: scaleX(1);
  }

  .service-panel {
    min-height: 46rem;
  }

  .service-inclusion {
    grid-template-columns: 1fr;
  }

  .service-inclusion p:last-child {
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .service-switchboard::before {
    width: 25rem;
    right: -19rem;
    top: 2rem;
  }

  .service-switchboard-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .service-switchboard-heading div > p {
    font-size: 1rem;
  }

  .service-choices {
    grid-template-columns: 1fr;
  }

  .service-choice,
  .service-choice:nth-child(odd),
  .service-choice:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 1.4rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .service-choice:last-child {
    border-bottom: 0;
  }

  .service-choice[aria-selected="true"],
  .service-stage:not(.is-enhanced) .service-choice:first-child {
    padding-left: 1rem;
  }

  .service-choice-title {
    font-size: 1.16rem;
  }

  .service-choice-note {
    font-size: 0.86rem;
  }

  .service-panel {
    min-height: 0;
  }

  .service-panel-copy {
    padding: 2.25rem 0 2.5rem;
  }

  .service-panel-copy h3 {
    font-size: clamp(1.95rem, 8.6vw, 2.35rem);
  }

  .service-panel-copy > p:not(.service-panel-kicker) {
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-specimen {
    width: calc(100% + var(--gutter));
    min-height: 25rem;
    margin-left: 0;
  }

  .specimen-meta {
    padding-inline: 0.8rem;
    font-size: 0.55rem;
  }

  .specimen-page,
  .redesign-comparison,
  .landing-page,
  .repair-page {
    min-height: 22.5rem;
  }

  .specimen-nav span,
  .redesign-after-nav span,
  .repair-nav span {
    display: none;
  }

  .specimen-new-copy {
    width: 67%;
    padding: 2.4rem 0 2rem 1.25rem;
  }

  .specimen-new-copy h4 {
    font-size: 2.25rem;
    letter-spacing: -0.055em;
  }

  .specimen-new-images {
    width: 35%;
  }

  .redesign-comparison {
    grid-template-columns: minmax(7.5rem, 0.4fr) minmax(0, 1fr);
  }

  .redesign-before {
    padding: 1.25rem 0.9rem;
  }

  .redesign-before strong {
    margin-top: 3.5rem;
    font-size: 1.15rem;
  }

  .redesign-before small {
    display: none;
  }

  .redesign-after {
    padding-inline: 1.25rem;
  }

  .redesign-after > p {
    margin-top: 3rem;
  }

  .redesign-after h4 {
    font-size: 2rem;
  }

  .landing-page {
    padding: 1.25rem;
  }

  .landing-page h4 {
    margin-top: 3.5rem;
    font-size: 3.85rem;
  }

  .landing-place {
    margin-top: 0.45rem;
    align-self: flex-start;
  }

  .landing-footer {
    max-width: 74%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .repair-page {
    padding: 1.25rem 7.5rem 1.25rem 1.25rem;
  }

  .repair-desktop {
    min-height: 19.5rem;
    padding: 1rem;
  }

  .repair-desktop h4 {
    margin-top: 3rem;
    font-size: 1.75rem;
  }

  .repair-fields {
    grid-template-columns: 1fr;
  }

  .repair-fields span:nth-child(2),
  .repair-fields .repair-message,
  .repair-desktop > p strong {
    display: none;
  }

  .repair-phone {
    width: 7.5rem;
    min-height: 20rem;
    top: 1.25rem;
    right: 1rem;
    padding: 0.8rem;
  }

  .repair-phone h4 {
    font-size: 1.05rem;
  }

  .service-inclusion p {
    padding-block: 2.25rem;
  }

  .service-inclusion p:last-child {
    padding-top: 0;
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-choice,
  .service-choice::before,
  .service-stage.is-enhanced .service-panel:not([hidden]) {
    animation: none;
    transition: none;
  }
}

/* Homepage rebuild: editorial routes, integrated disciplines, and one clear conversion. */
.home-page .hero-brandline {
  color: rgba(248, 250, 252, 0.86);
  font-size: clamp(0.8rem, 0.78rem + 0.1vw, 0.92rem);
}

.route-deck {
  color: var(--black);
  background: #f5f7f9;
}

.route-deck-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.58fr) minmax(0, 1.25fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.route-deck-heading > * {
  margin: 0;
}

.route-deck-heading .section-label {
  padding-top: 0.55rem;
  color: var(--ink-muted);
}

.route-deck-heading h2 {
  max-width: 42rem;
  font-size: clamp(3rem, 4.6vw, 5.3rem);
  font-weight: 610;
  line-height: 0.98;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.route-deck-heading > p:last-child {
  max-width: 31rem;
  padding-top: 0.35rem;
  color: var(--ink-muted);
  font-size: clamp(1.02rem, 1.08vw, 1.16rem);
}

.route-list {
  margin: clamp(4.5rem, 7vw, 7rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.route-item {
  position: relative;
  border-bottom: 1px solid var(--line-dark);
}

.route-item > a {
  position: relative;
  display: grid;
  min-height: 12rem;
  grid-template-columns: clamp(3rem, 5vw, 5.5rem) minmax(0, 1fr) minmax(12rem, auto);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  overflow: hidden;
  padding: 2.2rem 0;
  isolation: isolate;
  transition: color 220ms ease, background-color 220ms ease, padding 260ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.route-item > a::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--blue);
  transition: width 360ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.route-index,
.route-kicker,
.route-go {
  font-family: var(--mono);
  text-transform: uppercase;
}

.route-index {
  align-self: start;
  padding-top: 0.35rem;
  color: #098454;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.route-copy {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 52rem;
}

.route-kicker {
  margin-bottom: 0.55rem;
  color: var(--ink-muted);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.route-copy strong {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.route-copy small {
  max-width: 43rem;
  margin-top: 0.75rem;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.route-go {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(2, 5, 8, 0.34);
  font-size: 0.78rem;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.route-go > span {
  font-family: var(--sans);
  font-size: 1.05rem;
}

.route-echo {
  position: absolute;
  z-index: 0;
  right: 1rem;
  bottom: -0.29em;
  color: rgba(248, 250, 252, 0.13);
  font-size: clamp(6rem, 12vw, 13rem);
  font-weight: 760;
  line-height: 0.72;
  letter-spacing: -0.09em;
  opacity: 0;
  transform: translateX(3rem);
  transition: opacity 240ms ease, transform 440ms cubic-bezier(0.2, 0.72, 0.2, 1);
  pointer-events: none;
}

.route-item > a:hover,
.route-item > a:focus-visible {
  color: var(--white);
  padding-inline: clamp(1rem, 2.2vw, 2.25rem);
}

.route-item > a:hover::before,
.route-item > a:focus-visible::before {
  width: 100%;
}

.route-item > a:hover .route-index,
.route-item > a:focus-visible .route-index {
  color: var(--green);
}

.route-item > a:hover .route-kicker,
.route-item > a:focus-visible .route-kicker,
.route-item > a:hover .route-copy small,
.route-item > a:focus-visible .route-copy small {
  color: rgba(248, 250, 252, 0.8);
}

.route-item > a:hover .route-go,
.route-item > a:focus-visible .route-go {
  border-color: rgba(248, 250, 252, 0.7);
}

.route-item > a:hover .route-echo,
.route-item > a:focus-visible .route-echo {
  opacity: 1;
  transform: translateX(0);
}

.capability-field {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #041522;
}

.capability-field::before {
  content: "";
  position: absolute;
  top: -28rem;
  right: -22rem;
  width: 54rem;
  height: 54rem;
  border: 1px solid rgba(64, 220, 142, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 8rem rgba(8, 124, 255, 0.035), 0 0 0 16rem rgba(8, 124, 255, 0.025);
  pointer-events: none;
}

.capability-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
  padding-bottom: clamp(4rem, 6vw, 6rem);
}

.capability-intro .section-label {
  padding-top: 0.75rem;
  color: var(--green);
}

.capability-intro h2,
.capability-intro p {
  margin: 0;
}

.capability-intro h2 {
  max-width: 63rem;
  font-size: clamp(3rem, 5.3vw, 6rem);
  font-weight: 580;
  line-height: 0.96;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.capability-intro p {
  max-width: 50rem;
  margin-top: 2rem;
  color: var(--white-muted);
  font-size: clamp(1.04rem, 1.18vw, 1.22rem);
}

.capability-ledger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
  border-top: 1px solid rgba(248, 250, 252, 0.18);
}

.capability-ledger > div {
  padding: clamp(2.25rem, 4vw, 4rem) clamp(1.5rem, 2.8vw, 3rem);
  border-left: 1px solid rgba(248, 250, 252, 0.16);
}

.capability-ledger > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.capability-ledger > div:last-child {
  padding-right: 0;
}

.capability-ledger dt,
.capability-ledger dd {
  margin: 0;
}

.capability-ledger dt {
  display: grid;
  gap: 2.4rem;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.capability-ledger dt span {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.capability-ledger dd {
  margin-top: 1rem;
  color: var(--white-muted);
  font-size: 0.98rem;
}

.build-sequence {
  color: var(--black);
  background: var(--paper);
}

.build-sequence-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.5fr) minmax(0, 1.1fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.build-sequence-heading > * {
  margin: 0;
}

.build-sequence-heading .section-label {
  padding-top: 0.55rem;
  color: var(--ink-muted);
}

.build-sequence-heading h2 {
  max-width: 45rem;
  font-size: clamp(2.9rem, 4.4vw, 5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.build-sequence-heading > p:last-child {
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
}

.build-sequence-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(4.5rem, 7vw, 7rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.build-sequence-list li {
  min-height: 20rem;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  border-left: 1px solid var(--line-dark);
}

.build-sequence-list li:first-child {
  padding-left: 0;
  border-left: 0;
}

.build-sequence-list li:last-child {
  padding-right: 0;
}

.build-sequence-list span {
  color: #08734b;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.build-sequence-list h3 {
  max-width: 18rem;
  margin: clamp(4rem, 7vw, 7rem) 0 0;
  font-size: clamp(1.65rem, 2.2vw, 2.4rem);
  font-weight: 630;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.build-sequence-list p {
  max-width: 25rem;
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 1rem;
}

.home-faq-compact {
  background: var(--white);
}

.home-faq-compact .home-faq-heading h2 {
  max-width: 31rem;
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.final-launch {
  position: relative;
  display: grid;
  min-height: 48rem;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1.35fr) minmax(14rem, 0.46fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  isolation: isolate;
}

.final-launch::before,
.final-launch::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(248, 250, 252, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.final-launch::before {
  width: min(70vw, 68rem);
  height: min(70vw, 68rem);
  right: -23rem;
  bottom: -39rem;
}

.final-launch::after {
  width: min(48vw, 46rem);
  height: min(48vw, 46rem);
  right: -12rem;
  bottom: -27rem;
}

.final-launch > .section-label {
  position: relative;
  z-index: 2;
  padding-top: 0.8rem;
  color: rgba(248, 250, 252, 0.78);
}

.final-launch-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: 1.5rem;
}

.final-launch-copy h2,
.final-launch-copy p {
  margin: 0;
}

.final-launch-copy h2 {
  max-width: 66rem;
  font-size: clamp(3.2rem, 5.7vw, 6.5rem);
  font-weight: 610;
  line-height: 0.94;
  letter-spacing: -0.074em;
  text-wrap: balance;
}

.final-launch-copy > p {
  max-width: 43rem;
  margin-top: 2rem;
  color: rgba(248, 250, 252, 0.84);
  font-size: clamp(1.05rem, 1.2vw, 1.24rem);
}

.final-launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.final-launch .primary-action {
  margin-top: 0;
  color: var(--black);
  background: var(--white);
}

.final-launch .primary-action:hover {
  color: var(--black);
  background: var(--green);
}

.final-launch-email {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(248, 250, 252, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
}

.final-launch-note {
  position: relative;
  z-index: 2;
  align-self: end;
  margin: 0;
  color: rgba(248, 250, 252, 0.74);
  font-size: 0.88rem;
}

.final-launch-signal {
  position: absolute;
  z-index: 1;
  top: 3rem;
  right: var(--gutter);
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.final-launch-signal span {
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid rgba(248, 250, 252, 0.65);
  border-radius: 50%;
}

.final-launch-signal span:first-child {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 0 rgba(64, 220, 142, 0.35);
  animation: signal-pulse 2.4s ease-out infinite;
}

@keyframes signal-pulse {
  70%, 100% { box-shadow: 0 0 0 1.25rem rgba(64, 220, 142, 0); }
}

@media (max-width: 1050px) {
  .route-deck-heading,
  .build-sequence-heading {
    grid-template-columns: minmax(9rem, 0.42fr) minmax(0, 1.2fr);
  }

  .route-deck-heading > p:last-child,
  .build-sequence-heading > p:last-child {
    grid-column: 2;
  }

  .route-item > a {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .route-go {
    grid-column: 2;
    width: fit-content;
  }

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

  .capability-ledger > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(248, 250, 252, 0.16);
  }

  .capability-ledger > div:nth-child(4) {
    border-top: 1px solid rgba(248, 250, 252, 0.16);
  }

  .final-launch {
    grid-template-columns: minmax(9rem, 0.4fr) minmax(0, 1.4fr);
  }

  .final-launch-note {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .home-page .hero-brandline {
    max-width: 19rem;
    font-size: 0.72rem;
  }

  .route-deck-heading,
  .capability-intro,
  .build-sequence-heading,
  .final-launch {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .route-deck-heading .section-label,
  .capability-intro .section-label,
  .build-sequence-heading .section-label,
  .final-launch > .section-label {
    padding-top: 0;
  }

  .route-deck-heading h2,
  .build-sequence-heading h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.3rem);
  }

  .route-deck-heading > p:last-child,
  .build-sequence-heading > p:last-child {
    grid-column: auto;
  }

  .route-list,
  .build-sequence-list {
    margin-top: 3.5rem;
  }

  .route-item > a {
    min-height: 0;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1.25rem;
    padding: 2.25rem 0;
  }

  .route-item > a:hover,
  .route-item > a:focus-visible {
    padding-inline: 1rem;
  }

  .route-copy strong {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
  }

  .route-copy small {
    font-size: 0.96rem;
  }

  .route-go {
    width: 100%;
    grid-column: 2;
    justify-content: flex-start;
    border-bottom: 0;
  }

  .route-echo {
    display: none;
  }

  .capability-field::before {
    top: -16rem;
    right: -17rem;
    width: 34rem;
    height: 34rem;
    box-shadow: 0 0 0 5rem rgba(8, 124, 255, 0.035);
  }

  .capability-intro h2 {
    font-size: clamp(2.65rem, 12vw, 3.8rem);
  }

  .capability-ledger {
    grid-template-columns: 1fr;
    padding-bottom: 4rem;
  }

  .capability-ledger > div,
  .capability-ledger > div:first-child,
  .capability-ledger > div:last-child,
  .capability-ledger > div:nth-child(3) {
    padding: 2.3rem 0;
    border-top: 1px solid rgba(248, 250, 252, 0.16);
    border-left: 0;
  }

  .capability-ledger dt {
    gap: 1.35rem;
    font-size: 1.5rem;
  }

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

  .build-sequence-list li,
  .build-sequence-list li:first-child,
  .build-sequence-list li:last-child {
    min-height: 0;
    padding: 2.5rem 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .build-sequence-list li:first-child {
    border-top: 0;
  }

  .build-sequence-list h3 {
    margin-top: 2.75rem;
  }

  .home-faq-compact {
    gap: 3rem;
  }

  .home-faq-compact .home-faq-heading h2 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }

  .final-launch {
    min-height: 44rem;
    align-content: space-between;
  }

  .final-launch-copy {
    align-self: auto;
  }

  .final-launch-copy h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .final-launch-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-launch-note {
    grid-column: auto;
    align-self: end;
  }

  .final-launch::before {
    width: 36rem;
    height: 36rem;
    right: -24rem;
    bottom: -21rem;
  }

  .final-launch::after {
    width: 25rem;
    height: 25rem;
    right: -18rem;
    bottom: -13rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-launch-signal span:first-child {
    animation: none;
  }

  .route-item > a,
  .route-item > a::before,
  .route-echo {
    transition: none;
  }
}

/* A warm editorial counterweight to the technical space system. */
.home-page .hero h1 em,
.landing-hero h1 em,
.project-intro h1 em,
.capability-intro h2 em,
.final-launch-copy h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 470;
  letter-spacing: -0.04em;
}

.home-page .hero h1 em,
.landing-hero h1 em,
.project-intro h1 em {
  font-size: 1.06em;
}

.route-deck-heading h2,
.home-faq-compact .home-faq-heading h2 {
  font-family: var(--serif);
  font-weight: 520;
  letter-spacing: -0.045em;
}

.capability-intro h2 em,
.final-launch-copy h2 em {
  color: inherit;
}
