/* ==========================================================================
   Airfield Trucking (ATS) — Design System
   Typeface: Bricolage Grotesque (display) · Inter (text) · IBM Plex Mono (data)
   Palette : Navy · steel/silver (chrome echo) · white · amber CTA
   Note    : token NAMES are inherited from the base engine; values are
             repointed to the trucking identity so every component re-themes.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* colour */
  --parchment:    #f4f7fb;   /* page background — cool off-white */
  --parchment-2:  #e9eff5;   /* strips, table heads, note-strip */
  --paper:        #ffffff;   /* cards, inputs, light sections */
  --ink:          #0e2a47;   /* headings, brand, primary buttons (navy) */
  --ink-deep:     #0a2036;   /* dark sections + masthead host */
  --ink-deeper:   #06182b;   /* utility bar, footer */
  --text:         #34465a;   /* body */
  --muted:        #5c6b7a;   /* secondary (slate) */
  --muted-light:  #8b97a4;
  --brass:        #1c6fb5;   /* primary accent on LIGHT: links, eyebrows, rules (blue) */
  --brass-bright: #b9c4cf;   /* accent on DARK: steel / silver (chrome echo) */
  --brass-pale:   #9db0c2;   /* faint steel for watermarks */
  --line:         rgba(14, 42, 71, 0.14);
  --line-soft:    rgba(14, 42, 71, 0.08);
  --line-light:   rgba(231, 236, 241, 0.16);
  --on-dark:      #e7ecf1;
  --on-dark-mute: #9fb0c0;

  /* extended brand tokens */
  --navy:         #0e2a47;
  --blue:         #1c6fb5;
  --blue-600:     #1a5f9c;
  --blue-100:     #e6f0f8;
  --steel:        #8a97a6;
  --steel-bright: #b9c4cf;
  --amber:        #e08a1e;   /* the single warm CTA accent */
  --amber-600:    #c5751a;

  /* type */
  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --font-serif:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-sans:    'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* scale */
  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.875rem);
  --step-0:  1.0625rem;
  --step-1:  1.2rem;
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 1.9rem);
  --step-3:  clamp(1.9rem, 1.5rem + 1.8vw, 2.6rem);
  --step-4:  clamp(2.4rem, 1.8rem + 3vw, 3.6rem);
  --step-5:  clamp(2.9rem, 2rem + 4.4vw, 5rem);

  /* space */
  --gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  --section-y: clamp(4rem, 3rem + 5vw, 7.5rem);
  --wrap: 1240px;
  --wrap-narrow: 760px;

  --radius: 3px;
  --shadow-sm: 0 1px 2px rgba(8, 26, 46, 0.06), 0 6px 18px rgba(8, 26, 46, 0.05);
  --shadow-md: 0 4px 12px rgba(8, 26, 46, 0.08), 0 22px 48px rgba(8, 26, 46, 0.10);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.72;
  color: var(--text);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  position: relative;
  overflow-x: hidden;
}

/* (paper grain removed — clean corporate finish) */

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; }
ul, ol { padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 1px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); line-height: 1.18; }
h4 { font-size: var(--step-1); font-family: var(--font-serif); }
p { text-wrap: pretty; }
strong { font-weight: 600; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}
.eyebrow--center { justify-content: center; }
.eyebrow--plain::before { display: none; }

.lead {
  font-family: var(--font-serif);
  font-size: var(--step-2);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.script-accent { font-family: var(--font-serif); font-style: italic; color: var(--brass); }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.6rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 2rem + 3vw, 5rem); }
.section--ink { background: var(--ink-deep); color: var(--on-dark); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper); }
.section--paper { background: var(--paper); }
.section + .section--paper, .section--paper + .section { }

.rule { height: 1px; background: var(--line); border: 0; }
.rule--light { background: var(--line-light); }

.u-visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 0.6rem 1rem; border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-sans); font-size: var(--step--1); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.95em 1.7em;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--brass);
  transform: translateY(101%);
  transition: transform 0.42s var(--ease);
}
.btn > * { position: relative; z-index: 1; }
.btn span, .btn .btn__label { position: relative; z-index: 1; }
.btn:hover::after, .btn:focus-visible::after { transform: translateY(0); }
.btn:hover, .btn:focus-visible { border-color: var(--brass); color: #fff; }
.btn .btn__arrow { transition: transform 0.4s var(--ease); position: relative; z-index: 1; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); color: var(--ink); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: #fff; }
.btn--light { --bg: transparent; --fg: var(--on-dark); border-color: var(--line-light); }
.btn--light:hover, .btn--light:focus-visible { color: var(--ink-deep); }
.btn--light::after { background: var(--parchment); }
.btn--solid-light { --bg: var(--parchment); --fg: var(--ink); border-color: var(--parchment); }
.btn--small { padding: 0.7em 1.2em; }

/* text link with animated underline */
.tlink {
  position: relative; display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-sans); font-weight: 600; font-size: var(--step--1);
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 2px;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--brass); transform: scaleX(1); transform-origin: right;
  transition: transform 0.42s var(--ease);
}
.tlink .tlink__arrow { transition: transform 0.4s var(--ease); }
.tlink:hover::after { transform: scaleX(0); transform-origin: left; }
.tlink:hover .tlink__arrow { transform: translateX(5px); }
.tlink--light { color: var(--on-dark); }

