/* =========================================================================
   Homer Township Republican Organization — htro.org
   Design system. Civic-registry aesthetic: official, ruled, seal-anchored.
   Display: Oswald (condensed, ballot/signage). Body: Public Sans (USWDS).
   Palette derived from the HTRO seal. Not a candidate campaign look.
   ========================================================================= */

:root {
  /* Palette (from the seal) */
  --navy:        #0a1f44;
  --navy-deep:   #071634;
  --crimson:     #a6192e;
  --crimson-dk:  #7d1222;
  --gold:        #c9a227;
  --gold-soft:   #e5cd78;
  --paper:       #fbfaf7;
  --paper-2:     #f2efe7;
  --ink:         #14181f;
  --ink-soft:    #3d4551;
  --rule:        #d8d2c2;
  --rule-navy:   rgba(10, 31, 68, 0.16);

  /* Type */
  --display: "Oswald", "Arial Narrow", sans-serif;
  --body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Scale */
  --step--1: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.6rem, 1.4rem + 1vw, 2.25rem);
  --step-3:  clamp(2.1rem, 1.7rem + 2vw, 3.4rem);
  --step-4:  clamp(2.8rem, 2rem + 4vw, 5rem);

  --maxw: 1140px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
}

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

/* navy so iOS overscroll below the navy footer matches it (no cream flash) */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--navy-deep); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin: 0 0 0.4em;
  text-transform: uppercase;
}
h1 { font-size: var(--step-4); font-weight: 700; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: 0.03em; }

p { margin: 0 0 1rem; max-width: 66ch; }
a { color: var(--crimson); text-underline-offset: 3px; }
a:hover { color: var(--crimson-dk); }

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

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}
/* dark surfaces need the light indicator */
.site-header :focus-visible, .site-footer :focus-visible,
.section--navy :focus-visible, .slate-head :focus-visible,
.chairman-hero :focus-visible {
  outline-color: var(--gold);
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: var(--step--1);
  color: var(--crimson);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; background: var(--gold);
}

/* ---- Seal (CSS placeholder — swap for real logo file) ---- */
.seal {
  --d: 96px;
  width: var(--d); height: var(--d);
  border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 42%, var(--navy) 0 46%, transparent 47%),
    var(--crimson);
  border: 3px solid var(--gold);
  box-shadow: inset 0 0 0 6px var(--crimson-dk), 0 2px 10px rgba(7,22,52,0.35);
  color: var(--gold-soft);
  font-family: var(--display);
  text-align: center;
  flex: 0 0 auto;
  position: relative;
}
.seal span {
  font-size: calc(var(--d) * 0.26);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
  line-height: 0.9;
}
.seal--lg { --d: 168px; }
.seal--sm { --d: 52px; }

/* Real seal image — round-crops the square corners so it sits clean on any bg */
.seal-img {
  display: block; border-radius: 50%; object-fit: cover;
  width: 46px; height: 46px; flex: 0 0 auto;
  box-shadow: 0 1px 4px rgba(7,22,52,0.3);
}
.seal-img--lg { width: 170px; height: 170px; box-shadow: 0 4px 18px rgba(7,22,52,0.45); }
.seal-img--sm { width: 42px; height: 42px; }

/* =========================  HEADER  ========================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  color: var(--paper);
}
.site-header .bar {
  display: flex; align-items: center; gap: 1rem;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; color: inherit; margin-right: auto; }
.brand .name { display: flex; flex-direction: column; line-height: 1; }
.brand .name b {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.4rem); letter-spacing: 0.03em; color: var(--paper);
}
.brand .name small {
  font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-soft); margin-top: 0.28rem; font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 0.2rem; }
.nav a {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.92rem; font-weight: 500;
  color: var(--paper); text-decoration: none;
  padding: 0.55rem 0.7rem; border-radius: 2px;
}
.nav a:hover { background: rgba(255,255,255,0.1); color: var(--gold-soft); }
.nav a[aria-current="page"] { color: var(--gold); box-shadow: inset 0 -2px 0 var(--gold); }

.nav-toggle {
  display: none; background: transparent; border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--paper); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.5rem 0.8rem; border-radius: 2px; cursor: pointer; font-size: 0.85rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-deep); border-bottom: 3px solid var(--gold);
    padding: 0.4rem var(--gutter) 0.8rem;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.8rem 0.4rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* =========================  HERO  ========================= */
