/* ============================================================
   AIG Security — Design S: Synthesis
   Base = Design B (Trust & Authority): light, conversion-first,
   deep navy + confident amber. Grafted on:
     · A's technology spine — dark ops-accountability band,
       live time-stamped report feed, count-up stat band,
       GPS patrol-route SVG (all restyled to B's navy/amber tokens).
     · C's recruiting spine — dual header CTAs, amber officer lane,
       full-bleed recruiting hero, "Do I qualify?" checklist,
       cross-lane deflector strips.
     · True multi-step quote form (tiny vanilla JS, no-JS fallback).
   One stylesheet, no external dependencies.
   ============================================================ */

:root {
  --navy: #0b2239;
  --navy-2: #143a5e;
  --navy-3: #0e2c4a;
  --ink: #1b2733;
  --muted: #4e5e6c;
  --paper: #fbfaf7;
  --paper-2: #f3f1e9;
  --white: #ffffff;
  --line: #e6e2d6;
  --line-navy: #24466b;
  --accent: #e9a319;        /* surfaces, stars, primary CTA */
  --accent-deep: #d18f0b;
  --accent-ink: #8f5a00;    /* accent as text on light ground */
  --footer-mut: #b9c6d4;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 34, 57, 0.06), 0 2px 8px rgba(11, 34, 57, 0.05);
  --shadow-md: 0 2px 6px rgba(11, 34, 57, 0.07), 0 12px 32px rgba(11, 34, 57, 0.10);
  --font: "Avenir Next", Avenir, Montserrat, "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Editorial type scale */
  --step-6: clamp(2.5rem, 1.35rem + 4.6vw, 4.35rem);   /* display */
  --step-5: clamp(2rem, 1.35rem + 2.6vw, 3.1rem);      /* h2 */
  --step-4: clamp(1.45rem, 1.2rem + 1vw, 1.9rem);      /* h3 large */
  --step-3: clamp(1.18rem, 1.08rem + .4vw, 1.35rem);   /* h3 */
  --step-2: clamp(1.05rem, 1rem + .25vw, 1.2rem);      /* lead */
  --step-1: 1rem;
  --step-0: .9rem;
}

/* ---------- Reset / base ---------- */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-1);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: var(--step-6); font-weight: 700; letter-spacing: -0.028em; }
h2 { font-size: var(--step-5); font-weight: 700; letter-spacing: -0.024em; }
h3 { font-size: var(--step-3); font-weight: 700; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
@supports (text-wrap: pretty) { p, li { text-wrap: pretty; } }

a { color: var(--navy-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy); }

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

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 8.5vw, 7rem); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.section--paper2 { background: var(--paper-2); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: #e8eef4; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.lead { font-size: var(--step-2); color: var(--muted); max-width: 62ch; }
.section--navy .lead { color: var(--footer-mut); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}
.section--navy .eyebrow { color: var(--accent); }

.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .lead { margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  z-index: 200;
  background: var(--navy); color: var(--white);
  padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  font-weight: 600; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(233, 163, 25, 0.35);
}
.btn--primary:hover { background: var(--accent-deep); color: var(--navy); }
.btn--ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--ghost-light {
  border-color: rgba(255, 255, 255, .55);
  color: var(--white);
  background: transparent;
}
.btn--ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.06rem; }
.btn--sm { padding: .6rem 1.15rem; min-height: 40px; font-size: .92rem; }

@media (prefers-reduced-motion: no-preference) {
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
}

.text-arrow {
  font-weight: 700;
  color: var(--navy-2);
  text-decoration: none;
  white-space: nowrap;
}
.text-arrow::after { content: " \2192"; }
.text-arrow:hover { text-decoration: underline; }

/* ---------- Risk-reversal chips ---------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0;
  margin: 1.35rem 0 0;
  list-style: none;
}
.chips li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem .95rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
}
.chips li::before {
  content: "";
  width: 15px; height: 15px;
  flex: none;
  background: var(--accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.3 8l1.4-1.4 2.8 2.8 5.8-5.8L13.7 5z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.3 8l1.4-1.4 2.8 2.8 5.8-5.8L13.7 5z"/></svg>') center / contain no-repeat;
}
.chips--navy li { background: rgba(255,255,255,.06); border-color: var(--line-navy); color: #dbe5ee; }

/* ---------- Stars ---------- */

.stars {
  display: inline-block;
  color: var(--accent);
  font-size: 1.02rem;
  letter-spacing: .12em;
  line-height: 1;
}

/* ---------- Top bar ---------- */

.topbar {
  background: var(--navy);
  color: #d9e2ec;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 38px;
  padding-block: .3rem;
}
.topbar a { color: var(--white); text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }
.topbar .lic { display: inline-flex; align-items: center; gap: .5rem; }
.topbar .lic::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.topbar .top-note { color: #9fb2c4; font-weight: 500; }
@media (max-width: 700px) {
  .topbar .top-note { display: none; }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
}
@supports (backdrop-filter: blur(10px)) {
  .site-header { background: rgba(255, 255, 255, .82); backdrop-filter: blur(12px); }
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 76px;
}
/* Brand lockup: single SVG carrying the banner mark + "Serving All of
   California" set in outlined Runda Bold Italic. Outlined on purpose, so the
   header has no webfont dependency. Navy is #120658 = the CA BSIS PPO number. */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
  flex: 0 0 auto;
  min-width: 0;
}
.brand-lockup {
  display: block;
  height: 56px;
  width: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: inline-block;
  padding: .55rem .85rem;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}