/* ---------- Utility bar ---------- */
.utility {
  background: var(--ink-deeper);
  color: var(--on-dark-mute);
  font-size: var(--step--1);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; }
.utility__note { letter-spacing: 0.04em; }
.utility__links { display: flex; gap: 1.6rem; }
.utility__links a { color: var(--on-dark-mute); transition: color 0.3s var(--ease); letter-spacing: 0.03em; }
.utility__links a:hover { color: var(--brass-bright); }
.utility__phone { font-weight: 600; }
@media (max-width: 720px) { .utility__note { display: none; } .utility__inner { justify-content: center; } .utility__links { gap: 1.1rem; } }

/* ---------- Masthead / Nav ---------- */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink-deep);
  border-bottom: 1px solid var(--line-light);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.masthead.is-scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.45), 0 14px 30px rgba(0,0,0,0.30); }
.masthead__inner { display: flex; align-items: center; justify-content: space-between; min-height: 110px; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: 0.8rem; color: var(--on-dark); }
.brand__seal { color: var(--steel-bright); flex: none; height: 48px; width: auto; transition: height 0.3s var(--ease); }
.brand__logo { height: 84px; width: auto; display: block; transition: height 0.3s var(--ease); }
.footer__brand .brand__logo { height: 106px; margin-bottom: 0.4rem; }
.masthead.is-scrolled .brand__seal, .masthead.is-scrolled .brand__logo { height: 66px; }
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark__name { font-family: var(--font-display); font-weight: 700; font-size: 1.46rem; color: var(--paper); letter-spacing: 0.04em; }
.wordmark__sub {
  font-family: var(--font-mono); font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--steel-bright);
  margin-top: 0.34rem; padding-left: 0.08em;
}
.wordmark--light .wordmark__name { color: var(--paper); }

.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 0.4rem; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--on-dark);
  padding: 0.7rem 0.95rem; border-radius: var(--radius);
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.5rem; height: 1px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform 0.34s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: #fff; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__caret { width: 0.42em; height: 0.42em; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-1px); opacity: 0.6; transition: transform 0.3s var(--ease); }
.nav__item--has-sub:hover .nav__caret, .nav__item--has-sub:focus-within .nav__caret { transform: rotate(225deg) translateY(-2px); }