.hero {
  background:
    linear-gradient(180deg, rgba(7,22,52,0.94), rgba(7,22,52,0.9)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 22px),
    var(--navy);
  color: var(--paper);
  border-bottom: 4px solid var(--crimson);
  padding: clamp(2.6rem, 6vw, 5.5rem) 0;
}
.hero .inner { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.2rem, 4vw, 2.6rem); align-items: center; }
.hero h1 { color: var(--paper); margin-bottom: 0.3em; }
.hero .tag {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gold-soft); font-size: var(--step-1); font-weight: 500; margin: 0 0 0.9rem;
}
.hero .sub { color: rgba(251,250,247,0.86); max-width: 54ch; }
.hero .chair {
  margin-top: 1.1rem; display: inline-block;
  border-top: 1px solid rgba(255,255,255,0.25); padding-top: 0.8rem;
  font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft);
}
@media (max-width: 680px) {
  .hero .inner { grid-template-columns: 1fr; text-align: left; }
}

/* CTA buttons */
.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.btn {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600; font-size: 0.98rem;
  padding: 0.8rem 1.4rem; border-radius: 2px; text-decoration: none;
  display: inline-block; border: 2px solid transparent; cursor: pointer;
}
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-soft); color: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.55); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn--navy { background: var(--navy); color: var(--paper); }
.btn--navy:hover { background: var(--navy-deep); color: var(--gold-soft); }

/* =========================  SECTIONS  ========================= */
.section { padding: clamp(2.4rem, 6vw, 4.5rem) 0; }
.section--paper2 { background: var(--paper-2); }
.section--navy { background: var(--navy); color: var(--paper); }
.section--navy h2, .section--navy h3 { color: var(--paper); }
.section--navy p { color: rgba(251,250,247,0.85); }

.section-head { margin-bottom: 2rem; }
.rule {
  height: 3px; width: 60px; background: var(--crimson);
  margin: 0 0 1.4rem; border: 0;
}
.rule--gold { background: var(--gold); }

.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); max-width: 62ch; }

/* Two-column intro */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 4vw, 3rem); align-items: start; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

/* Meeting / fact block */
.factcard {
  border: 1px solid var(--rule); border-left: 5px solid var(--gold);
  background: var(--paper); padding: 1.4rem 1.5rem;
}
.factcard h3 { color: var(--navy); margin-bottom: 0.5rem; }
.factcard .placeholder { color: var(--crimson); font-weight: 600; }

/* Generic card grid */
.grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); align-items: start; }
.card {
  background: var(--paper); border: 1px solid var(--rule);
  border-top: 4px solid var(--navy); padding: 1.3rem 1.4rem;
}
.card h3 { color: var(--navy); margin-bottom: 0.35rem; }
.card p:last-child { margin-bottom: 0; }
.card .meta { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; color: var(--crimson); }

/* =========================  REGISTRY (committeemen) — signature element  ========================= */
.registry {
  width: 100%; border-collapse: collapse; background: var(--paper);
  border: 1px solid var(--rule-navy);
}
.registry caption {
  text-align: left; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ink-soft); font-size: var(--step--1);
  padding: 0 0 0.8rem;
}
.registry th {
  background: var(--navy); color: var(--gold-soft);
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 500; font-size: 0.82rem; text-align: left; padding: 0.7rem 1rem;
}
.registry td { padding: 0.72rem 1rem; border-top: 1px solid var(--rule); vertical-align: baseline; }
.registry tbody tr:nth-child(even) { background: var(--paper-2); }
.registry .pct {
  font-family: var(--display); font-weight: 700; color: var(--crimson);
  font-variant-numeric: tabular-nums; width: 4.5rem; font-size: 1.05rem;
}
.registry .nm { font-weight: 600; color: var(--navy); }
.registry .chair-row { background: var(--gold-soft) !important; }
.registry .chair-row .nm { color: var(--navy-deep); }
.tag-chair {
  display: inline-block; margin-left: 0.5rem; font-family: var(--display);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--navy); color: var(--gold); padding: 0.12rem 0.5rem; border-radius: 2px;
  vertical-align: middle;
}
.card h3 .tag-chair { background: var(--crimson); color: var(--paper); }
.registry .note { color: var(--ink-soft); font-size: 0.82rem; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 620px) {
  .registry th:nth-child(3), .registry td:nth-child(3) { display: none; }
}

.source-line { font-size: var(--step--1); color: var(--ink-soft); margin-top: 1rem; }

