@charset "UTF-8";
/* ==========================================================================
   NEATFIELD FACILITIES LTD — Core stylesheet
   Deep navy / graphite / warm off-white / cool steel / mineral green / brass
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Ink & navy */
  --ink-900: #070d12;
  --navy-950: #08131d;
  --navy-900: #0a1520;
  --navy-800: #0e1e2c;
  --navy-700: #14293a;
  --navy-600: #1b3446;

  /* Graphite */
  --graphite-800: #1a242c;
  --graphite-700: #26333d;
  --graphite-600: #35454f;
  --graphite-500: #4c5f6b;

  /* Steel */
  --steel-500: #64798a;
  --steel-400: #7e93a3;
  --steel-300: #a8b8c4;
  --steel-200: #c9d4dc;
  --steel-100: #e2e9ee;

  /* Paper */
  --paper-50: #fbfaf7;
  --paper-100: #f4f1eb;
  --paper-200: #e9e4da;
  --paper-300: #dcd5c8;

  /* Mineral green */
  --green-700: #24523f;
  --green-600: #2f6b57;
  --green-500: #3b8168;
  --green-100: #e4ede9;

  /* Brass */
  --brass-600: #a97f3f;
  --brass-500: #c29a5b;
  --brass-300: #e3caa0;

  /* Semantic */
  --bg: var(--paper-50);
  --surface: #ffffff;
  --text: var(--graphite-700);
  --text-strong: var(--navy-900);
  --text-muted: var(--graphite-500);
  --rule: var(--paper-300);
  --rule-soft: #ece7de;
  --accent: var(--green-600);
  --accent-ink: #ffffff;
  --focus: #b8862f;

  /* Type */
  --font-sans: "Helvetica Neue", "Inter", system-ui, -apple-system, "Segoe UI",
    Roboto, "Noto Sans", Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", Menlo, Consolas,
    monospace;

  --step--1: clamp(0.8125rem, 0.79rem + 0.11vw, 0.875rem);
  --step-0: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  --step-1: clamp(1.125rem, 1.07rem + 0.28vw, 1.3125rem);
  --step-2: clamp(1.3125rem, 1.21rem + 0.5vw, 1.625rem);
  --step-3: clamp(1.5rem, 1.32rem + 0.9vw, 2.125rem);
  --step-4: clamp(1.875rem, 1.54rem + 1.65vw, 2.9375rem);
  --step-5: clamp(2.25rem, 1.66rem + 2.9vw, 4rem);
  --step-6: clamp(2.375rem, 1.62rem + 3.35vw, 4rem);

  /* Layout */
  --shell: 1240px;
  --shell-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --header-height: 78px;
  --section-y: clamp(4rem, 8vw, 7.5rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 260ms;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(10, 21, 32, 0.05),
    0 6px 16px -10px rgba(10, 21, 32, 0.28);
  --shadow-md: 0 2px 4px rgba(10, 21, 32, 0.05),
    0 18px 44px -24px rgba(10, 21, 32, 0.38);
  --shadow-lg: 0 4px 8px rgba(10, 21, 32, 0.06),
    0 40px 90px -40px rgba(10, 21, 32, 0.5);
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  color: var(--text-strong);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.021em;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-5);
}
h2 {
  font-size: var(--step-4);
}
h3 {
  font-size: var(--step-2);
  line-height: 1.2;
}
h4 {
  font-size: var(--step-1);
  line-height: 1.3;
  letter-spacing: -0.012em;
}
h5,
h6 {
  font-size: var(--step-0);
  letter-spacing: -0.006em;
}

p,
ul,
ol,
dl,
table,
figure,
blockquote {
  margin: 0 0 1.15em;
}

p {
  text-wrap: pretty;
}

:where(p, li):last-child {
  margin-bottom: 0;
}

a {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(47, 107, 87, 0.4);
  transition: color var(--dur) var(--ease),
    text-decoration-color var(--dur) var(--ease);
}

a:hover {
  color: var(--green-600);
  text-decoration-color: currentColor;
}

strong,
b {
  font-weight: 600;
  color: var(--text-strong);
}

small {
  font-size: var(--step--1);
}

hr {
  height: 1px;
  border: 0;
  background: var(--rule);
  margin: 2.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step--1);
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rule);
}

th {
  color: var(--text-strong);
  font-weight: 600;
  background: var(--paper-100);
  letter-spacing: 0.02em;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--navy-800);
  color: var(--paper-50);
}

/* Skip link */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--navy-900);
  color: var(--paper-50);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus-visible {
  transform: translateY(0);
  color: var(--paper-50);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow {
  max-width: var(--shell-narrow);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--tight {
  padding-block: clamp(3rem, 5.5vw, 4.75rem);
}

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

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

.section--navy {
  background: var(--navy-900);
  color: var(--steel-200);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy strong {
  color: var(--paper-50);
}

.section--navy a:not(.btn) {
  color: var(--brass-300);
  text-decoration-color: rgba(227, 202, 160, 0.45);
}

.section--navy a:not(.btn):hover {
  color: #f0dfc0;
}

.section--graphite {
  background: var(--graphite-800);
  color: var(--steel-200);
}

.section--graphite h2,
.section--graphite h3,
.section--graphite h4,
.section--graphite strong {
  color: var(--paper-50);
}

/* Architectural grid motif */
.gridlines {
  position: relative;
  isolation: isolate;
}

.gridlines::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(
      to right,
      rgba(168, 184, 196, 0.09) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(168, 184, 196, 0.09) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(
    ellipse 90% 70% at 50% 30%,
    #000 20%,
    transparent 78%
  );
}

.gridlines--light::before {
  background-image: linear-gradient(
      to right,
      rgba(27, 52, 70, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(27, 52, 70, 0.07) 1px, transparent 1px);
}

/* Section headers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-600);
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  flex: none;
}

.section--navy .eyebrow,
.section--graphite .eyebrow,
.page-hero .eyebrow {
  color: var(--brass-500);
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.section-head--wide {
  max-width: 80ch;
}

.section-head p {
  font-size: var(--step-1);
  color: var(--text-muted);
  line-height: 1.6;
}

.section--navy .section-head p,
.section--graphite .section-head p {
  color: var(--steel-300);
}

.section-head--split {
  display: grid;
  gap: clamp(1.25rem, 3vw, 3rem);
  max-width: none;
  align-items: end;
}

@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
  .section-head--split > :last-child {
    padding-bottom: 0.35rem;
  }
}

.lede {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--text-muted);
}

.rule-top {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy-900);
  --btn-fg: var(--paper-50);
  --btn-bd: var(--navy-900);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  min-height: 48px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 2px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 180ms var(--ease), background-color var(--dur) var(--ease),
    color var(--dur) var(--ease), border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  flex: none;
  width: 1em;
  height: 1em;
  transition: transform 220ms var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  --btn-bg: var(--green-600);
  --btn-bd: var(--green-600);
  --btn-fg: #ffffff;
}

.btn--primary:hover {
  --btn-bg: var(--green-700);
  --btn-bd: var(--green-700);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-900);
  --btn-bd: rgba(27, 52, 70, 0.28);
}

.btn--ghost:hover {
  --btn-bg: var(--navy-900);
  --btn-fg: var(--paper-50);
  --btn-bd: var(--navy-900);
}

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--paper-50);
  --btn-bd: rgba(251, 250, 247, 0.45);
}

.btn--ghost-light:hover {
  --btn-bg: var(--paper-50);
  --btn-fg: var(--navy-900);
  --btn-bd: var(--paper-50);
}

.btn--light {
  --btn-bg: var(--paper-50);
  --btn-fg: var(--navy-900);
  --btn-bd: var(--paper-50);
}

.btn--light:hover {
  --btn-bg: #ffffff;
}

.btn--sm {
  padding: 0.7rem 1.15rem;
  min-height: 42px;
  font-size: 0.75rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green-700);
  border-bottom: 1px solid rgba(47, 107, 87, 0.3);
  padding-bottom: 0.2rem;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.link-arrow svg {
  width: 0.95em;
  height: 0.95em;
  transition: transform 220ms var(--ease);
}

.link-arrow:hover {
  border-bottom-color: currentColor;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.section--navy .link-arrow,
.section--graphite .link-arrow {
  color: var(--brass-300);
  border-bottom-color: rgba(227, 202, 160, 0.35);
}

/* --------------------------------------------------------------------------
   5. Brand marks
   -------------------------------------------------------------------------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  flex: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex: none;
}

.brand__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.155em;
  color: var(--navy-900);
  transition: color var(--dur) var(--ease);
}

.brand__sub {
  margin-top: 0.32rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.235em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.brand--light .brand__name {
  color: var(--paper-50);
}

.brand--light .brand__sub {
  color: var(--steel-400);
}

/* --------------------------------------------------------------------------
   6. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
  transition: box-shadow var(--dur) var(--ease),
    background-color var(--dur) var(--ease);
}

.site-header.is-stuck {
  box-shadow: 0 1px 0 rgba(10, 21, 32, 0.06), 0 14px 34px -28px rgba(10, 21, 32, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  min-height: var(--header-height);
}

.primary-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.4vw, 1.1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list > li {
  position: relative;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--graphite-700);
  text-decoration: none;
  white-space: nowrap;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  bottom: 0.12rem;
  height: 1px;
  background: var(--green-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--navy-900);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-item--menu {
  display: flex;
  align-items: center;
}

.nav-item--menu > a::after {
  right: 1.6rem;
}

.nav-disclosure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: -0.15rem;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 2px;
  color: var(--graphite-500);
  cursor: pointer;
}

.nav-disclosure svg {
  width: 11px;
  height: 7px;
  transition: transform 240ms var(--ease);
}

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

/* Mega menu */
.mega {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  translate: -50% 0;
  width: min(660px, calc(100vw - 3rem));
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease),
    visibility 200ms;
}

.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega__grid {
  display: grid;
  gap: 1.5rem 2rem;
}

@media (min-width: 640px) {
  .mega__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mega__title {
  display: block;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--rule);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-600);
  text-decoration: none;
}

.mega__title:hover {
  color: var(--green-700);
}

.mega ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.12rem;
}

.mega ul a {
  display: block;
  padding: 0.5rem 0.6rem;
  margin-left: -0.6rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--graphite-700);
  text-decoration: none;
  transition: background-color 160ms var(--ease), color 160ms var(--ease);
}