/* dropdown */
.nav__sub {
  position: absolute; top: calc(100% + 0.4rem); left: 50%; transform: translate(-50%, 8px);
  min-width: 320px; background: var(--paper);
  border: 1px solid var(--line-soft); border-top: 2px solid var(--brass);
  box-shadow: var(--shadow-md); padding: 0.6rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.nav__item--has-sub:hover .nav__sub, .nav__item--has-sub:focus-within .nav__sub {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav__sub::before { content: ""; position: absolute; top: -0.9rem; left: 0; right: 0; height: 1rem; }
.nav__sub li a {
  display: block; padding: 0.7rem 0.9rem; font-size: 0.92rem; color: var(--ink);
  border-radius: var(--radius); transition: background 0.25s var(--ease), color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.nav__sub li a:hover { background: var(--parchment); color: var(--brass); padding-left: 1.15rem; }
.nav__sub-head { border-bottom: 1px solid var(--line-soft); margin-bottom: 0.3rem; }
.nav__sub-head a { font-family: var(--font-sans); font-size: 0.68rem !important; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass) !important; }

/* hamburger / mobile nav */
.nav__toggle { display: none; position: relative; width: 46px; height: 46px; z-index: 110; margin-right: -0.4rem; }
.nav__toggle-bars, .nav__toggle-bars::before, .nav__toggle-bars::after {
  position: absolute; left: 50%; top: 50%; width: 26px; height: 1.6px; background: var(--on-dark);
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__toggle-bars { transform: translate(-50%, -50%); }
.nav__toggle-bars::before { content: ""; transform: translate(-50%, -8px); }
.nav__toggle-bars::after { content: ""; transform: translate(-50%, 8px); }
body.menu-open .nav__toggle-bars { background: transparent; }
body.menu-open .nav__toggle-bars::before { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav__toggle-bars::after { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 980px) {
  .masthead__inner { min-height: 92px; }
  .brand__logo { height: 64px; }
  .nav__toggle { display: block; }
  .nav__list {
    position: fixed; inset: 0; z-index: 95;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: var(--ink-deep); padding: calc(74px + 2rem) clamp(1.3rem, 6vw, 3rem) 3rem;
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav__list { opacity: 1; visibility: visible; transform: none; }
  .nav__item { border-bottom: 1px solid var(--line-light); position: static; }
  .nav__link { padding: 1.15rem 0; font-size: 1.05rem; justify-content: space-between; width: 100%; }
  .nav__link::after { display: none; }
  .nav__item--cta { border-bottom: none; margin-top: 1.6rem; }
  .nav__item--cta .btn { width: 100%; justify-content: center; padding: 1.05em; font-size: 0.8rem; }
  .nav__sub {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; box-shadow: none; border: 0; padding: 0 0 0.7rem; background: transparent;
    max-height: 0; overflow: hidden; transition: max-height 0.42s var(--ease);
  }
  .nav__item.is-open .nav__sub { max-height: 32rem; }
  .nav__sub li a { padding: 0.62rem 0 0.62rem 1rem; color: var(--on-dark-mute); font-size: 0.98rem; }
  .nav__sub li a:hover { padding-left: 1.2rem; background: transparent; color: var(--brass); }
  .nav__sub-head { border-bottom: 0; }
  .nav__caret { transition: transform 0.3s var(--ease); }
  .nav__item.is-open .nav__caret { transform: rotate(225deg) translateY(-2px); }
}

/* ---------- Hero (full-bleed photo + overlay) ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink-deep); color: var(--on-dark);
  min-height: clamp(480px, 64vh, 660px);
  display: flex; align-items: stretch;
}
.hero__media { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.hero__media img { position: relative; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
/* navy-gradient stand-in until real fleet photography is supplied */
.hero__media--placeholder {
  background:
    radial-gradient(120% 120% at 82% -15%, rgba(28,111,181,0.32), transparent 55%),
    radial-gradient(90% 90% at 10% 115%, rgba(138,151,166,0.18), transparent 60%),
    linear-gradient(180deg, #0e2a47 0%, #081d31 55%, #06182b 100%);
}
.hero__media::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(96deg, rgba(8,26,46,0.92) 0%, rgba(8,26,46,0.78) 30%, rgba(8,26,46,0.34) 60%, rgba(8,26,46,0.06) 100%); }
.hero__media::after { content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(8,26,46,0.55) 0%, rgba(8,26,46,0) 24%, rgba(8,26,46,0) 60%, rgba(8,26,46,0.74) 100%); }
.hero__inner { position: relative; width: 100%; display: flex; align-items: center; padding-block: clamp(3rem, 5vw, 5rem); }
.hero__content { max-width: 660px; }
.hero .eyebrow { color: var(--steel-bright); }
.hero .eyebrow::before { background: var(--steel-bright); }
.hero h1 { color: #fff; margin-bottom: 1.4rem; text-shadow: 0 2px 24px rgba(0,0,0,0.30); }
.hero h1 em { color: var(--steel-bright); font-style: normal; }
.hero__lead { font-family: var(--font-serif); font-weight: 400; font-size: var(--step-1); line-height: 1.55; color: var(--on-dark); max-width: 54ch; margin-bottom: 2rem; text-shadow: 0 1px 14px rgba(0,0,0,0.32); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__meta {
  margin-top: clamp(2.4rem, 2rem + 3vw, 3.6rem); padding-top: 1.6rem;
  border-top: 1px solid var(--line-light);
  display: grid; grid-template-columns: repeat(4, max-content); gap: clamp(1.6rem, 4vw, 3rem); max-width: 860px;
}
.hero__meta dt { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem); color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.hero__meta dd { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-mute); margin-top: 0.5rem; }
@media (max-width: 680px) { .hero__meta { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; } }

/* ---------- Accreditation strip ---------- */
.creds { border-bottom: 1px solid var(--line-soft); background: var(--parchment-2); }
.creds__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 1.6rem; flex-wrap: wrap; }
.creds__label { font-size: var(--step--1); letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; flex: none; }
.creds__list { display: flex; align-items: center; gap: clamp(1.6rem, 4vw, 3.2rem); flex-wrap: wrap; }
.cred { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); opacity: 0.78; }
.cred__mark { width: 30px; height: 30px; color: var(--brass); flex: none; }
.cred__text { font-family: var(--font-serif); font-size: 0.95rem; line-height: 1.1; }
.cred__text small { display: block; font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Standfirst / two-column intro ---------- */
.standfirst { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 4vw, 5rem); align-items: start; }
.standfirst__aside { position: sticky; top: 120px; }
.standfirst__title { margin-bottom: 1.4rem; }
.standfirst__body > * + * { margin-top: 1.3rem; }
.standfirst__body p { color: var(--muted); font-size: var(--step-1); line-height: 1.7; }
.standfirst__body p:first-child { color: var(--text); }
@media (max-width: 860px) { .standfirst { grid-template-columns: 1fr; gap: 1.5rem; } .standfirst__aside { position: static; } }

/* ---------- Practice grid ---------- */
.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pcard {
  position: relative; background: var(--paper); padding: clamp(1.8rem, 1.4rem + 1.8vw, 3rem);
  display: flex; flex-direction: column; min-height: 320px;
  transition: background 0.4s var(--ease);
  overflow: hidden;
}
.pcard::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--brass);
  transform: scaleY(0); transform-origin: top; transition: transform 0.5s var(--ease);
}
.pcard:hover { background: var(--parchment); }
.pcard:hover::before { transform: scaleY(1); }
.pcard__num { font-family: var(--font-serif); font-size: 0.85rem; letter-spacing: 0.2em; color: var(--brass); margin-bottom: 1.4rem; }
.pcard__icon { width: 40px; height: 40px; color: var(--brass); margin-bottom: 1.4rem; }
.pcard h3 { margin-bottom: 0.9rem; transition: color 0.3s var(--ease); }
.pcard:hover h3 { color: var(--brass); }
.pcard p { color: var(--muted); font-size: var(--step-0); margin-bottom: 1.6rem; }
.pcard__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; }
.pcard__tag { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 0.3em 0.85em; }
.pcard__cta { margin-top: 1.6rem; }
.pcard__link { position: absolute; inset: 0; z-index: 2; text-indent: -9999px; }
@media (max-width: 720px) { .practice-grid { grid-template-columns: 1fr; } .pcard { min-height: 0; } }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__body > .eyebrow { margin-top: 0; }
.split__body h2 { margin-bottom: 1.4rem; }
.split__body p { color: var(--muted); }
.split__body p + p { margin-top: 1.1rem; }
.split__actions { margin-top: 2rem; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

/* framed media block (typographic, image-optional) */
.framed {
  position: relative; background: var(--ink-deep); color: var(--on-dark);
  padding: clamp(2rem, 1.5rem + 3vw, 3.4rem); aspect-ratio: 4 / 3.4; display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; isolation: isolate;
}
.framed::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(100% 80% at 100% 0, rgba(148,115,59,0.25), transparent 60%); }
.framed::after { content: ""; position: absolute; inset: clamp(0.8rem,2vw,1.4rem); border: 1px solid rgba(236,228,212,0.16); z-index: -1; }
.framed__seal { position: absolute; right: -10%; bottom: -10%; width: 60%; color: rgba(205,179,137,0.12); }
.framed__quote { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.3; color: var(--paper); }
.framed__quote span { color: var(--brass-bright); }
.framed__by { font-size: var(--step--1); letter-spacing: 0.04em; color: var(--on-dark-mute); }
.framed__by strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; color: var(--paper); letter-spacing: 0; margin-bottom: 0.2rem; }

