/* ============================================================
   Townsend for Pierce County Auditor — styles
   Aesthetic: civic, operational, Pacific Northwest.
   Off-white paper, deep evergreen and navy accents.
   Quieter typography. Mono used only where it earns it.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---------- Tokens ---------- */
:root {
  --paper:        #F5F3EC;
  --paper-warm:   #EDEAE0;
  --paper-edge:   #DFD9C7;
  --ink:          #0F1419;
  --ink-soft:     #2A323A;
  --ink-muted:    #525A66;
  --ink-faded:    #7A828D;
  --navy:         #1E3A5F;
  --navy-d:       #142640;
  --evergreen:    #1B4332;
  --evergreen-d:  #102A20;
  --rule-warm:    #C9C2A8;

  --serif:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans:     'Hanken Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:     'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --max:        1140px;
  --max-narrow: 760px;
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);
  --section-y:  clamp(4rem, 9vw, 7rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: 'kern', 'liga', 'calt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--evergreen); text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 2px; }
button { font: inherit; cursor: pointer; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; top: -40px; left: 0;
  background: var(--ink); color: var(--paper); padding: 8px 14px;
  z-index: 100; text-decoration: none;
}
.skip:focus { top: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--paper-edge);
}
.site-header__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}
/* Brand: everything in Fraunces, no mono */
.brand {
  display: flex; align-items: baseline; gap: 0.45rem;
  text-decoration: none; color: var(--ink);
  font-family: var(--serif);
  letter-spacing: -0.015em;
}
.brand__name {
  font-size: 1.45rem; font-weight: 600;
}
.brand__sub {
  font-size: 1rem; font-weight: 400; font-style: italic;
  color: var(--ink-muted);
}
.nav { margin-left: auto; display: flex; gap: 1.5rem; align-items: center; }
.nav a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 0.92rem; font-weight: 500;
}
.nav a:hover { color: var(--navy); }
.nav__cta {
  background: var(--evergreen); color: var(--paper) !important;
  padding: 0.55rem 1.1rem; border-radius: 999px;
  font-weight: 600 !important;
}
.nav__cta:hover { background: var(--evergreen-d); color: var(--paper) !important; }

.nav-toggle { display: none; }

@media (max-width: 820px) {
  .nav-toggle {
    display: block; margin-left: auto;
    background: transparent; border: 1px solid var(--rule-warm);
    padding: 0.4rem 0.8rem; border-radius: 6px;
    font-size: 0.85rem; color: var(--ink);
  }
  .nav { display: none; width: 100%; flex-direction: column; gap: 0.25rem;
         padding: 1rem 0; align-items: flex-start; }
  .nav[data-open='true'] { display: flex; }
  .site-header__inner { flex-wrap: wrap; }
  .nav a { padding: 0.5rem 0; width: 100%; }
}

/* ---------- Layout primitives ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--paper-warm { background: var(--paper-warm); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink p { color: rgba(245, 243, 236, 0.85); }
.section--ink a { color: var(--paper); }
.section--ink a:hover { color: rgba(245, 243, 236, 0.7); }
.section--navy { background: var(--navy); color: var(--paper); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--paper); }
.section--navy p { color: rgba(245, 243, 236, 0.85); }
.section--navy a { color: var(--paper); }
.section--navy a:hover { color: rgba(245, 243, 236, 0.7); }

/* ---------- Quiet section label (replaces eyebrow) ---------- */
.section-label {
  display: block;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--evergreen);
  margin-bottom: 0.5rem;
  letter-spacing: 0.005em;
}
.section--ink .section-label,
.section--navy .section-label { color: var(--paper); opacity: 0.85; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 600; line-height: 1.25; }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.3; letter-spacing: 0; }

.italic { font-style: italic; }
em { font-style: italic; color: var(--evergreen); }
.section--ink em, .section--navy em { color: var(--paper); }