.mega ul a::after {
  display: none;
}

.mega ul a:hover {
  background: var(--paper-100);
  color: var(--navy-900);
}

.mega__foot {
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.mega__foot p {
  margin: 0;
  font-size: var(--step--1);
  color: var(--text-muted);
  max-width: 34ch;
}

.header-cta {
  flex: none;
}

/* Burger */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: -0.5rem;
  padding: 0;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--navy-900);
  cursor: pointer;
}

.nav-burger span {
  position: relative;
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 260ms var(--ease), opacity 160ms var(--ease);
}

.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 260ms var(--ease);
}

.nav-burger span::before {
  top: -6px;
}
.nav-burger span::after {
  top: 6px;
}

.nav-burger[aria-expanded="true"] span {
  background: transparent;
}

.nav-burger[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile panel */
.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 890;
  display: flex;
  flex-direction: column;
  background: var(--navy-900);
  color: var(--steel-200);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

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

.js .mobile-nav {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 220ms var(--ease), transform 260ms var(--ease);
}

.js .mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav__inner {
  padding: 1.75rem var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__primary > li {
  border-bottom: 1px solid rgba(168, 184, 196, 0.16);
}

.mobile-nav__primary > li > a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--paper-50);
  text-decoration: none;
}

.mobile-nav__primary > li > a[aria-current="page"] {
  color: var(--brass-300);
}

.mobile-nav details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--paper-50);
  cursor: pointer;
  list-style: none;
}

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

.mobile-nav details > summary::after {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--steel-400);
  border-bottom: 1.5px solid var(--steel-400);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 220ms var(--ease);
}

.mobile-nav details[open] > summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.mobile-nav details ul {
  padding: 0 0 1rem;
  display: grid;
  gap: 0.1rem;
}

.mobile-nav details ul .mobile-nav__group {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-500);
}

.mobile-nav details ul a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1rem;
  color: var(--steel-200);
  text-decoration: none;
}

.mobile-nav details ul a:hover,
.mobile-nav details ul a:focus-visible {
  color: var(--paper-50);
}

.mobile-nav__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.mobile-nav__contact {
  display: grid;
  gap: 0.4rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(168, 184, 196, 0.16);
  font-size: var(--step--1);
}

.mobile-nav__contact a {
  color: var(--steel-200);
  text-decoration: none;
}

.mobile-nav__contact a:hover {
  color: var(--paper-50);
}

@media (max-width: 1080px) {
  .primary-nav,
  .header-cta {
    display: none;
  }
  .nav-burger {
    display: inline-flex;
    margin-left: auto;
  }
}

/* ---- No-JavaScript navigation fallback -------------------------------------
   The burger and the slide-in panel both need scripting. Without it the header
   falls back to a plain wrapped list of links so the site stays navigable. */
html:not(.js) .nav-burger,
html:not(.js) .nav-disclosure,
html:not(.js) .mega,
html:not(.js) .mobile-nav {
  display: none !important;
}

@media (max-width: 1080px) {
  html:not(.js) .header-inner {
    flex-wrap: wrap;
    padding-bottom: 0.65rem;
    row-gap: 0.35rem;
  }
  html:not(.js) .primary-nav {
    display: block;
    width: 100%;
    margin-left: 0;
    order: 3;
  }
  html:not(.js) .nav-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.1rem 1.1rem;
  }
  html:not(.js) .header-cta {
    display: inline-flex;
    margin-left: auto;
  }
}

/* --------------------------------------------------------------------------
   7. Page hero
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, calc(100svh - var(--header-height)), 940px);
  overflow: hidden;
  background: var(--navy-950);
  isolation: isolate;
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-pos, center center);
  z-index: -2;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
      90deg,
      rgba(7, 13, 18, var(--scrim-1, 0.8)) 0%,
      rgba(7, 13, 18, var(--scrim-2, 0.56)) 38%,
      rgba(7, 13, 18, var(--scrim-3, 0.18)) 68%,
      rgba(7, 13, 18, var(--scrim-4, 0.05)) 100%
    ),
    linear-gradient(
      to top,
      rgba(7, 13, 18, 0.5) 0%,
      rgba(7, 13, 18, 0.12) 26%,
      rgba(7, 13, 18, 0) 52%
    );
}

.page-hero__inner {
  position: relative;
  width: 100%;
  padding-block: clamp(2.75rem, 5.5vw, 4.5rem);
}

.page-hero__content {
  max-width: var(--hero-copy, 46rem);
  color: var(--steel-200);
}

.page-hero h1 {
  color: #fff;
  font-size: var(--step-6);
  letter-spacing: -0.028em;
  text-shadow: 0 2px 30px rgba(7, 13, 18, 0.42);
}

.page-hero__lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: rgba(244, 241, 235, 0.92);
  max-width: 34rem;
  text-shadow: 0 1px 18px rgba(7, 13, 18, 0.5);
}

.page-hero .btn-row {
  margin-top: clamp(1.5rem, 2.6vw, 2.25rem);
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(251, 250, 247, 0.22);
  font-size: var(--step--1);
  color: rgba(233, 228, 218, 0.88);
  max-width: 40rem;
}

.page-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero__meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: none;
  background: var(--brass-500);
  transform: rotate(45deg);
}

/* Compact hero for secondary pages */
.page-hero--compact {
  min-height: clamp(440px, 62svh, 620px);
}

/* Scroll cue */
.hero-cue {
  position: absolute;
  left: var(--gutter);
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-block: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 250, 247, 0.7);
  text-decoration: none;
}

.hero-cue::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(251, 250, 247, 0.45);
  position: relative;
  animation: cue 2.6s var(--ease) infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: scaleX(0.4);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 860px) {
  .page-hero {
    align-items: flex-end;
    min-height: clamp(520px, 80svh, 680px);
  }
  .page-hero__scrim {
    background: linear-gradient(
        to top,
        rgba(7, 13, 18, 0.93) 0%,
        rgba(7, 13, 18, 0.82) 32%,
        rgba(7, 13, 18, 0.5) 60%,
        rgba(7, 13, 18, 0.3) 100%
      ),
      linear-gradient(90deg, rgba(7, 13, 18, 0.35), rgba(7, 13, 18, 0.05));
  }
  .page-hero__img {
    object-position: var(--hero-pos-sm, var(--hero-pos, center center));
  }
  .page-hero__content {
    max-width: none;
  }
  .hero-cue {
    display: none;
  }
  .page-hero--compact {
    min-height: clamp(420px, 62svh, 520px);
  }
}

/* CSS-led page intro (FAQ, legal, 404) */
.page-intro {
  position: relative;
  background: var(--navy-900);
  color: var(--steel-200);
  padding-block: clamp(3.25rem, 7vw, 5.75rem);
  overflow: hidden;
  isolation: isolate;
}

.page-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(
      to right,
      rgba(168, 184, 196, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(168, 184, 196, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(105deg, #000 8%, transparent 62%);
}

.page-intro::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 46%;
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(194, 154, 91, 0.22);
  border-radius: 50%;
  mask-image: linear-gradient(200deg, #000 30%, transparent 75%);
}

.page-intro h1 {
  color: #fff;
  max-width: 20ch;
}

.page-intro p {
  max-width: 62ch;
  font-size: var(--step-1);
  color: var(--steel-300);
}

.page-intro__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: end;
}

@media (min-width: 900px) {
  .page-intro__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

.page-intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.page-intro__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  min-height: 48px;
  border: 1px solid rgba(194, 154, 91, 0.5);
  border-radius: 2px;
  color: var(--paper-50);
}

.page-intro__price small {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-500);
}

.page-intro__price strong {
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--paper-50);
}

/* Numbered steps */
.steps {
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.steps > li {
  counter-increment: step;
  position: relative;
  display: grid;
  gap: 0.5rem;
  padding: 1.5rem 0 1.5rem 4rem;
  border-top: 1px solid var(--rule);
}

.steps > li:last-child {
  border-bottom: 1px solid var(--rule);
}

.steps > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brass-600);
}

.steps > li::after {
  content: "";
  position: absolute;
  left: 2.45rem;
  top: 1.75rem;
  bottom: -1px;
  width: 1px;
  background: var(--rule);
}

.steps > li:last-child::after {
  display: none;
}

.steps h3 {
  margin: 0;
  font-size: var(--step-1);
}

.steps p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 72ch;
}