.site-nav a:hover { background: var(--paper-2); color: var(--navy); }
.site-nav a[aria-current="page"] { color: var(--navy); box-shadow: inset 0 -2px 0 var(--accent); border-radius: 8px 8px 0 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.header-phone {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: .95rem;
  white-space: nowrap;
}
.header-phone span { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.header-phone:hover { color: var(--navy-2); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px 11px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 1199px) {
  .nav-toggle { display: flex; }
  .header-phone span { display: none; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .75rem var(--gutter) 1.25rem;
  }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .15rem; }
  .site-nav a { display: block; padding: .85rem 1rem; font-size: 1.05rem; }
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--accent); border-radius: 8px; background: var(--paper-2); }
  .nav-open .site-nav { display: block; }
  /* button's first child is the .sr-only label, so the bars are children 2-4 */
  .nav-open .nav-toggle .bar:nth-child(2) { transform: translateY(7.5px) rotate(45deg); }
  .nav-open .nav-toggle .bar:nth-child(3) { opacity: 0; }
  .nav-open .nav-toggle .bar:nth-child(4) { transform: translateY(-7.5px) rotate(-45deg); }
}
@media (max-width: 700px) {
  .header-phone { display: none; }
  .header-actions .btn { padding: .7rem 1.15rem; min-height: 44px; font-size: .92rem; }
  /* height:auto + max-* lets the lockup scale down proportionally on narrow
     phones instead of getting squashed by flex-shrink. Verified 320-700px. */
  .brand-lockup { height: auto; width: auto; max-height: 42px; max-width: 34vw; }
  .site-header .container { gap: .6rem; }
  .header-actions { gap: .45rem; min-width: 0; }
  .header-actions .btn--primary { padding: .6rem .7rem; font-size: .74rem; white-space: nowrap; flex: 0 1 auto; }
  .nav-toggle { flex: 0 0 auto; }
}

/* ---------- Hero ---------- */

.hero { background: var(--white); overflow: clip; }
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-block: clamp(3.25rem, 7vw, 6rem);
}
.hero-copy .lead { margin-bottom: 1.9rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.hero-media { position: relative; }
.hero-media > img {
  width: 100%;
  aspect-ratio: 5 / 4.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: auto -14% -12% 42%;
  height: 62%;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.float-card {
  position: absolute;
  left: clamp(-1.25rem, -2vw, -2rem);
  bottom: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .9rem 1.15rem;
  max-width: 250px;
}
.float-card strong { display: block; color: var(--navy); font-size: .95rem; letter-spacing: -0.01em; }
.float-card small { color: var(--muted); font-size: .8rem; line-height: 1.45; display: block; margin-top: .2rem; }

@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media > img { aspect-ratio: 16 / 10.5; }
  .float-card { left: 1rem; bottom: 1rem; }
}

/* ---------- Trust strip ---------- */

.trust-strip { border-top: 1px solid var(--line); background: var(--white); }
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding-block: 1.35rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 48px;
}
.trust-item img { height: 44px; width: auto; }
.trust-item .t-big {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-item .t-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}
.trust-item .t-sub { display: block; font-weight: 500; text-transform: none; letter-spacing: 0; font-size: .8rem; }

/* ---------- Industries band ---------- */

.industries-band { background: var(--navy); color: var(--white); }
.industries-band .container { padding-block: 2.2rem; text-align: center; }
.industries-band .band-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8fa5ba;
  margin: 0 0 1.1rem;
}
.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: .8rem 2.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.industries-list li {
  font-size: clamp(1.02rem, .9rem + .5vw, 1.25rem);
  font-weight: 700;
  letter-spacing: .01em;
  color: #e4ebf2;
  white-space: nowrap;
}
.industries-list li::after {
  content: "\00B7";
  color: var(--accent);
  margin-left: 2.4rem;
  font-weight: 700;
}
.industries-list li:last-child::after { content: none; }
@media (max-width: 700px) {
  .industries-list { gap: .55rem 1.4rem; }
  .industries-list li::after { margin-left: 1.4rem; }
}

/* ---------- Feature grid (AIG Difference) ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.75rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.feature-card img { height: 42px; width: 42px; object-fit: contain; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.06rem; margin-bottom: .4rem; }
.feature-card p { font-size: .92rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 1020px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Service cards ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 2.75rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card .sc-body { padding: 1.35rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.service-card h3 { font-size: 1.08rem; margin: 0; }
.service-card p { font-size: .92rem; color: var(--muted); flex: 1; }
.service-card .text-arrow { font-size: .95rem; }
@media (prefers-reduced-motion: no-preference) {
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
}
@media (max-width: 1020px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .service-grid { grid-template-columns: 1fr; } }

/* ---------- Muted "coming soon" badge (service cards) ---------- */

.badge-muted {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: .4rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .8rem;
  margin-top: auto;
}

/* ---------- Plain chip variant (no checkmark) — area chip lists ---------- */

.chips--plain li::before { content: none; }
.chips--plain li { padding-left: .95rem; }

/* ---------- Numbered process rail ---------- */

.process-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2.9rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 1.4rem;
  border-top: 2px solid var(--line);
}
.process-step .num {
  display: block;
  font-size: clamp(2.6rem, 2rem + 2vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent-deep);
  margin-bottom: .9rem;
}
@supports not (-webkit-text-stroke: 1px black) {
  .process-step .num { color: var(--accent-deep); }
}
.process-step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--accent);
}
.process-step h3 { font-size: 1.15rem; }
.process-step p { color: var(--muted); font-size: .95rem; }
@media (max-width: 820px) { .process-rail { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */

.quote-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.75rem;
}
.tcard {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.tcard blockquote {
  margin: 0;
  font-size: .98rem;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
}
.tcard blockquote::before { content: "\201C"; color: var(--accent); font-size: 1.4em; line-height: 0; margin-right: .05em; }
.tcard footer { font-size: .88rem; color: var(--muted); }
.tcard footer strong { display: block; color: var(--navy); font-size: .95rem; }
@media (max-width: 900px) {
  .quote-rail { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
}

/* ---------- Video feature (in-action card) ---------- */

.video-card {
  max-width: 920px;
  margin: 2.75rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-navy);
  background: var(--navy-3);
}
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--navy-3);
}
@media (max-width: 700px) {
  .video-card { border-radius: var(--radius); }
}

/* ---------- Editorial split ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--media-left { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split-media { position: relative; }
.split-media .float-card { left: auto; right: -0.9rem; bottom: 1.4rem; }
@media (max-width: 900px) {
  .split, .split--media-left { grid-template-columns: 1fr; }
  .split-media .float-card { right: 1rem; }
}

.callout {
  margin-top: 1.9rem;
  padding: 1.4rem 1.6rem;
  background: var(--paper-2);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout strong { color: var(--navy); display: block; margin-bottom: .25rem; font-size: 1.02rem; }
.callout p { font-size: .95rem; color: var(--muted); }

/* ---------- Check list ---------- */

