/* ==========================================================================
   Vinh Food Safety — site.css (design system)
   Single light theme. The brand is cream: every background painted explicitly.
   Palette + type per research/brand-spec.md sections 3-4.
   ========================================================================== */

/* ---------- Fonts (self-hosted variable woff2) ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('/assets/fonts/fraunces.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/sourcesans.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  /* Brand color */
  --green: #1E4D3B;        /* Inspection Green: headings, primary buttons, pass */
  --forest: #2F6B4F;       /* subheads, hover states on green */
  --navy: #1B2A4A;         /* Ledger Navy: dark bands, tables, footer */
  --amber: #D97706;        /* Signal Amber: DECORATION ONLY, never text on light */
  --amber-ink: #B45309;    /* the only amber text on light; links, price accents */
  --amber-light: #F5B04C;  /* amber accent on dark (navy/green) backgrounds */
  --cream: #FAF6EE;        /* default page background */
  --sand: #F1EADB;         /* alternating sections, stripes, card fills */
  --white: #FFFFFF;
  --ink: #26221C;          /* Charcoal: body text */
  --ink-soft: #5A544A;     /* Warm Gray: captions, labels, meta */
  --line: #E3DCCB;         /* decorative hairlines */
  --line-strong: #8A8378;  /* input borders, functional dividers (never text) */
  --tint-green: #E9F0EA;
  --tint-amber: #FBEED7;
  --tint-red: #FCE8E4;
  --brick: #9B2C20;        /* critical findings only, never marketing copy */

  /* Type */
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container: 1120px;
  --measure: 65ch;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(38, 34, 28, 0.08), 0 4px 16px rgba(38, 34, 28, 0.06);
  --header-h: 72px;
  --mobile-bar-h: 64px;
  --focus-ring: 2px solid var(--navy);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-wrap: break-word;
}

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

/* Room for the sticky mobile bar */
@media (max-width: 860px) {
  body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green);
  margin: 0 0 0.5em;
}
h1 { font-size: 49px; line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-size: 39px; line-height: 1.15; }
h3 { font-size: 31px; line-height: 1.2; }
h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 0.5em;
}
@media (max-width: 720px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 25px; }
  h4 { font-size: 20px; }
}

p, ul, ol { margin: 0 0 1em; }
p, li { max-width: var(--measure); }

a {
  color: var(--amber-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover { color: var(--green); }

/* Amber Ink misses 4.5:1 on Sand (4.19:1) and on the tint fills
   (green tint 4.33:1, amber tint 4.38:1), so links on those grounds
   darken to navy: the urgent-strip recipe. White-background components
   sitting inside a sand section are restored to the standard link color. */
.section-sand a:not(.btn),
.callout a:not(.btn),
.byline a {
  color: var(--navy);
}
.section-sand a:not(.btn):hover,
.callout a:not(.btn):hover,
.byline a:hover { color: var(--green); }
.section-sand :is(.service-card, .stat-tile, .steps li, .faq details, .table-wrap) a:not(.btn) { color: var(--amber-ink); }
.section-sand :is(.service-card, .stat-tile, .steps li, .faq details, .table-wrap) a:not(.btn):hover { color: var(--green); }
.section-sand .service-card h3 a:not(.btn) { color: var(--green); }

strong { font-weight: 700; }

.lead {
  font-size: 20px;
  line-height: 1.55;
}

.small, .caption {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0 0 0.75em;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2rem 0;
}

blockquote, .pullquote {
  font-family: var(--font-head);
  font-weight: 500;
  font-style: italic;
  font-size: 25px;
  line-height: 1.35;
  color: var(--navy);
  border-left: 4px solid var(--amber);
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  max-width: 40ch;
}
@media (max-width: 720px) { blockquote, .pullquote { font-size: 20px; } }

/* Amber teacher's-underline highlight (decorative amber; use sparingly) */
.hl {
  background-image: linear-gradient(transparent 78%, var(--amber) 78%, var(--amber) 94%, transparent 94%);
}

/* ---------- Focus & motion ---------- */
:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible { outline: var(--focus-ring); outline-offset: 3px; }

/* The navy focus ring vanishes on the dark navy/green bands; switch it to
   Amber Light there (7.58:1 on navy, 5.14:1 on green). */
.site-footer :focus-visible,
.band-navy :focus-visible,
.cta-band :focus-visible {
  outline-color: var(--amber-light);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  color: var(--white);
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; background: var(--cream); }
.section-white { background: var(--white); }
.section-sand { background: var(--sand); }
@media (max-width: 720px) { .section { padding: 44px 0; } }

.section-head { max-width: var(--measure); margin-bottom: 2rem; }

.grid-2, .grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--forest); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
/* Urgent: max ONE per page. White on Amber Ink (5.02:1). */
.btn-urgent {
  background: var(--amber-ink);
  color: var(--white);
}
.btn-urgent:hover { background: var(--green); color: var(--white); }
/* On dark bands (navy/green): cream-filled button */
.btn-reverse {
  background: var(--cream);
  color: var(--green);
}
.btn-reverse:hover { background: var(--white); color: var(--green); }
.btn-block { display: flex; width: 100%; }

/* ---------- Sticky header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.brand:hover { color: var(--green); }
.brand svg { width: 36px; height: 36px; flex: none; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.1;
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}
.site-nav a:hover { background: var(--sand); color: var(--green); }
.site-nav a[aria-current="page"] {
  color: var(--green);
  box-shadow: inset 0 -3px 0 var(--amber);
  border-radius: var(--radius) var(--radius) 0 0;
}
.site-nav .btn { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 12px 20px 20px;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .site-nav a { width: 100%; padding: 12px 14px; }
  .site-nav a[aria-current="page"] {
    box-shadow: inset 4px 0 0 var(--amber);
    border-radius: var(--radius);
    background: var(--sand);
  }
  .site-nav .btn { margin: 10px 0 0; width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--cream);
  padding: 72px 0 40px;
}
@media (max-width: 720px) { .hero { padding: 44px 0 28px; } }
.hero h1 { color: var(--navy); max-width: 20ch; }
.hero .lead { max-width: 55ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 1.5rem 0 0;
}

/* ---------- Urgent strip (amber tint, navy text) ---------- */
.urgent-strip {
  background: var(--tint-amber);
  border-top: 3px solid var(--amber);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.urgent-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
}
.urgent-strip p { margin: 0; color: var(--navy); font-weight: 600; max-width: none; }
.urgent-strip a { color: var(--navy); font-weight: 700; }
.urgent-strip a:hover { color: var(--green); }

/* ---------- Stat tiles ---------- */
.stat-tiles {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .stat-tiles { grid-template-columns: repeat(3, 1fr); } }
.stat-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.stat-tile .stat-value {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 39px;
  line-height: 1.1;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}
.stat-tile p { margin: 0 0 0.5em; }
.stat-tile a { font-weight: 600; }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.service-card h3 {
  font-size: 25px;
  margin-bottom: 0.4em;
}
.service-card h3 a { color: var(--green); text-decoration: none; }
.service-card h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.service-card p { flex: 1; }
.service-card .price {
  color: var(--amber-ink);
  font-weight: 700;
  margin: 0 0 1em;
}
.service-card .card-link { font-weight: 700; }
/* Standalone links in cards and tiles get a 44px-tall tap target; the
   negative margin keeps the visual layout unchanged. */
.card-link, .stat-tile a {
  display: inline-block;
  padding: 10px 0;
  margin: -6px 0;
}
.service-card-featured { border: 2px solid var(--green); border-top: 6px solid var(--green); }
.service-card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--green);
}

/* ---------- Price tables ---------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 16px;
}
caption {
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 21px;
  color: var(--green);
  padding: 16px 18px 8px;
}
th, td {
  text-align: left;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  vertical-align: top;
}
thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border-top: 0;
}
/* Stripe is Cream, not Sand: amber-ink price cells and links inside striped
   rows hold 4.66:1 on cream but only 4.19:1 on sand. */