.section--navy .steps > li,
.section--graphite .steps > li {
  border-color: rgba(168, 184, 196, 0.2);
}

.section--navy .steps > li::after,
.section--graphite .steps > li::after {
  background: rgba(168, 184, 196, 0.2);
}

.section--navy .steps > li::before,
.section--graphite .steps > li::before {
  color: var(--brass-500);
}

.section--navy .steps p,
.section--graphite .steps p {
  color: var(--steel-300);
}

@media (max-width: 560px) {
  .steps > li {
    padding-left: 3.25rem;
  }
  .steps > li::after {
    left: 1.85rem;
  }
}

/* Two-column spec block */
.spec-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 860px) {
  .spec-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--paper-100);
  border-bottom: 1px solid var(--rule-soft);
  font-size: var(--step--1);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.6rem;
  margin: 0;
  padding-block: 0.9rem;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
}

.breadcrumbs li + li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--steel-400);
  border-top: 1px solid var(--steel-400);
  transform: rotate(45deg);
}

.breadcrumbs a {
  display: inline-block;
  padding-block: 0.2rem;
  color: var(--graphite-600);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  color: var(--green-700);
  border-bottom-color: currentColor;
}

.breadcrumbs [aria-current="page"] {
  color: var(--navy-900);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   8. Marquee-free credential / info strip
   -------------------------------------------------------------------------- */
.factstrip {
  background: var(--navy-900);
  color: var(--steel-300);
  border-bottom: 1px solid rgba(168, 184, 196, 0.12);
}

.factstrip__grid {
  display: grid;
  gap: 0;
  padding-block: 0;
}

@media (min-width: 760px) {
  .factstrip__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.factstrip__item {
  padding: 1.6rem clamp(1rem, 2vw, 1.85rem);
  border-bottom: 1px solid rgba(168, 184, 196, 0.13);
}

.factstrip__item:last-child {
  border-bottom: 0;
}

@media (min-width: 760px) {
  .factstrip__item {
    border-bottom: 0;
    border-right: 1px solid rgba(168, 184, 196, 0.13);
  }
  .factstrip__item:first-child {
    padding-left: 0;
  }
  .factstrip__item:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

.factstrip__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-500);
}

.factstrip__value {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.5;
  color: var(--steel-200);
}

.factstrip__value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 184, 196, 0.4);
}

.factstrip__value a:hover {
  color: #fff;
  border-bottom-color: currentColor;
}

/* --------------------------------------------------------------------------
   9. Cards & grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 2rem);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

/* Service card */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out),
    border-color 320ms var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--paper-300);
  box-shadow: var(--shadow-md);
}

.service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-200);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.service-card:hover .service-card__media img {
  transform: scale(1.045);
}

.service-card__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.5rem 0.9rem;
  background: rgba(10, 21, 32, 0.86);
  color: var(--paper-100);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
}

.service-card__body h3 {
  font-size: var(--step-1);
  margin-bottom: 0.55rem;
}

.service-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card__body h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-card__body p {
  font-size: var(--step--1);
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule-soft);
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

.price-tag small {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.price-tag strong {
  font-size: var(--step-1);
}

.service-card__more {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card__more svg {
  width: 0.9em;
  height: 0.9em;
  transition: transform 240ms var(--ease);
}

.service-card:hover .service-card__more svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Category card — the whole card is a link to its category page, while each
   listed service keeps its own direct link (stretched-link pattern, no nesting)
   -------------------------------------------------------------------------- */
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out),
    border-color 320ms var(--ease);
}

/* accent rule that draws across the top on hover / focus */
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--brass-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms var(--ease-out);
}

.category-card:hover,
.category-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--paper-300);
  box-shadow: var(--shadow-lg);
}

.category-card:hover::before,
.category-card:focus-within::before {
  transform: scaleX(1);
}

/* Touch devices never hover: keep the accent visible so the card reads as active */
@media (hover: none) {
  .category-card::before {
    transform: scaleX(1);
  }
  .category-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* The media band stacks its layers with grid rather than absolute positioning,
   so that `.category-card` stays the only positioned ancestor. That is what
   lets the heading's stretched ::after cover the entire card. */
.category-card__media {
  display: grid;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--navy-950);
}

.category-card__media > * {
  grid-area: 1 / 1;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--cc-pos, center center);
  transform: scale(1);
  transition: transform 900ms var(--ease-out);
}

.category-card:hover .category-card__media img,
.category-card:focus-within .category-card__media img {
  transform: scale(1.03);
}

/* more vertical room for the caption once the cards go single-column */
@media (max-width: 620px) {
  .category-card__media {
    aspect-ratio: 3 / 2;
  }
}

/* fine corner measurement detail */
.category-card__tick {
  align-self: start;
  justify-self: end;
  margin: 0.9rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-top: 1px solid rgba(233, 228, 218, 0.5);
  border-right: 1px solid rgba(233, 228, 218, 0.5);
  transition: width 480ms var(--ease-out), height 480ms var(--ease-out),
    border-color 480ms var(--ease);
}

.category-card:hover .category-card__tick,
.category-card:focus-within .category-card__tick {
  width: 52px;
  height: 52px;
  border-color: var(--brass-500);
}

/* One unified caption block at the foot of the image: label and title together
   on the left, arrow control on the right, both laid out on a grid. */
.category-card__overlay {
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(0.9rem, 1.8vw, 1.75rem);
  padding: clamp(1.35rem, 2.2vw, 2.25rem);
  background: linear-gradient(
    to bottom,
    rgba(7, 13, 18, 0) 0%,
    rgba(7, 13, 18, 0.06) 30%,
    rgba(7, 13, 18, 0.46) 58%,
    rgba(8, 19, 29, 0.86) 84%,
    rgba(8, 19, 29, 0.94) 100%
  );
  transition: background 420ms var(--ease);
}

.category-card:hover .category-card__overlay,
.category-card:focus-within .category-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(7, 13, 18, 0) 0%,
    rgba(7, 13, 18, 0.14) 28%,
    rgba(7, 13, 18, 0.58) 56%,
    rgba(8, 19, 29, 0.92) 84%,
    rgba(8, 19, 29, 0.97) 100%
  );
}

.category-card__meta {
  min-width: 0;
}

.category-card__index {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--brass-500);
}

.category-card__title {
  margin: 0;
  font-size: clamp(1.375rem, 1.02rem + 1.18vw, 2.125rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  text-wrap: balance;
  color: rgba(255, 255, 255, 0.94);
  transition: color 320ms var(--ease);
}

.category-card:hover .category-card__title,
.category-card:focus-within .category-card__title {
  color: #fff;
}

.category-card__link {
  color: inherit;
  text-decoration: none;
}

/* the stretched hit area — covers the whole card */
.category-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.category-card__arrow {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(2.5rem, 1.9rem + 1.2vw, 3.25rem);
  aspect-ratio: 1;
  border: 1px solid rgba(233, 228, 218, 0.4);
  border-radius: 2px;
  background: rgba(8, 19, 29, 0.32);
  color: var(--paper-50);
  transition: background-color 340ms var(--ease), border-color 340ms var(--ease);
}

.category-card__arrow svg {
  width: 1.05rem;
  height: 1.05rem;
}

.category-card__arrow svg path {
  transition: transform 380ms var(--ease-out);
}

.category-card:hover .category-card__arrow,
.category-card:focus-within .category-card__arrow {
  background: var(--green-600);
  border-color: var(--green-600);
}

.category-card:hover .category-card__arrow svg path,
.category-card:focus-within .category-card__arrow svg path {
  transform: translateX(2px);
}

/* keyboard focus must outline the whole card, not just the heading text */
.category-card:has(.category-card__link:focus-visible) {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.category-card__link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 2px;
}

.category-card:has(.category-card__link:focus-visible)
  .category-card__link:focus-visible {
  outline: none;
}

.category-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.25rem, 2.6vw, 1.85rem) clamp(1.25rem, 2.6vw, 2rem)
    clamp(1rem, 2vw, 1.4rem);
}

.category-card__body > p {
  font-size: var(--step--1);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* the individual service links sit above the stretched link */
.category-card__list {
  position: relative;
  z-index: 2;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-soft);
}

.category-card__list li + li {
  border-top: 1px solid var(--rule-soft);
}

.category-card__list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.55rem 0.7rem 0;
  font-size: var(--step--1);
  font-weight: 500;
  line-height: 1.4;
  color: var(--graphite-700);
  text-decoration: none;
  transition: color 220ms var(--ease), background-color 220ms var(--ease),
    padding-left 300ms var(--ease-out);
}

.category-card__list a:hover,
.category-card__list a:focus-visible {
  color: var(--green-700);
  background: var(--paper-100);
  padding-left: 0.6rem;
}

.category-card__list a span {
  flex: none;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel-500);
  font-variant-numeric: tabular-nums;
}

.category-card__list a:hover span,
.category-card__list a:focus-visible span {
  color: var(--green-600);
}

/* --------------------------------------------------------------------------
   Homepage feature variant — label, title and arrow as one organised overlay
   block inside the photograph. Scoped so category cards elsewhere are untouched.
   -------------------------------------------------------------------------- */
.category-card--feature .category-card__media {
  aspect-ratio: 16 / 9;
}

@media (max-width: 640px) {
  .category-card--feature .category-card__media {
    aspect-ratio: 4 / 3;
  }
}