/* ---------- Values / list ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); }
.value { padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem); background: var(--ink-deep); }
.value__num { font-family: var(--font-serif); font-size: 0.8rem; letter-spacing: 0.2em; color: var(--brass-bright); margin-bottom: 1.2rem; }
.value h3 { font-size: var(--step-1); font-family: var(--font-serif); color: var(--paper); margin-bottom: 0.7rem; }
.value p { color: var(--on-dark-mute); font-size: var(--step-0); }
@media (max-width: 760px) { .values { grid-template-columns: 1fr; } }

/* ---------- Approach steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0; font-family: var(--font-display); font-size: 1.5rem; color: var(--brass);
}
.step::after { content: ""; position: absolute; top: 0.7rem; left: 3.2rem; right: -1.2rem; height: 1px; background: var(--line); }
.step:last-child::after { display: none; }
.step h3 { font-size: var(--step-1); font-family: var(--font-serif); margin-bottom: 0.6rem; }
.step p { color: var(--muted); font-size: 0.98rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } .step::after { display: none; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- People ---------- */
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.4rem); }
.person { }
.person__portrait {
  position: relative; aspect-ratio: 4 / 5; background: linear-gradient(160deg, var(--ink-deep), var(--ink-deeper));
  display: grid; place-items: center; overflow: hidden; margin-bottom: 1.2rem;
  border: 1px solid var(--line);
}
.person__portrait::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 120%, rgba(148,115,59,0.3), transparent 60%); }
.person__initials { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem); color: rgba(236,228,212,0.92); position: relative; z-index: 1; }
.person__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.person__name { font-size: var(--step-2); margin-bottom: 0.2rem; }
.person__role { font-family: var(--font-sans); font-size: var(--step--1); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.9rem; }
.person__bio { color: var(--muted); font-size: 0.98rem; margin-bottom: 1rem; }
@media (max-width: 820px) { .people-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .people-grid { grid-template-columns: 1fr; } }

/* profile detail */
.profile { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.profile__aside { position: sticky; top: 120px; }
.profile__portrait { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--ink-deep), var(--ink-deeper)); display:grid; place-items:center; border: 1px solid var(--line); margin-bottom: 1.4rem; position: relative; overflow: hidden; }
.profile__portrait::after { content:""; position:absolute; inset:0; background: radial-gradient(80% 60% at 50% 120%, rgba(148,115,59,0.3), transparent 60%);}
.profile__portrait .person__initials { font-size: clamp(4rem, 9vw, 6rem); }
.profile__facts { border-top: 1px solid var(--line); }
.profile__facts div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.profile__facts dt { color: var(--muted); }
.profile__facts dd { color: var(--ink); text-align: right; font-weight: 500; }
@media (max-width: 820px) { .profile { grid-template-columns: 1fr; } .profile__aside { position: static; max-width: 340px; } }

