/* ==========================================================================
   HATZOLAH EMS  ·  Award-tier rebuild
   Art direction: a quiet vow. Midnight navy gravity, one signal red heartbeat,
   warm bone paper, editorial serif inscriptions, precise grotesk for action.
   ========================================================================== */

:root {
  /* Ink + ground */
  --ink:        #0d2238;   /* midnight navy, primary text + dark sections */
  --ink-2:      #16314f;   /* slightly lifted navy */
  --ink-soft:   #41607e;   /* secondary body on light */
  --ink-mute:   #7c93a8;   /* tertiary / captions */
  --paper:      #f7f4ee;   /* warm bone, page ground */
  --paper-2:    #efe9df;   /* deeper bone, alternating bands */
  --card:       #ffffff;   /* card surface */
  --line:       #e3ddd1;   /* hairline on light */
  --line-ink:   rgba(255,255,255,0.12); /* hairline on dark */

  /* The single heartbeat */
  --red:        #bf2034;
  --red-deep:   #9a1729;
  --red-soft:   #e8546a;

  /* Placeholder marker */
  --ph-bg:      #fff4d6;
  --ph-border:  #c79a2e;
  --ph-text:    #7a5a07;

  /* Type */
  --serif: 'Fraunces', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --shadow-sm: 0 1px 2px rgba(13,34,56,0.05), 0 8px 24px -12px rgba(13,34,56,0.16);
  --shadow-md: 0 2px 6px rgba(13,34,56,0.06), 0 24px 60px -28px rgba(13,34,56,0.30);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--paper); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.section {
  padding-top: clamp(72px, 11vw, 148px);
  padding-bottom: clamp(72px, 11vw, 148px);
}
.section--tight { padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(56px, 8vw, 104px); }
.band-2 { background: var(--paper-2); }
.band-ink { background: var(--ink); color: var(--paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 460;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h4 { color: var(--paper); }

h1 { font-size: clamp(2.7rem, 7.2vw, 5.2rem); font-weight: 420; }
h2 { font-size: clamp(2rem, 4.4vw, 3.35rem); }
h3 { font-size: clamp(1.32rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.06rem; letter-spacing: 0; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 380;
  color: var(--red);
}
.band-ink h1 em, .band-ink h2 em { color: var(--red-soft); }

p { color: var(--ink-soft); }
.band-ink p { color: rgba(247,244,238,0.74); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--red);
  display: inline-block;
}
.band-ink .eyebrow { color: var(--red-soft); }
.band-ink .eyebrow::before { background: var(--red-soft); }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  line-height: 1.5;
  font-weight: 380;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.band-ink .lede { color: rgba(247,244,238,0.92); }

.body-copy { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); }
.measure { max-width: 38rem; }
.measure-wide { max-width: 48rem; }

/* ---------- Placeholder marker (NON NEGOTIABLE visibility) ---------- */
.placeholder { background: var(--ph-bg); border: 1px dashed var(--ph-border); color: var(--ph-text); padding: 0 6px; border-radius: 3px; font-family: var(--sans); font-size: 0.94em; font-weight: 600; }

.ph {
  display: inline;
  font-family: var(--sans);
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--ph-bg);
  color: var(--ph-text);
  border: 1px dashed var(--ph-border);
  border-radius: 3px;
  padding: 1px 7px;
  white-space: nowrap;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), box-shadow .35s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px -14px rgba(191,32,52,0.7);
}
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 18px 40px -14px rgba(191,32,52,0.8); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(13,34,56,0.28);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.band-ink .btn-ghost { color: var(--paper); border-color: rgba(247,244,238,0.32); }
.band-ink .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; }

.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,244,238,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(247,244,238,0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 76px;
}
.header-logo img { height: 38px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width .3s var(--ease);
}
.header-nav a:hover { color: var(--ink); }
.header-nav a:hover::after { width: 100%; }

.header-right { display: flex; align-items: center; gap: 26px; }