.category-card--feature .category-card__overlay {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(0.85rem, 1.8vw, 1.5rem);
  padding: clamp(1.25rem, 2.3vw, 2.25rem);
  background: linear-gradient(
    to bottom,
    rgba(7, 13, 18, 0) 0%,
    rgba(7, 13, 18, 0) 30%,
    rgba(7, 13, 18, 0.34) 52%,
    rgba(8, 19, 29, 0.8) 82%,
    rgba(8, 19, 29, 0.93) 100%
  );
  transition: background 420ms var(--ease);
}

.category-card--feature .category-card__overlay > * {
  width: auto;
}

.category-card--feature .category-card__meta {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.category-card--feature .category-card__index {
  margin: 0;
}

.category-card--feature .category-card__title {
  margin: 0;
  font-size: clamp(1.375rem, 1.02rem + 1.16vw, 2.125rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: balance;
  transition: color 320ms var(--ease);
}

.category-card--feature .category-card__link {
  display: inline;
  gap: 0;
  color: inherit;
}

/* the arrow becomes a refined square control, aligned bottom-right */
.category-card--feature .category-card__arrow {
  width: clamp(2.5rem, 1.85rem + 1.5vw, 3.25rem);
  aspect-ratio: 1;
  height: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 228, 218, 0.42);
  border-radius: 2px;
  background: rgba(8, 19, 29, 0.4);
  color: var(--paper-50);
  transform: none;
  transition: background-color 320ms var(--ease), border-color 320ms var(--ease);
}

.category-card--feature .category-card__arrow svg {
  width: 44%;
  height: 44%;
  transition: transform 320ms var(--ease-out);
}

.category-card--feature:hover .category-card__arrow,
.category-card--feature:focus-within .category-card__arrow {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: none;
}

.category-card--feature:hover .category-card__arrow svg,
.category-card--feature:focus-within .category-card__arrow svg {
  transform: translateX(4px);
}

.category-card--feature:hover .category-card__title,
.category-card--feature:focus-within .category-card__title {
  color: #fff;
}

.category-card--feature:hover .category-card__overlay,
.category-card--feature:focus-within .category-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(7, 13, 18, 0) 0%,
    rgba(7, 13, 18, 0.06) 28%,
    rgba(7, 13, 18, 0.44) 50%,
    rgba(8, 19, 29, 0.87) 80%,
    rgba(8, 19, 29, 0.96) 100%
  );
}

.category-card--feature:hover .category-card__media img,
.category-card--feature:focus-within .category-card__media img {
  transform: scale(1.03);
}

.category-card__hint {
  position: relative;
  z-index: 0;
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--rule);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-500);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.category-card:hover .category-card__hint,
.category-card:focus-within .category-card__hint {
  color: var(--green-600);
}

/* Value / feature tiles */
.tile {
  padding: clamp(1.4rem, 2.6vw, 2.1rem);
  background: transparent;
  border-top: 1px solid rgba(168, 184, 196, 0.22);
}

.section--paper .tile,
.section--white .tile {
  border-top-color: var(--rule);
}

.tile__num {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brass-500);
}

.tile h3 {
  font-size: var(--step-1);
  margin-bottom: 0.6rem;
}

.tile p {
  font-size: var(--step--1);
  line-height: 1.62;
  color: var(--steel-300);
}

.section--paper .tile p,
.section--white .tile p {
  color: var(--text-muted);
}

/* Editorial split */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .split--media-right .split__media {
    order: 2;
  }
  .split--wide-copy {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  }
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
}

.split__media--frame::after {
  content: "";
  position: absolute;
  inset: auto -0.9rem -0.9rem auto;
  width: 62%;
  height: 62%;
  border: 1px solid rgba(194, 154, 91, 0.55);
  border-radius: 3px;
  z-index: -1;
}

.split__caption {
  margin-top: 0.9rem;
  font-size: var(--step--1);
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}

.split__caption::before {
  content: "";
  flex: none;
  width: 1.5rem;
  height: 1px;
  background: var(--brass-500);
  transform: translateY(-0.35em);
}

.section--navy .split__caption,
.section--graphite .split__caption {
  color: var(--steel-400);
}

/* Checklist */
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.checklist--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 0.75rem clamp(1.25rem, 3vw, 2.5rem);
}

.checklist li {
  position: relative;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: var(--step--1);
  line-height: 1.6;
}

.checklist li::before {
  content: "";
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.18rem;
  border: 1px solid var(--green-600);
  border-radius: 2px;
  background-image: linear-gradient(
      45deg,
      transparent 46%,
      var(--green-600) 46%,
      var(--green-600) 54%,
      transparent 54%
    ),
    linear-gradient(
      -45deg,
      transparent 46%,
      var(--green-600) 46%,
      var(--green-600) 54%,
      transparent 54%
    );
  background-size: 62% 62%;
  background-position: center;
  background-repeat: no-repeat;
}

.section--navy .checklist li::before,
.section--graphite .checklist li::before {
  border-color: var(--brass-500);
  background-image: linear-gradient(
      45deg,
      transparent 46%,
      var(--brass-500) 46%,
      var(--brass-500) 54%,
      transparent 54%
    ),
    linear-gradient(
      -45deg,
      transparent 46%,
      var(--brass-500) 46%,
      var(--brass-500) 54%,
      transparent 54%
    );
}

/* Plain marker list */
.marker-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.marker-list li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: var(--step--1);
  line-height: 1.6;
}

.marker-list li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--brass-500);
  transform: rotate(45deg);
}

/* Info panel */
.panel {
  padding: clamp(1.4rem, 3vw, 2.25rem);
  background: var(--paper-100);
  border: 1px solid var(--rule-soft);
  border-left: 3px solid var(--green-600);
  border-radius: 2px;
}

.panel h3 {
  font-size: var(--step-1);
}

.panel p {
  font-size: var(--step--1);
  color: var(--text-muted);
}

.panel--navy {
  background: var(--navy-800);
  border-color: rgba(168, 184, 196, 0.16);
  border-left-color: var(--brass-500);
  color: var(--steel-300);
}

.panel--navy h3 {
  color: var(--paper-50);
}

.panel--navy p {
  color: var(--steel-300);
}

.panel--note {
  border-left-color: var(--brass-500);
  background: #fbf7f0;
}

/* Definition grid (company info) */
.deflist {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.deflist > div {
  display: grid;
  gap: 0.2rem 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 620px) {
  .deflist > div {
    grid-template-columns: 15rem minmax(0, 1fr);
    align-items: baseline;
  }
}

.deflist dt {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.deflist dd {
  margin: 0;
  font-size: var(--step--1);
  color: var(--text-strong);
  font-weight: 500;
}

.deflist dd > a:only-child {
  display: inline-block;
  padding-block: 0.25rem;
}

.section--navy .deflist,
.section--navy .deflist > div {
  border-color: rgba(168, 184, 196, 0.18);
}

.section--navy .deflist dt {
  color: var(--brass-500);
}

.section--navy .deflist dd {
  color: var(--paper-100);
}

.section--navy .deflist dd a {
  color: var(--paper-100);
  text-decoration-color: rgba(233, 228, 218, 0.4);
}

/* --------------------------------------------------------------------------
   10. Process (interactive, no-JS friendly)
   -------------------------------------------------------------------------- */
.process {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}

@media (min-width: 940px) {
  .process {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    align-items: start;
  }
}

.process__nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(168, 184, 196, 0.22);
}

.section--paper .process__nav,
.section--white .process__nav {
  border-top-color: var(--rule);
}

.process__nav li {
  border-bottom: 1px solid rgba(168, 184, 196, 0.22);
}

.section--paper .process__nav li,
.section--white .process__nav li {
  border-bottom-color: var(--rule);
}

.process__btn {
  display: flex;
  width: 100%;
  gap: 1rem;
  align-items: baseline;
  padding: 1.05rem 0.85rem 1.05rem 0;
  background: none;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.012em;
  text-align: left;
  cursor: pointer;
  transition: color 200ms var(--ease), padding 260ms var(--ease);
}

.process__btn span:first-child {
  flex: none;
  width: 2.1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--steel-500);
  transition: color 200ms var(--ease);
}

.process__btn[aria-selected="true"] {
  padding-left: 0.85rem;
  color: var(--paper-50);
}

.section--paper .process__btn[aria-selected="true"],
.section--white .process__btn[aria-selected="true"] {
  color: var(--navy-900);
}

.process__btn[aria-selected="true"] span:first-child {
  color: var(--brass-500);
}

.process__nav li {
  position: relative;
}

.process__nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brass-500);
  transform: scaleY(0);
  transition: transform 320ms var(--ease-out);
}

.process__nav li:has(.process__btn[aria-selected="true"])::before {
  transform: scaleY(1);
}

.process__panel {
  display: grid;
  gap: 1.25rem;
}

/* Without JavaScript every step is rendered in full, in order. With JavaScript
   the block is upgraded to a tab interface; this hides the inactive panels
   before the script has finished wiring things up, avoiding a flash. */
.js .process__panels:not(.is-ready) > .process__panel:not(:first-child) {
  display: none;
}

.js .process__panel[hidden] {
  display: none;
}

/* Steps stack with a rule between them when scripting is unavailable */
html:not(.js) .process__panel + .process__panel {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 184, 196, 0.22);
}

html:not(.js) .process__nav {
  display: none;
}

