@charset "UTF-8";
/* ==========================================================================
   Site stylesheet
   --------------------------------------------------------------------------
   Written mobile-first: base rules target small screens, and every media
   query is min-width. Nothing here loads from an external host.

   Contents
     1.  Fonts
     2.  Design tokens
     3.  Reset and base
     4.  Layout primitives
     5.  Typography
     6.  Buttons and links
     7.  Header and navigation
     8.  Hero
     9.  Cards, lists and panels
     10. Process steps
     11. Call-to-action blocks
     12. Forms
     13. Footer
     14. Utilities
     15. Motion and print
   ========================================================================== */

/* 1. Fonts ================================================================ */
/* Self-hosted. Archivo and Public Sans are both SIL Open Font License 1.1 —
   licence texts ship in assets/fonts/. */

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('../fonts/public-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('../fonts/public-sans-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* 2. Design tokens ======================================================== */

:root {
  /* Brand — blueprint navy through to steel */
  --navy-900: #0E1B24;
  --navy-800: #14283A;
  --navy-700: #1B3A4E;
  --navy-600: #235068;
  --steel-500: #3C7A9C;
  --steel-300: #8FB8CD;
  --steel-100: #DCE9F0;

  /* Accent — high-visibility amber, used only for action */
  --amber-700: #8F5A0B;
  --amber-600: #B4720F;
  --amber-500: #D9901F;
  --amber-300: #F0C071;
  --amber-100: #FBEDD5;

  /* Neutrals — cool-leaning so they sit with the navy rather than fight it */
  --stone-0:   #FFFFFF;
  --stone-50:  #F6F7F8;
  --stone-100: #EDEEF0;
  --stone-200: #DFE2E5;
  --stone-300: #C5CAD0;
  --stone-400: #98A0A8;
  --stone-500: #6B747D;
  --stone-600: #4A525A;
  --stone-700: #333A41;

  /* Semantic */
  --bg: var(--stone-0);
  --bg-alt: var(--stone-50);
  --bg-invert: var(--navy-900);
  --surface: var(--stone-0);
  --text: #14212B;
  --text-muted: #4A525A;
  --text-invert: #EEF3F6;
  --text-invert-muted: #A9BECC;
  --border: var(--stone-200);
  --border-strong: var(--stone-300);
  --brand: var(--navy-800);
  --accent: var(--amber-600);
  --accent-strong: var(--amber-700);
  --focus: #1F6FA8;

  /* Type */
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  --step--1: clamp(0.82rem, 0.80rem + 0.10vw, 0.88rem);
  --step-0:  clamp(1.00rem, 0.97rem + 0.15vw, 1.08rem);
  --step-1:  clamp(1.15rem, 1.09rem + 0.30vw, 1.33rem);
  --step-2:  clamp(1.36rem, 1.24rem + 0.58vw, 1.72rem);
  --step-3:  clamp(1.60rem, 1.39rem + 1.05vw, 2.25rem);
  --step-4:  clamp(1.90rem, 1.52rem + 1.90vw, 3.00rem);
  --step-5:  clamp(2.20rem, 1.60rem + 3.00vw, 3.90rem);

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  --container: 1200px;
  --measure: 68ch;
  --radius: 3px;
  --radius-lg: 5px;
  --header-h: 64px;

  --shadow-sm: 0 1px 2px rgba(14, 27, 36, 0.06);
  --shadow-md: 0 2px 4px rgba(14, 27, 36, 0.06), 0 8px 20px rgba(14, 27, 36, 0.06);
  --shadow-lg: 0 4px 8px rgba(14, 27, 36, 0.07), 0 16px 40px rgba(14, 27, 36, 0.10);

  color-scheme: light;
}

@media (min-width: 900px) {
  :root { --header-h: 76px; }
}

/* 3. Reset and base ======================================================= */

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }
svg { fill: currentColor; }

ul, ol { margin: 0; padding: 0; }