.header-dispatch {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding-left: 26px;
  border-left: 1px solid var(--line);
}
.header-dispatch svg { width: 16px; height: 16px; fill: var(--red); flex: none; }
.header-dispatch .lbl {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
}
.nav-toggle span {
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--gut) 30px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .25s var(--ease);
  z-index: 99;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ink);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .mn-cta { border-bottom: none; margin-top: 8px; }
.mobile-dispatch {
  margin-top: 16px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.mobile-dispatch .ph { font-size: 0.78rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 76px;
  padding-bottom: clamp(56px, 8vw, 110px);
  background: var(--ink);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 38% center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(13,34,56,0.95) 0%, rgba(13,34,56,0.55) 42%, rgba(13,34,56,0.25) 72%, rgba(13,34,56,0.42) 100%),
    linear-gradient(to right, rgba(13,34,56,0.78) 0%, rgba(13,34,56,0.30) 55%, rgba(13,34,56,0) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }

.hero-content { max-width: 56rem; }
.hero-eyebrow { color: var(--red-soft); }
.hero h1 { color: var(--paper); margin-bottom: 26px; }
.hero h1 em { color: var(--red-soft); }
.hero-lede {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 360;
  line-height: 1.55;
  color: rgba(247,244,238,0.86);
  max-width: 40rem;
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-meta {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(247,244,238,0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  align-items: center;
}
.hero-meta .item { display: flex; flex-direction: column; gap: 3px; }
.hero-meta .k {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.5);
}
.hero-meta .v {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--paper);
}

.hero-scroll {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll .line {
  width: 1px; height: 38px;
  background: linear-gradient(rgba(247,244,238,0.6), transparent);
}

/* ==========================================================================
   STAT STRIP
   ========================================================================== */
.stats { background: var(--ink-2); border-top: 1px solid var(--line-ink); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 40px clamp(16px, 3vw, 36px);
  border-right: 1px solid var(--line-ink);
}
.stat:last-child { border-right: none; }
.stat .k {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.52);
  margin-bottom: 14px;
}
.stat .v {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--paper);
}

/* ==========================================================================
   SECTION HEADER (shared)
   ========================================================================== */
.sec-head { margin-bottom: clamp(40px, 6vw, 76px); }
.sec-head.center { text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .measure,
.sec-head.center .measure-wide { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin-bottom: 22px; }

/* ==========================================================================
   WHAT WE DO  ·  editorial grid
   ========================================================================== */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.wwd-card {
  background: var(--card);
  padding: clamp(28px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background-color .3s var(--ease);
}
.wwd-card:hover { background: var(--paper); }
.wwd-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--red);
}
.wwd-card .ic { width: 36px; height: 36px; color: var(--ink); }
.wwd-card .ic svg { width: 100%; height: 100%; }
.wwd-card h3 { font-size: 1.26rem; }
.wwd-card p { font-size: 0.95rem; line-height: 1.68; }

/* ==========================================================================
   MISSION  ·  full-bleed inscription on ink
   ========================================================================== */
.mission { position: relative; overflow: hidden; }
.mission-media { position: absolute; inset: 0; z-index: 0; }
.mission-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.mission-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,34,56,0.97), rgba(13,34,56,0.86));
}
.mission .container { position: relative; z-index: 2; }
.mission-inner { max-width: 52rem; }
.mission-mark {
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--red-soft);
  display: block;
  margin-bottom: 14px;
}
.mission-quote {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.5vw, 2.75rem);
  line-height: 1.32;
  font-weight: 380;
  color: var(--paper);
  letter-spacing: -0.012em;
}
.mission-quote .accent { color: var(--red-soft); font-style: italic; }
.mission-sig {
  margin-top: 32px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.5);
}