p { margin: 0 0 1.1em; }
p.lede {
  font-family: var(--serif); font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.45; font-weight: 400; color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.section--ink p.lede, .section--navy p.lede { color: rgba(245, 243, 236, 0.92); }

.mono { font-family: var(--mono); font-size: 0.92em; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% 0%, rgba(30, 58, 95, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(27, 67, 50, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; position: relative;
}
@media (max-width: 880px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
  letter-spacing: -0.025em; line-height: 1.02;
  margin-bottom: 1.5rem;
}
.hero__title em { color: var(--evergreen); font-weight: 600; font-style: normal; letter-spacing: -0.005em; }

.hero__lede {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  color: var(--ink-soft); max-width: 32ch;
  margin-bottom: 1.25rem; line-height: 1.4;
}
.hero__body { font-size: 1.05rem; max-width: 56ch; color: var(--ink-soft); margin-bottom: 2rem; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Photo block ---------- */
.portrait {
  position: relative; aspect-ratio: 4 / 5;
  background: var(--paper-warm);
  border: 1px solid var(--paper-edge);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow:
    0 1px 0 0 rgba(15, 20, 25, 0.04),
    0 16px 36px -20px rgba(15, 20, 25, 0.18);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: var(--ink-muted); padding: 2rem; text-align: center;
}
.portrait__caption {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  font-family: var(--serif); font-style: italic;
  font-size: 0.85rem;
  color: var(--paper); background: rgba(15, 20, 25, 0.78);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  letter-spacing: -0.005em;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary { background: var(--evergreen); color: var(--paper); }
.btn--primary:hover { background: var(--evergreen-d); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--navy { background: var(--navy); color: var(--paper); }
.btn--navy:hover { background: var(--navy-d); color: var(--paper); }
.btn--ink-ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn--ink-ghost:hover { background: var(--paper); color: var(--ink); }
.btn--block { display: flex; width: 100%; }

/* ---------- Section heading ---------- */
.section-head { margin-bottom: 3rem; max-width: 62ch; }
.section-head h2 { margin-bottom: 1rem; }

/* ---------- Editorial 2-col ---------- */
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 880px) { .editorial-grid { grid-template-columns: 1fr; } }
.editorial-grid h2 { margin-bottom: 1rem; }

/* ---------- N-up cards ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 880px) { .cards-3 { grid-template-columns: 1fr; } }

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 720px) { .cards-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: var(--evergreen); transform: translateY(-2px); }
.card__num {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem;
  color: var(--evergreen);
  margin-bottom: 1rem; display: block;
}
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
.section--paper-warm .card { background: var(--paper); }
.section--ink .card,
.section--navy .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.section--ink .card h3,
.section--navy .card h3 { color: var(--paper); }
.section--ink .card p,
.section--navy .card p { color: rgba(245, 243, 236, 0.78); }
.section--ink .card__num,
.section--navy .card__num { color: rgba(245, 243, 236, 0.8); }
.section--ink .card:hover,
.section--navy .card:hover { border-color: rgba(255, 255, 255, 0.4); }

/* ---------- Bullet lists, civic style ---------- */
ul.civic {
  list-style: none; padding: 0; margin: 0;
}
ul.civic li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--paper-edge);
  display: flex; gap: 1rem;
}
ul.civic li:last-child { border-bottom: none; }
ul.civic .civic__date {
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  color: var(--evergreen); flex: 0 0 130px;
  padding-top: 0.2rem;
}
ul.civic .civic__body { flex: 1; color: var(--ink-soft); }
ul.civic .civic__body strong { color: var(--ink); display: block; margin-bottom: 0.15rem; }

/* ---------- Pull quote ---------- */
.pullquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  line-height: 1.4; color: var(--ink);
  border-left: 2px solid var(--evergreen);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  max-width: 58ch;
}
.section--ink .pullquote, .section--navy .pullquote { color: var(--paper); border-left-color: var(--paper); }
.pullquote__attr {
  display: block; font-family: var(--serif); font-style: normal;
  font-size: 0.92rem;
  color: var(--ink-faded); margin-top: 1rem;
}
.section--ink .pullquote__attr,
.section--navy .pullquote__attr { color: rgba(245, 243, 236, 0.7); }

/* ---------- Forms ---------- */
.form {
  display: grid; gap: 1.1rem;
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.section--ink .form, .section--navy .form {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.9rem; font-weight: 500;
  color: var(--ink-soft);
}
.section--ink .field label, .section--navy .field label { color: rgba(245, 243, 236, 0.85); }
.field label .req { color: var(--evergreen); }
.section--ink .field label .req, .section--navy .field label .req { color: rgba(245, 243, 236, 0.95); }
.field input, .field textarea, .field select {
  font: inherit;
  padding: 0.7rem 0.85rem;
  background: var(--paper-warm);
  border: 1px solid var(--paper-edge);
  color: var(--ink);
  border-radius: 4px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.section--ink .field input, .section--ink .field textarea, .section--ink .field select,
.section--navy .field input, .section--navy .field textarea, .section--navy .field select {
  background: rgba(245, 243, 236, 0.08);
  border-color: rgba(245, 243, 236, 0.2);
  color: var(--paper);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--evergreen);
  background: var(--paper);
}
.section--ink .field input:focus, .section--ink .field textarea:focus, .section--ink .field select:focus,
.section--navy .field input:focus, .section--navy .field textarea:focus, .section--navy .field select:focus {
  background: rgba(245, 243, 236, 0.12);
  border-color: var(--paper);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }
.field__help { font-size: 0.82rem; color: var(--ink-faded); margin: 0; line-height: 1.45; }
.section--ink .field__help, .section--navy .field__help { color: rgba(245, 243, 236, 0.65); }
.field__check {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.92rem; color: var(--ink-soft);
}
.section--ink .field__check, .section--navy .field__check { color: rgba(245, 243, 236, 0.82); }
.field__check input {
  margin-top: 0.25rem; flex: 0 0 auto;
  width: 1rem; height: 1rem;
  accent-color: var(--evergreen);
}
.honeypot { position: absolute; left: -9999px; }

/* ---------- Action grid (donate/contact/share) ---------- */
.actions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 880px) { .actions-grid { grid-template-columns: 1fr; } }
.action-card {
  background: var(--paper-warm);
  border: 1px solid var(--paper-edge);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
}
.action-card h3 { margin-bottom: 0.6rem; }
.action-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.5rem; }
.action-card .btn { margin-top: auto; }

/* ---------- Donation amount selector ---------- */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
@media (max-width: 540px) { .amount-grid { grid-template-columns: repeat(2, 1fr); } }
.amount-btn {
  padding: 0.85rem 0.5rem;
  background: var(--paper-warm);
  border: 1px solid var(--paper-edge);
  border-radius: 6px;
  font-family: var(--mono); font-weight: 500;
  color: var(--ink); cursor: pointer;
  transition: all 0.15s ease;
}
.amount-btn:hover { border-color: var(--evergreen); }
.amount-btn[aria-pressed='true'] {
  background: var(--evergreen); color: var(--paper); border-color: var(--evergreen);
}

/* ---------- County map block ---------- */
.county-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .county-block { grid-template-columns: 1fr; } }