.check-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .85rem; }
.check-list li { position: relative; padding-left: 2.1rem; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .18em;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  -webkit-mask: none; mask: none;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: calc(.18em + 5px);
  width: 12px; height: 12px;
  background: var(--navy);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.3 8l1.4-1.4 2.8 2.8 5.8-5.8L13.7 5z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.3 8l1.4-1.4 2.8 2.8 5.8-5.8L13.7 5z"/></svg>') center / contain no-repeat;
}
.check-list strong { color: var(--navy); }
.check-list li { color: var(--muted); }
/* label + description are separate lines; without this the <small> ran straight into
   the </strong> ("guard cardOr willing...") — Bryan Melgar staging review 2026-08-04 */
.check-list small { display: block; margin-top: .25rem; font-size: .85rem; line-height: 1.5;
  font-weight: 500; color: var(--muted); }

/* ---------- CTA band ---------- */

.cta-band { background: var(--navy); color: var(--white); }
.cta-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 1.75rem 3rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.cta-band h2 { margin-bottom: .35rem; }
.cta-band p { color: var(--footer-mut); max-width: 52ch; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.cta-band .cta-phone {
  color: var(--white);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.cta-band .cta-phone:hover { color: var(--accent); }
@media (max-width: 900px) {
  .cta-band .container { grid-template-columns: 1fr; }
}

/* ---------- Page hero (interior) ---------- */

.page-hero { background: var(--white); border-bottom: 1px solid var(--line); }
.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.page-hero--solo .container { grid-template-columns: minmax(0, 1fr); max-width: 900px; }
.page-hero .hero-media > img { aspect-ratio: 5 / 4; }
.breadcrumb {
  font-size: .84rem;
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb .sep { margin-inline: .45rem; color: var(--line-navy); }
@media (max-width: 940px) {
  .page-hero .container { grid-template-columns: 1fr; }
}

/* ---------- Info cards (3-up) ---------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.75rem;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.info-card .k {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: .8rem;
}
.info-card h3 { font-size: 1.12rem; }
.info-card p { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- Value chips row (Why partner) ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  margin-top: 2.25rem;
}
.value-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-weight: 700;
  color: var(--navy);
  font-size: .97rem;
}
.value-item::before {
  content: "";
  flex: none;
  width: 10px; height: 10px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Media cards (vehicle options / roles) ---------- */

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}
.media-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.media-card img { width: 100%; aspect-ratio: 16 / 9.5; object-fit: cover; }
.media-card .mc-body { padding: 1.5rem 1.55rem 1.65rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.media-card h3 { margin: 0; font-size: 1.15rem; }
.media-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.media-card .btn { align-self: flex-start; margin-top: .75rem; }
@media (max-width: 760px) { .media-grid { grid-template-columns: 1fr; } }

/* ---------- Quote form ---------- */

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}
@media (max-width: 940px) { .quote-layout { grid-template-columns: 1fr; } }

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.form-progress {
  display: flex;
  gap: .45rem;
  margin: 0 0 1.9rem;
  padding: 0;
  list-style: none;
}
.form-progress li {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: var(--paper-2);
  overflow: hidden;
}
.form-progress li span { display: block; height: 100%; width: 100%; background: var(--accent); border-radius: inherit; }

.form-step {
  border: 0;
  margin: 0 0 2.1rem;
  padding: 0 0 2.1rem;
  border-bottom: 1px dashed var(--line);
}
.form-step:last-of-type { border-bottom: 0; margin-bottom: .4rem; padding-bottom: 0; }
.form-step legend {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 0;
  margin-bottom: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.form-step legend .step-num {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.form-step legend small { font-weight: 500; color: var(--muted); font-size: .85rem; margin-left: auto; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row + .form-row, .form-row + .field, .field + .form-row, .field + .field { margin-top: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.field label .req { color: var(--accent-deep); }
.field input,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  transition: border-color .15s ease, background-color .15s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-2);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(20, 58, 94, .12);
}
.field .hint { font-size: .8rem; color: var(--muted); margin-top: .35rem; }
.form-step:focus-within legend .step-num { background: var(--accent); color: var(--navy); }

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

.form-submit { margin-top: 1.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }
.form-submit .assurance { font-size: .85rem; color: var(--muted); max-width: 30ch; line-height: 1.5; }

/* Quote sidebar */
.quote-aside { display: grid; gap: 1.25rem; position: sticky; top: 110px; }
@media (max-width: 940px) { .quote-aside { position: static; } }
.aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.aside-card--navy { background: var(--navy); border-color: var(--navy); color: #dbe5ee; }
.aside-card--navy h3 { color: var(--white); }
.aside-card h3 { font-size: 1.05rem; margin-bottom: .7rem; }
.aside-card .big-phone {
  display: inline-block;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
  margin: .2rem 0 .3rem;
}
.aside-card .big-phone:hover { color: var(--accent); }
.aside-card p { font-size: .9rem; }
.aside-card--navy p { color: #b7c5d3; }
.aside-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; counter-reset: astep; }
.aside-steps li { position: relative; padding-left: 2.5rem; font-size: .92rem; color: var(--muted); }
.aside-steps li strong { display: block; color: var(--navy); }
.aside-steps li::before {
  counter-increment: astep;
  content: "0" counter(astep);
  position: absolute;
  left: 0; top: .1em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-ink);
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  padding: .15rem .35rem;
  line-height: 1;
}
.badge-row { display: flex; align-items: center; gap: 1.1rem; margin-top: 1rem; }
.badge-row img { height: 42px; width: auto; }

/* ---------- Hiring ---------- */

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.75rem;
}
@media (max-width: 760px) { .role-grid { grid-template-columns: 1fr; } }
.role-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.role-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.role-card .rc-body { padding: 1.7rem 1.7rem 1.85rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.role-card h3 { font-size: 1.35rem; margin: 0; }
.role-card .rc-tag {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: rgba(233, 163, 25, .14);
  border-radius: 999px;
  padding: .3rem .8rem;
  margin-bottom: .3rem;
}
.role-card p { color: var(--muted); flex: 1; }
.role-card .btn { align-self: flex-start; margin-top: .9rem; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  margin-top: 2.25rem;
}
@media (max-width: 900px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.benefit-item strong { display: block; color: var(--navy); margin-bottom: .2rem; }
.benefit-item span { font-size: .9rem; color: var(--muted); }

/* ---------- Location page ---------- */

.local-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.local-card .lc-map {
  position: relative;
  background:
    radial-gradient(circle at 62% 40%, rgba(233,163,25,.28), transparent 32%),
    linear-gradient(rgba(255,255,255,.045) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1.5px, transparent 1.5px),
    var(--navy);
  background-size: auto, 34px 34px, 34px 34px, auto;
  min-height: 210px;
  display: grid;
  place-items: center;
}
.local-card .lc-pin {
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  padding: .55rem 1.15rem;
  font-weight: 700;
  color: var(--navy);
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.local-card .lc-pin::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent-deep);
  transform: rotate(-45deg);
}
.local-card .lc-body { padding: 1.6rem 1.6rem 1.75rem; }
.local-card .lc-body p { font-size: .93rem; color: var(--muted); }
.local-card address { font-style: normal; color: var(--ink); font-size: .95rem; line-height: 1.7; }
.local-card address strong { color: var(--navy); }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy); color: var(--footer-mut); }
.site-footer a { color: #dfe8f0; text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
@media (max-width: 1020px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .footer-main { grid-template-columns: 1fr; } }
.footer-brand > img {
  /* Reversed banner mark: white with the brand-red feather, transparent ground.
     Sits directly on the navy — the old stacked logo was a dark mark that needed
     a white plate, which read as a box pasted onto the footer. The third-party
     BBB/Google badges below still get plates; they are not ours to reverse. */
  height: 40px; width: auto; margin-bottom: 1.25rem; display: block;
}
.footer-badges img { background: #fff; padding: .35rem .5rem; border-radius: 8px; box-sizing: content-box; }
.footer-brand p { font-size: .92rem; max-width: 34ch; }
.footer-lic {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.1rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line-navy);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
}
.footer-lic::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.footer-badges { display: flex; gap: 1rem; align-items: center; margin-top: 1.35rem; }
.footer-badges img { height: 40px; width: auto; }
.footer-col h3 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .95rem; }
.footer-col address { font-style: normal; font-size: .95rem; line-height: 1.8; }
.footer-col address strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--line-navy);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem 2rem;
  font-size: .84rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Sticky mobile call/quote bar ---------- */

.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  background: var(--navy);
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 24px rgba(11, 34, 57, .28);
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 50px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
}
.mobile-bar .mb-call { background: rgba(255, 255, 255, .1); color: var(--white); border: 1px solid var(--line-navy); }
.mobile-bar .mb-quote { background: var(--accent); color: var(--navy); }
@media (max-width: 760px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 84px; }
}

