/* ==========================================================================
   ADVOCACY SITE TEMPLATE — stylesheet
   Change the whole look by editing the tokens in :root below.
   Every color in this file traces back to one of those tokens.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS  (edit these first)
   -------------------------------------------------------------------------- */
:root {
  /* Brand greens — swap these six values to re-skin the entire site */
  --brand-950: #06251a;
  --brand-800: #0f4d33;
  --brand-700: #146343;
  --brand-600: #1a7d55;
  --brand-500: #22a06b;
  --brand-300: #7fd3ab;
  --brand-100: #dcf3e7;
  --brand-050: #f1faf5;

  /* Accent — used sparingly, for the Donate button only */
  --accent-600: #b8690a;
  --accent-500: #d98324;

  /* Neutrals */
  --ink-900: #10221b;
  --ink-700: #2c473d;
  --ink-500: #5b7a6e;
  --surface: #ffffff;
  --surface-alt: var(--brand-050);
  --surface-sunk: var(--brand-100);
  --line: #d7e6de;

  /* Semantic roles (components reference these, not the raw palette) */
  --bg: var(--surface);
  --bg-alt: var(--surface-alt);
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --primary: var(--brand-600);
  --primary-hover: var(--brand-700);
  --on-primary: #ffffff;
  --border: var(--line);
  --ring: var(--brand-500);

  /* Shape & type */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgb(6 37 26 / 8%), 0 1px 3px rgb(6 37 26 / 6%);
  --shadow-md: 0 6px 16px rgb(6 37 26 / 10%), 0 2px 4px rgb(6 37 26 / 6%);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --measure: 68ch;
  --page: 1160px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

/* Dark mode: only the semantic roles are redefined. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0a1a14;
    --bg-alt: #0e2319;
    --surface-sunk: #12301f;
    --text: #e8f4ee;
    --text-muted: #9db8ac;
    --primary: var(--brand-500);
    --primary-hover: var(--brand-300);
    --on-primary: #06251a;
    --border: #1e4433;
    --shadow-sm: 0 1px 2px rgb(0 0 0 / 40%);
    --shadow-md: 0 6px 20px rgb(0 0 0 / 45%);
  }
}
:root[data-theme="dark"] {
  --bg: #0a1a14;
  --bg-alt: #0e2319;
  --surface-sunk: #12301f;
  --text: #e8f4ee;
  --text-muted: #9db8ac;
  --primary: var(--brand-500);
  --primary-hover: var(--brand-300);
  --on-primary: #06251a;
  --border: #1e4433;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 40%);
  --shadow-md: 0 6px 20px rgb(0 0 0 / 45%);
}

/* --------------------------------------------------------------------------
   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: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 1.5rem + 3.4vw, 4rem); }
h2 { font-size: clamp(1.75rem, 1.3rem + 1.9vw, 2.65rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.45rem); }
p  { margin: 0 0 1rem; max-width: var(--measure); text-wrap: pretty; }

a { color: var(--primary); text-underline-offset: 3px; }
a:hover { color: var(--primary-hover); }
img, svg, video { max-width: 100%; height: auto; display: block; }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--primary); color: var(--on-primary);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

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

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap { width: min(var(--page), 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.eyebrow {
  display: inline-block; margin-bottom: .75rem;
  font-family: var(--font-sans); font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
}
.lede { font-size: 1.15em; color: var(--text-muted); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: var(--on-primary);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; border-radius: 999px;
  font: inherit; font-weight: 650; line-height: 1.2; text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn:hover { --btn-bg: var(--primary-hover); color: var(--btn-fg); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); border-color: var(--border); }
.btn--ghost:hover { --btn-bg: var(--surface-sunk); --btn-fg: var(--text); }
.btn--donate { --btn-bg: var(--accent-500); --btn-fg: #1a1204; }
.btn--donate:hover { --btn-bg: var(--accent-600); --btn-fg: #fff; }
.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.banner {
  background: var(--brand-800); color: #eaf6ef;
  font-size: .875rem; text-align: center; padding: .6rem var(--gutter);
}
.banner a { color: #fff; font-weight: 600; }

.header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 1rem; min-height: 4.5rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text); text-decoration: none; }
.brand__mark { width: 2.25rem; height: 2.25rem; flex: none; }
.brand__name { line-height: 1.1; }
.brand__tag { display: block; font-family: var(--font-sans); font-size: .68rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }

.nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.nav a:not(.btn) {
  padding: .5rem .8rem; border-radius: var(--radius-sm);
  color: var(--text); text-decoration: none; font-weight: 550; font-size: .95rem;
}
.nav a:not(.btn):hover { background: var(--surface-sunk); color: var(--primary); }

.nav-toggle { display: none; margin-left: auto; padding: .55rem; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); cursor: pointer; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; inset: 100% 0 auto; margin: 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--bg); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav[hidden] { display: none; }
  .nav .btn { margin-top: .5rem; }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--bg-alt); }
.hero::after {
  content: ""; position: absolute; inset: auto -10% -60% 55%;
  height: 42rem; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-500) 22%, transparent), transparent 62%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero__title { margin-bottom: 1rem; }
.hero__title em { font-style: normal; color: var(--primary); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.75rem 0 1.25rem; }
.hero__note { font-size: .9rem; color: var(--text-muted); }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.hero__badge {
  position: absolute; left: -1rem; bottom: -1.25rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .9rem 1.1rem; max-width: 15rem;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--primary); line-height: 1; }
.hero__badge span { font-size: .8rem; color: var(--text-muted); }
@media (max-width: 640px) {
  /* Keep the badge inside the frame on narrow screens. */
  .hero__badge { left: 1rem; bottom: 1rem; }
}