/* ---------- Limit / disclosure notice ---------- */
.notice {
  border-left: 2px solid var(--navy);
  padding: 0.85rem 1.1rem;
  background: rgba(30, 58, 95, 0.04);
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 1rem 0;
}
.notice strong { color: var(--ink); display: block; margin-bottom: 0.25rem; }
.notice p { margin-bottom: 0; }

/* ---------- Page header ---------- */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--paper-edge);
}

/* ---------- Endorsements ---------- */
.endorsement {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--paper-edge);
  margin-bottom: 2rem;
}
@media (max-width: 760px) { .endorsement { grid-template-columns: 1fr; } }

.endorsement--featured {
  background: var(--paper-warm);
  border-color: var(--evergreen);
  border-left-width: 4px;
}

.endorsement__mark {
  display: flex; align-items: center; justify-content: center;
}
.endorsement__mark img {
  max-width: 220px; max-height: 220px;
  width: auto; height: auto;
  object-fit: contain;
}

.endorsement__seal {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%; max-width: 220px;
  border: 2px solid var(--evergreen);
  border-radius: 50%;
  text-align: center;
  padding: 1rem;
  background: var(--paper);
}
.endorsement__seal-label {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem;
  color: var(--evergreen);
  margin-bottom: 0.3rem;
}
.endorsement__seal-year {
  font-family: var(--serif); font-style: italic;
  font-weight: 500; font-size: 2.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.endorsement__copy h2 { margin-bottom: 0.25rem; }
.endorsement__copy p { color: var(--ink-soft); }
.endorsement__copy p:last-child { margin-bottom: 0; }

.endorsement-group {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin: 3rem 0 1rem;
  font-weight: 500;
}
.endorsement-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--paper-edge);
}
.endorsement-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--paper-edge);
  align-items: baseline;
}
@media (max-width: 720px) {
  .endorsement-row { grid-template-columns: 1fr; gap: 0.25rem; }
}
.endorsement-row strong { color: var(--ink); font-weight: 600; }
.endorsement-row__title { color: var(--ink-muted); font-size: 0.93rem; }
.endorsement-row em {
  color: var(--ink-soft); font-style: italic;
  font-family: var(--serif); font-size: 0.97rem;
  line-height: 1.4;
}
.endorsement-note {
  margin-top: 3rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--ink-faded);
  background: rgba(0, 0, 0, 0.02);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.endorsement-note p { margin: 0; }