/* ---------- Motion (respects prefers-reduced-motion) ---------- */

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: rise-in .8s both;
      animation-timeline: view();
      animation-range: entry 5% entry 38%;
    }
    @keyframes rise-in {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: translateY(0); }
    }
  }
  .float-card { animation: float-nudge 6s ease-in-out infinite; }
  @keyframes float-nudge {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
  }
}

/* ============================================================
   SYNTHESIS ADDITIONS
   Imported from A (tech spine) & C (recruiting spine),
   restyled to B's navy/amber tokens, radii, and type scale.
   ============================================================ */

/* ---------- Extra tokens ---------- */
:root {
  --accent-tint: #f7ecd3;            /* soft amber — officer-lane surfaces */
  --accent-tint-2: #fbf4e6;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --ok: #3fae74;                      /* status green, tuned for navy ground */
  --danger: #e0674f;
  --ops-panel: #0e2c4a;              /* dashboard surface on dark ground */
  --ops-panel-2: #143a5e;            /* raised titlebar surface */
  --ops-line: rgba(151, 175, 214, .18);
  --ops-line-soft: rgba(151, 175, 214, .10);
  --ops-text: #e8eef4;
  --ops-muted: #a7b8ca;
  --ops-faint: #7f93a8;
}

/* ---------- Dual header CTA — officer lane button (from C) ---------- */
.btn--officer {
  background: var(--accent-tint);
  color: var(--accent-ink);
  border-color: transparent;
}
.btn--officer:hover { background: #f0dcae; color: var(--accent-ink); }
/* keep one dominant CTA in the header on the smallest screens (the
   secondary lane CTA is still reachable via the sticky mobile bar + nav) */
@media (max-width: 760px) {
  .header-actions .btn--officer,
  .header-actions .btn--ghost { display: none; }
}

/* ---------- Dark ops-accountability band (from A) ---------- */
.section--ops {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(900px 460px at 82% -60px, rgba(233, 163, 25, .10), transparent 60%),
    radial-gradient(760px 520px at -6% 18%, rgba(20, 58, 94, .55), transparent 62%),
    var(--navy);
  color: var(--ops-text);
  border-block: 1px solid var(--line-navy);
}
.section--ops::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(to right, var(--ops-line-soft) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(to bottom, var(--ops-line-soft) 0 1px, transparent 1px 74px);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 28%, transparent 76%);
          mask-image: radial-gradient(120% 100% at 50% 0%, #000 28%, transparent 76%);
}
.section--ops h2, .section--ops h3 { color: #fff; }
.section--ops .lead { color: var(--ops-muted); }
.section--ops .eyebrow { color: var(--accent); }

.ops-grid { display: grid; gap: 1.4rem; margin-top: 2.75rem; }
@media (min-width: 900px) {
  .ops-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; }
}

/* Ops panel + titlebar */
.ops-panel {
  background: var(--ops-panel);
  border: 1px solid var(--ops-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 52px -22px rgba(0, 0, 0, .6);
}
.ops-titlebar {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.05rem;
  border-bottom: 1px solid var(--ops-line-soft);
  background: var(--ops-panel-2);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ops-faint);
}
.ops-titlebar .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot--ok { background: var(--ok); box-shadow: 0 0 0 3px rgba(63, 174, 116, .18); }
.dot--acc { background: var(--accent); }
.dot--red { background: var(--danger); }
.ops-titlebar .spacer { margin-left: auto; letter-spacing: .1em; color: var(--accent); }
.ops-body { padding: 1.15rem 1.2rem; }

/* Live time-stamped report feed */
.feed { list-style: none; margin: 0; padding: 0; }
.feed li {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: .75rem;
  align-items: baseline;
  padding: .62rem .1rem;
  border-bottom: 1px dashed var(--ops-line-soft);
}
.feed li:last-child { border-bottom: none; }
.feed time { font-family: var(--mono); font-size: .78rem; color: var(--accent); letter-spacing: .04em; }
.feed .tag {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--ops-line);
  border-radius: 5px;
  padding: .14rem .45rem;
  color: var(--ops-muted);
  white-space: nowrap;
}
.feed .tag--ok { color: var(--ok); border-color: rgba(63, 174, 116, .45); }
.feed .tag--inc { color: var(--danger); border-color: rgba(224, 103, 79, .5); }
.feed p { margin: 0; color: var(--ops-muted); font-size: .92rem; }
.feed p strong { color: #fff; font-weight: 600; }
.feed-caption {
  font-family: var(--mono);
  font-size: .66rem;
  color: var(--ops-faint);
  letter-spacing: .08em;
  margin: .85rem 0 0;
}

/* Ops "how we deliver" list (dark variant of check-list) */
.ops-list { list-style: none; margin: 0; padding: 0; }
.ops-list li {
  position: relative;
  padding: .72rem 0 .72rem 2.1rem;
  border-bottom: 1px dashed var(--ops-line-soft);
  color: var(--ops-muted);
  font-size: .95rem;
}
.ops-list li:last-child { border-bottom: none; }
.ops-list li strong { color: #fff; }
.ops-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: .72rem;
  width: 21px; height: 21px;
  border-radius: 6px;
  background: rgba(233, 163, 25, .16);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Count-up stat band (from A) — on the dark ops ground */
.stat-band {
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.75rem;
}
@media (min-width: 860px) { .stat-band { grid-template-columns: repeat(4, 1fr); } }
.stat { border-left: 2px solid var(--accent); padding-left: 1.05rem; }
.stat b {
  display: block;
  font-family: var(--mono);
  font-weight: 600;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 2.9rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.stat b sub, .stat b sup { font-size: .5em; color: var(--accent); }
/* the animated number span inside <b> must inherit the big stat type,
   NOT the caption styling — scope the caption to direct children only */
.stat b span { display: inline; font: inherit; color: inherit; margin: 0; }
.stat > span { display: block; margin-top: .5rem; color: var(--ops-muted); font-size: .9rem; line-height: 1.45; }

/* ---------- GPS patrol-route SVG (from A) — service/city pages ---------- */
.map-grid { display: grid; gap: 1.4rem; margin-top: 2.75rem; }
@media (min-width: 980px) {
  .map-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: start; }
}
.patrol-map { width: 100%; height: auto; display: block; }
.patrol-map .grid-line { stroke: var(--ops-line-soft); stroke-width: 1; }
.patrol-map .street { stroke: rgba(151, 175, 214, .22); stroke-width: 2; stroke-linecap: round; }
.patrol-map .zone { fill: rgba(20, 58, 94, .38); stroke: rgba(151, 175, 214, .22); stroke-dasharray: 4 5; }
.patrol-map .route {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
.patrol-map .chk { fill: var(--ops-panel); stroke: var(--accent); stroke-width: 2.5; }
.patrol-map .chk-pulse { fill: none; stroke: var(--accent); stroke-width: 1.5; opacity: .55; transform-box: fill-box; transform-origin: center; }
.patrol-map .hq { fill: var(--ok); }
.patrol-map .hq-ring { fill: none; stroke: var(--ok); stroke-width: 1.5; opacity: .5; transform-box: fill-box; transform-origin: center; }
.patrol-map text { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; fill: var(--ops-muted); }
.patrol-map .t-acc { fill: var(--accent); }
.patrol-map .t-faint { fill: var(--ops-faint); font-size: 10px; }
@media (prefers-reduced-motion: no-preference) {
  .patrol-map .chk-pulse { animation: ping 2.6s ease-out infinite; }
  .patrol-map .hq-ring { animation: ping 3.2s ease-out infinite; }
  @keyframes ping {
    0%   { transform: scale(.5); opacity: .8; }
    80%, 100% { transform: scale(2.1); opacity: 0; }
  }
  @supports (animation-timeline: view()) {
    .patrol-map .route {
      stroke-dashoffset: 1000;
      animation: draw-route linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 55%;
    }
    @keyframes draw-route { to { stroke-dashoffset: 0; } }
  }
}

/* ---------- Amber officer-lane recruiting band (from C) ---------- */
.section--officer {
  background: linear-gradient(180deg, var(--accent-tint-2), var(--accent-tint));
  border-block: 1px solid #ecdcb8;
}
.section--officer .eyebrow { color: var(--accent-ink); }
.officer-card {
  background: var(--white);
  border: 1px solid #ecdcb8;
  border-top: 5px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.officer-card .check-list { margin-top: 0; }

/* ---------- Cross-lane deflector strip (from C) ---------- */
.deflector {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.4rem;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem 1.45rem;
  box-shadow: var(--shadow-sm);
}
.deflector--client { border-left-color: var(--navy-2); }
.deflector p { margin: 0; font-weight: 700; color: var(--navy); }
.deflector p small { display: block; font-weight: 500; color: var(--muted); font-size: .85rem; }
.deflector .btn { flex: none; }

/* ---------- Full-bleed photographic hero (from C) ---------- */
.hero-fullbleed {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  border-bottom: 5px solid var(--accent);
}
.hero-fullbleed > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: -2;
}
.hero-fullbleed .scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(11, 34, 57, .95) 0%, rgba(11, 34, 57, .82) 46%, rgba(20, 58, 94, .42) 100%);
}
.hero-fullbleed--officer .scrim {
  background: linear-gradient(100deg, rgba(41, 28, 6, .93) 0%, rgba(56, 38, 10, .78) 46%, rgba(80, 56, 16, .38) 100%);
}
.hero-fullbleed .container { padding-block: clamp(3.4rem, 7vw, 5.6rem); }
.hero-fullbleed h1 { color: #fff; max-width: 20ch; }
.hero-fullbleed .lead { color: rgba(255, 255, 255, .88); }
.hero-fullbleed .eyebrow { color: var(--accent); }
.hero-fullbleed .breadcrumb, .hero-fullbleed .breadcrumb a { color: rgba(255, 255, 255, .78); }
.hero-fullbleed .breadcrumb a:hover { color: #fff; }
.hero-fullbleed .chips li {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.hero-fullbleed .chips li::before { background: var(--accent); }

/* ---------- "Do I qualify?" checklist panel (from C) ---------- */
.checklist-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.checklist-panel .check-list { margin-top: 0; }

/* ---------- True multi-step quote form (progressive enhancement) ---------- */
.form-nav { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 1.5rem; }
.step-indicator {
  margin-left: auto;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
}
/* base (no-JS): all steps visible, only submit shows */
.step-back, .step-next { display: none; }
.quote-form.is-stepped .form-step { display: none; }
.quote-form.is-stepped .form-step.is-active { display: block; }
.quote-form.is-stepped .form-step {
  border-bottom: 0;
  margin-bottom: 1rem;
  padding-bottom: .4rem;
}
.quote-form.is-stepped .form-progress li span { width: 0; transition: width .35s ease; }
@media (prefers-reduced-motion: reduce) {
  .quote-form.is-stepped .form-progress li span { transition: none; }
}
.quote-form.is-stepped .form-progress li.done span { width: 100%; }
.quote-form.is-stepped .step-back,
.quote-form.is-stepped .step-next { display: inline-flex; }
.quote-form.is-stepped .step-submit { display: none; }
.quote-form.is-stepped.on-last .step-submit { display: inline-flex; }
.quote-form.is-stepped.on-last .step-next { display: none; }
.quote-form.is-stepped.on-first .step-back { visibility: hidden; }

/* ---------- Print ---------- */
@media print {
  .site-header, .topbar, .mobile-bar, .cta-band { display: none; }
  .hero-fullbleed > img, .hero-fullbleed .scrim { display: none; }
  .section--ops, .hero-fullbleed { background: #fff; color: #000; }
}

/* ============================================================
   WORDPRESS ADDITIONS  (not in the mockups — restyled to S tokens)
   Everything WP needs that the static designs/s/*.html don't cover:
   generic DB-content hero, the_content() prose, the city "areas" strip,
   the 404 helper links, and a .wrap → .container bridge so any partial
   (or legacy) markup that still uses .wrap stays inside the grid while
   the core-pages agent finishes its own S restyle.
   ============================================================ */

/* .wrap is the C-era container name; alias it to S's .container so shared
   partials/pages that still emit .wrap render inside the layout grid. */
.wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Generic interior hero (guides, /service-areas/, privacy, 404, index) ---------- */
.aig2026-page-hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(900px 460px at 82% -60px, rgba(233, 163, 25, .10), transparent 60%),
    radial-gradient(760px 520px at -6% 18%, rgba(20, 58, 94, .55), transparent 62%),
    var(--navy);
  color: var(--ops-text);
  border-bottom: 1px solid var(--line-navy);
}
.aig2026-page-hero .container { padding-block: clamp(3rem, 6vw, 5rem); max-width: 940px; }
.aig2026-page-hero .eyebrow { color: var(--accent); }
.aig2026-page-hero h1 { color: #fff; max-width: 24ch; margin: 0; }
.aig2026-page-hero .lead { color: var(--footer-mut); margin-top: 1rem; }
.aig2026-page-hero .breadcrumb,
.aig2026-page-hero .breadcrumb a { color: rgba(255, 255, 255, .75); }
.aig2026-page-hero .breadcrumb a:hover { color: #fff; }
.aig2026-page-hero .cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

/* ---------- the_content() prose (city pages, guides, privacy, FAQs) ---------- */
.aig2026-prose { max-width: 78ch; margin-inline: auto; font-size: 1.05rem; }
.aig2026-prose > *:first-child { margin-top: 0; }
.aig2026-prose h2 {
  font-size: var(--step-4);
  margin: 2em 0 .55em;
  border-top: 2px solid var(--line);
  padding-top: .7em;
}
.aig2026-prose > h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.aig2026-prose h3 { font-size: 1.2rem; margin: 1.8em 0 .4em; color: var(--navy-2); }
.aig2026-prose h4, .aig2026-prose h5 { font-size: 1.05rem; margin: 1.6em 0 .35em; color: var(--navy); }
.aig2026-prose p { margin: 0 0 1.1em; }
.aig2026-prose ul, .aig2026-prose ol { margin: 0 0 1.2em; padding-left: 1.4em; display: grid; gap: .45rem; }
.aig2026-prose li { padding-left: .15em; }
.aig2026-prose ul li::marker { color: var(--accent-deep); }
.aig2026-prose ol li::marker { color: var(--accent-ink); font-weight: 700; }
.aig2026-prose a { color: var(--navy-2); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.aig2026-prose a:hover { color: var(--navy); }
.aig2026-prose strong { color: var(--navy); }
.aig2026-prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); margin: 1.4em 0; }
.aig2026-prose blockquote {
  margin: 1.6em 0;
  padding: 1.2rem 1.5rem;
  background: var(--paper-2);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink);
}
.aig2026-prose blockquote p:last-child { margin-bottom: 0; }
.aig2026-prose blockquote cite { display: block; margin-top: .6em; font-size: .85rem; color: var(--muted); font-style: normal; }
.aig2026-prose hr { border: none; border-top: 1px solid var(--line); margin: 2.2em 0; }
.aig2026-prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .96rem; }
.aig2026-prose th, .aig2026-prose td { border: 1px solid var(--line); padding: .7rem .9rem; text-align: left; vertical-align: top; }
.aig2026-prose th { background: var(--paper-2); color: var(--navy); font-weight: 700; }
.aig2026-prose figure { margin: 1.4em 0; }
.aig2026-prose figcaption { font-size: .85rem; color: var(--muted); margin-top: .5em; text-align: center; }

/* ---------- City "All service areas" chip strip (after city page content) ---------- */
.aig2026-areas-strip .container { text-align: center; }
.aig2026-areas-strip .eyebrow { justify-content: center; }
.aig2026-areas-strip .eyebrow::before { display: none; }
.aig2026-areas-strip > .container > p { color: var(--muted); }
.aig2026-city-chips { justify-content: center; margin-top: 1.4rem; }
.aig2026-city-chips li { transition: border-color .15s ease; }
.aig2026-city-chips li:hover { border-color: var(--accent); }
.aig2026-city-chips li a { text-decoration: none; color: var(--ink); font-weight: 600; }
.aig2026-city-chips li a:hover { color: var(--navy); }

/* ---------- 404 helper links ---------- */
.aig2026-404 .helpful { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin-top: 1.5rem; }
.aig2026-404 .helpful a { font-weight: 700; color: var(--navy-2); text-decoration: none; }
.aig2026-404 .helpful a:hover { color: var(--navy); text-decoration: underline; }



/* ==========================================================================
   AIG-MOBILE-PASS-START  (2026-08-06)
   Mobile/responsive optimisation pass. Everything below this marker is
   additive; deleting from this marker to AIG-MOBILE-PASS-END restores the
   previous rendering exactly. Ordered: correctness bugs, then tap targets,
   then type, then mobile re-composition.
   ========================================================================== */

/* --- 1. Horizontal page scroll on every .page-hero template -------------- */
/* .hero-media::before is a decorative offset block at inset right:-14%. .hero
   clips it (overflow:clip); .page-hero never did, so /services/, /armed-security/
   and /patrol-services/ scrolled sideways at EVERY width (390 -> scrollWidth 419). */
.page-hero { overflow: clip; }
@media (max-width: 900px) {
  .hero-media::before { display: none; }
}

/* --- 2. Closing CTA headline was navy-on-navy, i.e. invisible ------------- */
/* h1-h4 get color:var(--navy) globally; .cta-band sits on var(--navy). */
.cta-band h2 { color: var(--white); }

/* --- 3. iOS Safari zooms on focus for any control under 16px -------------- */
/* .field controls were .98rem = 15.68px, which zoomed the viewport on every
   field of the quote form and never zoomed back out. */
.field input,
.field textarea,
.field select { font-size: 1rem; }

/* --- 4. Topbar: phone number was breaking mid-number at tablet ------------ */
.topbar .top-note { white-space: nowrap; }
@media (max-width: 900px) { .topbar .top-note { display: none; } }
@media (max-width: 560px) {
  .topbar .lic { align-items: flex-start; font-size: .8rem; }
  .topbar .lic::before { margin-top: .45em; flex: none; }
}

/* --- 5. Tap targets under 44px ------------------------------------------- */
/* Footer nav links were 21px tall on a 34px pitch (13px of dead space between). */
@media (max-width: 620px) {
  .footer-col ul { gap: 0; }
  .footer-col ul a { display: block; padding: .62rem 0; min-height: 44px; line-height: 1.5; }
  .footer-col address a { display: inline-flex; align-items: center; min-height: 44px; }
}
/* "Learn more ->" was the only in-content route to the service pages, at 25px. */
.text-arrow { display: inline-flex; align-items: center; min-height: 44px; }
/* City chips: the pill carried the padding, so the <a> hit area was only 23px
   tall inside a 38px pill — a 30-chip strip on all 30 city pages. */
.aig2026-city-chips li { padding: 0; }
.aig2026-city-chips li a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: .55rem 1rem;
}
.chips--plain.aig2026-city-chips li { padding-left: 0; }
/* Bare tel: links used as CTAs on /contact/ and the CTA band. */
@media (max-width: 760px) {
  .cta-band .cta-phone,
  .big-phone,
  .aside-card a[href^="tel:"],
  .office-card a[href^="tel:"] {
    display: inline-flex; align-items: center; min-height: 44px;
  }
}

/* --- 6. Header lane at 320-360 ------------------------------------------- */
/* At 320 the flex row overran its own container: hamburger sat 1px from the
   screen edge against a 20px gutter on the left. */
@media (max-width: 380px) {
  .site-header .container { gap: .4rem; }
  .header-actions { gap: .35rem; }
  .header-actions .btn--primary { padding: .55rem .6rem; font-size: .72rem; }
  .brand-lockup { max-height: 36px; max-width: 32vw; }
}

/* --- 7. Eyebrows split mid-phrase and detached their accent rule ---------- */
/* .eyebrow is inline-flex with a 26px ::before rule; when the text wrapped the
   rule centred between the two lines and the first line ended on a dangling middot. */
@media (max-width: 560px) {
  .eyebrow { display: block; font-size: .72rem; letter-spacing: .1em; }
  .eyebrow::before { display: inline-block; vertical-align: middle; margin-right: .55rem; }
}

/* --- 8. Industries band: a wrapped inline list left a column of orphan dots */
@media (max-width: 899px) {
  .industries-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
    justify-content: stretch;
  }
  .industries-list li {
    white-space: normal;
    text-align: center;
    font-size: .95rem;
    padding: .55rem .7rem;
    border: 1px solid var(--line-navy);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
  }
  .industries-list li::after { content: none; }
}
@media (max-width: 380px) {
  .industries-list { grid-template-columns: 1fr; }
}

/* --- 9. Live field report was a 3-column desktop table at 390px ----------- */
@media (max-width: 640px) {
  .feed li { grid-template-columns: auto 1fr; row-gap: .3rem; }
  .feed li p { grid-column: 1 / -1; font-size: .95rem; }
}

/* --- 10. Stat band never dropped below 2-up, so captions shredded at 320 -- */
@media (max-width: 520px) {
  .stat-band { grid-template-columns: 1fr; gap: 1.15rem; }
}

/* --- 11. Trust strip: space-between went ragged on phone, hollow on tablet */
/* A fixed value column clips "PPO #120658", and letting the values size
   naturally leaves the labels ragged (they are separate grids, so they cannot
   align across items). Stack each item instead — no overlap, nothing ragged. */
@media (max-width: 760px) {
  .trust-strip .container { display: grid; grid-template-columns: 1fr; gap: 1.05rem; }
  .trust-item { display: block; }
  .trust-item .t-big { display: block; margin-bottom: .1rem; }
  .trust-item img { display: block; justify-self: start; }
}
@media (min-width: 761px) and (max-width: 1020px) {
  .trust-strip .container { justify-content: flex-start; column-gap: 3rem; }
}

/* --- 12. AIG Difference: 8 cards x 222px of scroll for one sentence each --- */
/* Desktop composition (icon on its own line + 25px of air) squeezed down. Going
   icon-inline below 560px reclaims roughly 550-650px of mobile scroll. */
@media (max-width: 560px) {
  .feature-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: .85rem;
    row-gap: .3rem;
    padding: 1.1rem 1.15rem 1.2rem;
  }
  .feature-card img { width: 30px; height: 30px; margin: 0; grid-column: 1; grid-row: 1; }
  .feature-card h3 { grid-column: 2; grid-row: 1; margin: 0; align-self: center; }
  .feature-card p  { grid-column: 2; grid-row: 2; }
}