/* ==========================================================================
   SPLIT  ·  shared two-column editorial blocks
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.split--media-left .split-media { order: -1; }

.split-figure {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.split-figure.tall img { aspect-ratio: 3 / 4; }
.figure-cap {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(transparent, rgba(13,34,56,0.82));
  font-size: 0.78rem;
  color: rgba(247,244,238,0.82);
}

.feature-list { display: grid; gap: 2px; }
.feature-list li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .tick {
  flex: none;
  width: 22px; height: 22px;
  margin-top: 1px;
  color: var(--red);
}
.feature-list .tick svg { width: 100%; height: 100%; }

.list-head {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 30px 0 6px;
}
.contact-line {
  margin-top: 26px;
  font-size: 0.88rem;
  color: var(--ink-mute);
  line-height: 1.7;
}

/* ==========================================================================
   FORM CARD
   ========================================================================== */
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(26px, 3.6vw, 44px);
  box-shadow: var(--shadow-sm);
}
.form-card.on-ink { background: var(--ink-2); border-color: var(--line-ink); }
.form-card h3 { margin-bottom: 8px; }
.form-card .form-intro { font-size: 0.92rem; margin-bottom: 26px; }

.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.on-ink .field label { color: rgba(247,244,238,0.7); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  padding: 13px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 104px; }
.field input::placeholder,
.field textarea::placeholder { color: #a9b8c4; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(191,32,52,0.1);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2341607e' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.on-ink .field input,
.on-ink .field select,
.on-ink .field textarea {
  background: rgba(247,244,238,0.06);
  border-color: rgba(247,244,238,0.16);
  color: var(--paper);
}
.on-ink .field input::placeholder,
.on-ink .field textarea::placeholder { color: rgba(247,244,238,0.4); }

.form-note {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 16px;
  line-height: 1.6;
}
.on-ink .form-note { color: rgba(247,244,238,0.5); }

/* ==========================================================================
   DONATE
   ========================================================================== */
.give-reasons { display: grid; gap: 4px; margin-top: 8px; }
.give-reasons li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-ink);
}
.give-reasons li:last-child { border-bottom: none; }
.give-reasons .r-ic {
  flex: none;
  width: 30px; height: 30px;
  color: var(--red-soft);
  margin-top: 2px;
}
.give-reasons .r-ic svg { width: 100%; height: 100%; }
.give-reasons strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 460;
  color: var(--paper);
  margin-bottom: 5px;
}
.give-reasons p { font-size: 0.92rem; }

.compliance-line {
  margin-top: 26px;
  font-size: 0.82rem;
  color: rgba(247,244,238,0.5);
  line-height: 1.7;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 4px 0 18px;
}
.amt-btn {
  font-family: var(--serif);
  font-size: 1.05rem;
  padding: 14px 6px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.amt-btn:hover { border-color: var(--ink); }
.amt-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.freq-row { display: flex; gap: 9px; margin-bottom: 24px; }
.freq-row .amt-btn { flex: 1; font-family: var(--sans); font-size: 0.86rem; font-weight: 600; }

.donate-divider {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 4px 0 14px;
}
.donate-give-extra {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.donate-give-extra strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.04rem;
  color: var(--ink);
  margin-bottom: 5px;
}
.donate-give-extra p { font-size: 0.88rem; }

/* ==========================================================================
   COVERAGE
   ========================================================================== */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.coverage-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: clamp(26px, 3vw, 38px);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.coverage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.coverage-card .cc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.coverage-card h3 { font-size: 1.3rem; }
.state-tag {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 2px;
  padding: 3px 8px;
  flex: none;
}
.community-list li {
  font-size: 0.93rem;
  color: var(--ink-soft);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.community-list li:last-child { border-bottom: none; }
.community-list li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}
.community-list li em {
  color: var(--ink-mute);
  font-family: var(--serif);
  font-size: 0.9rem;
}
.coverage-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-mute);
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ==========================================================================
   ABOUT  ·  values
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 30px;
}
.value-item { background: var(--card); padding: 26px; }
.value-item h4 {
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.value-item p { font-size: 0.9rem; line-height: 1.62; }

.about-photo-ph {
  position: relative;
  aspect-ratio: 3 / 4;
  background: repeating-linear-gradient(135deg, var(--paper-2) 0 14px, #e7e0d3 14px 28px);
  border: 1.5px dashed var(--ph-border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 30px;
}
.about-photo-ph .ph-mark { width: 52px; height: 52px; color: var(--ink-mute); }
.about-photo-ph .ph-mark svg { width: 100%; height: 100%; }
.about-photo-ph .ph-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ph-text);
  background: var(--ph-bg);
  border: 1px dashed var(--ph-border);
  border-radius: 3px;
  padding: 6px 12px;
}
.about-photo-ph .ph-sub {
  font-size: 0.78rem;
  color: var(--ink-mute);
  max-width: 22rem;
  line-height: 1.55;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item .c-ic {
  flex: none;
  width: 26px; height: 26px;
  color: var(--red);
  margin-top: 2px;
}
.contact-item .c-ic svg { width: 100%; height: 100%; }
.contact-item .c-k {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 5px;
}
.contact-item .c-v { font-size: 0.98rem; color: var(--ink); }

.emergency-note {
  margin-top: 22px;
  background: var(--ph-bg);
  border: 1.5px solid var(--ph-border);
  border-radius: 4px;
  padding: 20px 22px;
}
.emergency-note strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin-bottom: 8px;
}
.emergency-note p { font-size: 0.86rem; color: var(--ph-text); line-height: 1.62; }
.emergency-note .e911 { font-weight: 700; color: var(--red-deep); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(247,244,238,0.7);
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-ink);
}
.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 30rem; }
.footer-legal {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(247,244,238,0.5);
  line-height: 1.9;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.5);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col span {
  font-size: 0.9rem;
  color: rgba(247,244,238,0.74);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--paper); }