.js .process__panel {
  animation: panelIn 420ms var(--ease-out) both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.process__panel h3 {
  font-size: var(--step-3);
  margin-bottom: 0;
}

.process__panel p {
  font-size: var(--step-0);
  color: var(--steel-300);
  max-width: 58ch;
}

.section--paper .process__panel p,
.section--white .process__panel p {
  color: var(--text-muted);
}

.process__step-index {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-500);
}

/* No-JS fallback: stacked steps */
.process__list {
  display: grid;
  gap: 2rem;
}

/* --------------------------------------------------------------------------
   11. Accordion / FAQ (native details)
   -------------------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.faq__item {
  border-bottom: 1px solid var(--rule);
}

.faq__item > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.012em;
  color: var(--text-strong);
  cursor: pointer;
  list-style: none;
  transition: color 200ms var(--ease);
}

.faq__item > summary::-webkit-details-marker {
  display: none;
}

.faq__item > summary:hover {
  color: var(--green-700);
}

.faq__icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 0.25rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--green-600);
  translate: -50% -50%;
  transition: transform 260ms var(--ease), opacity 200ms var(--ease);
}

.faq__icon::after {
  transform: rotate(90deg);
}

.faq__item[open] .faq__icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 0 1.6rem;
  max-width: 72ch;
}

.faq__answer p,
.faq__answer li {
  font-size: var(--step--1);
  line-height: 1.68;
  color: var(--text-muted);
}

.faq__answer > :first-child {
  margin-top: 0;
}

.js .faq__item[open] .faq__answer {
  animation: panelIn 320ms var(--ease-out) both;
}

.section--navy .faq,
.section--navy .faq__item {
  border-color: rgba(168, 184, 196, 0.18);
}

.section--navy .faq__item > summary {
  color: var(--paper-50);
}

.section--navy .faq__answer p,
.section--navy .faq__answer li {
  color: var(--steel-300);
}

.section--navy .faq__icon {
  border-color: rgba(168, 184, 196, 0.3);
}

.section--navy .faq__icon::before,
.section--navy .faq__icon::after {
  background: var(--brass-500);
}

/* --------------------------------------------------------------------------
   12. Pricing
   -------------------------------------------------------------------------- */
.pricing-group {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.pricing-group__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--rule);
}

.pricing-group__head h3 {
  margin: 0;
  font-size: var(--step-2);
}

.pricing-group__head span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.3rem, 2.4vw, 1.85rem);
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out),
    border-color 300ms var(--ease);
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--paper-300);
  box-shadow: var(--shadow-sm);
}

.price-card h3,
.price-card h4 {
  margin: 0;
  font-size: var(--step-0);
  line-height: 1.35;
  letter-spacing: -0.008em;
}

.price-card h3 a,
.price-card h4 a {
  color: inherit;
  text-decoration: none;
}

.price-card h3 a::after,
.price-card h4 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: var(--step-3);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.price-card__amount em {
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.price-card p {
  margin: 0;
  font-size: var(--step--1);
  color: var(--text-muted);
  line-height: 1.55;
}

.price-card__foot {
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
}

.price-note {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  background: var(--paper-100);
  border: 1px solid var(--rule-soft);
  border-left: 3px solid var(--brass-500);
  border-radius: 2px;
  font-size: var(--step--1);
  line-height: 1.65;
  color: var(--text-muted);
}

.price-note strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-900);
}

.section--navy .price-note {
  background: var(--navy-800);
  border-color: rgba(168, 184, 196, 0.16);
  border-left-color: var(--brass-500);
  color: var(--steel-300);
}

.section--navy .price-note strong {
  color: var(--paper-50);
}

/* --------------------------------------------------------------------------
   13. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--navy-900);
  color: var(--steel-200);
  overflow: hidden;
  isolation: isolate;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(
      to right,
      rgba(168, 184, 196, 0.09) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(168, 184, 196, 0.09) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(75deg, transparent 22%, #000 100%);
}

.cta-band__inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-block: clamp(3.25rem, 7vw, 5.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .cta-band__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

.cta-band h2 {
  color: #fff;
  font-size: var(--step-4);
  margin-bottom: 0.7rem;
}

.cta-band p {
  color: var(--steel-300);
  max-width: 50ch;
}

.cta-band__actions {
  display: grid;
  gap: 1.25rem;
}

.cta-band__direct {
  display: grid;
  gap: 0.55rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(168, 184, 196, 0.2);
  font-size: var(--step--1);
}

.cta-band__direct a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-block: 0.3rem;
  color: var(--paper-100);
  text-decoration: none;
  font-weight: 500;
}

.cta-band__direct a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cta-band__direct svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--brass-500);
}

/* --------------------------------------------------------------------------
   14. Forms
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 680px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
  .field--full {
    grid-column: 1 / -1;
  }
}

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

.field > label,
.fieldset__legend {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--navy-900);
}

.field .optional {
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--steel-500);
}

.field .req {
  color: var(--green-600);
}

.field__hint {
  font-size: var(--step--1);
  color: var(--text-muted);
  line-height: 1.5;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.95rem;
  background: var(--surface);
  border: 1px solid var(--paper-300);
  border-radius: 2px;
  color: var(--text-strong);
  font-family: inherit;
  font-size: var(--step-0);
  line-height: 1.5;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%234c5f6b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.6rem;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--steel-400);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(47, 107, 87, 0.14);
  outline: none;
}

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

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #a5342b;
  background: #fdf7f6;
}

.field__error {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--step--1);
  font-weight: 500;
  color: #8f2d24;
}

.field__error::before {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #a5342b;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a7 7 0 1 0 0 14A7 7 0 0 0 8 1Zm0 3.2a.9.9 0 0 1 .9.9v3.6a.9.9 0 1 1-1.8 0V5.1a.9.9 0 0 1 .9-.9Zm0 6.4a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z'/%3E%3C/svg%3E");
  mask-size: contain;
}

.field__error.is-visible {
  display: flex;
}

.checkbox {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.checkbox input[type="checkbox"] {
  appearance: none;
  flex: none;
  width: 22px;
  height: 22px;
  margin: 0.15rem 0 0;
  background: var(--surface);
  border: 1px solid var(--paper-300);
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease);
}

.checkbox input[type="checkbox"]:checked {
  background-color: var(--green-600);
  border-color: var(--green-600);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.4 6.2 11.6 13 4.8' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.checkbox label {
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-status {
  padding: 1.1rem 1.25rem;
  border-radius: 2px;
  border: 1px solid var(--rule);
  background: var(--paper-100);
  font-size: var(--step--1);
  line-height: 1.6;
}

.form-status:empty {
  display: none;
}

.form-status--error {
  border-color: #e2b6b0;
  background: #fdf5f4;
  color: #7d2820;
}

.form-status--info {
  border-color: #bcd3c9;
  background: #f2f8f5;
  color: var(--green-700);
}

.form-note {
  font-size: var(--step--1);
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* --------------------------------------------------------------------------
   15. Contact layout
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  }
}

.contact-aside {
  display: grid;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

@media (max-width: 959px) {
  .contact-aside {
    position: static;
  }
}

.contact-card {
  padding: clamp(1.35rem, 2.6vw, 2rem);
  background: var(--navy-900);
  color: var(--steel-300);
  border-radius: 3px;
}

.contact-card h3 {
  color: var(--paper-50);
  font-size: var(--step-1);
}

.contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.contact-card li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(168, 184, 196, 0.16);
  font-size: var(--step--1);
}

.contact-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-card li span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-500);
}

.contact-card a {
  color: var(--paper-100);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 228, 218, 0.35);
}

.contact-card a:hover {
  color: #fff;
  border-bottom-color: currentColor;
}

.contact-card address {
  font-style: normal;
  color: var(--paper-100);
}

/* --------------------------------------------------------------------------
   16. Legal pages
   -------------------------------------------------------------------------- */
.legal-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Grid items default to min-width:auto, which lets wide content (such as the
   min-width tables in the legal pages) push the whole grid past the viewport. */
.legal-layout > *,
.contact-layout > *,
.split > *,
.process > * {
  min-width: 0;
}

@media (min-width: 960px) {
  .legal-layout {
    grid-template-columns: minmax(0, 17rem) minmax(0, 1fr);
  }
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  padding: 1.4rem;
  background: var(--paper-100);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  max-height: calc(100svh - var(--header-height) - 3rem);
  overflow-y: auto;
}

@media (max-width: 959px) {
  .legal-toc {
    position: static;
    max-height: none;
  }
}

.legal-toc h2 {
  margin-bottom: 0.9rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
  display: grid;
  gap: 0.1rem;
}

.legal-toc li {
  counter-increment: toc;
}

.legal-toc a {
  display: flex;
  gap: 0.7rem;
  padding: 0.42rem 0;
  font-size: var(--step--1);
  line-height: 1.4;
  color: var(--graphite-600);
  text-decoration: none;
}

.legal-toc a::before {
  content: counter(toc) ".";
  flex: none;
  width: 1.5rem;
  color: var(--steel-500);
  font-variant-numeric: tabular-nums;
}

.legal-toc a:hover {
  color: var(--green-700);
}

.legal-body {
  max-width: 74ch;
}

.legal-body > section {
  padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-top: clamp(1.75rem, 3.5vw, 2.75rem);
  border-top: 1px solid var(--rule);
}

.legal-body > section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal-body h2 {
  font-size: var(--step-2);
  margin-bottom: 0.9rem;
}