/* --- 13. Hero: review card covered 74% of the officer photo on a phone ----- */
@media (max-width: 560px) {
  .hero-media > img { aspect-ratio: 4 / 3; }
  .float-card {
    position: static;
    margin: -2.25rem 1rem 0;
    box-shadow: var(--shadow-md);
  }
}
/* Interior heroes forced a 2.14:1 source into a 5:4 box, discarding ~46%. */
@media (max-width: 900px) {
  .page-hero .hero-media > img { aspect-ratio: 16 / 9; }
}

/* --- 14. Type that was too small to read on a phone ----------------------- */
/* Nothing here changes desktop; these are mobile-only floors. */
@media (max-width: 760px) {
  .feed .tag { font-size: .78rem; }
  .feed time { font-size: .82rem; }
  .feed-caption { font-size: .8rem; letter-spacing: .04em; }
  .ops-titlebar { font-size: .78rem; letter-spacing: .1em; }
  .trust-item .t-label,
  .industries-band .band-label { font-size: .82rem; letter-spacing: .1em; }
  .chips li { font-size: .95rem; }
  .stat > span { font-size: .95rem; }
  .tcard footer { font-size: .95rem; }
  .float-card small { font-size: .85rem; }
  .breadcrumb { font-size: .875rem; }
  .field label { font-size: .95rem; }
  .field .hint { font-size: .875rem; }
  .form-step legend small,
  .step-indicator { font-size: .875rem; }
  .header-actions .btn--primary { font-size: .84rem; }
}