/* ---------- Insights cards ---------- */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.2rem); }
.icard { display: flex; flex-direction: column; border-top: 2px solid var(--ink); padding-top: 1.4rem; transition: border-color 0.3s var(--ease); }
.icard:hover { border-color: var(--brass); }
.icard__meta { display: flex; gap: 0.8rem; align-items: center; font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }
.icard__meta time { color: var(--muted); }
.icard h3 { font-size: var(--step-2); line-height: 1.18; margin-bottom: 0.8rem; }
.icard h3 a { transition: color 0.3s var(--ease); }
.icard:hover h3 a { color: var(--brass); }
.icard p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.4rem; }
.icard__foot { margin-top: auto; }
@media (max-width: 820px) { .insights-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; background: var(--ink-deep); color: var(--on-dark);
  isolation: isolate;
}
.cta::before { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(80% 120% at 100% 0, rgba(148,115,59,0.22), transparent 55%), radial-gradient(70% 100% at 0 100%, rgba(31,52,96,0.55), transparent 60%); }
.cta__inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2rem; align-items: center; padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem); }
.cta h2 { color: var(--paper); margin-bottom: 1rem; }
.cta p { color: var(--on-dark-mute); max-width: 46ch; }
.cta__actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.cta__actions .btn { width: 100%; justify-content: center; }
.cta__phone { font-family: var(--font-display); font-size: var(--step-2); color: var(--paper); }
.cta__phone:hover { color: var(--brass-bright); }
@media (max-width: 760px) { .cta__inner { grid-template-columns: 1fr; gap: 2rem; } .cta__actions { align-items: stretch; } }

/* ---------- Page head (interior) ---------- */
.pagehead { position: relative; background: var(--ink-deep); color: var(--on-dark); overflow: hidden; isolation: isolate; padding-block: clamp(3.5rem, 2.5rem + 5vw, 6.5rem) clamp(3rem, 2rem + 4vw, 5rem); }
.pagehead::before { content:""; position:absolute; inset:0; z-index:-2; background: radial-gradient(100% 90% at 90% -20%, rgba(148,115,59,0.2), transparent 55%), linear-gradient(180deg, var(--ink-deep), var(--ink-deeper)); }
.pagehead::after { content:""; position:absolute; inset: clamp(1rem,3vw,2.2rem); border:1px solid rgba(236,228,212,0.12); z-index:-1; }
.pagehead__inner { max-width: 760px; }
.pagehead h1 { color: var(--paper); margin-bottom: 1.2rem; }
.pagehead__lead { font-family: var(--font-serif); font-size: var(--step-2); line-height: 1.45; color: var(--on-dark); }
.pagehead .eyebrow { color: var(--brass-bright); }
.pagehead .eyebrow::before { background: var(--brass-bright); }

/* breadcrumb */
.crumb { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: var(--step--1); letter-spacing: 0.04em; color: var(--on-dark-mute); margin-bottom: 1.8rem; }
.crumb a { color: var(--on-dark-mute); transition: color 0.3s var(--ease); }
.crumb a:hover { color: var(--brass-bright); }
.crumb span { opacity: 0.5; }
.crumb [aria-current] { color: var(--brass-bright); }
.crumb--light { color: var(--muted); }
.crumb--light a { color: var(--muted); }
.crumb--light a:hover { color: var(--brass); }
.crumb--light [aria-current] { color: var(--brass); }

/* ---------- Prose (long-form) ---------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 { font-size: var(--step-3); margin-top: 2.8rem; margin-bottom: 0.2rem; }
.prose h3 { font-size: var(--step-1); font-family: var(--font-serif); margin-top: 2rem; }
.prose p, .prose li { color: var(--text); }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 0.2s var(--ease); }
.prose a:hover { color: var(--brass); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose ul { list-style: none; }
.prose ul li { position: relative; padding-left: 1.4rem; margin-top: 0.6rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 0.5rem; height: 1px; background: var(--brass); }
.prose ol { list-style: none; counter-reset: li; }
.prose ol li { position: relative; padding-left: 2rem; margin-top: 0.7rem; }
.prose ol li::before { counter-increment: li; content: counter(li) "."; position: absolute; left: 0; font-family: var(--font-serif); color: var(--brass); font-weight: 600; }
.prose blockquote { border-left: 2px solid var(--brass); padding: 0.4rem 0 0.4rem 1.6rem; margin: 1.8rem 0; font-family: var(--font-serif); font-size: var(--step-1); font-style: italic; color: var(--ink); }
.prose strong { color: var(--ink); }
.prose hr { margin: 2.6rem 0; }
.prose .note { background: var(--paper); border: 1px solid var(--line); border-left: 2px solid var(--brass); padding: 1.3rem 1.5rem; font-size: 0.96rem; }
.prose .note > * + * { margin-top: 0.7rem; }
.prose .note strong { display: block; font-family: var(--font-serif); }

/* article layout */
.article { display: grid; grid-template-columns: minmax(0, 72ch) 1fr; gap: clamp(2rem, 5vw, 4rem); }
.article__aside { position: sticky; top: 120px; align-self: start; font-size: 0.92rem; }
.article__aside h2 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--font-sans); color: var(--muted); margin-bottom: 1rem; }
.article__aside ul li { margin-bottom: 0.6rem; }
.article__aside a { color: var(--muted); transition: color 0.2s var(--ease); }
.article__aside a:hover { color: var(--brass); }
@media (max-width: 920px) { .article { grid-template-columns: 1fr; } .article__aside { position: static; border-top: 1px solid var(--line); padding-top: 1.5rem; } }

