/* ============================================================================
   Patriot Injury Associates
   Built to the approved Website Design System (Version 1, issued 2026-08-06).
   Every token below is from that document. If you change one here, reissue the
   document: the client approved these values.
   ========================================================================== */

:root {
  /* ── colour ─────────────────────────────────────────────────────────────
     Two oranges on purpose. Brand orange is the identity and is only ever
     used on the brand bar, eyebrow labels and large accents (3.79:1 on white,
     which is AA for large text and UI, not for body). Button orange is a
     deeper shade used wherever words sit on or in orange (4.77:1, AA at any
     size). Side by side they read as the same colour.                       */
  --navy: #152a4e;
  --navy-mid: #1f3a63;
  --navy-deep: #0f2140;
  --orange: #d95d1e;
  --orange-btn: #bf5118;
  --orange-soft: #f6ede6;
  --ink: #1c2a3f;
  --body: #4a5768;
  --muted: #8792a4;
  --line: #e6eaf0;
  --paper: #ffffff;
  --tint: #f6f8fb;

  /* ── type ─────────────────────────────────────────────────────────────── */
  --ff-head: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* ── spacing scale ─────────────────────────────────────────────────────── */
  --s1: 4px;
  --s2: 8px;
  --s3: 16px;
  --s4: 24px;
  --s5: 40px;
  --s6: 72px;
  --s7: 112px;

  /* ── layout ────────────────────────────────────────────────────────────── */
  --maxw: 1120px;
  --measure: 68ch;
  --radius: 9px;
  --radius-sm: 6px;
  --shadow: 0 10px 26px rgba(21, 42, 78, .12);
  --shadow-lg: 0 18px 44px rgba(21, 42, 78, .18);
}

/* ── reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, svg, video { max-width: 100%; height: auto; display: block; }
input, button, select, textarea { font: inherit; color: inherit; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; }
}

body {
  font-family: var(--ff-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* ── type scale (desktop values; mobile overrides at the foot of the file) ── */
h1, h2, h3 { font-family: var(--ff-head); color: var(--navy); font-weight: 600; line-height: 1.15; }
h1 { font-size: 40px; letter-spacing: -.015em; }
h2 { font-size: 30px; letter-spacing: -.01em; line-height: 1.2; }
h3 { font-size: 22px; font-weight: 700; line-height: 1.3; }
p { max-width: var(--measure); }
.lede { font-size: 18.5px; line-height: 1.6; color: var(--body); max-width: 60ch; }
small, .small { font-size: 14px; line-height: 1.55; }

a { color: var(--orange-btn); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--navy); }

/* Focus is never removed. Someone filling in a claim form by keyboard has to
   be able to see where they are. */
:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-radius: 2px;
}
.on-navy :focus-visible, .site-footer :focus-visible { outline-color: var(--orange); }

/* Skip link: first thing a screen-reader or keyboard user meets. */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; text-decoration: none; font-weight: 600;
}
.skip:focus { left: 8px; top: 8px; }

/* ── layout helpers ────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s4); }
.section { padding-block: var(--s7); }
.section--tight { padding-block: var(--s6); }
.section--tint { background: var(--tint); border-block: 1px solid var(--line); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.86); }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange-btn); margin-bottom: var(--s2);
}
.section--navy .eyebrow { color: var(--orange); }
.section-head { max-width: 62ch; margin-bottom: var(--s5); }
.section-head p { margin-top: var(--s3); }

/* The one piece of decoration in the system: 62% navy, 38% orange. */
.brand-bar { height: 4px; background: linear-gradient(90deg,
  var(--navy) 0%, var(--navy) 62%, var(--orange) 62%, var(--orange) 100%); }

/* ── buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 14px 28px;
  font-size: 16px; font-weight: 600; letter-spacing: .01em;
  border: 2px solid transparent; border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn--primary { background: var(--orange-btn); color: #fff; }
.btn--primary:hover { background: #a8460f; color: #fff; transform: translateY(-1px); }
.btn--secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy); color: #fff; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-mid); color: #fff; transform: translateY(-1px); }
.btn--onnavy { background: #fff; color: var(--navy); }
.btn--onnavy:hover { background: var(--orange-soft); color: var(--navy-deep); }
.btn--ghostnavy { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghostnavy:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .4; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center; }

/* ── header ────────────────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper);
  border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; gap: var(--s4);
  min-height: 78px; padding-block: 10px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand__mark { width: 42px; height: 42px; flex: 0 0 42px; }
.brand__text { display: block; }
.brand__name { display: block; font-family: var(--ff-head); font-weight: 700; font-size: 18px;
  color: var(--navy); line-height: 1.05; white-space: nowrap; }
.brand__sub { display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange-btn); margin-top: 4px; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--ink); text-decoration: none;
  padding: 10px 11px; border-radius: var(--radius-sm); white-space: nowrap; }
.nav a:hover { background: var(--tint); color: var(--navy); }
.nav a[aria-current="page"] { color: var(--navy); font-weight: 600; box-shadow: inset 0 -2px 0 var(--orange); }
.header-cta { margin-left: var(--s2); padding-inline: 18px; white-space: nowrap; }
/* Between 760 and 1180 the five nav labels plus a phone number stop fitting on
   one line. Tighten the CTA rather than let the nav wrap mid-label. */
@media (max-width: 1180px) {
  .nav a { font-size: 14.5px; padding-inline: 8px; }
  .header-cta { padding-inline: 14px; font-size: 15px; }
}

.nav-toggle { display: none; align-items: center; gap: 9px; background: transparent;
  border: 2px solid var(--line); border-radius: var(--radius-sm); padding: 10px 14px;
  font-weight: 600; font-size: 15px; color: var(--navy); cursor: pointer; min-height: 48px; }
.nav-toggle:hover { border-color: var(--navy); }
.nav-toggle__bars { display: inline-block; width: 18px; height: 2px; background: currentColor;
  position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: currentColor; }
.nav-toggle__bars::before { top: -6px; } .nav-toggle__bars::after { top: 6px; }

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero { background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-deep) 100%);
  color: rgba(255,255,255,.88); padding-block: var(--s7); }
.hero h1 { color: #fff; font-size: 52px; line-height: 1.08; letter-spacing: -.02em; max-width: 17ch; }
.hero .eyebrow { color: var(--orange); }
.hero__lede { font-size: 18.5px; line-height: 1.6; max-width: 58ch; margin-top: var(--s4);
  color: rgba(255,255,255,.86); }
.hero__slogan { font-family: var(--ff-head); font-style: italic; font-size: 20px; color: var(--orange);
  margin-top: var(--s3); }
.hero .btn-row { margin-top: var(--s5); }
.hero__assure { display: flex; flex-wrap: wrap; gap: 12px var(--s5); margin-top: var(--s5);
  padding-top: var(--s4); border-top: 1px solid rgba(255,255,255,.18); font-size: 15px; }
.hero__assure span { display: inline-flex; align-items: center; gap: 10px; }
.hero__assure svg { width: 18px; height: 18px; color: var(--orange); flex: none; }

/* Hero splits into copy + intake form once there is room for both. On a phone
   the copy comes first, then the form, so the visitor knows what they are
   filling in before they meet the fields. */
.hero__grid { display: grid; gap: var(--s5); align-items: start; }
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: var(--s6); }
}

/* The hero intake card. White on navy so it reads as the one thing to do. */
.hero-form {
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius); padding: var(--s4);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
}
.hero-form__title { font-family: var(--ff-head); font-size: 22px; color: var(--navy); line-height: 1.2; }
.hero-form__intro { font-size: 14.5px; color: var(--body); margin-top: 6px; max-width: none; }
.hero-form form { margin-top: var(--s3); display: grid; gap: 12px; }
/* Scoped to .hero-form on purpose. The generic `.field label` rule further
   down paints labels white for the navy form band, and at equal specificity it
   would win here and leave white text on this white card. */