.endorsement-cta {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--ink);
  color: var(--paper);
}
.endorsement-cta h3 { color: var(--paper); margin-bottom: 0.75rem; }
.endorsement-cta p { color: rgba(245, 243, 236, 0.85); margin-bottom: 1.5rem; max-width: 60ch; }

/* ---------- Yard sign block ---------- */
.yard-sign-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--paper-edge);
}
@media (max-width: 760px) { .yard-sign-block { grid-template-columns: 1fr; } }
.yard-sign-block__figure { margin: 0; }
.yard-sign-block__figure img {
  width: 100%; height: auto;
  border: 1px solid var(--paper-edge);
  display: block;
}
.yard-sign-block__copy h3 { margin-bottom: 0.75rem; }
.yard-sign-block__copy p { color: var(--ink-soft); margin-bottom: 1.25rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--paper);
  padding: 3.5rem 0 2rem; margin-top: 0;
}
.site-footer a { color: var(--paper); }
.site-footer a:hover { color: rgba(245, 243, 236, 0.7); }
.footer-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; font-weight: 500;
  color: rgba(245, 243, 236, 0.7); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-col a { font-size: 0.92rem; text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.sponsor-id {
  font-size: 0.85rem; line-height: 1.5; color: var(--paper);
  border-left: 2px solid var(--paper); padding-left: 1rem;
  margin-bottom: 1rem;
  opacity: 0.92;
}
.sponsor-id strong { display: block; margin-bottom: 0.25rem; }
.footer-bottom {
  max-width: var(--max); margin: 2.5rem auto 0; padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid rgba(245, 243, 236, 0.15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: rgba(245, 243, 236, 0.6);
}

/* ---------- Utility ---------- */
.mt-2 { margin-top: 1rem; } .mt-4 { margin-top: 2rem; } .mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; }
.text-center { text-align: center; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .nav, .hero__cta, .actions-grid { display: none; }
  body { background: white; color: black; font-size: 11pt; }
  a { color: black; text-decoration: underline; }
}