.legal-body h3 {
  font-size: var(--step-1);
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.35rem;
  display: grid;
  gap: 0.5rem;
}

.legal-body li {
  line-height: 1.68;
}

.legal-body li::marker {
  color: var(--green-600);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(251, 250, 247, 0.22);
  font-size: var(--step--1);
  color: var(--steel-300);
}

.legal-meta strong {
  color: var(--paper-50);
  font-weight: 600;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.policy-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--graphite-700);
  text-decoration: none;
  background: var(--surface);
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}

.policy-links a:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.table-wrap table {
  min-width: 34rem;
  margin: 0;
}

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

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-900);
  color: var(--steel-300);
  padding-top: clamp(3rem, 6vw, 4.75rem);
  font-size: var(--step--1);
}

.footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  }
}

.footer-brand p {
  margin-top: 1.25rem;
  max-width: 36ch;
  line-height: 1.65;
  color: var(--steel-400);
}

.footer-brand .btn {
  margin-top: 1.5rem;
}

.footer-col h2 {
  margin-bottom: 1.1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-500);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}

.footer-col a {
  display: inline-block;
  padding-block: 0.3rem;
  color: var(--steel-300);
  text-decoration: none;
  line-height: 1.45;
  transition: color 200ms var(--ease);
}

.footer-col a:hover {
  color: var(--paper-50);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-col address {
  font-style: normal;
  line-height: 1.65;
  color: var(--steel-400);
}

.footer-col .footer-sep {
  margin: 1.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(168, 184, 196, 0.14);
}

.footer-legalbar {
  border-top: 1px solid rgba(168, 184, 196, 0.14);
  padding-block: 1.6rem 2.25rem;
}

.footer-legalbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-legalbar p {
  margin: 0;
  color: var(--steel-500);
  font-size: 0.8125rem;
}

.footer-legalbar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legalbar a {
  display: inline-block;
  padding-block: 0.3rem;
  color: var(--steel-400);
  text-decoration: none;
  font-size: 0.8125rem;
}

.footer-legalbar a:hover {
  color: var(--paper-50);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* --------------------------------------------------------------------------
   18. Branded loading: first-entry intro + short page transition
   -------------------------------------------------------------------------- */

/* ---- A. Detailed first-entry loader ---- */
.nf-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
  overflow: hidden;
}

html.nf-booting .nf-intro {
  display: flex;
  /* self-healing exit: plays even if the main script never runs */
  animation: nfIntroOut 520ms cubic-bezier(0.72, 0, 0.24, 1) 2380ms forwards;
}

.nf-intro__grid {
  position: absolute;
  inset: -10%;
  opacity: 0;
  transform: scale(1.08);
  background-image: linear-gradient(
      to right,
      rgba(168, 184, 196, 0.13) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(168, 184, 196, 0.13) 1px, transparent 1px);
  background-size: 88px 88px;
  animation: nfGridIn 1000ms var(--ease-out) 60ms forwards;
}

.nf-intro__guide {
  position: absolute;
  background: rgba(194, 154, 91, 0.5);
}

.nf-intro__guide--h {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: scaleX(0);
  animation: nfGuideDrawX 820ms var(--ease-out) 180ms forwards,
    nfGuideFade 600ms var(--ease) 1500ms forwards;
}

.nf-intro__guide--v {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: scaleY(0);
  animation: nfGuideDrawY 820ms var(--ease-out) 260ms forwards,
    nfGuideFade 600ms var(--ease) 1500ms forwards;
}

.nf-intro__stage {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1.15rem;
  padding: 1.5rem;
}

.nf-intro__markwrap {
  position: relative;
  width: 84px;
  height: 84px;
  overflow: hidden;
}

.nf-intro__mark {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* stroke-drawn construction, then the fill arrives */
.nf-intro__tile,
.nf-intro__n,
.nf-intro__corner,
.nf-intro__base {
  fill: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nf-intro__tile {
  stroke: var(--steel-400);
  stroke-width: 1.4;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: nfDraw 900ms var(--ease-out) 340ms forwards,
    nfFillTile 500ms var(--ease) 1180ms forwards;
}

.nf-intro__n {
  stroke: var(--paper-50);
  stroke-width: 1.4;
  stroke-dasharray: 175;
  stroke-dashoffset: 175;
  animation: nfDraw 900ms var(--ease-out) 620ms forwards,
    nfFillN 460ms var(--ease) 1400ms forwards;
}

.nf-intro__corner {
  stroke: var(--brass-500);
  stroke-width: 1.4;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: nfDraw 620ms var(--ease-out) 900ms forwards,
    nfFillCorner 420ms var(--ease) 1420ms forwards;
}

.nf-intro__base {
  stroke: var(--green-500);
  stroke-width: 3.4;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: nfDraw 640ms var(--ease-out) 1180ms forwards;
}

/* mineral-green cleaning sweep passing through the mark */
.nf-intro__sweep {
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 46%;
  left: -60%;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(59, 129, 104, 0) 0%,
    rgba(59, 129, 104, 0.75) 45%,
    rgba(227, 202, 160, 0.55) 62%,
    rgba(59, 129, 104, 0) 100%
  );
  filter: blur(5px);
  opacity: 0;
  animation: nfIntroSweep 880ms cubic-bezier(0.5, 0, 0.2, 1) 1460ms forwards;
}

.nf-intro__word {
  margin: 0;
  display: flex;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: var(--paper-50);
}

.nf-intro__word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em);
  animation: nfLetterIn 420ms var(--ease-out) forwards;
  animation-delay: calc(1560ms + var(--i) * 46ms);
}

.nf-intro__sub {
  margin: -0.35rem 0 0;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--steel-400);
  opacity: 0;
  animation: nfSubIn 460ms var(--ease-out) 2020ms forwards;
}

.nf-intro__progress {
  display: block;
  width: 156px;
  height: 2px;
  margin-top: 0.5rem;
  background: rgba(168, 184, 196, 0.2);
  overflow: hidden;
}

.nf-intro__progress i {
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--green-500), var(--brass-500));
  animation: nfProgress 2100ms cubic-bezier(0.3, 0.6, 0.2, 1) 300ms forwards;
}

@keyframes nfGridIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes nfGuideDrawX {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes nfGuideDrawY {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes nfGuideFade {
  to { opacity: 0; }
}
@keyframes nfDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes nfFillTile {
  to { fill: var(--navy-900); stroke-opacity: 0.35; }
}
@keyframes nfFillN {
  to { fill: var(--paper-50); }
}
@keyframes nfFillCorner {
  to { fill: var(--brass-500); }
}
@keyframes nfIntroSweep {
  0%   { opacity: 0; left: -60%; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { opacity: 0; left: 116%; }
}
@keyframes nfLetterIn {
  to { opacity: 1; transform: none; }
}
@keyframes nfSubIn {
  to { opacity: 1; }
}
@keyframes nfProgress {
  0%   { transform: scaleX(0); }
  62%  { transform: scaleX(0.72); }
  100% { transform: scaleX(1); }
}
@keyframes nfIntroOut {
  to { clip-path: inset(0 0 100% 0); }
}

/* ---- B. Short internal page transition ---- */
.nf-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  place-items: center;
  background: var(--navy-950);
}

/* The transition is one continuous sequence that spans two documents:
   the outgoing page plays the first half (overlay in, mark in, line to 45%),
   the destination plays the second half (line to 100%, hold, fade away).
   Both halves are pure CSS, so the overlay always clears itself even if
   JavaScript never runs on the destination. Total ≈ 440ms + 900ms. */
html.nf-leaving .nf-transition {
  display: grid;
  animation: nfFadeIn 240ms var(--ease-out) forwards;
}

html.nf-arriving .nf-transition {
  display: grid;
  /* the page underneath is already interactive, so the reveal must never
     swallow a click while it fades */
  pointer-events: none;
  /* starts fully opaque so the destination is never seen flashing in, holds
     while the progress line finishes, then clears itself */
  animation: nfArriveHold 900ms var(--ease-out) forwards;
}

.nf-transition__stage {
  display: grid;
  justify-items: center;
  gap: 1.05rem;
}

.nf-transition__mark {
  width: 64px;
  height: 64px;
}

html.nf-leaving .nf-transition__mark {
  animation: nfMarkPop 300ms var(--ease-out) 80ms both;
}

.nf-transition__line {
  display: block;
  width: 140px;
  height: 2px;
  border-radius: 1px;
  background: rgba(168, 184, 196, 0.22);
  overflow: hidden;
}

.nf-transition__line i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--green-500), var(--brass-500));
}

/* first half: the line fills to 45% while the current page is still shown */
html.nf-leaving .nf-transition__line i {
  animation: nfLineStart 420ms var(--ease-out) 120ms forwards;
}

/* second half: it completes on the destination, so the motion reads as one move */
html.nf-arriving .nf-transition__line i {
  animation: nfLineFinish 560ms var(--ease-out) forwards;
}