.hero-form .field label { color: var(--ink); font-size: 14px; }
.hero-form .field .req { color: var(--orange-btn); }
.hero-form .field input, .hero-form .field select { border-color: #cfd6e2; }
.hero-form .field input:focus-visible, .hero-form .field select:focus-visible {
  outline: 3px solid var(--navy); outline-offset: 1px; }
.hero-form__submit { width: 100%; margin-top: 4px; }
.hero-form__note { font-size: 12.5px; color: var(--muted); line-height: 1.5; max-width: none; }
.hero-form__note a { color: var(--navy); }
@media (max-width: 979px) {
  .hero-form { margin-top: var(--s3); }
}

/* ── photo hero ────────────────────────────────────────────────────────── */
/* Photograph behind a navy scrim, copy left, one supporting card right. The
   scrim is heavy enough that white text clears AA over any part of the image,
   which a photo hero has to guarantee before it is allowed to ship. */
.hero--photo { position: relative; isolation: isolate; overflow: hidden; }
.hero--photo .hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
}
.hero--photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(15,33,64,.96) 0%, rgba(21,42,78,.93) 48%,
              rgba(21,42,78,.72) 100%);
}
.hero__inner { display: grid; gap: var(--s5); align-items: center; }
@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: var(--s6); }
}
.hero__copy h1 { max-width: 17ch; }

.hero__stat {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: var(--s4); backdrop-filter: blur(4px);
}
.hero__stat svg { width: 30px; height: 30px; color: var(--orange); }
.hero__stat-v { font-family: var(--ff-head); font-size: 46px; font-weight: 600; color: #fff;
  line-height: 1.05; margin-top: 10px; }
.hero__stat-k { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin-top: 6px; }
.hero__stat p { font-size: 14.5px; color: rgba(255,255,255,.8); margin-top: 12px; max-width: none; }

/* ── icon cards (the "our approach" trio) ──────────────────────────────── */
.section-head--center { margin-inline: auto; text-align: center; }
.card--icon { text-align: left; }
.card__icon { display: grid; place-content: center; width: 52px; height: 52px; border-radius: 12px;
  background: var(--orange-soft); color: var(--orange-btn); margin-bottom: var(--s3); }
.card__icon svg { width: 26px; height: 26px; }

/* ── media panel + agency chips ────────────────────────────────────────── */
.grid-2--media { align-items: center; gap: var(--s6); }
.media-panel { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--tint); }
.media-panel img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.agency-chips { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 12px;
  list-style: none; padding: 0; margin-top: var(--s4); }
.agency-chips li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; font-weight: 600;
  color: var(--navy); background: var(--tint); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 13px 15px; }
.agency-chips svg { width: 21px; height: 21px; color: var(--orange); flex: none; }

.callout--onnavy { background: rgba(255,255,255,.06); border-left-color: var(--orange); }
.callout--onnavy h3 { color: #fff; }
.callout--onnavy p { color: rgba(255,255,255,.86); }

/* ── page head ─────────────────────────────────────────────────────────── */
.page-head { background: var(--tint); border-bottom: 1px solid var(--line); }
.page-head h1 { margin-top: 6px; }
.page-head .lede { margin-top: var(--s3); }

/* ── process steps ─────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: var(--s4);
  list-style: none; padding: 0; counter-reset: step; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s4); position: relative; }
.step__n { display: grid; place-content: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 700; font-size: 16px; margin-bottom: var(--s3); }
.step:first-child .step__n { background: var(--orange-btn); }
.step h3 { font-size: 19px; }
.step p { font-size: 15px; margin-top: 9px; }
.step__meta { display: block; margin-top: var(--s3); padding-top: var(--s3);
  border-top: 1px solid var(--line);
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); }

/* ── closing CTA band ──────────────────────────────────────────────────── */
.cta-band { display: grid; gap: var(--s5); align-items: center; }
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.3fr .7fr; gap: var(--s6); } }
.cta-band__aside { display: grid; gap: var(--s3); }
.cta-band__stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: var(--s4); }
.cta-band__v { font-family: var(--ff-head); font-size: 40px; font-weight: 600; color: var(--orange);
  line-height: 1; }
.cta-band__k { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-top: 8px; }

/* ── contact page ──────────────────────────────────────────────────────── */
.contact-layout { display: grid; gap: var(--s5); align-items: start; }
@media (min-width: 980px) { .contact-layout { grid-template-columns: 1.5fr .85fr; gap: var(--s6); } }
.contact-form-card { background: var(--paper); border: 1px solid var(--line);
  border-top: 4px solid var(--orange); border-radius: var(--radius); padding: var(--s5);
  box-shadow: var(--shadow); }