tbody tr:nth-child(even) { background: var(--cream); }
td.price, .price-cell {
  color: var(--amber-ink);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Steps / flow list ---------- */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 2rem 0;
  padding: 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.steps li {
  counter-increment: step;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 24px 76px;
  max-width: none;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
}
.steps h3, .steps h4 { font-size: 20px; margin-bottom: 0.3em; }
.steps p { margin: 0; }

/* Method motif: Explain · Educate · Correct · Prevent */
.motif {
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
}

/* ---------- Callouts ---------- */
.callout {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  background: var(--tint-green);
  padding: 20px 24px;
  margin: 1.5rem 0;
}
.callout > :last-child { margin-bottom: 0; }
.callout-amber {
  background: var(--tint-amber);
  border-left-color: var(--amber);
}
.callout-critical {
  background: var(--tint-red);
  border-left-color: var(--brick);
}
.callout-critical strong { color: var(--brick); }
.callout-navy {
  background: var(--white);
  border-left-color: var(--navy);
}
.callout h2, .callout h3, .callout h4 { font-size: 20px; line-height: 1.3; margin-bottom: 0.35em; }

/* ---------- FAQ (details/summary) ---------- */
.faq { margin: 1.5rem 0; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--forest);
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .faq-body { padding: 16px 20px; }
.faq .faq-body > :last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field .hint {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
textarea { min-height: 120px; resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 1px;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border: 2px solid var(--brick);
}
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brick);
}
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.checkbox-field input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-height: 0;
  margin: 2px 0 0;
  flex: none;
  accent-color: var(--green);
}
.checkbox-field label { font-weight: 400; margin: 0; }

/* ---------- Navy band ---------- */
.band-navy {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0;
}
.band-navy h2, .band-navy h3 { color: var(--cream); }
.band-navy .eyebrow { color: var(--amber-light); }
.band-navy a { color: var(--amber-light); }
.band-navy a:hover { color: var(--white); }
.band-navy .accent { color: var(--amber-light); }
.band-navy .btn-primary { background: var(--cream); color: var(--navy); }
.band-navy .btn-primary:hover { background: var(--white); color: var(--navy); }

/* Audience chips (navy band or light sections) */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  max-width: none;
}
.band-navy .chip {
  background: transparent;
  border-color: rgba(250, 246, 238, 0.45);
  color: var(--cream);
}

/* ---------- Final CTA band (green bg, cream text) ---------- */
.cta-band {
  background: var(--green);
  color: var(--cream);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--cream);
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band p {
  max-width: var(--measure);
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn-reverse { margin-top: 0.75rem; }
.cta-band .reassure {
  margin-top: 1rem;
  font-size: 15px;
  color: var(--tint-green);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 56px 0 32px;
}
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--amber-light); text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand:hover { color: var(--amber-light); }
.footer-brand p { color: var(--sand); font-size: 15px; }
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.9em;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: 8px; font-size: 15px; max-width: none; }
/* Taller tap boxes for footer links, sized to the list pitch so adjacent
   targets never overlap. */
.site-footer ul a { display: inline-block; padding: 4px 0; margin: -4px 0; }
.footer-legal {
  border-top: 1px solid rgba(250, 246, 238, 0.25);
  padding-top: 24px;
  font-size: 14px;
  color: var(--sand);
}
.footer-legal p { max-width: none; margin-bottom: 0.6em; }

/* ---------- Sticky mobile bottom bar ---------- */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 860px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    background: var(--cream);
    border-top: 1px solid var(--line);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-cta-bar .btn {
    width: 100%;
    min-height: 48px;
  }
}

/* ---------- Article / prose ---------- */
.prose > * { max-width: var(--measure); }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--tint-green);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--ink);
  margin: 1.5rem 0;
  max-width: var(--measure);
}
.byline svg { width: 32px; height: 32px; flex: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-cta-bar, .urgent-strip, .cta-band .btn, .skip-link, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .section, .section-sand, .section-white, .hero { background: #fff; padding: 16px 0; }
  .band-navy, .cta-band, .site-footer { background: #fff; color: #000; }
  .band-navy h2, .cta-band h2, .site-footer a { color: #000; }
  a { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 12px; }
  .service-card, .stat-tile, .callout, .faq details { box-shadow: none; break-inside: avoid; }
}