:where(a):focus-visible,
:where(button):focus-visible,
:where(input):focus-visible,
:where(select):focus-visible,
:where(textarea):focus-visible,
:where([tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.15s ease-out;
}
.skip-link:focus { top: 0; }

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

/* 4. Layout primitives ==================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 700px) { .container { padding-inline: var(--sp-6); } }

.section { padding-block: var(--sp-7); }
@media (min-width: 700px)  { .section { padding-block: var(--sp-8); } }
@media (min-width: 1100px) { .section { padding-block: var(--sp-9); } }

.section--tight { padding-block: var(--sp-6); }
@media (min-width: 700px) { .section--tight { padding-block: var(--sp-7); } }

.section--alt { background: var(--bg-alt); }
.section--bordered { border-top: 1px solid var(--border); }

/* Dark sections carry a faint drafting grid — drawn in CSS, no image request. */
.section--dark {
  background-color: var(--navy-900);
  background-image:
    linear-gradient(rgba(143, 184, 205, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 184, 205, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--text-invert);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p,
.section--dark li { color: var(--text-invert-muted); }
.section--dark a:not(.btn) { color: var(--amber-300); }
.section--dark .eyebrow { color: var(--amber-300); }

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 640px)  { .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 640px)  { .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.split { display: grid; gap: var(--sp-6); }
@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--sp-7);
    align-items: center;
  }
  .split--wide-first { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
  .split--wide-last  { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
  .split--top { align-items: start; }
}

/* 5. Typography =========================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: var(--step-5); letter-spacing: -0.025em; }
h2 { font-size: var(--step-4); letter-spacing: -0.02em; }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); font-weight: 600; }

p { margin: 0; max-width: var(--measure); }
p + p { margin-top: var(--sp-4); }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-700);
  margin-bottom: var(--sp-3);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 58ch;
}

.section-head { margin-bottom: var(--sp-6); }
.section-head p { color: var(--text-muted); margin-top: var(--sp-4); }
@media (min-width: 700px) { .section-head { margin-bottom: var(--sp-7); } }

.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }

.prose > * + * { margin-top: var(--sp-4); }
.prose h2 { margin-top: var(--sp-7); font-size: var(--step-3); }
.prose h3 { margin-top: var(--sp-6); font-size: var(--step-1); }
.prose ul, .prose ol { padding-left: 1.25rem; max-width: var(--measure); }
.prose li + li { margin-top: var(--sp-2); }
.prose a { color: var(--navy-700); text-underline-offset: 3px; }
.prose a:hover { color: var(--amber-700); }

.rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin-block: var(--sp-6);
}

.text-muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); font-size: 0.92em; }

/* 6. Buttons and links ==================================================== */

a { color: var(--navy-700); }
a:hover { color: var(--amber-700); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--amber-500);
  border-color: var(--amber-500);
  color: var(--navy-900);
}
.btn--primary:hover {
  background: var(--amber-600);
  border-color: var(--amber-600);
  color: #fff;
}

.btn--dark {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}
.btn--dark:hover { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }

.btn--outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--navy-800);
}
.btn--outline:hover { border-color: var(--navy-800); background: var(--stone-50); color: var(--navy-900); }

.btn--ghost-invert {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn--ghost-invert:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; }

.btn--block { width: 100%; }
@media (min-width: 480px) { .btn--block { width: auto; } }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.btn-row > .btn { flex: 1 1 auto; }
@media (min-width: 480px) { .btn-row > .btn { flex: 0 0 auto; } }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  color: var(--navy-700);
}
.link-arrow::after { content: '→'; transition: transform 0.15s ease; }
.link-arrow:hover { color: var(--amber-700); }
.link-arrow:hover::after { transform: translateX(3px); }

/* 7. Header and navigation ================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

/* The logo is an SVG whose width and height are pinned at every breakpoint, so
   swapping the compact lockup for the full one at 700px costs no layout shift.
   Widths below 700px follow the compact file's ratio, above it the primary's. */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}
.brand__logo { display: block; width: 126px; height: 30px; }
@media (min-width: 420px)  { .brand__logo { width: 134px; height: 32px; } }
@media (min-width: 700px)  { .brand__logo { width: 164px; height: 36px; } }
/* The logo only goes to full size once the nav and the header button both fit
   beside it — between 1000 and 1120 the row is tight and the logo stays at 164. */