.form-plain .field label { color: var(--ink); }
.form-plain .field__hint { color: var(--muted); }
.form-plain .form-note { color: var(--muted); }
.form-plain .form-note a { color: var(--navy); }
.form-plain .alert { margin-bottom: var(--s4); }

.contact-card { background: var(--navy); color: rgba(255,255,255,.84); border-radius: var(--radius);
  padding: var(--s4); }
.contact-card h2 { color: #fff; font-size: 20px; margin-bottom: var(--s3); }
.contact-card__row { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.13); }
.contact-card__row:first-of-type { border-top: 0; }
.contact-card__row svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 3px; }
.contact-card__k { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6); }
.contact-card__v { font-size: 17px; font-weight: 600; color: #fff; margin-top: 3px; }
.contact-card__v a { color: #fff; text-decoration: none; }
.contact-card__v a:hover { color: var(--orange); text-decoration: underline; }

.assure-card { display: flex; gap: 14px; align-items: flex-start; margin-top: var(--s4);
  background: var(--orange-soft); border-radius: var(--radius); padding: var(--s4); }
.assure-card svg { width: 22px; height: 22px; color: var(--orange-btn); flex: none; margin-top: 2px; }
.assure-card strong { color: var(--navy); }
.assure-card p { font-size: 14px; margin-top: 6px; color: var(--ink); }

/* Education band: the "anyone can use this" strip under the three paths. */
.edu-band {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--s4);
  margin-top: var(--s4); padding: var(--s4) var(--s5);
  background: var(--navy); border-radius: var(--radius); color: rgba(255,255,255,.82);
}
.edu-band h3 { color: #fff; font-size: 20px; }
.edu-band p { font-size: 15.5px; margin-top: 6px; max-width: 62ch; }
.edu-band__icon { display: grid; place-content: center; width: 56px; height: 56px;
  border-radius: 50%; background: rgba(217,93,30,.16); color: var(--orange); }
.edu-band__icon svg { width: 27px; height: 27px; }
.edu-band .btn--secondary { border-color: rgba(255,255,255,.6); color: #fff; }
.edu-band .btn--secondary:hover { background: #fff; color: var(--navy); border-color: #fff; }
@media (max-width: 760px) {
  .edu-band { grid-template-columns: 1fr; text-align: left; padding: var(--s4); }
  .edu-band .btn { width: 100%; }
}

/* ── audience paths (the landing page's whole job) ─────────────────────── */
.paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); gap: var(--s4); }
.path {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.path:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.path:hover .path__go { color: var(--navy); gap: 12px; }
.path__img { aspect-ratio: 3 / 2; background: var(--navy); position: relative; }
.path__img img { width: 100%; height: 100%; object-fit: cover; }
/* Placeholder state until Kevin's photography lands. Says what belongs here
   rather than shipping a grey box. */
.path__img--placeholder { display: grid; place-content: center; gap: 6px; text-align: center;
  background: linear-gradient(140deg, var(--navy), var(--navy-mid)); color: rgba(255,255,255,.62);
  padding: var(--s4); }
.path__img--placeholder svg { width: 34px; height: 34px; margin-inline: auto; color: var(--orange); }
.path__img--placeholder span { font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; }
.path__body { padding: var(--s4); display: flex; flex-direction: column; flex: 1; }
.path h3 { font-size: 22px; }
.path p { font-size: 15.5px; margin-top: 10px; color: var(--body); flex: 1; }
.path__go { display: inline-flex; align-items: center; gap: 8px; margin-top: var(--s4);
  font-weight: 700; font-size: 15px; color: var(--orange-btn); transition: gap .18s ease, color .18s ease; }

/* ── content blocks ────────────────────────────────────────────────────── */
.prose > * + * { margin-top: var(--s3); }
.prose h2 { margin-top: var(--s5); }
.prose h3 { margin-top: var(--s4); }
.prose ul { padding-left: 22px; max-width: var(--measure); }
.prose ul li { margin-bottom: 10px; }
.prose ul li::marker { color: var(--orange); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--s4); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: var(--s4); }

.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s4); }
.card--tint { background: var(--tint); }
.card h3 { font-size: 20px; }
.card p { font-size: 15.5px; margin-top: 10px; }
.card__num { display: inline-grid; place-content: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange-btn); font-weight: 700; font-size: 16px;
  margin-bottom: var(--s3); }