/* ---------- Sidebar layout (services / compliance) ---------- */
.withside { display: grid; grid-template-columns: 1fr minmax(240px, 300px); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.withside--left { grid-template-columns: minmax(240px, 300px) 1fr; }
.sidecard { position: sticky; top: 120px; background: var(--paper); border: 1px solid var(--line); padding: 1.8rem; }
.sidecard + .sidecard { margin-top: 1.2rem; }
.sidecard h3 { font-size: var(--step-1); font-family: var(--font-serif); margin-bottom: 1rem; }
.sidenav { border-top: 1px solid var(--line); }
.sidenav a { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; color: var(--ink); transition: color 0.25s var(--ease), padding-left 0.25s var(--ease); }
.sidenav a:hover, .sidenav a[aria-current] { color: var(--brass); padding-left: 0.4rem; }
.sidenav a[aria-current] { font-weight: 600; }
.sidenav a span { color: var(--brass); opacity: 0; transition: opacity 0.25s var(--ease); }
.sidenav a:hover span, .sidenav a[aria-current] span { opacity: 1; }
@media (max-width: 860px) { .withside, .withside--left { grid-template-columns: 1fr; } .sidecard { position: static; } .article__aside { position: static; } .standfirst__aside { position: static; } }

/* service feature list */
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 2rem 0; }
.feature-list > div { background: var(--paper); padding: 1.5rem 1.6rem; }
.feature-list h3 { font-size: var(--step-0); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.02em; color: var(--ink); margin-bottom: 0.5rem; display: flex; align-items: baseline; gap: 0.6rem; }
.feature-list h3::before { content: ""; width: 0.5rem; height: 0.5rem; border: 1.5px solid var(--brass); flex: none; transform: rotate(45deg); }
.feature-list p { color: var(--muted); font-size: 0.94rem; }
@media (max-width: 620px) { .feature-list { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 1.5rem; align-items: baseline; padding: 1.4rem 0; cursor: pointer; list-style: none; font-family: var(--font-serif); font-size: var(--step-1); color: var(--ink); transition: color 0.25s var(--ease); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass); }
.faq summary .faq__sign { flex: none; position: relative; width: 14px; height: 14px; margin-top: 0.4rem; }
.faq summary .faq__sign::before, .faq summary .faq__sign::after { content: ""; position: absolute; background: var(--brass); transition: transform 0.3s var(--ease); }
.faq summary .faq__sign::before { top: 6px; left: 0; width: 14px; height: 1.5px; }
.faq summary .faq__sign::after { top: 0; left: 6px; width: 1.5px; height: 14px; }
.faq details[open] summary .faq__sign::after { transform: scaleY(0); }
.faq__body { padding-bottom: 1.5rem; max-width: 70ch; color: var(--muted); }
.faq__body > * + * { margin-top: 0.8rem; }

/* ---------- Tables (fees) ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table.data { width: 100%; border-collapse: collapse; font-size: 0.96rem; background: var(--paper); }
table.data caption { text-align: left; font-family: var(--font-serif); font-size: var(--step-1); color: var(--ink); padding: 1.2rem 1.3rem 0.4rem; }
table.data th, table.data td { text-align: left; padding: 0.95rem 1.3rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
table.data thead th { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); background: var(--parchment-2); }
table.data tbody tr:last-child td { border-bottom: none; }
table.data td strong { color: var(--ink); }
table.data .num { font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; gap: 1.3rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--brass); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 0.85rem 1rem; width: 100%;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(28,111,181,0.16); }
.form__consent { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.9rem; color: var(--muted); }
.form__consent input { margin-top: 0.25rem; accent-color: var(--brass); width: 1.1rem; height: 1.1rem; flex: none; }
.form__note { font-size: 0.85rem; color: var(--muted); }

.infoblock { background: var(--paper); border: 1px solid var(--line); padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); }
.infoblock + .infoblock { margin-top: 1.2rem; }
.infoblock h3 { font-size: var(--step-1); font-family: var(--font-serif); margin-bottom: 1rem; display:flex; align-items:center; gap:0.6rem; }
.infoblock h3 svg { width: 22px; height: 22px; color: var(--brass); }
.infoblock address { font-style: normal; color: var(--text); line-height: 1.7; }
.infoblock a { color: var(--ink); }
.infoblock a:hover { color: var(--brass); }
.infoblock dl div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line-soft); }
.infoblock dl div:last-child { border-bottom: none; }
.infoblock dt { color: var(--muted); }

/* map placeholder */
.mapbox { aspect-ratio: 16/9; background: linear-gradient(160deg, var(--ink-deep), var(--ink-deeper)); position: relative; overflow: hidden; display:grid; place-items:center; border: 1px solid var(--line); }
.mapbox::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(236,228,212,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(236,228,212,0.07) 1px, transparent 1px); background-size: 28px 28px; }
.mapbox__pin { position: relative; z-index:1; color: var(--brass-bright); text-align:center; }
.mapbox__pin svg { width: 34px; height: 34px; margin-inline:auto; margin-bottom:0.6rem; }
.mapbox__pin span { font-size: var(--step--1); letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-mute); }