.footer-dispatch {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(191,32,52,0.16);
  border-left: 2px solid var(--red);
  border-radius: 2px;
}
.footer-dispatch .fd-k {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 5px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.8rem;
  color: rgba(247,244,238,0.5);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .wwd-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }
  .header-nav { gap: 22px; }
}

@media (max-width: 920px) {
  .header-nav, .header-dispatch, .header-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--media-left .split-media { order: -1; }
  .split-figure img { aspect-ratio: 16 / 11; }
  .split-figure.tall img { aspect-ratio: 4 / 3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-ink); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero { min-height: 100svh; align-items: center; padding-top: 110px; }
  .hero h1 { font-size: clamp(2.1rem, 8vw, 2.9rem); line-height: 1.14; letter-spacing: -0.02em; }
  .hero-lede { font-size: 1.04rem; margin-bottom: 28px; }
  .hero-meta { gap: 16px 26px; margin-top: 34px; }
  .hero-scroll { display: none; }
}

@media (max-width: 640px) {
  /* placeholder badges must be allowed to wrap so they never force overflow */
  .ph { white-space: normal; word-break: break-word; }
  .stat .v .ph,
  .hero-meta .v .ph { display: inline-block; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wwd-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }
  .freq-row { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .btn { width: 100%; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; }
  h2 { font-size: clamp(1.78rem, 7vw, 2.4rem); }
  .stat { padding: 28px 18px; }
  .stat .v { font-size: 1.15rem; }
}

@media (max-width: 400px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 2.3rem; }
  .hero-meta .item { flex: 0 0 calc(50% - 13px); }
}

/* ==========================================================================
   MULTI-PAGE ADDITIONS
   ========================================================================== */

/* ---------- Emergency call band (every page) ---------- */
.emergency-band {
  background: var(--red);
  color: #fff;
}
.emergency-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}
.emergency-band .eb-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.005em;
}
.emergency-band .eb-text strong { font-weight: 700; }
.emergency-band .eb-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #fff;
  color: var(--red-deep);
  border-radius: 2px;
  padding: 7px 16px;
  transition: transform .25s var(--ease);
}
.emergency-band .eb-call:hover { transform: translateY(-1px); }
.emergency-band .eb-call svg { width: 15px; height: 15px; fill: var(--red-deep); }
.emergency-band .ph {
  background: rgba(255,255,255,0.92);
  color: var(--red-deep);
  border-color: rgba(255,255,255,0.6);
}

/* header sits below the band, both fixed */
.site-shell-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.site-shell-top .site-header {
  position: static;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--line); }

/* header call button */
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid rgba(13,34,56,0.22);
  border-radius: 2px;
  padding: 9px 16px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.header-call:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.header-call:hover svg { fill: var(--paper); }