@keyframes nfFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes nfFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; visibility: hidden; }
}
@keyframes nfMarkPop {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: none; }
}
@keyframes nfLineStart {
  from { transform: scaleX(0); }
  to   { transform: scaleX(0.45); }
}
@keyframes nfLineFinish {
  from { transform: scaleX(0.45); }
  to   { transform: scaleX(1); }
}
/* opaque hold while the line completes, then a smooth reveal of the page */
@keyframes nfArriveHold {
  0%   { opacity: 1; }
  62%  { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* ---- Reduced motion: a plain, very short fade ---- */
@media (prefers-reduced-motion: reduce) {
  .nf-intro *,
  .nf-intro__grid,
  .nf-intro__guide,
  .nf-intro__sweep,
  .nf-intro__progress i {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
  .nf-intro__tile { fill: var(--navy-900); }
  .nf-intro__n { fill: var(--paper-50); }
  .nf-intro__corner { fill: var(--brass-500); }
  html.nf-booting .nf-intro {
    animation: nfFadeOut 140ms linear 90ms forwards !important;
  }
  html.nf-leaving .nf-transition {
    animation: nfFadeIn 100ms linear forwards !important;
  }
  html.nf-arriving .nf-transition {
    animation: nfFadeOut 140ms linear forwards !important;
  }
  html.nf-leaving .nf-transition__mark,
  html.nf-leaving .nf-transition__line i,
  html.nf-arriving .nf-transition__line i {
    animation: none !important;
  }
}
/* --------------------------------------------------------------------------
   19. Reveal animations
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   20. 404
   -------------------------------------------------------------------------- */
.notfound {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}

@media (min-width: 900px) {
  .notfound {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
  }
}

.notfound__code {
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--navy-900);
  opacity: 0.12;
}

/* --------------------------------------------------------------------------
   21. Utilities
   -------------------------------------------------------------------------- */
.stack-sm > * + * {
  margin-top: 0.75rem;
}
.stack > * + * {
  margin-top: 1.25rem;
}
.stack-lg > * + * {
  margin-top: 2rem;
}

.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-2 {
  margin-top: 1.25rem;
}
.mt-3 {
  margin-top: 2rem;
}
.mt-4 {
  margin-top: 3rem;
}

.text-center {
  text-align: center;
}

.measure {
  max-width: 68ch;
}

.divider {
  height: 1px;
  background: var(--rule);
  margin-block: clamp(2rem, 4vw, 3rem);
}

.section--navy .divider,
.section--graphite .divider {
  background: rgba(168, 184, 196, 0.18);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite-600);
  background: var(--surface);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Related services */
.related-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  transition: border-color 220ms var(--ease), transform 260ms var(--ease-out);
}

.related-card:hover {
  border-color: var(--green-600);
  transform: translateY(-3px);
}

.related-card h3 {
  margin: 0;
  font-size: var(--step-0);
  line-height: 1.35;
}

.related-card h3 a {
  color: inherit;
  text-decoration: none;
}

.related-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.related-card span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.related-card p {
  margin: 0;
  font-size: var(--step--1);
  color: var(--text-muted);
  line-height: 1.55;
}

/* Sticky quote bar (service pages, small screens) */
.quotebar {
  position: sticky;
  bottom: 0;
  z-index: 700;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(10, 21, 32, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(168, 184, 196, 0.18);
}

.quotebar .btn {
  flex: 1;
  min-width: 0;
  padding-inline: 0.6rem;
}

@media (max-width: 720px) {
  .quotebar {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   22. Service-page components
   -------------------------------------------------------------------------- */

/* ---- Hero facts rail ---- */
.factsrail {
  list-style: none;
  margin: clamp(1.6rem, 3vw, 2.25rem) 0 0;
  padding: clamp(1.25rem, 2.4vw, 1.6rem) 0 0;
  border-top: 1px solid rgba(168, 184, 196, 0.24);
  display: grid;
  gap: 1.1rem clamp(1rem, 2.4vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(min(47%, 12rem), 1fr));
}

.factsrail li {
  position: relative;
  display: grid;
  gap: 0.3rem;
  padding-left: 0.85rem;
}

.factsrail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  bottom: 0.2rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--brass-500),
    rgba(194, 154, 91, 0)
  );
}

.factsrail span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-500);
}

.factsrail strong {
  font-size: var(--step--1);
  font-weight: 600;
  line-height: 1.35;
  color: var(--paper-50);
  letter-spacing: -0.004em;
}

.factsrail--light {
  border-top-color: var(--rule);
}

.factsrail--light span {
  color: var(--green-600);
}

.factsrail--light li::before {
  background: linear-gradient(to bottom, var(--green-600), rgba(47, 107, 87, 0));
}

.factsrail--light strong {
  color: var(--navy-900);
}

/* ---- Duration note ---- */
.duration-note {
  display: grid;
  gap: 0.6rem;
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
  background: var(--paper-100);
  border: 1px solid var(--rule-soft);
  border-left: 3px solid var(--brass-500);
  border-radius: 2px;
}

.duration-note__value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin: 0;
}

.duration-note__value strong {
  font-size: var(--step-2);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.duration-note__value em {
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.duration-note p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.65;
  color: var(--text-muted);
}

.section--navy .duration-note,
.section--graphite .duration-note {
  background: var(--navy-800);
  border-color: rgba(168, 184, 196, 0.18);
  border-left-color: var(--brass-500);
}

.section--navy .duration-note__value strong {
  color: var(--paper-50);
}

.section--navy .duration-note p {
  color: var(--steel-300);
}

/* ---- Route map: a vertical journey through a property ---- */
.routemap {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.routemap::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--brass-500) 0%,
    var(--green-600) 50%,
    rgba(126, 147, 163, 0.35) 100%
  );
  transform-origin: top;
  transform: scaleY(var(--route-progress, 1));
  transition: transform 900ms var(--ease-out);
}

.routemap > li {
  position: relative;
  display: grid;
  gap: 0.45rem;
  padding: 1.15rem 0 1.15rem 3.25rem;
}

.routemap > li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy-900);
  border: 2px solid var(--brass-500);
  box-shadow: 0 0 0 4px rgba(10, 21, 32, 1);
  transition: background-color 320ms var(--ease), transform 320ms var(--ease-out);
}

.section--paper .routemap > li::before,
.section--white .routemap > li::before {
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--surface);
}

.section--paper .routemap > li::before {
  box-shadow: 0 0 0 4px var(--paper-100);
}

.routemap > li:hover::before {
  background: var(--brass-500);
  transform: scale(1.15);
}

.routemap__step {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-500);
}

.routemap h3 {
  margin: 0;
  font-size: var(--step-1);
}

.routemap p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.65;
  color: var(--steel-300);
  max-width: 62ch;
}

.section--paper .routemap p,
.section--white .routemap p {
  color: var(--text-muted);
}

/* ---- Phase track: horizontal phased delivery ---- */
.phase-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  counter-reset: phase;
}

.phase-track > li {
  counter-increment: phase;
  position: relative;
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: 1.35rem 1.1rem 1.35rem 0;
  border-top: 2px solid rgba(168, 184, 196, 0.22);
}

.section--paper .phase-track > li,
.section--white .phase-track > li {
  border-top-color: var(--rule);
}

.phase-track > li::before {
  content: "0" counter(phase);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brass-500);
}

.phase-track > li::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--brass-500);
  transition: width 700ms var(--ease-out);
  transition-delay: var(--phase-delay, 0ms);
}

.phase-track.is-in > li::after {
  width: 2.5rem;
}

.phase-track h3 {
  margin: 0;
  font-size: var(--step-1);
}

.phase-track p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--steel-300);
}

.section--paper .phase-track p,
.section--white .phase-track p {
  color: var(--text-muted);
}

/* ---- Scope cards ---- */
.scope-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.scope-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: clamp(1.2rem, 2.4vw, 1.65rem);
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 300ms var(--ease), transform 320ms var(--ease-out);
}

.scope-card:hover {
  border-color: var(--paper-300);
  transform: translateY(-3px);
}

.scope-card__icon {
  width: 34px;
  height: 34px;
  color: var(--green-600);
}

.scope-card h3 {
  margin: 0;
  font-size: var(--step-0);
  line-height: 1.35;
}

.scope-card p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--text-muted);
}

.scope-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: var(--step--1);
  color: var(--text-muted);
}

.scope-card ul li {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  line-height: 1.5;
}

.scope-card ul li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  background: var(--green-600);
  transform: rotate(45deg) translateY(-1px);
}

.section--navy .scope-card,
.section--graphite .scope-card {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(168, 184, 196, 0.18);
}

.section--navy .scope-card p,
.section--navy .scope-card ul {
  color: var(--steel-300);
}

.section--navy .scope-card__icon {
  color: var(--brass-500);
}

.section--navy .scope-card ul li::before {
  background: var(--brass-500);
}

/* ---- Preparation / callout panel with label ---- */
.callout {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.3rem, 2.6vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  overflow: hidden;
}

.callout__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: start;
  padding: 0.4rem 0.8rem;
  background: var(--navy-900);
  color: var(--paper-100);
  border-radius: 2px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.callout--warn {
  background: #fdfaf4;
  border-color: #e8dcc4;
}

.callout--warn .callout__label {
  background: var(--brass-600);
  color: #fff;
}

.callout--limit {
  background: #fbf7f6;
  border-color: #e7d3cf;
}

.callout--limit .callout__label {
  background: #8f3b30;
  color: #fff;
}

.callout h3 {
  margin: 0;
  font-size: var(--step-1);
}

.callout p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.68;
  color: var(--text-muted);
}

.callout ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--text-muted);
}

.callout ul li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
}

.callout ul li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  opacity: 0.55;
  transform: rotate(45deg) translateY(-1px);
}

.section--navy .callout {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(168, 184, 196, 0.18);
}

.section--navy .callout h3 {
  color: var(--paper-50);
}