/* ---------- Misc content blocks ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 2rem + 2vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: var(--step-1); margin-top: 1rem; }

.callout-figures { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem,3vw,3rem); }
.figure { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.figure dt { font-family: var(--font-display); font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem); color: var(--ink); line-height: 1; }
.figure dd { color: var(--muted); margin-top: 0.6rem; font-size: 0.98rem; }
.figure dd strong { color: var(--brass); font-weight: 600; }
@media (max-width: 700px) { .callout-figures { grid-template-columns: 1fr; gap: 1.4rem; } }

.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.6rem; }
.tag { font-size: 0.78rem; letter-spacing: 0.03em; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 0.4em 1em; background: var(--paper); }

.note-strip { background: var(--parchment-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.note-strip__inner { display: flex; gap: 1.2rem; align-items: center; padding-block: 1.3rem; font-size: 0.95rem; color: var(--muted); }
.note-strip svg { width: 26px; height: 26px; color: var(--brass); flex: none; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deeper); color: var(--on-dark-mute); padding-top: clamp(3.5rem, 2.5rem + 4vw, 6rem); }
.footer a { color: var(--on-dark-mute); transition: color 0.25s var(--ease); }
.footer a:hover { color: var(--brass-bright); }
.footer__top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr) 1.2fr; gap: 2.5rem 2rem; padding-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); border-bottom: 1px solid var(--line-light); }
.brand--footer { margin-bottom: 1.4rem; }
.seal--light { color: var(--brass-bright); }
.footer__tagline { font-size: 0.95rem; max-width: 32ch; margin-bottom: 1.4rem; line-height: 1.6; }
.footer__contact { font-size: 0.98rem; line-height: 1.9; }
.footer__contact a { color: var(--on-dark); }
.footer__head { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-bright); margin-bottom: 1.3rem; }
.footer__col ul li { margin-bottom: 0.7rem; font-size: 0.95rem; }
.footer__visit address { font-style: normal; font-size: 0.95rem; line-height: 1.8; color: var(--on-dark); margin-bottom: 1rem; }
.footer__hours { font-size: 0.9rem; }
.footer__regbar { display: flex; justify-content: space-between; gap: 2rem; align-items: flex-start; padding-block: 1.8rem; flex-wrap: wrap; }
.footer__reg { font-size: 0.8rem; line-height: 1.7; color: var(--muted-light); max-width: 80ch; }
.footer__reg a { color: var(--on-dark); text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 2px; }
.footer__copy { font-size: 0.8rem; color: var(--muted-light); white-space: nowrap; }
@media (max-width: 960px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

/* ---------- Reveal animation (only hide when JS is available) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js [data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
.js [data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 0.08s; }
.js [data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 0.16s; }
.js [data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 0.24s; }
.js [data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 0.32s; }
.js [data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn::after, .pcard::before { transition: none; }
}

/* ---------- Helpers ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.measure { max-width: 64ch; }
.measure-wide { max-width: 78ch; }
.stack > * + * { margin-top: 1.2rem; }
.stack-lg > * + * { margin-top: 2rem; }
.divider-top { border-top: 1px solid var(--line); padding-top: clamp(2.5rem,4vw,4rem); margin-top: clamp(2.5rem,4vw,4rem); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }

/* ==========================================================================
   Airfield Trucking — trucking components & dark-section retuning
   ========================================================================== */