/* =========================  ENDORSEMENT SLATE (ballot-inspired)  ========================= */
.slate {
  border: 1px solid var(--rule-navy);
  background: var(--paper);
}
.slate + .slate { margin-top: 2.2rem; }
.slate-head {
  background: var(--navy);
  color: var(--paper);
  padding: 0.85rem 1.25rem;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 1rem;
  border-bottom: 3px solid var(--gold);
}
.slate-head .tier {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.75rem; color: var(--gold-soft); font-weight: 600;
}
.slate-head h2 { color: var(--paper); margin: 0; font-size: var(--step-1); letter-spacing: 0.04em; }
.slate-list { list-style: none; margin: 0; padding: 0; }
.slate-row {
  display: grid; grid-template-columns: 44px 1fr auto;
  gap: 0.3rem 1.1rem; padding: 1.05rem 1.25rem;
  align-items: center;
}
.slate-row + .slate-row { border-top: 1px solid var(--rule); }
.slate-row:hover { background: var(--paper-2); }
.check {
  width: 30px; height: 30px; border: 2px solid var(--navy);
  display: grid; place-items: center; border-radius: 2px;
  color: var(--crimson); font-weight: 800; font-size: 1.15rem;
  background: var(--paper); line-height: 1;
}
/* precinct-number badge — the registry's analog of the ballot check */
.check--pct {
  background: var(--navy); border-color: var(--navy); color: var(--gold-soft);
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  font-variant-numeric: tabular-nums; letter-spacing: 0.02em;
}
.slate-row--own .check--pct { background: var(--crimson); border-color: var(--crimson); color: var(--paper); }
.slate-row .office {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.78rem; color: var(--crimson); display: block; margin-bottom: 0.15rem;
}
.slate-row h3 { margin: 0; font-size: 1.25rem; letter-spacing: 0.02em; }
.slate-row .note { margin: 0.2rem 0 0; color: var(--ink-soft); font-size: 0.92rem; max-width: none; }
.slate-link {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.78rem; font-weight: 600; text-decoration: none;
  color: var(--crimson); border: 1.5px solid var(--crimson);
  padding: 0.45rem 0.9rem; border-radius: 2px; white-space: nowrap;
}
.slate-link:hover { background: var(--crimson); color: var(--paper); }
.slate-note-city {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.8rem; color: var(--ink-soft); white-space: nowrap; align-self: center;
}
.tag-inc {
  display: inline-block; margin-left: 0.5rem; font-family: var(--display);
  font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); border: 1px solid var(--rule); padding: 0.1rem 0.45rem;
  vertical-align: middle; border-radius: 2px; background: var(--paper-2); font-weight: 500;
}
/* Homer Township's own committeemen — gold rows */
.slate-row--own {
  background: linear-gradient(90deg, rgba(201,162,39,0.14), rgba(201,162,39,0.03) 65%);
  border-left: 4px solid var(--gold);
  padding-left: calc(1.25rem - 4px);
}
.slate-row--own:hover { background: linear-gradient(90deg, rgba(201,162,39,0.2), rgba(201,162,39,0.06) 65%); }
.slate-row--own .check { border-color: var(--gold); }

/* Chairman — the one elevated row: gold banner, larger name */
.slate-row--chair {
  background: linear-gradient(90deg, rgba(201,162,39,0.42), rgba(201,162,39,0.12) 72%);
  border-left: 6px solid var(--gold);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-left: calc(1.25rem - 6px);
}
.slate-row--chair h3 { font-size: var(--step-1); }
.slate-row--chair:hover { background: linear-gradient(90deg, rgba(201,162,39,0.34), rgba(201,162,39,0.1) 70%); }
.slate-row--chair h3 { font-size: var(--step-1); }
/* chairman badge = gold; chairman tag = crimson */
.slate-row--chair .check--pct { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.tag-chairman {
  display: inline-block; margin-left: 0.6rem; vertical-align: middle;
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: 0.7rem; letter-spacing: 0.16em;
  background: var(--crimson); color: var(--gold); padding: 0.22rem 0.7rem; border-radius: 2px;
  box-shadow: inset 0 0 0 1px var(--gold-soft);
}

/* ===================  OFFICE OF THE CHAIRMAN — full-bleed feature  =================== */
.chairman-hero {
  background:
    linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-deep) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 24px);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--crimson);
  color: var(--paper);
  padding: clamp(2.4rem, 5vw, 4rem) 0;
}
.chairman-hero .inner {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: center;
}
.chairman-medallion { position: relative; flex: 0 0 auto; justify-self: center; }
.chairman-medallion img {
  width: clamp(150px, 20vw, 210px); height: clamp(150px, 20vw, 210px);
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201,162,39,0.14), 0 8px 22px rgba(0,0,0,0.35);
}
.chairman-hero .eyebrow {
  color: var(--gold-soft); margin-bottom: 0.7rem;
  font-size: var(--step--1); letter-spacing: 0.22em;
}
.chairman-hero .eyebrow::before { background: var(--gold); width: 26px; }
.chairman-hero h2 {
  color: var(--paper); margin: 0 0 0.15em;
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem); font-weight: 700; line-height: 0.99;
}
.chairman-hero .ch-title {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); font-size: var(--step-1); font-weight: 500; margin: 0 0 1rem;
}
.chairman-hero .ch-rule { height: 3px; width: 72px; background: var(--gold); border: 0; margin: 0 0 1.1rem; }
.chairman-hero p.ch-statement { color: rgba(251,250,247,0.9); max-width: 60ch; margin: 0 0 1.3rem; font-size: var(--step-1); line-height: 1.5; }
.chairman-hero .cta-row { margin-top: 0; }
@media (max-width: 720px) {
  .chairman-hero .inner { grid-template-columns: 1fr; text-align: left; }
  .chairman-medallion { justify-self: start; }
}