/* A pulled-out promise, used for the "no cost to you" message that has to land. */
.callout { background: var(--orange-soft); border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0; padding: var(--s4) var(--s4) var(--s4) var(--s4); }
.callout h3 { color: var(--navy); }
.callout p { margin-top: 10px; color: var(--ink); }

/* Compliance statements. Sober by design: plain rules, no colour, because
   these lines exist to be precise, not persuasive. */
.compliance { border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s4);
  background: var(--paper); }
.compliance h3 { font-size: 18px; }
.compliance ul { margin-top: var(--s3); padding-left: 20px; }
.compliance li { margin-bottom: 9px; font-size: 15.5px; }
.compliance li::marker { color: var(--muted); }

/* Anything awaiting client content. Visible on purpose so it cannot ship
   unnoticed, and worded so it is obvious it is not a bug. */
.awaiting { border: 1px dashed var(--muted); border-radius: var(--radius); padding: var(--s4);
  background: var(--tint); color: var(--ink); }
.awaiting__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #8a5a12; background: #fdf3e0; border-radius: 20px;
  padding: 4px 10px; margin-bottom: 10px; }
.awaiting p { font-size: 15px; }

/* ── covered agencies ──────────────────────────────────────────────────── */
/* Recognition, not decoration: a letter carrier should find "Postal Service"
   in under a second, so these are a scannable grid, not a paragraph. */
.agencies { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 10px;
  list-style: none; padding: 0; }
.agencies li { display: flex; align-items: flex-start; gap: 11px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; font-size: 15.5px; color: var(--ink); }
.agencies li::before {
  content: ""; flex: none; width: 8px; height: 8px; margin-top: 8px; border-radius: 2px;
  background: var(--orange);
}
.agencies li:last-child { color: var(--muted); font-style: italic; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
/* <details> so it works with no JavaScript and stays keyboard-operable. */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__item + .faq__item { border-top: 1px solid var(--line); }
.faq__item summary {
  display: flex; align-items: flex-start; gap: 14px; cursor: pointer;
  padding: 18px 20px; font-family: var(--ff-head); font-size: 18px; font-weight: 600;
  color: var(--navy); list-style: none; min-height: 48px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none; margin-left: auto; width: 11px; height: 11px; margin-top: 7px;
  border-right: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__item summary:hover { background: var(--tint); }
.faq__item summary:focus-visible { outline: 3px solid var(--navy); outline-offset: -3px; }
.faq__a { padding: 0 20px 20px; }
.faq__a p { color: var(--body); max-width: 74ch; }

/* ── inquiry form ──────────────────────────────────────────────────────── */
.form-band { background: var(--navy); color: rgba(255,255,255,.86); }
.form-band h2 { color: #fff; }
.form-band .eyebrow { color: var(--orange); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: var(--s3);
  margin-top: var(--s4); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14.5px; font-weight: 600; color: #fff; }
.field .req { color: var(--orange); }
.field input, .field select, .field textarea {
  min-height: 48px; padding: 12px 14px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--navy-mid); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 3px solid var(--orange); outline-offset: 1px; border-color: var(--navy); }
.field__hint { font-size: 13.5px; color: rgba(255,255,255,.72); }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3); margin-top: var(--s4); }
.form-note { font-size: 13.5px; color: rgba(255,255,255,.72); max-width: 52ch; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: var(--radius); padding: var(--s3) var(--s4); margin-bottom: var(--s4);
  font-size: 15.5px; }
.alert--ok { background: #e7f6ed; color: #12572f; border: 1px solid #b7e2c8; }
.alert--err { background: #fdecea; color: #8c2519; border: 1px solid #f3c2bc; }

/* ── contact strip ─────────────────────────────────────────────────────── */
.contact-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--s4); }
.contact-strip__item { display: flex; gap: 14px; align-items: flex-start; }
.contact-strip__item svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 3px; }
.contact-strip__k { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); }
.contact-strip__v { font-size: 17px; font-weight: 600; color: var(--navy); margin-top: 2px; }
.contact-strip__v a { color: inherit; text-decoration: none; }
.contact-strip__v a:hover { color: var(--orange-btn); text-decoration: underline; }