/* --- 15. Tablet 761-900: header CTAs double-decked, footer left a void ---- */
@media (min-width: 761px) and (max-width: 900px) {
  .header-actions .btn { white-space: nowrap; padding-inline: .9rem; font-size: .9rem; }
  .header-actions .btn--officer { display: none; }
}
@media (min-width: 621px) and (max-width: 1020px) {
  .footer-main { align-items: start; }
  .footer-brand { grid-column: 1 / -1; }
}

/* --- 16. Quote form: nav buttons were left-aligned and half width --------- */
@media (max-width: 560px) {
  .form-nav { display: grid; grid-template-columns: 1fr; gap: .7rem; }
  .form-nav .btn { width: 100%; }
  .form-nav .step-next,
  .form-nav .step-submit { order: -1; }
  .step-indicator { margin-left: 0; text-align: center; }
}

/* --- 17. Job-seeker gate on /get-a-quote/ --------------------------------- */
/* The gate itself is deliberate and stays (mu-plugin aig-get-a-quote-gate —
   it keeps applicants out of the sales pipeline). Only its presentation is
   changed: it shipped raw #fafafa/#d9d9d9 styling that read as a bolt-on, and
   on a 390px phone its buttons sat at y876, below the fold. Its <style> is
   injected at wp_footer so these overrides need the extra specificity. */