.slate-legend { font-size: var(--step--1); color: var(--ink-soft); margin-top: 0.9rem; }
.slate-legend .swatch {
  display: inline-block; width: 12px; height: 12px; background: rgba(201,162,39,0.35);
  border-left: 3px solid var(--gold); vertical-align: baseline; margin-right: 0.35rem;
}
@media (max-width: 640px) {
  /* pin the check to the candidate-name line so it forms a steady rhythm */
  .slate-row { grid-template-columns: 34px 1fr; align-items: start; }
  .check { width: 26px; height: 26px; font-size: 0.95rem; margin-top: 1.05rem; }
  .slate-link { grid-column: 2; justify-self: start; margin-top: 0.45rem; }
  .slate-note-city { grid-column: 2; justify-self: start; margin-top: 0.2rem; align-self: start; }
}

/* print-only elements (attribution letterhead + disclaimer) */
.print-only { display: none; }

/* Print: the slate doubles as a take-to-the-polls handout.
   Political literature MUST carry the funding attribution (10 ILCS 5/9-9.5),
   so .print-only letterhead + disclaimer become visible here. */
@media print {
  .site-header, .site-footer, .print-hide, .nav-toggle { display: none !important; }
  .print-only { display: block !important; }
  .print-head {
    font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em;
    font-size: 0.9rem; border-bottom: 2px solid #000; padding-bottom: 0.4rem; margin-bottom: 0.6rem;
  }
  .print-attr { font-size: 0.75rem; margin-top: 1rem; }
  body { background: #fff; }
  .section { padding: 0.8rem 0; }
  .slate { border-color: #000; break-inside: avoid; }
  .slate-head { background: #fff !important; border-bottom: 2px solid #000; }
  .slate-head h2, .slate-head .tier { color: #000 !important; }
  .slate-row:hover, .slate-row--own:hover { background: none; }
  .slate-link { border: none; padding: 0; }
}

/* Placeholder badge */
.ph {
  display: inline-block; font-family: var(--display); text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.7rem; color: var(--crimson-dk);
  background: rgba(166,25,46,0.08); border: 1px dashed var(--crimson);
  padding: 0.15rem 0.55rem; border-radius: 2px; margin-left: 0.4rem;
}

/* Contact rows */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: baseline; border-bottom: 1px solid var(--rule); padding-bottom: 1rem; }
.contact-list .k { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); font-size: 0.85rem; min-width: 8rem; }

/* Updates list */
.posts { display: grid; gap: 1.6rem; }
.post { border-left: 4px solid var(--gold); padding: 0.2rem 0 0.2rem 1.3rem; }
.post .date { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: var(--crimson); }
.post h3 { margin: 0.25rem 0 0.5rem; }

/* =========================  FOOTER  ========================= */
.site-footer {
  background: var(--navy-deep); color: rgba(251,250,247,0.8);
  border-top: 4px solid var(--gold);
  padding: 2.6rem 0 1.6rem; margin-top: 0;
}
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .site-footer .cols { grid-template-columns: 1fr; gap: 1.6rem; } }
.site-footer h4 {
  font-family: var(--display); text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold-soft); font-size: 0.85rem; margin: 0 0 0.9rem;
}
.site-footer a { color: rgba(251,250,247,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-brand { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.9rem; }
.footer-brand b { font-family: var(--display); text-transform: uppercase; color: var(--paper); letter-spacing: 0.03em; font-size: 1.05rem; }
.disclaimer {
  margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.2rem;
  font-size: 0.8rem; color: rgba(251,250,247,0.62); display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; justify-content: space-between;
}
.disclaimer strong { color: rgba(251,250,247,0.8); font-weight: 600; }

/* Screen-reader-only text */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Skip link */
.skip {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy-deep);
  padding: 0.6rem 1rem; font-family: var(--display); text-transform: uppercase; z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }
