/* helicopter.rentals
   ------------------------------------------------------------------
   Written on top of Bootstrap 5's grid/utilities only. Everything with a
   visual opinion is here, because the fleet rule is that a fork must not
   look like stock Bootstrap.

   Palette: deep navy (aviation, night ops) with a brass accent. Brass rather
   than gold — it reads premium without the timeshare-brochure connotation
   that literal gold carries in this vertical.
*/

:root {
  --ink:        #0a1628;
  --ink-2:      #12243c;
  --ink-3:      #1d3554;
  --paper:      #ffffff;
  --surface:    #f4f7fb;
  --surface-2:  #e9eff7;
  --border:     #dde5ef;
  --text:       #16233a;
  --muted:      #5d6f89;
  --brass:      #b8862b;
  --brass-lt:   #d6a445;
  --brass-dk:   #8f6712;
  --good:       #1c7a4f;
  --warn:       #9a5b12;

  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 1px 2px rgba(10,22,40,.05), 0 8px 24px -12px rgba(10,22,40,.22);
  --shadow-lg:  0 2px 4px rgba(10,22,40,.06), 0 24px 56px -20px rgba(10,22,40,.32);
  --maxw:       1140px;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4 {
  line-height: 1.18;
  letter-spacing: -0.021em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .55em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.15rem); }
h2 { font-size: clamp(1.45rem, 2.7vw, 2rem); margin-top: 2.1em; }
h3 { font-size: 1.2rem; margin-top: 1.8em; }
p  { margin: 0 0 1.1em; }

a { color: var(--brass-dk); text-decoration: none; }
a:hover { color: var(--brass); text-decoration: underline; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; }
.lede { font-size: 1.16rem; color: var(--muted); }

/* ---------- header ---------- */
.site-header {
  background: var(--ink);
  color: #eaf0f8;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 12px;
  min-height: 66px; flex-wrap: wrap;
}
.brand {
  font-weight: 800; font-size: 1.12rem; letter-spacing: -.02em;
  color: #fff; display: inline-flex; align-items: center; gap: 9px;
  margin-right: auto;
}
.brand:hover { color: #fff; text-decoration: none; }
.brand .rotor { width: 26px; height: 26px; flex: 0 0 26px; color: var(--brass-lt); }
.brand .wordmark { white-space: nowrap; }
.brand .dot { color: var(--brass-lt); }

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  color: #c3d0e2; padding: 7px 11px; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 500; white-space: nowrap;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.site-nav a.active { color: #fff; background: rgba(255,255,255,.12); }

.btn-quote {
  background: var(--brass); color: #10192a !important; font-weight: 700;
  padding: 8px 16px !important; border-radius: var(--radius-sm);
}
.btn-quote:hover { background: var(--brass-lt); color: #10192a !important; text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.25);
  color: #fff; border-radius: 8px; padding: 6px 10px; cursor: pointer;
}

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(184,134,43,.20), transparent 62%),
    linear-gradient(178deg, var(--ink) 0%, var(--ink-2) 62%, var(--ink-3) 100%);
  color: #eef3f9;
  padding: 62px 0 74px;
}
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lede { color: #b9c7da; font-size: 1.2rem; max-width: 54ch; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: start;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--brass-lt); background: rgba(184,134,43,.13);
  border: 1px solid rgba(184,134,43,.3);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 20px;
}

/* ---------- quote card ---------- */
.quote-card {
  background: var(--paper); color: var(--text);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px;
}
.quote-card h2 { margin: 0 0 4px; font-size: 1.28rem; }
.quote-card .sub { color: var(--muted); font-size: .93rem; margin-bottom: 16px; }