#aig-gate { max-width: 680px; margin: 0 auto 14px; }
#aig-gate .aig-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  padding: 1.15rem 1.2rem;
}
#aig-gate .aig-box h2 { font-size: 1.12rem; margin: 0 0 .35rem; color: var(--navy); }
#aig-gate .aig-box p { font-size: .95rem; color: var(--muted); margin: 0 0 .9rem; }
#aig-gate .aig-btns .aig-b {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
}
#aig-gate .aig-btns .aig-b1 { background: var(--accent); color: var(--navy); }
#aig-gate .aig-btns .aig-b2 { border: 2px solid var(--navy); background: var(--white); color: var(--navy); }
.aig-note { border-left: 4px solid var(--accent); background: var(--paper-2); font-size: .9rem; border-radius: 0 8px 8px 0; }
@media (max-width: 760px) {
  #aig-gate .aig-box { padding: 1rem 1.05rem; }
  #aig-gate .aig-box h2 { font-size: 1.05rem; }
  #aig-gate .aig-btns { gap: .6rem; }
  #aig-gate .aig-btns .aig-b { flex: 1 1 100%; }
}

/* --- 18. Heading line-breaking on narrow screens -------------------------- */
/* text-wrap:balance optimises for equal line lengths, which on a 350px measure
   produced dangling em dashes and one-word middle lines. pretty keeps phrases
   intact and only avoids orphans. */