/* primary conversion button — amber, used sparingly (quote actions) */
.btn--cta { --bg: var(--amber); --fg: #19120a; border-color: var(--amber); color: #19120a; }
.btn--cta::after { background: var(--amber-600); }
.btn--cta:hover, .btn--cta:focus-visible { color: #19120a; border-color: var(--amber-600); }

/* button for dark sections / hero secondary */
.btn--on-dark { --bg: rgba(255,255,255,0.05); --fg: #fff; border-color: var(--steel); color: #fff; }
.btn--on-dark::after { background: var(--steel-bright); }
.btn--on-dark:hover, .btn--on-dark:focus-visible { color: var(--ink-deep); border-color: var(--steel-bright); }

/* Bricolage is self-hosted at 600/700 only — force display numerals to 700 */
.figure dt, .cta__phone, .step::before, .framed__quote,
.person__initials, .profile__portrait .person__initials { font-weight: 700; }
.cta__phone { font-variant-numeric: tabular-nums; }
.figure dt { font-variant-numeric: tabular-nums; }

/* retune inherited warm glows → navy / blue / steel */
.cta::before { background: radial-gradient(80% 120% at 100% 0, rgba(28,111,181,0.22), transparent 55%), radial-gradient(70% 100% at 0 100%, rgba(8,26,46,0.65), transparent 60%); }
.pagehead::before { background: radial-gradient(100% 90% at 88% -20%, rgba(28,111,181,0.24), transparent 55%), linear-gradient(180deg, var(--ink-deep), var(--ink-deeper)); }
.pagehead::after { border-color: var(--line-light); }
.framed::before { background: radial-gradient(100% 80% at 100% 0, rgba(28,111,181,0.28), transparent 60%); }
.framed::after { border-color: var(--line-light); }
.framed__seal { color: rgba(157,176,194,0.14); }
.person__portrait::after, .profile__portrait::after { background: radial-gradient(80% 60% at 50% 120%, rgba(28,111,181,0.32), transparent 60%); }
.person__initials { color: rgba(231,236,241,0.92); }

/* eyebrow variant: mono micro-label (logistics texture) */
.eyebrow--mono { font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.16em; }

/* live-dispatch dot (the one place amber appears beside the phone) */
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); margin-right: 0.5rem; vertical-align: middle; flex: none; }

/* ---------- Winged hairline divider (aviation motif) ---------- */
.wing-rule { position: relative; height: 1px; border: 0; background: var(--line); margin-block: clamp(2.4rem, 4vw, 3.6rem); overflow: visible; }
.wing-rule::before { content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px; transform: translate(-50%, -50%) rotate(45deg); background: var(--parchment); border: 1px solid var(--brass); }
.wing-rule::after { content: ""; position: absolute; top: 50%; left: 50%; width: 120px; max-width: 60%; height: 1px; transform: translate(-50%, -50%); background: linear-gradient(90deg, transparent, var(--brass) 30%, var(--brass) 70%, transparent); opacity: 0.5; }
.wing-rule--light { background: var(--line-light); }
.wing-rule--light::before { background: var(--ink-deep); border-color: var(--steel); }
.wing-rule--light::after { background: linear-gradient(90deg, transparent, var(--steel) 30%, var(--steel) 70%, transparent); }

/* ---------- Coverage map panel (designed SVG, not an embed) ---------- */
.coverage-map { position: relative; border: 1px solid var(--line); background: var(--ink-deep); border-radius: var(--radius); overflow: hidden; }
.coverage-map svg, .coverage-map img { display: block; width: 100%; height: auto; }
.coverage-map__cap { position: absolute; left: 0; bottom: 0; right: 0; padding: 1rem 1.2rem; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-mute); background: linear-gradient(180deg, transparent, rgba(6,24,43,0.85)); }

/* ---------- Spec / data table label column ---------- */
table.data th[scope="row"] { font-weight: 600; color: var(--ink); background: var(--paper); width: 38%; }
table.data.spec td { font-variant-numeric: tabular-nums; }

/* ---------- Mobile sticky action bar (call / quote) ---------- */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; gap: 0.6rem; padding: 0.6rem 0.8rem; background: var(--ink-deep); border-top: 1px solid var(--line-light); box-shadow: 0 -6px 18px rgba(0,0,0,0.28); }
.mobilebar .btn { flex: 1; justify-content: center; padding: 0.9em 0.6em; font-size: 0.72rem; }
@media (max-width: 720px) { .mobilebar { display: flex; } body { padding-bottom: 70px; } }

/* ---------- Photography ---------- */
.photo { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--ink-deep); box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--tall { aspect-ratio: 4 / 5; }
.photo--wide { aspect-ratio: 16 / 9; }
.photo--square { aspect-ratio: 1 / 1; }
.photo__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.9rem 1rem; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark); background: linear-gradient(180deg, transparent, rgba(6,24,43,0.85)); }

/* hero text on the right (when the photo subject sits to the left) */
.hero--right .hero__inner { justify-content: flex-end; }
.hero--right .hero__media::before { background: linear-gradient(264deg, rgba(8,26,46,0.93) 0%, rgba(8,26,46,0.78) 30%, rgba(8,26,46,0.34) 60%, rgba(8,26,46,0.06) 100%); }
@media (max-width: 720px) { .hero--right .hero__inner { justify-content: flex-start; } }

/* ---------- "What we haul" commodity wall ---------- */
.haul-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .haul-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .haul-grid { grid-template-columns: 1fr; } }
.haul-card { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink-deep); color: #fff; isolation: isolate; }
.haul-card--feature { grid-column: span 2; aspect-ratio: 16 / 10; }
@media (max-width: 520px) { .haul-card--feature { aspect-ratio: 4 / 5; } }
.haul-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.haul-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,26,46,0) 34%, rgba(8,26,46,0.5) 68%, rgba(6,20,36,0.92) 100%); }
.haul-card:hover img, .haul-card:focus-visible img { transform: scale(1.06); }
.haul-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(1rem, 0.8rem + 1vw, 1.5rem); }
.haul-card__label { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); color: #fff; letter-spacing: -0.01em; display: flex; align-items: center; gap: 0.5rem; line-height: 1.1; }
.haul-card__label .arr { color: var(--steel-bright); transform: translateX(-5px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.haul-card:hover .haul-card__label .arr, .haul-card:focus-visible .haul-card__label .arr { transform: translateX(0); opacity: 1; }
.haul-card__sub { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-bright); margin-top: 0.4rem; }

/* ---------- Fleet gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.5rem, 1.5vw, 0.9rem); }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery .photo { aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm); }

/* print */
@media print {
  .utility, .masthead, .footer, .cta, .nav__toggle, .mobilebar { display: none !important; }
  body { background: #fff; color: #000; }
  .pagehead { background: #fff; color: #000; padding-block: 1rem; }
  .pagehead h1, .pagehead__lead { color: #000; }
}