.field { margin-bottom: 13px; }
.field label {
  display: block; font-size: .8rem; font-weight: 650; color: var(--ink);
  margin-bottom: 5px; letter-spacing: .01em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px; font-size: .97rem; font-family: inherit;
  color: var(--text); background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184,134,43,.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

.btn {
  display: inline-block; border: 1px solid transparent; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  padding: 12px 22px; border-radius: var(--radius-sm); text-align: center;
}
.btn-primary { background: var(--brass); color: #10192a; }
.btn-primary:hover { background: var(--brass-lt); color: #10192a; text-decoration: none; }
.btn-block { display: block; width: 100%; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.btn-ghost { background: #fff; border-color: var(--border); color: var(--ink); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-dk); text-decoration: none; }

.form-note { font-size: .82rem; color: var(--muted); margin: 11px 0 0; }

/* ---------- stat strip ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin: 0;
}
.stat { background: var(--paper); padding: 20px 18px; }
.stat .n {
  font-size: 1.85rem; font-weight: 800; color: var(--ink);
  letter-spacing: -.03em; line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat .l { font-size: .84rem; color: var(--muted); margin-top: 3px; }

/* ---------- sections ---------- */
.section { padding: 62px 0; }
.section-tint { background: var(--surface); }
.section h2:first-child { margin-top: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.card h3 { margin-top: 0; font-size: 1.08rem; }
.card p:last-child { margin-bottom: 0; }
.card .step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--ink); color: var(--brass-lt);
  font-weight: 800; font-size: .95rem; margin-bottom: 12px;
}

/* ---------- data table ---------- */
.table-scroll {
  overflow-x: auto; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--paper);
}
table.data { width: 100%; border-collapse: collapse; font-size: .93rem; }
table.data th, table.data td {
  padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.data thead th {
  background: var(--surface); font-size: .78rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted); font-weight: 700;
  position: sticky; top: 0; white-space: nowrap;
}
table.data tbody tr:last-child td { border-bottom: 0; }
table.data tbody tr:hover { background: #fbfcfe; }
table.data td.num { text-align: right; font-variant-numeric: tabular-nums; }
.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88em; letter-spacing: .01em;
}

.tag {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 2px 8px; border-radius: 999px;
  background: var(--surface-2); color: var(--muted); white-space: nowrap;
}
.tag-charter { background: #e3f0e9; color: var(--good); }
.tag-tour    { background: #f3ead6; color: var(--warn); }
.tag-medical { background: #f7e4e4; color: #92322f; }
.tag-utility { background: #e5e9f2; color: #3d4d6b; }

.bar { height: 7px; background: var(--surface-2); border-radius: 999px; overflow: hidden; min-width: 70px; }
.bar > i { display: block; height: 100%; background: var(--brass); border-radius: 999px; }

/* ---------- filter bar ---------- */
.filters {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end;
  margin-bottom: 20px;
}
.filters .field { margin-bottom: 0; }
.filters input[type=search], .filters select {
  padding: 9px 12px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit;
  background: #fff; color: var(--text);
}
.filters input[type=search] { min-width: 260px; }

/* ---------- prose ---------- */
.prose { max-width: 760px; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose h2 { padding-top: .2em; }
.prose blockquote {
  margin: 1.6em 0; padding: 2px 0 2px 20px;
  border-left: 3px solid var(--brass); color: var(--muted);
}
.callout {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm); padding: 18px 20px; margin: 1.7em 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--ink); }

.sources { font-size: .9rem; color: var(--muted); }
.sources li { margin-bottom: .35em; }

.qa { border-top: 1px solid var(--border); padding-top: 22px; margin-top: 30px; }
.qa h3 { font-size: 1.05rem; margin-top: 1.5em; }
.qa h3:first-of-type { margin-top: 0; }

/* ---------- disclosure banner ---------- */
.broker-note {
  background: var(--ink-2); color: #c3d0e2; font-size: .87rem;
  padding: 11px 0; text-align: center;
}
.broker-note strong { color: #fff; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink); color: #9db0c8; margin-top: auto;
  padding: 46px 0 30px; font-size: .93rem;
}
.site-footer a { color: #c3d0e2; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  margin: 0 0 12px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 7px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .86rem;
}

/* ---------- utilities ---------- */
.text-muted-2 { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.alert-error {
  background: #fdecec; border: 1px solid #f3c2c2; color: #8c2b28;
  border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 16px;
  font-size: .93rem;
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .hero { padding: 42px 0 50px; }
  .section { padding: 44px 0; }
  .cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
    padding-bottom: 12px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; }
  .filters input[type=search] { min-width: 0; width: 100%; }
  .filters { flex-direction: column; align-items: stretch; }
}

/* ==================================================================
   VIDEO HERO
   Real footage (an AS350 lifting off a mountain pad), self-hosted per
   the fleet no-CDN rule. Cut, graded and compressed with ffmpeg to
   1600x700 / ~1.3MB so it is not an LCP disaster.

   Three fallbacks, all deliberate:
     * poster image paints immediately and IS the LCP element
     * `prefers-reduced-motion` stops the video entirely (a11y)
     * narrow viewports never load it at all (see the media query and
       the JS guard) — no reason to spend a phone's data on decoration
   ================================================================== */
.hero-video {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero-video__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* The sharp tier sits on top of the small one and fades in once it can play
   through, so the upgrade is never a visible cut or a stall. */
.hero-video__media--hi { z-index: 1; opacity: 0; transition: opacity .5s ease; }
.hero-video__media--hi.is-ready { opacity: 1; }
.hero-video::after { z-index: 2; }
.hero-video > .wrap { z-index: 3; }
/* Scrim. Two layers: a vertical gradient for overall legibility and a
   left-weighted wash so the headline column always has contrast whatever
   the frame is doing behind it. */
.hero-video::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(130% 100% at 50% 50%, rgba(6,14,26,.34) 0%, rgba(6,14,26,.46) 58%, rgba(6,14,26,.68) 100%),
    linear-gradient(to bottom, rgba(6,14,26,.78) 0%, rgba(6,14,26,.30) 22%, rgba(6,14,26,.26) 58%, rgba(6,14,26,.88) 100%);
}
.hero-video > .wrap { position: relative; z-index: 2; width: 100%; padding-top: 60px; padding-bottom: 60px; }
.hero-video h1 {
  color: #fff; max-width: 17ch; margin: 0 auto .38em;
  text-shadow: 0 2px 10px rgba(6,14,26,.75), 0 4px 34px rgba(6,14,26,.65);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}
.hero-video .lede {
  color: #d3dde9; font-size: 1.22rem; max-width: 52ch; margin-left: auto; margin-right: auto;
  text-shadow: 0 1px 8px rgba(6,14,26,.85), 0 2px 22px rgba(6,14,26,.6);
}
.hero-copy { max-width: 720px; margin: 0 auto; text-align: center; }

/* Inline trip starter — GETs to /quote/, which prefills from the query
   string. Kept to three fields; the full form lives on /quote/. */
.trip-start {
  margin-top: 30px; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
  border-radius: var(--radius); padding: 15px;
  display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 11px; align-items: end;
  max-width: 640px; margin-left: auto; margin-right: auto; text-align: left;
}
.trip-start label {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: #cfdcec; margin-bottom: 5px;
}
.trip-start input, .trip-start select {
  width: 100%; padding: 11px 12px; font-size: .97rem; font-family: inherit;
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-sm);
  background: rgba(10,22,40,.55); color: #fff;
}
.trip-start input::placeholder { color: #93a6bd; }
.trip-start input:focus, .trip-start select:focus {
  outline: none; border-color: var(--brass-lt);
  box-shadow: 0 0 0 3px rgba(214,164,69,.28);
}
.trip-start option { background: var(--ink); color: #fff; }
.trip-start .btn { padding: 12px 20px; white-space: nowrap; }

.hero-reassure {
  margin-top: 16px; font-size: .88rem; color: #a9bad0;
  display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
}
.hero-reassure span { display: inline-flex; align-items: center; gap: 7px; }
.hero-reassure .tick { color: var(--brass-lt); font-weight: 800; }

/* ---------- trust strip ---------- */
.trust {
  background: var(--ink-2); color: #c8d5e6; padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.trust h3 { color: #fff; font-size: .97rem; margin: 0 0 5px; }
.trust p { margin: 0; font-size: .92rem; line-height: 1.55; }
.trust a { color: var(--brass-lt); }

/* ---------- occasion cards ---------- */
.occasions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.occasion {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; background: var(--paper); overflow: hidden;
  transition: border-color .15s ease, transform .15s ease;
}
.occasion::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--brass-lt), var(--brass));
  opacity: 0; transition: opacity .15s ease;
}
.occasion:hover { border-color: #c8d3e2; transform: translateY(-2px); }
.occasion:hover::before { opacity: 1; }
.occasion h3 { margin: 0 0 8px; font-size: 1.09rem; }
.occasion p { margin: 0 0 12px; font-size: .95rem; color: var(--muted); }
.occasion .who {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brass-dk); margin-bottom: 11px; display: block;
}
.occasion a.more { font-size: .9rem; font-weight: 600; }

@media (max-width: 960px) {
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .occasions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  /* MOBILE HERO
     The wide desktop crop is useless in portrait — `cover` throws away most of
     the frame and leaves a smear of forest. Phones get their own 3:4 crop
     centred on the aircraft (poster, and a 620KB portrait video where the
     connection can take it), and the scrim is banded top and bottom rather
     than laid flat, so the middle of the frame — where the helicopter is —
     stays clear. */
  .hero-video {
    min-height: 92svh;
    background-image: var(--hero-poster-portrait);
    background-size: cover;
    background-position: center 30%;
    align-items: stretch;
  }
  .hero-video__media { object-position: center 30%; }
  /* Hidden by default; the JS adds .has-video only when it actually attaches
     a source, so a phone that never loads one still shows the poster. */
  .hero-video:not(.has-video) .hero-video__media { display: none; }

  /* Hold the scrim dark behind the copy, open a genuine window across the
     middle where the aircraft sits, then close again behind the form. */
  .hero-video::after {
    background:
      linear-gradient(to bottom,
        rgba(6,14,26,.95) 0%,
        rgba(6,14,26,.90) 26%,
        rgba(6,14,26,.72) 40%,
        rgba(6,14,26,.16) 56%,
        rgba(6,14,26,.20) 70%,
        rgba(6,14,26,.72) 84%,
        rgba(6,14,26,.94) 100%);
  }

  .hero-video > .wrap {
    padding-top: 30px; padding-bottom: 30px;
    display: flex; flex-direction: column;
  }
  .hero-copy { display: contents; }

  /* Copy sits in the dark band at the top; the form is pushed to the dark band
     at the bottom by the auto margin, leaving the aircraft visible between. */
  .hero-video .eyebrow { order: 1; align-self: center; margin-bottom: 12px; }
  .hero-video h1      { order: 2; font-size: clamp(1.85rem, 8vw, 2.5rem); margin-bottom: .3em; }
  .hero-video .lede   { order: 3; font-size: 1.02rem; max-width: 34ch; }
  .trip-start         { order: 4; margin-top: auto; }
  .hero-reassure      { order: 5; margin-top: 12px; }

  /* One field and a button on a phone. The occasion select is redundant here —
     /quote/ asks for it properly on the next screen — and dropping it gives
     the aircraft back about 120px of hero. */
  .trip-start {
    grid-template-columns: 1fr auto;
    align-items: end;
    background: rgba(8,17,31,.66);
    border-color: rgba(255,255,255,.22);
    padding: 12px;
  }
  .trip-start .field-occasion { display: none; }
  .hero-reassure { gap: 6px 16px; font-size: .82rem; }

  .occasions { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video__media { display: none; }
}

/* ---------- global reach band ----------
   Says "wherever you are, ask" without claiming coverage we do not have.
   See DEVELOPMENT_PLAN.md: the claim gets stronger when the international
   operator data lands, not before. */
.reach {
  background:
    radial-gradient(900px 420px at 82% 12%, rgba(184,134,43,.16), transparent 62%),
    linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #d6e0ec; padding: 62px 0;
}
.reach h2 { color: #fff; margin-top: 0; }
.reach .lede { color: #b3c2d6; }
.reach-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.region-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 22px;
  list-style: none; margin: 24px 0 0; padding: 0;
}
.region-list li {
  display: flex; align-items: baseline; gap: 9px;
  font-size: .95rem; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.09);
}
.region-list .pin { color: var(--brass-lt); font-size: .8rem; }
.region-list .status {
  margin-left: auto; font-size: .74rem; letter-spacing: .05em; text-transform: uppercase;
  color: #8ba0ba; white-space: nowrap;
}
.region-list .status.live { color: var(--brass-lt); }
.reach-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 28px;
}
.reach-card h3 { color: #fff; margin-top: 0; font-size: 1.15rem; }
.reach-card p { color: #b3c2d6; font-size: .96rem; }
@media (max-width: 900px) {
  .reach-grid { grid-template-columns: 1fr; gap: 32px; }
  .region-list { grid-template-columns: 1fr; }
}

/* ==================================================================
   CENTRED LAYOUT
   Section headers, cards and strips are centred. Long-form article
   prose (.prose) stays left-aligned on purpose: centred paragraphs
   past two or three lines are measurably harder to read because the
   eye loses the left edge on every return sweep.
   ================================================================== */

/* Section headers — direct children of .wrap, so article bodies inside
   .prose are unaffected. */
.section > .wrap > h1,
.section > .wrap > h2,
.section > .wrap > .lede,
.section > .wrap > .form-note {
  text-align: center;
  margin-left: auto; margin-right: auto;
}
.section > .wrap > .lede { max-width: 66ch; }

/* Cards */
.card, .occasion { text-align: center; }
.card .step { margin-left: auto; margin-right: auto; display: flex; }
.occasion .who { text-align: center; }
.occasion::before { display: none; }
.occasion::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  top: 0; width: 46px; height: 3px;
  background: linear-gradient(to right, var(--brass-lt), var(--brass));
  opacity: 0; transition: opacity .15s ease;
}
.occasion:hover::after { opacity: 1; }

/* Trust strip */
.trust-grid { text-align: center; }

/* Global reach band */
.reach-grid { text-align: center; }
.reach .lede { margin-left: auto; margin-right: auto; max-width: 60ch; }
.region-list { max-width: 620px; margin-left: auto; margin-right: auto; }
.region-list li { justify-content: center; }
.region-list .status { margin-left: 10px; }
.reach .form-note { max-width: 62ch; margin-left: auto; margin-right: auto; }
.reach-card { text-align: center; }

/* Q&A: centre the question, leave the answer ranged left for readability */
.qa h3 { text-align: center; }

/* Data tables stay left — a centred table column is unreadable */
table.data th, table.data td { text-align: left; }
table.data td.num, table.data th[style*="right"] { text-align: right; }

/* Directory / index page intros */
.filters { justify-content: center; }