.header-call svg { width: 15px; height: 15px; fill: var(--red); flex: none; }
.header-call .hc-num { white-space: nowrap; }
.header-call .ph { font-size: 0.7rem; }

/* active nav state */
.header-nav a.is-active { color: var(--ink); }
.header-nav a.is-active::after { width: 100%; }
.mobile-nav a.is-active { color: var(--red); }

.mobile-call {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 600;
}
.mobile-call svg { width: 16px; height: 16px; fill: var(--red); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-top: calc(76px + 44px + clamp(56px, 9vw, 104px));
  padding-bottom: clamp(56px, 9vw, 104px);
}
.page-hero .page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero .page-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(13,34,56,0.96) 0%, rgba(13,34,56,0.82) 48%, rgba(13,34,56,0.62) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-inner { max-width: 46rem; }
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.3rem, 5.4vw, 3.85rem);
  margin-bottom: 20px;
}
.page-hero h1 em { color: var(--red-soft); }
.page-hero .page-hero-lede {
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.9vw, 1.4rem);
  font-weight: 360;
  line-height: 1.55;
  color: rgba(247,244,238,0.84);
  max-width: 38rem;
}
.page-hero .eyebrow { color: var(--red-soft); }
.page-hero .eyebrow::before { background: var(--red-soft); }

/* breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.55);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(247,244,238,0.7); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb span.sep { color: rgba(247,244,238,0.35); }
.breadcrumb span.current { color: var(--red-soft); }

/* ---------- Prose blocks ---------- */
.prose p { font-size: 1rem; line-height: 1.78; color: var(--ink-soft); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { margin: 36px 0 12px; }
.prose h3:first-child { margin-top: 0; }
.measure-prose { max-width: 40rem; }

/* ---------- Coverage / general intro page block ---------- */
.coverage-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.coverage-state {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  padding: clamp(28px, 3.4vw, 42px);
}
.coverage-state .cs-tag {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.coverage-state h3 { font-size: 1.5rem; margin-bottom: 12px; }
.coverage-state p { font-size: 0.95rem; line-height: 1.7; }

/* community placeholder grid (extendable) */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 30px;
}
.community-slot {
  background: var(--card);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.community-slot .cs-mark {
  width: 22px; height: 22px;
  color: var(--red);
}
.community-slot .cs-mark svg { width: 100%; height: 100%; }
.community-slot strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 460;
  color: var(--ink);
}
.community-slot p { font-size: 0.86rem; line-height: 1.6; }
.community-slot .ph { font-size: 0.74rem; }

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
  max-width: 52rem;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 460;
  color: var(--ink);
}
.faq-q .faq-ic {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-q .faq-ic::before,
.faq-q .faq-ic::after {
  content: "";
  position: absolute;
  background: var(--red);
  border-radius: 2px;
}
.faq-q .faq-ic::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .faq-ic::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .faq-ic::after { transform: translateX(-50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a-inner { padding: 0 0 24px; }
.faq-a-inner p { font-size: 0.96rem; line-height: 1.75; color: var(--ink-soft); }
.band-ink .faq-list { border-top-color: var(--line-ink); }
.band-ink .faq-item { border-bottom-color: var(--line-ink); }
.band-ink .faq-q { color: var(--paper); }
.band-ink .faq-a-inner p { color: rgba(247,244,238,0.74); }

/* ---------- CTA band (closing, interior pages) ---------- */
.cta-band {
  background: var(--ink-2);
  border-top: 1px solid var(--line-ink);
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(48px, 7vw, 84px);
}
.cta-band .cta-text { max-width: 34rem; }
.cta-band h2 { color: var(--paper); font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 10px; }
.cta-band p { color: rgba(247,244,238,0.72); font-size: 0.98rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Steps (volunteer process) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.step-card {
  background: var(--card);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-card .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--red);
}
.step-card h3 { font-size: 1.14rem; }
.step-card p { font-size: 0.92rem; line-height: 1.66; }

/* ---------- Generic feature/value cards row (3-up) ---------- */
.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trio-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trio-card .ic { width: 34px; height: 34px; color: var(--red); }
.trio-card .ic svg { width: 100%; height: 100%; }
.trio-card h3 { font-size: 1.2rem; }
.trio-card p { font-size: 0.94rem; line-height: 1.68; }
.band-ink .trio-card { background: var(--ink-2); border-color: var(--line-ink); }
.band-ink .trio-card h3 { color: var(--paper); }

/* ---------- Home feature split image ---------- */
.home-feature .split-figure img { aspect-ratio: 5 / 4; }

/* ---------- Image strip ---------- */
.img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.img-strip figure {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.img-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Responsive: multi-page ---------- */
@media (max-width: 1080px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .header-call { display: none; }
  .trio-grid { grid-template-columns: 1fr; }
  .img-strip { grid-template-columns: 1fr; }
  .page-hero { padding-top: calc(76px + 40px + clamp(48px, 8vw, 80px)); }
}
@media (max-width: 640px) {
  .emergency-band .container { padding-top: 8px; padding-bottom: 8px; }
  .emergency-band .eb-text { font-size: 0.78rem; }
  .emergency-band .eb-call { font-size: 0.78rem; padding: 6px 12px; }
  .coverage-states { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .emergency-band .ph { white-space: normal; }
}

/* ============================================================
   DARK-ON-DARK CONTRAST FIX (added 2026-05-29)
   1) .mobile-nav a {color: ink} was overriding .btn-primary white
      text, leaving Call Dispatch unreadable on red.
   2) .btn-ghost in dark page-hero and cta-band had ink color on
      navy scrim, ratio under 1.5. Switch to paper.
   ============================================================ */
.mobile-nav a.btn-primary,
.mobile-nav .btn-primary {
  color: #fff !important;
  background: var(--red) !important;
  border-color: var(--red) !important;
}
.mobile-nav a.btn-primary:hover,
.mobile-nav .btn-primary:hover {
  background: var(--red-deep) !important;
  color: #fff !important;
}

.page-hero .btn-ghost,
.page-hero-inner .btn-ghost,
.hero-cta .btn-ghost {
  color: var(--paper) !important;
  border-color: rgba(247, 244, 238, 0.5) !important;
}
.page-hero .btn-ghost:hover,
.page-hero-inner .btn-ghost:hover,
.hero-cta .btn-ghost:hover {
  background: var(--paper) !important;
  color: var(--ink) !important;
  border-color: var(--paper) !important;
}

.cta-band .cta-actions .btn-ghost {
  color: var(--paper) !important;
  border-color: rgba(247, 244, 238, 0.5) !important;
}
.cta-band .cta-actions .btn-ghost:hover {
  background: var(--paper) !important;
  color: var(--ink) !important;
}

/* ============================================================
   PHASE 0 — homepage reposition components (2026-06-04)
   ============================================================ */

/* Hero highlight pills */
.hero-pills{list-style:none;display:flex;flex-wrap:wrap;gap:10px;margin:26px 0 0;padding:0;}
.hero-pills li{font:600 0.82rem/1 var(--sans);letter-spacing:0.01em;color:var(--paper);
  background:rgba(255,255,255,0.10);border:1px solid rgba(255,255,255,0.22);
  padding:9px 14px;border-radius:9999px;backdrop-filter:blur(2px);}

/* Trust strip */
.trust-strip{background:var(--ink);color:var(--paper);padding:clamp(22px,3vw,30px) 0;}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(16px,2.4vw,32px);}
.trust-item{display:flex;align-items:center;gap:12px;font:500 0.92rem/1.4 var(--sans);color:rgba(247,244,238,0.86);}
.trust-item strong{color:var(--paper);font-weight:700;}
.trust-item svg{flex:0 0 26px;width:26px;height:26px;color:var(--red-soft);}

/* Card learn-more link + section footer button */
.card-link{font-size:0.88rem;font-weight:600;color:var(--red);margin-top:auto;padding-top:12px;display:inline-block;}
.sec-foot{text-align:center;margin-top:clamp(32px,4vw,48px);}

/* Booking section */
.book-inner{display:grid;grid-template-columns:1.05fr 1fr;gap:clamp(28px,4vw,64px);align-items:start;}
.book-intro .lede{margin-top:14px;}
.book-points{list-style:none;padding:0;margin:24px 0 0;display:grid;gap:12px;}
.book-points li{display:flex;align-items:center;gap:10px;font:500 0.98rem/1.4 var(--sans);color:var(--ink-2);}
.book-points svg{flex:0 0 20px;width:20px;height:20px;color:var(--red);}
.book-callnote{margin-top:22px;font-size:0.9rem;line-height:1.6;color:var(--ink-soft);
  border-left:3px solid var(--red);padding:4px 0 4px 14px;}
.btn-block{width:100%;justify-content:center;margin-top:6px;}
.field .opt,.opt{font-weight:400;color:var(--ink-mute);font-size:0.85em;}
.field select{width:100%;font:500 1rem/1.3 var(--sans);color:var(--ink);background:#fff;
  border:1px solid var(--line);border-radius:6px;padding:13px 14px;appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237c93a8' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat:no-repeat;background-position:right 14px center;}
.field select:focus{outline:none;border-color:var(--ink-2);box-shadow:0 0 0 3px rgba(13,34,56,0.10);}

/* Coverage silo */
.silo-wrap{display:grid;grid-template-columns:1.25fr 1fr;gap:clamp(24px,3vw,44px);align-items:stretch;}
.silo-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(20px,2.5vw,34px);}
.silo-col h3{font:600 1.02rem/1.3 var(--sans);color:var(--ink);margin:0 0 12px;
  padding-bottom:10px;border-bottom:1px solid var(--line);}
.silo-col ul{list-style:none;padding:0;margin:0;display:grid;gap:8px;}
.silo-col a{font-size:0.95rem;color:var(--ink-soft);text-decoration:none;
  display:inline-flex;align-items:center;gap:7px;transition:color .15s var(--ease);}
.silo-col a::before{content:"";width:5px;height:5px;border-radius:9999px;background:var(--red);flex:0 0 5px;}
.silo-col a:hover{color:var(--red);}
.silo-map{min-height:320px;border-radius:6px;overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow-sm);}
.silo-map iframe{display:block;width:100%;height:100%;min-height:320px;}

/* Why us */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(18px,2.2vw,26px);}
.why-card{background:var(--card);border:1px solid var(--line);border-radius:6px;
  padding:26px 22px;box-shadow:var(--shadow-sm);}
.why-ic{width:46px;height:46px;border-radius:9999px;display:flex;align-items:center;justify-content:center;
  background:var(--ink);color:var(--red-soft);margin-bottom:16px;}
.why-ic svg{width:24px;height:24px;}
.why-card h3{font:600 1.08rem/1.3 var(--sans);color:var(--ink);margin:0 0 8px;}
.why-card p{font-size:0.94rem;line-height:1.6;color:var(--ink-soft);margin:0;}

/* Community band */
.community-cards{display:grid;grid-template-columns:1fr 1fr;gap:clamp(20px,2.6vw,32px);margin-top:8px;}
.community-card{background:var(--card);border:1px solid var(--line);border-radius:6px;
  padding:clamp(28px,3vw,40px);box-shadow:var(--shadow-sm);text-align:center;}
.community-card h3{font:520 1.7rem/1.15 var(--serif);color:var(--ink);margin:0 0 10px;}
.community-card p{font-size:1rem;line-height:1.6;color:var(--ink-soft);margin:0 0 22px;max-width:38ch;margin-inline:auto;}

/* Responsive */
@media (max-width:1000px){
  .trust-grid{grid-template-columns:1fr 1fr;}
  .book-inner{grid-template-columns:1fr;}
  .silo-wrap{grid-template-columns:1fr;}
  .silo-map{min-height:280px;}
  .why-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:600px){
  .trust-grid{grid-template-columns:1fr;gap:14px;}
  .silo-grid{grid-template-columns:1fr 1fr;}
  .why-grid{grid-template-columns:1fr;}
  .community-cards{grid-template-columns:1fr;}
}