@media (min-width: 1120px) { .brand__logo { width: 182px; height: 40px; } }

.nav { display: none; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: var(--sp-1); }
}
.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy-800);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav__link:hover { color: var(--amber-700); border-bottom-color: var(--amber-300); }
.nav__link--active { color: var(--navy-900); border-bottom-color: var(--amber-500); }

/* Held back to 1120px: below that the nav and the logo already fill the row,
   and forcing the button in pushes the header into horizontal overflow. */
.header__cta { display: none; }
@media (min-width: 1120px) {
  .header__cta {
    display: inline-flex;
    margin-left: var(--sp-3);
    min-height: 44px;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 44px;
  min-width: 44px;
  padding: 0 var(--sp-3);
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
@media (min-width: 1000px) { .nav-toggle { display: none; } }

.nav-toggle__bars { position: relative; width: 18px; height: 12px; flex-shrink: 0; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--navy-900);
  color: #fff;
  padding: var(--sp-5) 0 var(--sp-8);
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.mobile-nav.is-open { opacity: 1; transform: none; visibility: visible; }
@media (min-width: 1000px) { .mobile-nav { display: none; } }

.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__link {
  display: block;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.16rem;
  color: #fff;
  text-decoration: none;
}
.mobile-nav__link--active { color: var(--amber-300); }
.mobile-nav__link:hover { color: var(--amber-300); }
.mobile-nav__footer { margin-top: var(--sp-6); display: grid; gap: var(--sp-3); }
.mobile-nav__meta { color: var(--text-invert-muted); font-size: var(--step--1); }
.mobile-nav__meta a { color: var(--amber-300); }

/* 8. Hero ================================================================= */

.hero {
  position: relative;
  background-color: var(--navy-900);
  background-image:
    linear-gradient(rgba(143, 184, 205, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 184, 205, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  color: var(--text-invert);
  overflow: hidden;
  padding-block: var(--sp-7);
}
@media (min-width: 700px)  { .hero { padding-block: var(--sp-8); } }
@media (min-width: 1100px) { .hero { padding-block: var(--sp-9); } }

.hero__inner { position: relative; z-index: 2; }
@media (min-width: 900px) {
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--sp-7);
    align-items: center;
  }
}

.hero h1 { color: #fff; }
.hero__lede {
  color: var(--text-invert-muted);
  font-size: var(--step-1);
  margin-top: var(--sp-5);
  max-width: 52ch;
}
.hero__eyebrow { color: var(--amber-300); }

.hero__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin-top: var(--sp-5);
  padding: 0;
  list-style: none;
}
.hero__pillars li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-300);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
/* Dot separators only where the row stays on one line — on narrow screens a
   wrapped item would otherwise start with a stray leading dot. */
@media (min-width: 560px) {
  .hero__pillars li + li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--amber-500);
    border-radius: 50%;
    flex-shrink: 0;
  }
}
@media (max-width: 559px) {
  .hero__pillars { gap: var(--sp-2) var(--sp-5); }
}

.hero__art { margin-top: var(--sp-6); }
@media (min-width: 900px) { .hero__art { margin-top: 0; } }
.hero__art img, .hero__art svg { width: 100%; height: auto; }

.page-hero {
  background: var(--navy-900);
  color: var(--text-invert);
  padding-block: var(--sp-6) var(--sp-7);
  border-bottom: 4px solid var(--amber-500);
}
@media (min-width: 700px) { .page-hero { padding-block: var(--sp-7) var(--sp-8); } }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero p { color: var(--text-invert-muted); font-size: var(--step-1); margin-top: var(--sp-4); max-width: 58ch; }
.page-hero .eyebrow { color: var(--amber-300); }

.breadcrumb {
  font-size: var(--step--1);
  color: var(--text-invert-muted);
  margin-bottom: var(--sp-4);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: 0; margin: 0; }