/* --------------------------------------------------------------------------
   7. STATS
   -------------------------------------------------------------------------- */
.stats { border-block: 1px solid var(--border); background: var(--bg); }
.stats__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr)); margin: 0; padding: clamp(2rem, 4vw, 3rem) 0; }
.stat { padding: .75rem 1.25rem; border-left: 3px solid var(--brand-300); }
.stat dt { order: 2; font-size: .95rem; color: var(--text-muted); }
.stat dd { order: 1; margin: 0 0 .3rem; font-family: var(--font-display); font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem); font-weight: 600; line-height: 1; color: var(--primary); }
.stat { display: flex; flex-direction: column; }
/* .claim: a short sentence in the band where a number would otherwise go. */
.stat dd.claim { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); line-height: 1.25; }

/* --------------------------------------------------------------------------
   8. CARDS
   -------------------------------------------------------------------------- */
.card {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-300); }
.card__media { aspect-ratio: 16 / 10; background: var(--surface-sunk); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__body p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.card__title { margin: 0; font-size: 1.2rem; }
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: var(--primary); }
.card__meta { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.card__footer { margin-top: auto; padding-top: .9rem; }
.card__icon {
  width: 2.75rem; height: 2.75rem; display: grid; place-items: center;
  border-radius: var(--radius-sm); background: var(--surface-sunk); color: var(--primary);
  margin-bottom: .35rem;
}

.tag {
  display: inline-block; padding: .2rem .6rem; border-radius: 999px;
  background: var(--surface-sunk); color: var(--primary);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   9. HTMX TABS (campaigns)
   -------------------------------------------------------------------------- */
.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; padding: .4rem; background: var(--surface-sunk); border-radius: 999px; width: fit-content; }
.tab {
  padding: .55rem 1.15rem; border: 0; border-radius: 999px;
  background: transparent; color: var(--text); font: inherit; font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.tab:hover { color: var(--primary); }
.tab[aria-selected="true"] { background: var(--primary); color: var(--on-primary); }

.panel { min-height: 18rem; }
.panel__inner { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); align-items: start; }
.panel__media img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.checklist { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .6rem; }
.checklist li { display: flex; gap: .65rem; align-items: flex-start; }
.checklist li::before {
  content: "✓"; flex: none; width: 1.4rem; height: 1.4rem; margin-top: .15rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--surface-sunk); color: var(--primary); font-size: .8rem; font-weight: 700;
}

/* Progress meter */
.meter { margin: 1.25rem 0; }
.meter__track { height: .6rem; border-radius: 999px; background: var(--surface-sunk); overflow: hidden; }
.meter__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand-600), var(--brand-500)); }
.meter__label { display: flex; justify-content: space-between; font-size: .85rem; color: var(--text-muted); margin-top: .4rem; }

/* --------------------------------------------------------------------------
   10. HTMX FEEDBACK (indicators, swaps)
   -------------------------------------------------------------------------- */
.htmx-indicator { opacity: 0; transition: opacity .2s ease; }
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator { opacity: 1; }

