@charset "UTF-8";
/*! Justice Restoration Foundation — jrf.css
 *  Brand layer built on top of Bootstrap 5.3 reboot/components.
 *  Breakpoints intentionally match the original design system:
 *  sm 640 · md 768 · lg 1024 · xl 1280
 */

/* ==========================================================================
   1. Tokens
   ========================================================================== */
:root {
  --navy: #0e2036;
  --navy-fg: #fbf8f1;
  --gold: #d09945;          /* accents, fills, rules, gold-on-navy text */
  --gold-ink: #8f6119;      /* gold-toned TEXT on light backgrounds (AA) */
  --gold-fg: #0c1723;
  --cream: #f8f3e8;
  --fg: #0c1723;
  --muted: #4e5661;
  --border: #e1ded7;
  --card: #ffffff;
  --danger-bg: #fef2f2;
  --danger-bd: #fecaca;
  --danger-fg: #991b1b;

  --radius: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-full: 9999px;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(14, 32, 54, 0.06), 0 1px 3px rgba(14, 32, 54, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(14, 32, 54, 0.09), 0 2px 4px -2px rgba(14, 32, 54, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(14, 32, 54, 0.1), 0 4px 6px -4px rgba(14, 32, 54, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(14, 32, 54, 0.28);

  --pad-x: 1rem;
}
@media (min-width: 768px) { :root { --pad-x: 2rem; } }

/* ==========================================================================
   2. Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;           /* belt-and-braces: no sideways scroll, ever */
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  margin: 0;
}
p { margin: 0; }
ul, ol { margin: 0; }

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

/* Narrow-viewport guards: long emails/URLs wrap, and flex/grid children are
   allowed to shrink below their min-content width instead of forcing scroll. */
body { overflow-wrap: anywhere; }
h1, h2, h3, h4, .pullquote { overflow-wrap: break-word; }
.stack > *, .grid > *, .split > *, .feature > *, .media-row > *,
.do-list > *, .card > *, .site-footer__grid > * { min-width: 0; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

button { font: inherit; color: inherit; }

/* Visible, consistent keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.site-header :focus-visible,
.site-footer :focus-visible,
.section--navy :focus-visible,
.hero :focus-visible { outline-color: var(--gold); }

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -100px;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0.5rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.page { display: flex; min-height: 100vh; flex-direction: column; }
.page > main { flex: 1 1 auto; }

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: 80rem;              /* 7xl */
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.wrap--6 { max-width: 72rem; }
.wrap--5 { max-width: 64rem; }
.wrap--4 { max-width: 56rem; }
.wrap--3 { max-width: 48rem; }

.section { padding-block: 5rem; }
.section--tight { padding-block: 4rem; }
.section--cream { background-color: rgba(248, 243, 232, 0.7); }
.section--navy { background-color: var(--navy); color: #fff; }

.stack { display: grid; gap: 4rem; }
.stack--sm { gap: 1.25rem; }

/* Grid utilities — min-width breakpoints mirror the original build */
.grid { display: grid; gap: 1.5rem; }
.grid > * { min-width: 0; }
.grid--tight { gap: 1.25rem; }
.grid--wide { gap: 2rem; }

@media (min-width: 640px) {
  .grid-sm-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .grid-md-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-md-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .grid-lg-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-lg-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-lg-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.center { text-align: center; }
.measure { max-width: 48rem; margin-inline: auto; }
.measure--narrow { max-width: 42rem; margin-inline: auto; }

/* ==========================================================================
   4. Type helpers
   ========================================================================== */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-ink);
  text-transform: uppercase;
}
.eyebrow--onnavy, .section--navy .eyebrow, .hero .eyebrow, .page-hero .eyebrow,
.do-panel .eyebrow { color: var(--gold); }
.eyebrow--sm { font-size: 0.625rem; letter-spacing: 0.25em; }

.lead {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--muted);
}
.lead--center { text-align: center; margin-inline: auto; }

.muted { color: var(--muted); }
.serif { font-family: var(--font-serif); }

.rule { height: 1px; width: 5rem; background: var(--gold); border: 0; margin: 0; }
.rule--sm { width: 4rem; }

/* ==========================================================================
   5. Buttons
   ========================================================================== */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-row--center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn .i { width: 1rem; height: 1rem; flex: none; }

.btn--sm { padding: 0.75rem 1.25rem; }
.btn--xs { padding: 0.5rem 1rem; font-size: 0.6875rem; }

.btn--gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: #c28d3d; }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: #16304d; }

.btn--outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline-navy:hover { background: var(--navy); color: #fff; }

.btn--outline-white { border-color: rgba(255, 255, 255, 0.7); color: #fff; background: transparent; }
.btn--outline-white:hover { background: #fff; color: var(--navy); }

.btn--ghost { color: var(--navy); background: transparent; }
.btn--ghost:hover { color: var(--gold-ink); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.arrow-link .i { width: 0.85rem; height: 0.85rem; transition: transform 0.18s ease; }
a:hover .arrow-link, .arrow-link:hover { color: var(--gold-ink); }
a:hover .arrow-link .i, .arrow-link:hover .i { transform: translateX(2px); }

/* ==========================================================================
   6. Icons
   ========================================================================== */
.i {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.i-sm { width: 1rem; height: 1rem; }
.i-lg { width: 1.75rem; height: 1.75rem; }

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: var(--radius-full);
  background: rgba(14, 32, 54, 0.1);
  color: var(--navy);
  flex: none;
}
.icon-circle--lg { width: 3.5rem; height: 3.5rem; }
.icon-circle--xl { width: 4rem; height: 4rem; }
.icon-circle--gold { background: rgba(208, 153, 69, 0.16); color: var(--navy); }
.icon-circle--goldnavy { background: rgba(208, 153, 69, 0.16); color: var(--gold); }
.icon-circle--center { margin-inline: auto; }

/* ==========================================================================
   7. Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(225, 222, 215, 0.6);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 3.5rem; width: auto; }

.nav-main { display: none; align-items: center; gap: 1.25rem; }
@media (min-width: 1280px) { .nav-main { display: flex; } }

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(14, 32, 54, 0.8);
  padding-block: 0.25rem;
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); }
.nav-link[aria-current="page"] { color: var(--navy); }
.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.4rem;
  height: 2px;
  background: var(--gold);
}
.nav-link .i { width: 0.75rem; height: 0.75rem; }

.nav-drop { position: relative; display: inline-flex; align-items: center; }
/* The panel wrapper carries transparent top padding so the pointer never
   crosses an unhovered gap between trigger and menu — that gap was what made
   the dropdowns feel flaky. */
.nav-drop__panel {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  width: 17rem;
  z-index: 50;
  display: none;
}
.nav-drop__card {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.nav-drop__card a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-drop__card a:hover { background: var(--cream); }
.nav-drop__card a.is-active {
  background: rgba(208, 153, 69, 0.15);
  border-left: 2px solid var(--gold);
}
.nav-drop:hover .nav-drop__panel,
.nav-drop:focus-within .nav-drop__panel { display: block; }

.header-cta { display: flex; align-items: center; gap: 0.5rem; }
.header-cta .btn { display: none; padding: 0.8rem 1rem; font-size: 0.6875rem; }
@media (min-width: 768px) { .header-cta .btn { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
}
@media (min-width: 1280px) { .nav-toggle { display: none; } }
.nav-toggle .i { width: 1.25rem; height: 1.25rem; }

/* Mobile drawer */
.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav-mobile.is-open { display: block; }
@media (min-width: 1280px) { .nav-mobile, .nav-mobile.is-open { display: none; } }
.nav-mobile__inner { display: flex; flex-direction: column; gap: 0.25rem; padding-block: 0.75rem; }
.nav-mobile a.nav-mobile__link {
  border-radius: 0.25rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.nav-mobile a.nav-mobile__link:hover { background: #f1eee7; }
.nav-mobile a.nav-mobile__link.is-active {
  background: rgba(208, 153, 69, 0.15);
  border-left: 2px solid var(--gold);
}
.nav-mobile__sub a.is-active { background: rgba(208, 153, 69, 0.15); color: var(--navy); }
.nav-mobile__sub {
  padding: 0.25rem 0 0.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.1rem;
  border-left: 2px solid rgba(208, 153, 69, 0.4);
  margin-left: 0.75rem;
}
.nav-mobile__sub a {
  padding: 0.4rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: 0.25rem;
}
.nav-mobile__sub a:hover { background: #f1eee7; color: var(--navy); }
.nav-mobile__cta { display: grid; gap: 0.5rem; margin-top: 0.5rem; }
@media (min-width: 640px) { .nav-mobile__cta { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   8. Heroes
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
@media (min-width: 768px) { .hero__media img { object-position: 80% center; } }
@media (min-width: 1024px) { .hero__media img { object-position: right center; } }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(14,32,54,0.88), rgba(14,32,54,0.66) 50%, rgba(14,32,54,0.88));
}
@media (min-width: 768px) {
  .hero__overlay {
    background: linear-gradient(to right, rgba(14,32,54,0.97), rgba(14,32,54,0.88) 45%, rgba(14,32,54,0.45));
  }
}
.hero__inner { padding-block: 6rem; }
@media (min-width: 768px) { .hero__inner { padding-block: 8rem; } }
.hero__body { max-width: 48rem; }
.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 7vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .gold { color: var(--gold); }
.hero .rule { margin-top: 1.5rem; width: 6rem; background: rgba(208, 153, 69, 0.7); }
.hero__lead {
  margin-top: 1.5rem;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.88);
}
@media (min-width: 768px) { .hero__lead { font-size: 1.25rem; } }
.hero .btn-row { margin-top: 2rem; }

/* Interior page hero */
.page-hero {
  border-bottom: 1px solid var(--border);
  background: var(--navy);
  color: #fff;
  padding-block: 5rem;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) { .page-hero h1 { font-size: 3rem; } }
.page-hero .rule { margin: 1.25rem auto 0; }
.page-hero__lead {
  margin: 1.25rem auto 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.85);
}
.page-hero .eyebrow { margin-bottom: 0.75rem; }

.page-body { padding-block: 4rem; }

/* Credibility banner */
.credbar {
  border-bottom: 1px solid var(--border);
  background: var(--navy-fg);
  padding-block: 1.5rem;
}
.credbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
}
.credbar__inner .accent { color: var(--gold-ink); }
.credbar__sep { display: none; width: 1px; height: 1rem; background: rgba(14, 32, 54, 0.2); }
@media (min-width: 640px) { .credbar__sep { display: inline-block; } }

/* ==========================================================================
   9. Section heading
   ========================================================================== */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.sec-head::before, .sec-head::after {
  content: "";
  height: 1px;
  width: 2.5rem;
  flex: 0 1 2.5rem;
  min-width: 1rem;
  background: var(--gold);
}
.sec-head h2, .sec-head h3, .sec-head > span {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-align: center;
  min-width: 0;
  overflow-wrap: break-word;
}
@media (max-width: 400px) {
  .sec-head { gap: 0.6rem; }
  .sec-head h2, .sec-head h3, .sec-head > span { font-size: 1.5rem; }
}
@media (min-width: 768px) { .sec-head h2, .sec-head h3, .sec-head > span { font-size: 2.25rem; } }
.section--navy .sec-head h2, .sec-head--onnavy h2,
.section--navy .sec-head h3, .sec-head--onnavy h3 { color: #fff; }

/* ==========================================================================
   10. Cards
   ========================================================================== */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card--cream { background: rgba(248, 243, 232, 0.6); }
.card--plain { box-shadow: none; }
.card--center { text-align: center; }
.card--pad-lg { padding: 2rem; }
@media (min-width: 768px) { .card--pad-lg { padding: 3rem; } }
.card--gold { border-color: rgba(208, 153, 69, 0.4); }
.card--gold2 { border: 2px solid rgba(208, 153, 69, 0.6); box-shadow: var(--shadow-md); }

.card h3, .card h4 { color: var(--navy); }
.card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.card__title--lg { font-size: 1.25rem; }
.card__body { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted); }

/* Related-content panel */
.related-panel {
  display: grid;
  gap: 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  background: rgba(248, 243, 232, 0.35);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.related-panel__heading {
  min-width: 0;
}

.related-panel__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  color: var(--gold-ink);
}

.related-panel__heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

.related-panel__body {
  min-width: 0;
}

.related-panel__body p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (min-width: 768px) {
  .related-panel {
    grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 2.2fr);
    align-items: center;
    column-gap: 3rem;
    padding: 2.5rem;
  }
}


/* Linked cards (pillars, teasers, initiatives) */
a.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
a.card-link:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--shadow-md); }
a.card-link .pad { padding: 1.5rem; display: flex; flex-direction: column; flex: 1 1 auto; }
a.card-link h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--navy); }
a.card-link:hover h3 { color: var(--gold-ink); }
a.card-link p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted); flex: 1 1 auto; }
a.card-link .arrow-link { margin-top: 1rem; }
a.card-link .thumb { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
a.card-link .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
a.card-link:hover .thumb img { transform: scale(1.03); }
a.card-link .icon-top { width: 2rem; height: 2rem; color: var(--gold); }

/* Initiative card with priority variant */
a.initiative { position: relative; }
a.initiative .pad { padding: 1.5rem; }
a.initiative--priority {
  border-color: rgba(208, 153, 69, 0.6);
  background: var(--navy);
}
a.initiative--priority h3 { color: #fff; }
a.initiative--priority:hover h3 { color: var(--gold); }
a.initiative--priority p { color: rgba(255, 255, 255, 0.82); }
a.initiative--priority .eyebrow { color: var(--gold); }
a.initiative--priority .arrow-link { color: var(--gold); }
a.initiative--priority .icon-circle { background: rgba(208, 153, 69, 0.2); color: var(--gold); }
.priority-flag {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Leader card */
.leader__photo {
  width: 4rem; height: 4rem;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin-bottom: 1rem;
  background: rgba(14, 32, 54, 0.06);
}
a.leader__photolink { display: inline-block; }

/* Bio page */
.bio-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
}
.bio-head img {
  width: 6rem; height: 6rem; flex: none;
  border-radius: var(--radius-full);
  object-fit: cover;
  background: rgba(14, 32, 54, 0.06);
}
.bio-head .initials {
  display: flex; align-items: center; justify-content: center;
  width: 6rem; height: 6rem; flex: none;
  border-radius: var(--radius-full);
  background: rgba(14, 32, 54, 0.1);
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--navy);
}
.bio-head h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.bio-head .role {
  margin-top: 0.25rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold-ink);
}
.bio-body { margin-top: 2.5rem; display: grid; gap: 1.25rem; }
.bio-body p { font-size: 1rem; line-height: 1.7; color: var(--muted); }
.bio-back { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
@media (max-width: 480px) {
  .bio-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
.leader__initials {
  display: flex; align-items: center; justify-content: center;
  width: 4rem; height: 4rem;
  border-radius: var(--radius-full);
  background: rgba(14, 32, 54, 0.1);
  font-family: var(--font-serif);
  font-size: 1.125rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1rem;
}
.leader h4 { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.leader__role {
  margin-top: 0.25rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--gold-ink);
}
.leader p.bio { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted); }



/* ==========================================================================
   11. Figures & galleries
   ========================================================================== */
.figure {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 0;
  background: #fff;
}
.figure img { width: 100%; height: 16rem; object-fit: cover; }
@media (min-width: 768px) { .figure img { height: 24rem; } }
.figure--short img { height: 14rem; }
@media (min-width: 768px) { .figure--short img { height: 18rem; } }
.figure figcaption {
  border-top: 1px solid var(--border);
  background: rgba(248, 243, 232, 0.6);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted);
}

.gallery { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.gallery__btn {
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; overflow: hidden;
}
.gallery__btn img {
  width: 100%; height: 11rem; object-fit: cover;
  transition: transform 0.5s ease;
}
@media (min-width: 768px) { .gallery__btn img { height: 13rem; } }
.gallery figure:hover .gallery__btn img { transform: scale(1.05); }
.gallery figcaption {
  border-top: 1px solid var(--border);
  background: rgba(248, 243, 232, 0.6);
  padding: 0.5rem 0.75rem;
  text-align: center;
  font-size: 0.6875rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1080;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 1rem;
}
.lightbox.is-open { display: flex; }
@media (min-width: 640px) { .lightbox { padding: 2rem; } }
.lightbox figure { margin: 0; display: flex; flex-direction: column; align-items: center; max-width: 64rem; }
.lightbox img { max-height: 80vh; width: auto; border-radius: var(--radius); object-fit: contain; }
.lightbox figcaption {
  margin-top: 0.75rem; max-width: 48rem; text-align: center;
  font-size: 0.875rem; font-style: italic; color: rgba(255, 255, 255, 0.85);
}
.lightbox__btn {
  position: absolute;
  border: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox__close { right: 1rem; top: 1rem; }
.lightbox__prev { left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 0.5rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 640px) {
  .lightbox__prev { left: 1.5rem; }
  .lightbox__next { right: 1.5rem; }
}

/* ==========================================================================
   12. Two Systems table
   ========================================================================== */
.two-systems {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.two-systems__scroll { display: none; }
@media (min-width: 768px) { .two-systems__scroll { display: block; overflow-x: auto; } }
.two-systems table { width: 100%; border-collapse: collapse; text-align: left; font-size: 0.875rem; }
.two-systems thead tr { background: var(--navy); color: #fff; }
.two-systems th {
  padding: 1rem;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  vertical-align: top;
}
.two-systems th.is-gold { color: var(--gold); }
.two-systems th .sub {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
}
.two-systems th.is-gold .sub { color: rgba(208, 153, 69, 0.8); }
.two-systems td { padding: 1rem; vertical-align: top; }
.two-systems tbody tr:nth-child(odd) { background: #fff; }
.two-systems tbody tr:nth-child(even) { background: rgba(248, 243, 232, 0.6); }
.two-systems td.label { font-weight: 500; color: var(--navy); }
.two-systems td.civil { color: var(--muted); }
.two-systems td.crim { font-weight: 600; color: var(--navy); }
.two-systems--dense th, .two-systems--dense td { padding: 0.75rem; }

.two-systems__stack { display: block; }
@media (min-width: 768px) { .two-systems__stack { display: none; } }
.two-systems__stackhead { background: var(--navy); padding: 0.75rem 1rem; }
.two-systems__stackhead .t {
  font-family: var(--font-serif); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--gold);
}
.two-systems__stackhead .s {
  margin-top: 0.25rem; font-size: 0.625rem; font-weight: 500;
  letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.7);
}
.two-systems__row { padding: 1rem; border-top: 1px solid var(--border); }
.two-systems__row:nth-child(odd) { background: #fff; }
.two-systems__row:nth-child(even) { background: rgba(248, 243, 232, 0.6); }
.two-systems__row .q { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--navy); }
.two-systems__row dl {
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.two-systems__row dt {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--muted); padding-top: 0.2rem;
}
.two-systems__row dt.crim { color: var(--gold-ink); }
.two-systems__row dd { margin: 0; color: var(--muted); }
.two-systems__row dd.crim { font-weight: 600; color: var(--navy); }
.two-systems__foot {
  border-top: 1px solid var(--border);
  background: rgba(248, 243, 232, 0.6);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted);
}
.two-systems-frame { border-radius: var(--radius-lg); background: rgba(255,255,255,0.05); padding: 0.5rem; box-shadow: var(--shadow-xl); }

/* ==========================================================================
   13. Feature blocks
   ========================================================================== */
.feature { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .feature { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.feature h2 {
  margin-top: 1rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
}
@media (min-width: 768px) { .feature h2 { font-size: 3rem; } }
.feature h2 .gold { color: var(--gold); }
.feature__lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}
@media (min-width: 768px) { .feature__lead { font-size: 1.125rem; } }
.feature .rule { margin-top: 1.25rem; background: rgba(208, 153, 69, 0.7); }
.feature .btn-row { margin-top: 2rem; }

.pullquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
}
@media (min-width: 768px) { .pullquote { font-size: 1.875rem; } }

.do-panel {
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
  padding: 2.5rem;
}
@media (min-width: 768px) { .do-panel { padding: 3.5rem; } }
.do-panel h3 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 700; line-height: 1.2; }
@media (min-width: 768px) { .do-panel h3 { font-size: 2.25rem; } }
.do-panel__lead { margin-top: 1.5rem; max-width: 28rem; font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.82); }
.do-list { display: grid; gap: 1rem; }
.do-link {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.do-link:hover { border-color: var(--gold); background: rgba(255, 255, 255, 0.1); }
.do-link .t { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: #fff; }
.do-link:hover .t { color: var(--gold); }
.do-link .n { font-size: 0.75rem; color: rgba(255, 255, 255, 0.68); }
.do-link .i { width: 1rem; height: 1rem; color: var(--gold); transition: transform 0.18s ease; }
.do-link:hover .i { transform: translateX(2px); }

/* Stats */
.stat__value { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 700; color: var(--gold); }
.stat__label { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.85); }

/* Split media panel */
.split {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(248, 243, 232, 0.6);
  align-items: center;
}
@media (min-width: 768px) { .split { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.split figure { margin: 0; height: 100%; }
.split figure img { width: 100%; height: 100%; min-height: 16rem; object-fit: cover; }
.split__body { padding: 2rem; }
@media (min-width: 768px) { .split__body { padding: 3rem; } }

/* Media object row */
.media-row { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 768px) { .media-row { grid-template-columns: auto minmax(0, 1fr); } }

/* Contact: details rail + form */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: minmax(0, 1fr); }
.contact-grid > * { min-width: 0; }
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); align-items: start; }
}
.contact-rail { display: grid; gap: 1.5rem; align-content: start; }
.contact-block { display: flex; align-items: flex-start; gap: 1rem; }
.contact-block > div { min-width: 0; }