.breadcrumb li + li::before { content: '/'; margin-right: var(--sp-2); color: var(--steel-500); }
.breadcrumb a { color: var(--steel-300); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb [aria-current='page'] { color: #fff; }

/* 9. Cards, lists and panels ============================================== */

.card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy-800);
  border-radius: var(--radius);
  padding: var(--sp-5);
  height: 100%;
}
.card h3 { font-size: var(--step-1); }
.card p { color: var(--text-muted); font-size: 0.97rem; }
.card__icon { width: 40px; height: 40px; color: var(--navy-700); }
.card--accent { border-top-color: var(--amber-500); }
.card--link { transition: box-shadow 0.15s ease, transform 0.15s ease; }
.card--link:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__foot { margin-top: auto; padding-top: var(--sp-3); }

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.pillar__num {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  color: var(--amber-700);
  font-weight: 600;
}
.pillar h3 { font-size: var(--step-1); }
.pillar p { color: var(--text-muted); font-size: 0.97rem; }
/* Push the link to the bottom so a row of cards lines its links up. */
.pillar .link-arrow { margin-top: auto; padding-top: var(--sp-2); }
.pillar--cta { background: var(--bg-alt); border-style: dashed; }

.tick-list { list-style: none; display: grid; gap: var(--sp-3); }
.tick-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--text-muted);
}
.tick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--amber-600);
  border-bottom: 2px solid var(--amber-600);
  transform: rotate(-45deg);
}
.section--dark .tick-list li::before { border-color: var(--amber-500); }

.chip-list { list-style: none; display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.chip {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: var(--stone-100);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--navy-800);
}
.section--dark .chip { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.18); color: #fff; }

.panel {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy-700);
  border-radius: var(--radius);
  padding: var(--sp-5);
}
.panel--accent { border-left-color: var(--amber-500); }
.panel > * + * { margin-top: var(--sp-3); }
.panel h3 { font-size: var(--step-1); }
.panel__logo { width: 182px; height: 40px; max-width: 100%; margin-bottom: var(--sp-2); }
.panel p { color: var(--text-muted); }

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--amber-300);
  background: var(--amber-100);
  color: var(--amber-700);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber-600);
  flex-shrink: 0;
}
.status--confirmed { border-color: #9CCBB4; background: #E4F1EA; color: #14603F; }
.status--confirmed::before { background: #1C6B4B; }

.figure {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--stone-50);
  padding: var(--sp-4);
}
.figure img, .figure svg { width: 100%; height: auto; }
.figure figcaption {
  margin-top: var(--sp-3);
  font-size: var(--step--1);
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.spec-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.spec-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  white-space: nowrap;
}
.spec-table td { color: var(--text-muted); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }

/* 10. Process steps ======================================================= */
/* Numbered because the delivery sequence is genuinely ordered. */

.steps { list-style: none; counter-reset: step; display: grid; gap: var(--sp-5); }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-6); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.steps li {
  counter-increment: step;
  position: relative;
  padding-top: var(--sp-5);
  border-top: 2px solid var(--border-strong);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: calc(var(--sp-5) * -1 + 0.35rem);
  left: 0;
  transform: translateY(-50%);
  background: var(--bg);
  padding-right: var(--sp-3);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--amber-700);
}
.section--alt .steps li::before { background: var(--bg-alt); }
.steps h3 { font-size: var(--step-1); margin-bottom: var(--sp-2); }
.steps p { color: var(--text-muted); font-size: 0.97rem; }

/* 11. Call-to-action blocks =============================================== */

.cta-band {
  background-color: var(--navy-800);
  background-image:
    linear-gradient(rgba(143, 184, 205, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 184, 205, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  color: var(--text-invert);
  padding-block: var(--sp-7);
}
@media (min-width: 900px) { .cta-band { padding-block: var(--sp-8); } }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--text-invert-muted); margin-top: var(--sp-4); }
@media (min-width: 900px) {
  .cta-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: var(--sp-7);
    align-items: center;
  }
  .cta-band__actions { display: grid; gap: var(--sp-3); }
}
.cta-band__actions { display: grid; gap: var(--sp-3); margin-top: var(--sp-5); }
@media (min-width: 900px) { .cta-band__actions { margin-top: 0; } }