.spinner {
  display: inline-block; width: 1.1em; height: 1.1em; vertical-align: -.15em;
  border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* A row-level indicator takes no space until its request is in flight. */
.loading-row { align-items: center; gap: .6rem; color: var(--text-muted); font-size: .9rem; padding: 1rem 0; }
.loading-row.htmx-indicator { display: none; }
.loading-row.htmx-indicator.htmx-request,
.htmx-request .loading-row.htmx-indicator { display: flex; }

/* Fade content in on swap */
.fade-in.htmx-added { opacity: 0; }
.fade-in { opacity: 1; transition: opacity .3s ease-out; }

.skeleton { border-radius: var(--radius); background: linear-gradient(90deg, var(--surface-sunk) 25%, color-mix(in srgb, var(--surface-sunk) 55%, var(--bg)) 50%, var(--surface-sunk) 75%); background-size: 200% 100%; animation: shimmer 1.2s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.skeleton--card { height: 16rem; }

/* Honeypot field: off-screen for people, present in the DOM for bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Shown by site.js when an htmx request fails. */
.notice {
  margin: 1rem 0; padding: .85rem 1.1rem;
  background: var(--surface-sunk); border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--text-muted); max-width: 60ch;
}
/* Same shape, but for a form that could not be sent. */
.notice--error { border-left-color: #c2410c; color: var(--text); }
.skeleton--line { height: .85rem; margin-bottom: .6rem; }

/* --------------------------------------------------------------------------
   11. EVENTS
   -------------------------------------------------------------------------- */
.event { display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem; align-items: center; padding: 1.15rem 0; border-bottom: 1px solid var(--border); }
.event:first-child { border-top: 1px solid var(--border); }
.event__date { text-align: center; min-width: 4.25rem; padding: .5rem .6rem; border-radius: var(--radius-sm); background: var(--surface-sunk); }
.event__month { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); }
.event__day { display: block; font-family: var(--font-display); font-size: 1.6rem; line-height: 1.1; }
.event__body h3 { margin: 0 0 .2rem; font-size: 1.1rem; }
.event__body p { margin: 0; font-size: .9rem; color: var(--text-muted); }
@media (max-width: 640px) {
  .event { grid-template-columns: auto 1fr; }
  .event > .btn { grid-column: 2; justify-self: start; }
}

/* --------------------------------------------------------------------------
   12. FORMS
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .9rem; font-weight: 600; }
.field .hint { font-size: .8rem; color: var(--text-muted); }
.input, .select, .textarea {
  width: 100%; padding: .75rem .9rem;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font: inherit;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--primary); }
.textarea { min-height: 8rem; resize: vertical; }
.field--row { display: flex; align-items: flex-start; gap: .6rem; }
.field--row input { margin-top: .3rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

.callout {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--bg); border: 1px solid var(--border); border-left: 4px solid var(--primary);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.success {
  display: grid; gap: .5rem; place-items: start;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--surface-sunk); border-radius: var(--radius);
}
.success__icon { width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: 50%; background: var(--primary); color: var(--on-primary); font-size: 1.5rem; }

/* --------------------------------------------------------------------------
   13. CTA BAND
   -------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: #f2fbf6; text-align: center;
}
.cta h2 { color: #fff; }
.cta p { margin-inline: auto; color: #d6eee2; }
.cta .btn { --btn-bg: #fff; --btn-fg: var(--brand-800); }
.cta .btn:hover { --btn-bg: var(--brand-100); --btn-fg: var(--brand-950); }
.cta .btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgb(255 255 255 / 45%); }
.cta .btn--ghost:hover { --btn-bg: rgb(255 255 255 / 12%); --btn-fg: #fff; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: var(--measure); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: 1.1rem 0; font-weight: 600; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding-bottom: 1.2rem; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--brand-950); color: #c3ddd0; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer a { color: #eaf6ef; text-decoration: none; }
.footer a:hover { color: var(--brand-300); text-decoration: underline; }
.footer h3 { color: #fff; font-family: var(--font-sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .95rem; }
.footer__brand { display: flex; align-items: center; gap: .7rem; color: #fff; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: .85rem; color: #9dbcac;
}
.social { display: flex; gap: .5rem; }
.social a { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border: 1px solid rgb(255 255 255 / 20%); border-radius: 50%; }
.social a:hover { background: var(--brand-700); border-color: var(--brand-700); }

/* --------------------------------------------------------------------------
   15b. LONG-FORM PROSE
   -------------------------------------------------------------------------- */
.prose { max-width: var(--measure); font-size: 1.075em; }
.prose p { margin-bottom: 1.35rem; }
.prose h3 {
  margin-top: 2.75rem; margin-bottom: .9rem;
  font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem);
}
.prose > :first-child { margin-top: 0; }

/* Pull quote for the sentence the piece turns on. */
.pull {
  margin: 2.25rem 0; padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 4px solid var(--primary);
  font-family: var(--font-display); font-size: 1.3em; line-height: 1.35;
  color: var(--text);
}

/* A line that should land on its own. */
.statement {
  margin: 2rem 0; padding: 1.25rem 1.5rem;
  background: var(--surface-sunk); border-radius: var(--radius);
  font-family: var(--font-display); font-size: 1.35em; line-height: 1.35;
}
.statement strong { color: var(--primary); }

.byline { margin-top: 2.5rem; color: var(--text-muted); font-size: .95rem; }

/* Numbered guidance steps. */
.steps { counter-reset: step; list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1rem; }
.steps li { position: relative; padding-left: 2.75rem; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -.1rem;
  width: 1.9rem; height: 1.9rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--surface-sunk); color: var(--primary);
  font-size: .85rem; font-weight: 700;
}

/* --------------------------------------------------------------------------
   15c. EMPTY STATES (dormant campaigns, empty calendar)
   -------------------------------------------------------------------------- */
.empty {
  display: grid; gap: .75rem; justify-items: center; text-align: center;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--bg); border: 1px dashed var(--border); border-radius: var(--radius);
}
.empty h3 { margin: 0; }
.empty p { margin: 0 auto; max-width: 48ch; color: var(--text-muted); }
.empty__icon {
  width: 3rem; height: 3rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--surface-sunk); color: var(--primary);
}
.empty .btn { margin-top: .5rem; }

/* --------------------------------------------------------------------------
   16. UTILITIES
   -------------------------------------------------------------------------- */
.center { text-align: center; }
.center p { margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }
.mt-lg { margin-top: 2rem; }
.muted { color: var(--text-muted); }
.text-sm { font-size: .9rem; }