/* ── video library ─────────────────────────────────────────────────────── */
.video { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--paper); }
.video__frame { aspect-ratio: 16 / 9; background: var(--navy-deep); }
.video__frame iframe { width: 100%; height: 100%; border: 0; }
.video__body { padding: var(--s4); }
.video__body h3 { font-size: 19px; }
.video__meta { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ── footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); font-size: 15px;
  padding-block: var(--s6) var(--s4); }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 16px; font-family: var(--ff-body);
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: var(--s3); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s5); }
.site-footer a { color: rgba(255,255,255,.86); text-decoration: none; }
.site-footer a:hover { color: var(--orange); text-decoration: underline; }
/* The global reset only strips markers from lists that carry a class, and these
   do not, so they were rendering with bullets. */
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.footer-brand__name { font-family: var(--ff-head); font-size: 19px; font-weight: 700; color: #fff; }
.footer-brand__slogan { font-family: var(--ff-head); font-style: italic; color: var(--orange);
  margin-top: 6px; }
.footer-disclaimer { margin-top: var(--s5); padding-top: var(--s4);
  border-top: 1px solid rgba(255,255,255,.14); font-size: 13px; color: rgba(255,255,255,.58);
  max-width: none; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px var(--s4); justify-content: space-between;
  margin-top: var(--s4); font-size: 13px; }

.to-top { position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 48px; height: 48px; display: none; place-content: center;
  background: var(--navy); color: #fff; border: 0; border-radius: 50%; cursor: pointer;
  box-shadow: var(--shadow); }
.to-top:hover { background: var(--orange-btn); }
.to-top.is-visible { display: grid; }

/* ── mobile: a designed column, not a shrunk desktop ───────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --s7: 72px; --s6: 56px; }
  body { font-size: 16px; }
  h1 { font-size: 30px; }
  h2 { font-size: 25px; }
  h3 { font-size: 20px; }
  .lede, .hero__lede { font-size: 17.5px; }
  .hero h1 { font-size: 34px; max-width: none; }
  .hero__slogan { font-size: 18px; }
  .hero .btn-row .btn { width: 100%; }

  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: var(--s2) var(--s4) var(--s4); box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--orange); }
  .header-cta { margin: var(--s3) 0 0; width: 100%; }
  .site-header__inner { position: relative; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s4); }
}

/* ── print ─────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .to-top, .form-band, .nav-toggle { display: none !important; }
  body { color: #000; font-size: 12pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #444; }
}

/* ── Service landing pages ────────────────────────────────────────────────
   Used by includes/landing-template.php. These pages exist to convert an ad
   or search click, so the hero states one promise and the action sits above
   the fold; everything below answers a reason not to act.                   */
.hero-lp {
  background: var(--navy);
  color: #fff;
  padding-block: var(--s6);
}
.hero-lp h1 { color: #fff; max-width: 20ch; margin-top: var(--s2); }
.hero-lp .lede { color: rgba(255,255,255,.86); margin-top: var(--s3); }
.hero-lp .eyebrow { color: var(--orange); }
.hero-lp__actions {
  display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s5);
}
/* On navy the outlined navy button would vanish, so it inverts here. */
.hero-lp__actions .btn--secondary { color: #fff; border-color: rgba(255,255,255,.55); }
.hero-lp__actions .btn--secondary:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.hero-lp__reassure {
  margin-top: var(--s3); font-size: 14px; color: rgba(255,255,255,.72);
}

.tick-list { list-style: none; display: grid; gap: var(--s3); max-width: var(--measure); }
.tick-list li { display: flex; gap: var(--s3); align-items: flex-start; }
.tick-list svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }

.step-list { list-style: none; counter-reset: step; display: grid; gap: var(--s4); }
.step-list li { display: flex; gap: var(--s4); align-items: flex-start; }
.step-list__n {
  font-family: var(--ff-head); font-size: 26px; font-weight: 700;
  color: var(--orange); flex: none; min-width: 2.2ch; line-height: 1.1;
}
.step-list h3 { margin-bottom: var(--s1); }
.step-list p { color: var(--body); max-width: 62ch; }

@media (max-width: 640px) {
  .hero-lp__actions .btn { width: 100%; justify-content: center; }
}