.cta-grid { display: grid; gap: var(--sp-4); list-style: none; }
@media (min-width: 640px)  { .cta-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .cta-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.cta-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  height: 100%;
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.cta-card:hover {
  border-color: var(--amber-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}
.cta-card h3 { font-size: var(--step-1); }
.cta-card p { color: var(--text-muted); font-size: 0.95rem; }
.cta-card__go {
  margin-top: auto;
  padding-top: var(--sp-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-700);
}
.cta-card__go::after { content: ' →'; }
.cta-card:hover .cta-card__go { color: var(--amber-700); }

/* 12. Forms =============================================================== */

.form { display: grid; gap: var(--sp-5); }
@media (min-width: 700px) { .form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-5); } }

.field { display: grid; gap: var(--sp-2); }
.field__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy-900);
}
.field__req { color: var(--amber-700); }
.field__hint { font-size: var(--step--1); color: var(--text-muted); }

.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field input[type='url'],
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field 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 fill='%234A525A' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 12px 8px;
  padding-right: 2.4rem;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--stone-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(31, 111, 168, 0.18);
  outline: none;
}
.field input[aria-invalid='true'],
.field select[aria-invalid='true'],
.field textarea[aria-invalid='true'] {
  border-color: #A63220;
  box-shadow: 0 0 0 3px rgba(166, 50, 32, 0.14);
}

.field__error {
  display: none;
  font-size: var(--step--1);
  font-weight: 600;
  color: #8C2A1B;
}
.field__error.is-visible { display: block; }

.form__status {
  padding: var(--sp-4);
  border: 1px solid var(--border);
  border-left: 4px solid #A63220;
  background: #F8E7E3;
  border-radius: var(--radius);
  color: #7A2416;
  font-size: 0.95rem;
}
.form__status:empty { display: none; }

.form__consent { display: flex; gap: var(--sp-3); align-items: flex-start; }
.form__consent input[type='checkbox'] { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; accent-color: var(--navy-700); }
.form__consent label { font-size: 0.94rem; color: var(--text-muted); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-list { list-style: none; display: grid; gap: var(--sp-4); }
.contact-list dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-1);
}
.contact-list dd { margin: 0 0 var(--sp-4) 0; font-size: 1.05rem; }
.contact-list dd:last-child { margin-bottom: 0; }
.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }

/* 13. Footer ============================================================== */

.site-footer {
  background: var(--navy-900);
  color: var(--text-invert-muted);
  padding-block: var(--sp-7) var(--sp-5);
  font-size: 0.95rem;
}
.footer__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 700px)  { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--sp-7); } }

.footer__brand { display: inline-block; line-height: 0; margin-bottom: var(--sp-5); }
.footer__logo { display: block; width: 201px; height: 44px; max-width: 100%; }
.footer__about { max-width: 46ch; color: var(--text-invert-muted); }

.footer__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-4);
}
.footer__list { list-style: none; display: grid; gap: var(--sp-3); }
.footer__list a { color: var(--text-invert-muted); text-decoration: none; }
.footer__list a:hover { color: var(--amber-300); text-decoration: underline; }

.footer__bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); }
.footer__legal a { color: var(--text-invert-muted); }
.footer__meta { color: var(--text-invert-muted); }

/* Phone numbers must never break across lines. */
a[href^='tel:'] { white-space: nowrap; }

/* 14. Utilities =========================================================== */

.center { text-align: center; }
.h-sub { font-size: var(--step-1); }
.link-list { list-style: none; display: grid; gap: var(--sp-3); }
.link-list a { color: var(--navy-700); text-decoration: none; font-weight: 600; }
.link-list a:hover { color: var(--amber-700); text-decoration: underline; }
.measure { max-width: var(--measure); }
.measure-narrow { max-width: 54ch; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0; }
.no-bullets { list-style: none; }

/* 15. Motion and 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;
  }
}

@media print {
  .site-header, .mobile-nav, .nav-toggle, .cta-band, .site-footer, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section, .hero, .page-hero { padding-block: 1rem; background: #fff !important; color: #000 !important; }
  .hero h1, .page-hero h1 { color: #000 !important; }
  .hero p, .page-hero p { color: #333 !important; }
  a[href^='http']::after { content: ' (' attr(href) ')'; font-size: 9pt; word-break: break-all; }
}