@media (max-width: 560px) {
  h1, h2, h3 { text-wrap: pretty; }
}

/* --- 19. Mobile drawer had no scrim, so the page read through it ---------- */
@media (max-width: 1199px) {
  .nav-open .site-nav { z-index: 101; }
  .nav-open .site-header::after {
    content: "";
    position: fixed;
    inset: 0;
    top: var(--aig-header-bottom, 130px);
    background: rgba(11, 34, 57, .45);
    z-index: 99;
    pointer-events: none;
  }
}

/* --- 20. Mobile vertical rhythm ------------------------------------------- */
/* padding-block: clamp(3rem, 6vw, 5rem) is a desktop-first ramp — at 390 it
   still resolves to the 3rem floor top AND bottom, so interior heroes spend
   ~96px of a 844px screen on air before the first word. Tighten on phones;
   this is also what pulls the /get-a-quote/ audience gate above the fold. */
@media (max-width: 760px) {
  .page-hero .container { padding-block: 2rem 2.25rem; gap: 1.75rem; }
  .hero .container { padding-block: 2.25rem 2.5rem; gap: 2rem; }
  .breadcrumb { margin-bottom: .8rem; }
}

/* --- 21. Legacy AmeriCorp livery in officer photography -------------------- */
/* guard-01/02 carry a legible "AIG AMERICORP INTERNATIONAL GROUP" patch on the
   wearer's right shoulder, which lands on the right edge of a cover crop and
   reads as a truncated third-party wordmark. Shifting the crop left keeps the
   subject and pushes the patch out of frame. Proper fix is new photography. */
img[src*="guard-02"],
img[src*="guard-01"] { object-position: 32% 50%; }

/* AIG-MOBILE-PASS-END */