.section--navy .callout p,
.section--navy .callout ul {
  color: var(--steel-300);
}

.section--navy .callout__label {
  background: var(--brass-500);
  color: var(--navy-950);
}

/* ---- Quotation-factor bars ---- */
.factor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.factor-list > li {
  display: grid;
  gap: 0.4rem;
}

.factor-list__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.factor-list__name {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-strong);
}

.factor-list__weight {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.factor-list__bar {
  position: relative;
  height: 4px;
  border-radius: 2px;
  background: var(--paper-200);
  overflow: hidden;
}

.factor-list__bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--brass-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out);
  transition-delay: var(--bar-delay, 0ms);
}

.factor-list.is-in .factor-list__bar span {
  transform: scaleX(1);
}

.factor-list p {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.55;
  color: var(--text-muted);
}

.section--navy .factor-list__name {
  color: var(--paper-50);
}

.section--navy .factor-list__bar {
  background: rgba(168, 184, 196, 0.2);
}

.section--navy .factor-list p {
  color: var(--steel-300);
}

/* ---- Media band: full-bleed offset image break ---- */
.media-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
}

.media-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--band-pos, center center);
  display: block;
}

.media-band__frame {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

@media (max-width: 720px) {
  .media-band__frame {
    aspect-ratio: 4 / 3;
  }
}

.media-band__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    rgba(7, 13, 18, 0.86) 0%,
    rgba(7, 13, 18, 0.6) 40%,
    rgba(7, 13, 18, 0.12) 78%,
    rgba(7, 13, 18, 0.02) 100%
  );
}

.media-band__caption {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

.media-band__caption p {
  max-width: 46ch;
  margin: 0;
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--paper-50);
  text-shadow: 0 2px 24px rgba(7, 13, 18, 0.6);
}

.media-band__caption .eyebrow {
  color: var(--brass-500);
}

/* image-mask reveal */
.mask-reveal {
  clip-path: inset(0 0 0 0);
}

.js .mask-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1100ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .mask-reveal.is-in {
  clip-path: inset(0 0 0 0);
}

/* ---- Sticky media panel ---- */
.sticky-split {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .sticky-split {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }
  .sticky-split__media {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }
  .sticky-split--right .sticky-split__media {
    order: 2;
  }
}

.sticky-split > * {
  min-width: 0;
}

.sticky-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
}

/* ---- Service prev / next navigation ---- */
.svc-nav {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--rule);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

@media (min-width: 720px) {
  .svc-nav {
    grid-template-columns: 1fr 1fr;
  }
}

.svc-nav__item {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  background: var(--surface);
  text-decoration: none;
  transition: border-color 260ms var(--ease), transform 300ms var(--ease-out);
}

.svc-nav__item:hover {
  border-color: var(--green-600);
  transform: translateY(-3px);
}

.svc-nav__dir {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.svc-nav__item--next {
  text-align: right;
}

.svc-nav__item--next .svc-nav__dir {
  justify-content: flex-end;
}

.svc-nav__dir svg {
  width: 0.9em;
  height: 0.9em;
  transition: transform 280ms var(--ease);
}

.svc-nav__item:hover .svc-nav__dir svg {
  transform: translateX(4px);
}

.svc-nav__item--prev:hover .svc-nav__dir svg {
  transform: translateX(-4px);
}

.svc-nav__name {
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--text-strong);
}

.svc-nav__price {
  font-size: var(--step--1);
  color: var(--text-muted);
}

/* ---- Compact service index ---- */
.svc-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

@media (min-width: 760px) {
  .svc-index {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(1.5rem, 4vw, 3.5rem);
  }
}

.svc-index li {
  border-bottom: 1px solid var(--rule);
}

.svc-index a {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.85rem 0.4rem 0.85rem 0;
  text-decoration: none;
  color: var(--graphite-700);
  transition: color 220ms var(--ease), padding-left 300ms var(--ease-out),
    background-color 220ms var(--ease);
}

.svc-index a:hover,
.svc-index a:focus-visible {
  color: var(--green-700);
  background: var(--paper-100);
  padding-left: 0.55rem;
}

.svc-index a[aria-current="page"] {
  color: var(--navy-900);
  font-weight: 600;
}

.svc-index__no {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--steel-400);
}

.svc-index__name {
  font-size: var(--step--1);
  line-height: 1.4;
}

.svc-index__price {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--steel-500);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ---- Section divider with architectural detail ---- */
.rule-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: clamp(2rem, 4vw, 3rem);
  color: var(--rule);
}

.rule-detail::before,
.rule-detail::after {
  content: "";
  height: 1px;
  flex: 1;
  background: currentColor;
}

.rule-detail span {
  flex: none;
  width: 9px;
  height: 9px;
  border: 1px solid var(--brass-500);
  transform: rotate(45deg);
}

.section--navy .rule-detail,
.section--graphite .rule-detail {
  color: rgba(168, 184, 196, 0.22);
}

/* ---- Inline technical label ---- */
.tech-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
}

.tech-label::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: var(--brass-500);
}

/* ---- Two-tone stat/spec row ---- */
.specrow {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}

@media (min-width: 700px) {
  .specrow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.specrow > div {
  padding: 1.35rem clamp(0.75rem, 2vw, 1.5rem) 1.35rem 0;
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 700px) {
  .specrow > div {
    border-bottom: 0;
    border-right: 1px solid var(--rule);
  }
  .specrow > div:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

.specrow dt {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.5rem;
}

.specrow dd {
  margin: 0;
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--text-muted);
}

.section--navy .specrow,
.section--navy .specrow > div {
  border-color: rgba(168, 184, 196, 0.2);
}

.section--navy .specrow dt {
  color: var(--brass-500);
}

.section--navy .specrow dd {
  color: var(--steel-300);
}

/* ---- Decorative architectural line motifs ---- */
.deco-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  color: rgba(168, 184, 196, 0.16);
}

.section--paper .deco-lines,
.section--white .deco-lines {
  color: rgba(27, 52, 70, 0.1);
}

.deco-lines svg {
  position: absolute;
  width: min(46rem, 70%);
  height: auto;
}

.deco-lines--tr svg {
  top: -2rem;
  right: -6rem;
}

.deco-lines--bl svg {
  bottom: -3rem;
  left: -8rem;
}

.deco-lines path,
.deco-lines line,
.deco-lines circle,
.deco-lines rect {
  vector-effect: non-scaling-stroke;
}

.js .deco-lines [data-draw] {
  stroke-dasharray: var(--len, 600);
  stroke-dashoffset: var(--len, 600);
  transition: stroke-dashoffset 1600ms var(--ease-out);
}

.js .deco-lines.is-in [data-draw] {
  stroke-dashoffset: 0;
}

.has-deco {
  position: relative;
  isolation: isolate;
}

.has-deco > .shell {
  position: relative;
  z-index: 1;
}

/* ---- Quotation summary ---- */
.quote-summary {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  background: var(--navy-800);
  border: 1px solid rgba(168, 184, 196, 0.16);
  border-radius: 3px;
  color: var(--steel-300);
}

@media (min-width: 860px) {
  .quote-summary {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }
}

.quote-summary h2,
.quote-summary h3 {
  color: var(--paper-50);
  margin-bottom: 0.5rem;
}

.quote-summary p {
  font-size: var(--step--1);
  line-height: 1.65;
  color: var(--steel-300);
}

.quote-summary dl {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(168, 184, 196, 0.18);
}

.quote-summary dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(168, 184, 196, 0.18);
}

.quote-summary dt {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-500);
}

.quote-summary dd {
  margin: 0;
  font-size: var(--step--1);
  font-weight: 600;
  text-align: right;
  color: var(--paper-50);
}

/* ---- Staggered reveal helper ---- */
.js [data-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
}

.js [data-stagger].is-in > * {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   23. Motion preferences & print
   -------------------------------------------------------------------------- */
@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;
    scroll-behavior: auto !important;
  }
  .js .reveal,
  .js [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
  .js .mask-reveal,
  .js .mask-reveal.is-in {
    clip-path: none;
  }
  .js .deco-lines [data-draw] {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
  .factor-list__bar span {
    transform: scaleX(1);
  }
  .phase-track > li::after {
    width: 2.5rem;
  }
  .routemap::before {
    transform: scaleY(1);
  }
  .btn:hover,
  .service-card:hover,
  .category-card:hover,
  .category-card:focus-within,
  .price-card:hover,
  .related-card:hover,
  .scope-card:hover,
  .svc-nav__item:hover {
    transform: none;
  }
  .category-card:hover .category-card__media img,
  .category-card:focus-within .category-card__media img,
  .category-card--feature:hover .category-card__media img,
  .category-card--feature:focus-within .category-card__media img {
    transform: scale(1);
  }
  .category-card:hover .category-card__arrow svg path,
  .category-card:focus-within .category-card__arrow svg path,
  .category-card--feature:hover .category-card__arrow svg,
  .category-card--feature:focus-within .category-card__arrow svg {
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-nav,
  .nf-intro,
  .nf-transition,
  .quotebar,
  .cta-band,
  .hero-cue,
  .skip-link {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }
  .page-hero {
    min-height: 0;
    padding-block: 1rem;
  }
  .page-hero__img,
  .page-hero__scrim {
    display: none;
  }
  .page-hero h1,
  .page-hero__lede {
    color: #000;
    text-shadow: none;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  .legal-toc {
    display: none;
  }
}