/* ==========================================================================
   14. Forms
   ========================================================================== */
.field {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg);
  font-family: inherit;
}
.field::placeholder { color: #8a919b; }
.field:focus { border-color: var(--navy); outline: 3px solid rgba(208, 153, 69, 0.5); outline-offset: 1px; }

.form-note { margin-top: 0.5rem; font-size: 0.6875rem; line-height: 1.5; color: var(--muted); }
.form-label { font-size: 0.75rem; font-weight: 600; color: var(--navy); display: block; }

.honeypot {
  position: absolute !important;
  left: -10000px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.alert-error {
  display: flex; align-items: flex-start; gap: 0.5rem;
  border: 1px solid var(--danger-bd);
  background: var(--danger-bg);
  color: var(--danger-fg);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.alert-error .i { width: 1rem; height: 1rem; margin-top: 0.15rem; }

.success-box {
  display: flex; align-items: flex-start; gap: 0.75rem;
  border: 1px solid rgba(208, 153, 69, 0.4);
  background: rgba(248, 243, 232, 0.6);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.25rem;
}
.success-box .i { color: var(--gold-ink); margin-top: 0.15rem; width: 1.25rem; height: 1.25rem; }
.success-box .t { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--navy); }
.success-box p { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted); }

/* Survey */
.survey { border: 2px solid rgba(208, 153, 69, 0.6); border-radius: var(--radius-lg); background: #fff; padding: 1.5rem; box-shadow: var(--shadow-md); }
@media (min-width: 768px) { .survey { padding: 2rem; } }
.survey h3, .petition h3 {
  margin-top: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
}
@media (min-width: 768px) { .survey h3, .petition h3 { font-size: 1.5rem; } }
.survey__options { display: grid; gap: 0.5rem; margin-top: 1.25rem; }
@media (min-width: 640px) { .survey__options { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.survey__opt {
  border: 1px solid rgba(14, 32, 54, 0.4);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.survey__opt:hover { border-color: var(--navy); }
.survey__opt[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.survey__capture { margin-top: 1.25rem; }
.survey__capture[hidden] { display: none; }
.survey__inputs { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
@media (min-width: 640px) { .survey__inputs { flex-direction: row; } .survey__inputs .field { flex: 1 1 auto; } }

/* Petition */
.petition { border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; padding: 1.5rem; box-shadow: var(--shadow-sm); }
@media (min-width: 768px) { .petition { padding: 2rem; } }
.petition blockquote {
  margin: 1rem 0 0;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
}
.petition__form { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .petition__form { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.petition__form .full { grid-column: 1 / -1; }

/* Embedded third-party form */
.embed-frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.embed-frame iframe { width: 100%; max-width: 100%; border: 0; display: block; }
.embed-frame--plain { border: 0; border-radius: 0; background: transparent; box-shadow: none; }

/* Newsletter (footer) */
.newsletter {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}
.newsletter input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  color: #fff;
  font-family: inherit;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.6); }
.newsletter input:focus { outline: none; }
.newsletter:focus-within { outline: 3px solid var(--gold); outline-offset: 2px; }
.newsletter button {
  display: flex; align-items: center; justify-content: center;
  border: 0; background: var(--gold); color: var(--navy);
  padding-inline: 0.85rem; cursor: pointer;
}
.newsletter button .i { width: 1rem; height: 1rem; }

/* ==========================================================================
   15. Accordion (FAQ)
   ========================================================================== */
.acc { border-top: 1px solid var(--border); }
.acc__item { border-bottom: 1px solid var(--border); }
.acc__btn {
  display: flex; width: 100%; gap: 1rem;
  align-items: center; justify-content: space-between;
  background: none; border: 0; cursor: pointer;
  padding: 1rem 0;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.acc__btn:hover { color: var(--gold-ink); }
.acc__btn .i { width: 1rem; height: 1rem; transition: transform 0.2s ease; flex: none; }
.acc__btn[aria-expanded="true"] .i { transform: rotate(180deg); }
.acc__panel { padding: 0 0 1rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.acc__panel[hidden] { display: none; }
.acc__panel a { font-weight: 700; color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.acc__panel a:hover { color: var(--gold-ink); }

/* ==========================================================================
   16. Modal (Two Systems)
   ========================================================================== */
.modal-backdrop-jrf {
  position: fixed; inset: 0; z-index: 1070;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(14, 32, 54, 0.72);
  backdrop-filter: blur(4px);
  padding: 1rem;
}
.modal-backdrop-jrf.is-open { display: flex; }
.modal-card {
  position: relative;
  width: 100%;
  max-width: 64rem;
  max-height: 90vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  background: var(--cream);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) { .modal-card { padding: 2.5rem; } }
.modal-card h3 { margin-top: 0.5rem; font-size: 1.875rem; font-weight: 700; color: var(--navy); }
@media (min-width: 768px) { .modal-card h3 { font-size: 2.25rem; } }
.modal-close {
  position: absolute; right: 1rem; top: 1rem;
  border: 0; background: transparent; color: var(--navy);
  border-radius: var(--radius); padding: 0.5rem; cursor: pointer;
  line-height: 0;
}
.modal-close:hover { background: rgba(14, 32, 54, 0.1); }
body.is-locked { overflow: hidden; }

/* ==========================================================================
   17. Store
   ========================================================================== */
.product .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
  padding: 1rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product .thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.product:hover .thumb img { transform: scale(1.03); }
.product .pad { padding: 1.25rem; }
.product h3 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--navy); }
.product .price { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 600; color: var(--muted); }
.product .tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  background: var(--gold); color: var(--navy);
  padding: 0.5rem 0.75rem;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em;
}
.product .tag .i { width: 0.85rem; height: 0.85rem; }

/* ==========================================================================
   18. Prose (legal pages)
   ========================================================================== */
.prose { max-width: 48rem; color: var(--muted); overflow-wrap: anywhere; }
.prose > * + * { margin-top: 1rem; }
.prose p { font-size: 0.875rem; line-height: 1.7; }
.prose h2, .prose h3 {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}
.prose ul { padding-left: 1.25rem; }
.prose li { font-size: 0.875rem; line-height: 1.7; margin-top: 0.5rem; }
.prose a { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-ink); }

.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.bullets li { display: flex; gap: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted); }
.bullets .i { width: 1rem; height: 1rem; margin-top: 0.28rem; color: var(--gold-ink); flex: none; }
.bullets .dot { color: var(--gold-ink); font-weight: 700; flex: none; }

.disc { padding-left: 1.25rem; }
.disc li { font-size: 0.875rem; line-height: 1.7; color: var(--muted); margin-top: 0.5rem; }

/* Inline link inside body copy */
.link { color: var(--navy); font-weight: 700; }
.link:hover { color: var(--gold-ink); }
.link .i { width: 0.8rem; height: 0.8rem; display: inline-block; vertical-align: -1px; }

/* ==========================================================================
   19. Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: var(--navy-fg); }
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .fc-4 { grid-column: span 4; }
  .fc-2 { grid-column: span 2; }
  .fc-3 { grid-column: span 3; }
}
.site-footer img.footer-logo { height: 3.5rem; width: auto; filter: brightness(0) invert(1); }
.site-footer p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.75); }
.site-footer h2 {
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255, 255, 255, 0.82); }
.footer-links a:hover { color: var(--gold); text-decoration: underline; }
.footer-badge { margin-top: 0.75rem; font-size: 0.875rem; }
.footer-badge .k { font-weight: 600; color: var(--gold); }
.footer-badge .sep { margin-inline: 0.5rem; color: rgba(255, 255, 255, 0.4); }
.social { display: flex; gap: 0.75rem; }
.social a {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.social a:hover { background: var(--gold); color: var(--navy); }
.social .i { width: 1rem; height: 1rem; }
.site-footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.site-footer__legal {
  padding-block: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__legal p + p { margin-top: 0.5rem; max-width: 64rem; }
.site-footer__barinner {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
@media (min-width: 768px) { .site-footer__barinner { flex-direction: row; text-align: left; } }
.site-footer__barinner nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.site-footer__barinner a:hover { color: var(--gold); text-decoration: underline; }

/* ==========================================================================
   20. 404
   ========================================================================== */
.notfound { display: flex; flex: 1 1 auto; align-items: center; justify-content: center; padding: 5rem 1rem; }
.notfound__inner { max-width: 32rem; text-align: center; }
.notfound__code { margin-top: 1rem; font-family: var(--font-serif); font-size: 4.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.notfound h2 { margin-top: 1.25rem; font-size: 1.5rem; font-weight: 600; color: var(--navy); }
.notfound .rule { margin: 1.25rem auto 0; }

/* ==========================================================================
   21. Print
   ========================================================================== */
@media print {
  .site-header, .site-footer, .btn-row, .nav-toggle, .embed-frame, .lightbox, .modal-backdrop-jrf { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .page-hero, .section--navy, .do-panel { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}


/* ==========================================================================
   22. Campaign pages (healthcare / expungement)
   ========================================================================== */
.callout {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .callout { padding: 2rem; } }
.callout__inner { display: flex; gap: 1.25rem; }
.callout__bar {
  margin-top: 0.25rem;
  width: 4px;
  flex: none;
  align-self: stretch;
  border-radius: var(--radius-full);
  background: var(--gold);
}
.callout__body { min-width: 0; }
.callout p { margin-top: 0.75rem; font-size: 1rem; line-height: 1.7; color: rgba(12, 23, 35, 0.8); }
.callout .eyebrow + p { margin-top: 0; }

.casegrid {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
  color: #fff;
}
@media (min-width: 768px) { .casegrid { padding: 3rem 2.5rem; } }
.casegrid h2 { margin-top: 1.25rem; font-size: 1.875rem; font-weight: 700; color: #fff; }
@media (min-width: 768px) { .casegrid h2 { font-size: 2.25rem; } }
.casegrid .rule { margin-top: 1rem; width: 4rem; height: 2px; }
.casegrid__lead {
  margin-top: 0.75rem; max-width: 48rem;
  font-size: 0.875rem; line-height: 1.7; color: rgba(255, 255, 255, 0.7);
}

.case-card {
  display: flex; flex-direction: column; height: 100%; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow-md);
}
.case-card__media {
  display: flex; align-items: center; justify-content: center;
  height: 18rem; flex: none; overflow: hidden;
  border-bottom: 1px solid var(--border); background: var(--cream);
}
.case-card__media picture { display: block; width: 100%; height: 100%; }
.case-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.case-card__media .ph {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.22em; color: var(--muted);
  text-align: center; padding: 1rem;
}
.case-card__body { padding: 1.5rem; }
.case-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.case-card p { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted); }

.quote-ribbon {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(248, 243, 232, 0.6);
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) { .quote-ribbon { padding: 3rem; } }
.quote-ribbon__row {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  max-width: 56rem; margin-inline: auto; text-align: center;
}
@media (min-width: 768px) {
  .quote-ribbon__row { flex-direction: row; gap: 2.5rem; text-align: left; }
}
.quote-ribbon__face {
  width: 8rem; height: 8rem; flex: none;
  border-radius: var(--radius-full);
  border: 4px solid rgba(208, 153, 69, 0.4);
  object-fit: cover;
  background: rgba(14, 32, 54, 0.06);
}
.quote-ribbon blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.5rem; font-style: italic; font-weight: 700; line-height: 1.375; color: var(--navy);
}
@media (min-width: 768px) { .quote-ribbon blockquote { font-size: 1.875rem; } }
.quote-ribbon__cite {
  margin-top: 1.25rem;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold-ink);
}
.quote-ribbon__cover { width: 8rem; flex: none; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.quote-ribbon__cover img { width: 100%; height: auto; border-radius: var(--radius); }
@media (min-width: 768px) { .quote-ribbon__cover { width: 9rem; } }

.fineprint {
  margin-top: 1.5rem; text-align: center;
  font-size: 0.75rem; line-height: 1.7; color: var(--muted);
}

/* Book grid — a.card-link only targets anchors, but the last "forthcoming"
   book has no purchase link and renders as a plain div, so it needs its own
   selector to pick up the same white card background and layout. */
.card-link.book, div.card-link.book {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
a.card-link.book:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.book--noclick { cursor: default; }
.book { display: flex; flex-direction: column; height: 100%; }
.book__cover {
  display: flex; align-items: center; justify-content: center;
  height: 11rem; flex: none; background: rgba(248, 243, 232, 0.5);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
}
.book__cover picture { display: block; height: 100%; }
.book__cover img { height: 100%; width: auto; object-fit: contain; }
.book__cover .i { width: 5rem; height: 5rem; color: rgba(14, 32, 54, 0.3); }
.book__body { display: flex; flex: 1 1 auto; flex-direction: column; padding: 1.5rem; }
.book h3 { font-family: var(--font-serif); font-size: 1.125rem; font-weight: 700; color: var(--navy); }
.book__author {
  margin-top: 0.25rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gold-ink);
}
.book p.note { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted); }

/* Book / product cover figure */
.figure--cover { max-width: 26rem; margin-inline: auto; border: 0; box-shadow: none; background: none; }
.figure--cover img {
  height: auto; width: 100%; object-fit: contain;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}

/* Homepage spotlight band */
.hero__inner--tight { padding-block: 4rem; }
@media (min-width: 768px) { .hero__inner--tight { padding-block: 5rem; } }
.spotlight-head {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-ink);
  text-align: left;
}
@media (min-width: 768px) { .spotlight-head { font-size: 1.1875rem; } }
.focus-card .thumb { aspect-ratio: 16 / 9; }
.focus-card h3 { font-size: 1rem; }
@media (min-width: 768px) { .focus-card h3 { font-size: 1.125rem; } }

/* Anchor offset for the sticky header */
[id="donate"], [id="filing"], [id="faq"] { scroll-margin-top: 6rem; }
