/* ============================================================================
   LA28 Construction Shutdown campaign — design system

   Art direction is taken from sccaweb.org so the campaign reads as SCCA, then
   pushed harder for a campaign context:

     · Cream page ground (#EAE4CE), navy (#1E417F) and gold (#F7AE39) are lifted
       from the live SCCA site.
     · Space Grotesk (display, uppercase, tracked) + Inter (body) are the SCCA
       typefaces.
     · The alert red (#C7332F) is lifted from the campaign's own Tier 1 map and
       shutdown calendar, so the site and the printed materials match. Red is
       reserved for the shutdown itself — never for navigation or general UI.

   Differences from sccaweb.org, on purpose: data typography is much larger, the
   one-line statement lists are ruled rather than carded, section grounds
   alternate cream / paper / navy instead of running cream throughout, and the
   shutdown calendar strip is a recurring motif the association site has no
   equivalent for.
   ========================================================================= */

/* --- tokens ------------------------------------------------------------- */

:root {
  --cream:   #EAE4CE;
  --cream-d: #DED7BD;
  --paper:   #FBF9F3;
  --white:   #FFFFFF;

  --ink:     #211E1C;
  --ink-2:   #544F4D;
  --ink-3:   #625C57;   /* 4.8:1 on the cream ground — was #857E79 at 2.8:1 */

  --navy:    #1E417F;
  --navy-d:  #16305E;
  --navy-l:  #2C58A2;

  --gold:    #F7AE39;
  --gold-d:  #E09A16;

  --red:     #C7332F;
  --red-d:   #A8241F;

  --line:      rgba(33, 30, 28, 0.14);
  --line-soft: rgba(33, 30, 28, 0.08);
  --line-dark: rgba(255, 255, 255, 0.18);

  --display: 'Space Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* 76px inner + the header's 1px bottom border, which is always laid out. */
  --header-h: 77px;
  --wrap: 1220px;
  --gutter: clamp(20px, 5vw, 56px);
  --shell-radius: 26px;

  --shadow-card: 0 1px 2px rgba(33, 30, 28, 0.05), 0 8px 24px -12px rgba(33, 30, 28, 0.18);
  --shadow-lift: 0 2px 4px rgba(33, 30, 28, 0.06), 0 18px 40px -18px rgba(33, 30, 28, 0.3);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* --- reset -------------------------------------------------------------- */

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  font-feature-settings: 'kern' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); color: var(--ink); font-weight: 700; letter-spacing: -0.015em; line-height: 1.08; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-l); }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 8px;
  font: 600 14px/1 var(--body); text-decoration: none;
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

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

/* --- layout primitives -------------------------------------------------- */

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

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--tall  { padding-block: clamp(72px, 11vw, 144px); }
.section--paper { background: var(--paper); }
.section--navy  { background: var(--navy); color: rgba(255, 255, 255, 0.82); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--ink   { background: var(--ink); color: rgba(255, 255, 255, 0.78); }
.section--ink h2, .section--ink h3 { color: #fff; }

/* Hairline that reads as a page rule rather than a box edge. */
.section + .section:not(.section--navy):not(.section--ink):not(.section--paper) { border-top: 1px solid var(--line-soft); }

/* --- type --------------------------------------------------------------- */

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font: 700 13px/1 var(--display);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 22px;
}
.eyebrow::after {
  content: ''; flex: 0 0 56px; height: 3px; background: var(--gold);
}
.eyebrow--center { justify-content: center; }
.section--navy .eyebrow, .section--ink .eyebrow { color: #fff; }

.section-head {
  display: flex; align-items: center; gap: 18px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem); letter-spacing: -0.018em;
  color: var(--ink); margin: 0 0 clamp(24px, 3vw, 36px);
}
.section-head::after { content: ''; flex: 1; height: 3px; background: var(--gold); max-width: 220px; }

.display-1 { font-size: clamp(2.35rem, 5.6vw, 4.1rem); letter-spacing: -0.028em; }
.display-2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); letter-spacing: -0.022em; }
.display-3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -0.016em; }

.lede { font-size: clamp(1.06rem, 1.5vw, 1.22rem); line-height: 1.55; color: var(--ink-2); }
.section--navy .lede, .section--ink .lede { color: rgba(255, 255, 255, 0.82); }

.accent { color: var(--gold); }
.measure { max-width: 62ch; }
.measure-tight { max-width: 46ch; }

.footnote {
  font-size: 13.5px; line-height: 1.5; color: var(--ink-3);
}
.section--navy .footnote, .section--ink .footnote { color: rgba(255, 255, 255, 0.5); }

/* --- buttons ------------------------------------------------------------ */

.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 0; border-radius: 999px;
  padding: 15px 28px;
  font: 600 13px/1 var(--display);
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.16s var(--ease), box-shadow 0.16s var(--ease), background-color 0.16s var(--ease);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: 0.55; pointer-events: none; }

.btn--gold  { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--gold:hover { background: var(--gold-d); }
.btn--red   { --btn-bg: var(--red); }
.btn--red:hover { background: var(--red-d); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { background: rgba(33, 30, 28, 0.04); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--on-dark { --btn-bg: rgba(255,255,255,0.1); --btn-fg: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.32); }
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.18); }
.btn--sm { padding: 11px 20px; font-size: 11.5px; }
.btn--block { width: 100%; justify-content: center; }

/* Long CTAs must wrap rather than push the page wider than the viewport. */
@media (max-width: 560px) {
  .btn { white-space: normal; text-align: center; justify-content: center; max-width: 100%; line-height: 1.35; }
}

/* Inline text link with a gold underline that grows on hover. */
.link-arrow {
  display: inline-flex; align-items: baseline; gap: 9px;
  font: 600 14px/1.3 var(--display);
  letter-spacing: 0.04em; color: var(--ink); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 4px;
  transition: gap 0.16s var(--ease), border-color 0.16s var(--ease);
}
.link-arrow:hover { color: var(--ink); gap: 14px; border-bottom-color: var(--ink); }
.link-arrow::after { content: '\2192'; font-family: var(--body); }
.section--navy .link-arrow, .section--ink .link-arrow { color: #fff; }
.section--navy .link-arrow:hover, .section--ink .link-arrow:hover { border-bottom-color: #fff; }

.link-row { display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: center; }

/* ============================================================================
   HEADER
   ========================================================================= */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(234, 228, 206, 0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.site-header__inner {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 40px);
  min-height: calc(var(--header-h) - 1px); padding-block: 12px;
}

.brand { display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }

.brand__word {
  font: 700 15px/1.1 var(--display);
  letter-spacing: -0.005em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 420px) { .brand__word { font-size: 13px; } }

.brand--footer .brand__word { color: #fff; font-size: 17px; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }
.site-nav a {
  font: 600 12.5px/1 var(--display);
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--ink-2); text-decoration: none;
  padding: 8px 2px; display: block; position: relative;
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after, .site-nav a[aria-current='page']::after { transform: scaleX(1); }
.site-nav a[aria-current='page'] { color: var(--ink); }

.header-cta { flex: 0 0 auto; }

.nav-toggle {
  display: none; margin-left: auto; position: relative;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
  background: transparent; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 19px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; left: 0; top: -6px; }
.nav-toggle span::after  { position: absolute; left: 0; top: 6px; }
.nav-toggle[aria-expanded='true'] span { background: transparent; }
.nav-toggle[aria-expanded='true'] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-block: 1px solid var(--line);
    padding: 12px var(--gutter) 24px; margin: 0;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
  .site-nav a::after { display: none; }
  .header-cta { display: none; }
  .site-nav .btn { margin-top: 20px; width: 100%; justify-content: center; }
}
@media (min-width: 901px) { .site-nav .btn { display: none; } }

/* ============================================================================
   HERO

   Deliberately NOT the sccaweb.org treatment. That site insets a photo in a
   26px-radius card and lays white type over a navy scrim, with one clause of the
   headline swapped to gold. This is a square, full-bleed, two-panel split: type
   on an ink ground, photo held to the right, and a red 93-day stamp over the
   image. The headline carries no accent colour — the red does that work instead.
   ========================================================================= */

/* The hero fills the first screen: header + type/photo split + timeline strip add
   up to the viewport, with the photo panel absorbing whatever slack is left. It is
   a min-height, so on a short window the content still grows rather than clipping. */
.hero {
  background: var(--ink);
  display: flex; flex-direction: column;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
}

.hero__grid {
  flex: 1 1 auto; min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
}

.hero__panel {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
  padding-block: clamp(28px, 4.4vh, 80px);
  padding-right: clamp(28px, 4vw, 60px);
  /* Align the left edge with the .wrap content column. */
  padding-left: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
}


.hero h1 {
  color: #fff; max-width: 20ch;
  font-size: clamp(1.6rem, min(3.05vw, 4.65vh), 2.8rem);
  letter-spacing: -0.028em; line-height: 1.1;
  text-wrap: balance;
}
.hero__sub {
  margin: clamp(18px, 2.2vw, 26px) 0 clamp(26px, 3vw, 34px); max-width: 50ch;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem); line-height: 1.6;
}

.hero__media { position: relative; min-height: 0; overflow: hidden; }
.hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 62% center;
}
/* Feather the photo into the type panel so the seam is not a hard vertical line. */
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, rgba(33, 30, 28, 0.35) 22%, rgba(33, 30, 28, 0) 55%);
}


/* Very short desktop windows — a 13" laptop after browser chrome. Tighten the
   last few pixels so the timeline strip still lands above the fold. */
@media (min-width: 901px) and (max-height: 700px) {
  .hero__sub { margin-bottom: 16px; line-height: 1.5; }
  .hero__panel .btn { padding-block: 12px; }
  .calstrip__label { font-size: 10px; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; grid-template-rows: auto minmax(110px, 1fr); }
  .hero__panel { padding-inline: var(--gutter); padding-block: clamp(28px, 3.6vh, 60px) clamp(22px, 3vh, 48px); }
  .hero h1 { max-width: 20ch; }
  .hero__media { min-height: 110px; }
  .hero__media::after {
    background: linear-gradient(to bottom, var(--ink) 0%, rgba(33, 30, 28, 0.3) 26%, rgba(33, 30, 28, 0) 60%);
  }
}

/* The shutdown calendar strip: Jun 1 -> Sep 1, 2028. */
.calstrip {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #191716;
  padding: clamp(13px, 2.2vh, 20px) var(--gutter) clamp(14px, 2.4vh, 22px);
}
.calstrip__inner { max-width: var(--wrap); margin-inline: auto; }
.calstrip__label {
  display: flex; align-items: center; gap: 12px;
  font: 600 11px/1 var(--display); letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 clamp(9px, 1.5vh, 14px);
}
.calstrip__label::after { content: ''; flex: 1; height: 1px; background: rgba(255, 255, 255, 0.14); }
.calstrip__head {
  display: flex; align-items: center; gap: 16px;
  font: 600 10.5px/1 var(--display); letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55); margin-bottom: 10px;
}
.calstrip__end { flex: 0 0 auto; color: rgba(255, 255, 255, 0.78); white-space: nowrap; }
.calstrip__months { position: relative; flex: 1; height: 11px; min-width: 0; }
.calstrip__months i {
  position: absolute; top: 0; transform: translateX(-50%); font-style: normal; white-space: nowrap;
}
@media (max-width: 700px) { .calstrip__months { display: none; } }

.calstrip__track {
  position: relative; height: clamp(26px, 3.8vh, 34px); border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  display: flex; align-items: center;
  overflow: hidden;
}
.calstrip__fill {
  position: absolute; inset: 0;
  background: var(--red);
  display: flex; align-items: center;
  padding-left: 16px;
  font: 700 11.5px/1 var(--display); letter-spacing: 0.13em; text-transform: uppercase; color: #fff;
  transform-origin: left; animation: calgrow 1.1s var(--ease) both;
}
@keyframes calgrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.calstrip__games {
  position: absolute; top: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(25, 23, 22, 0.62) 0 6px,
    rgba(25, 23, 22, 0.3) 6px 12px
  );
  border-inline: 1px solid rgba(255, 255, 255, 0.45);
}
.calstrip__games span {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font: 700 9.5px/1 var(--display); letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; white-space: nowrap; text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
@media (max-width: 780px) { .calstrip__games span { display: none; } }
/* The bar label collides with the hatched Games blocks on a phone, so it drops to
   a short form. The full scope is stated on the Tier 1 tab directly below. */
.calstrip__fill-short { display: none; }
@media (max-width: 640px) {
  .calstrip__fill { font-size: 10px; letter-spacing: 0.08em; }
  .calstrip__fill-long { display: none; }
  .calstrip__fill-short { display: inline; }
  .calstrip__head { font-size: 9.5px; letter-spacing: 0.1em; }
}

/* ============================================================================
   STAT BAND — four figures, left aligned, hairline separated.
   ========================================================================= */

.statband { padding-block: clamp(40px, 5.5vw, 72px); }
.statband__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.stat { border-top: 2px solid var(--ink); padding-top: 18px; }
.stat:nth-child(1) { border-top-color: var(--red); }
.stat__figure {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.035em; line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums; margin-bottom: 12px;
}
.stat:nth-child(1) .stat__figure { color: var(--red); }
.stat__label { font-size: 14px; line-height: 1.45; color: var(--ink-2); max-width: 26ch; }
.statband__foot { margin-top: clamp(28px, 3.5vw, 42px); }

@media (max-width: 900px) { .statband__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 480px) { .statband__grid { grid-template-columns: 1fr; } }

/* ============================================================================
   RULED LIST — the one-line statement blocks (Home §3 and §5).
   Lead phrase left, supporting clause right, hairline between rows.
   ========================================================================= */

.ruled { border-top: 1px solid var(--line); }
.ruled li {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px clamp(24px, 4vw, 56px);
  align-items: baseline;
  padding: clamp(22px, 2.6vw, 30px) 0;
  border-bottom: 1px solid var(--line);
}
.ruled__lead {
  font-family: var(--display); font-weight: 700; color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem); letter-spacing: -0.015em; line-height: 1.25;
}
.ruled__rest { color: var(--ink-2); font-size: 16px; }

.section--navy .ruled, .section--ink .ruled { border-top-color: var(--line-dark); }
.section--navy .ruled li, .section--ink .ruled li { border-bottom-color: var(--line-dark); }
.section--navy .ruled__lead, .section--ink .ruled__lead { color: #fff; }
.section--navy .ruled__rest, .section--ink .ruled__rest { color: rgba(255, 255, 255, 0.72); }

@media (max-width: 760px) {
  .ruled li { grid-template-columns: 1fr; gap: 8px; }
}

/* Section head that sits beside its content on wide screens. */
.split {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px); align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ============================================================================
   FIGURE ROW — the three regional numbers.
   ========================================================================= */

.figures {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-block: clamp(32px, 4vw, 48px);
}
.figure {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 14px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-card);
}
.figure__figure {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.85rem, 3vw, 2.6rem); letter-spacing: -0.035em; line-height: 1;
  color: var(--navy); font-variant-numeric: tabular-nums; margin-bottom: 12px;
}
.figure:first-child .figure__figure { color: var(--red); }
.figure__label { font-size: 14.5px; color: var(--ink-2); }
@media (max-width: 780px) { .figures { grid-template-columns: 1fr; } }

/* ============================================================================
   MAP STAGE

   Sits directly under the hero and carries the ink ground down from it, so the
   top of the page is one dark block: the claim, then the evidence. The two tiers
   cross-fade inside a single frame rather than sitting side by side, and a red
   band sweeps across the map on entry and on every tier change — the shutdown
   spreading over the network. The band uses multiply so it tints the map itself
   rather than sitting on top of it as a flat scrim.
   ========================================================================= */

/* --- tier tabs --- */

.mapstage__tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.6vw, 18px);
  margin: clamp(24px, 3vw, 34px) 0 clamp(16px, 2vw, 22px);
}
@media (max-width: 720px) { .mapstage__tabs { grid-template-columns: 1fr; } }

.tiertab {
  --tone: var(--red);
  display: grid; gap: 10px; text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 0; border-top: 3px solid rgba(255, 255, 255, 0.16);
  padding: clamp(16px, 2vw, 22px) clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 24px);
  cursor: pointer; color: rgba(255, 255, 255, 0.6);
  font-family: var(--body);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.tiertab--red  { --tone: var(--red); }
.tiertab--gold { --tone: var(--gold); }
.tiertab:hover { background: rgba(255, 255, 255, 0.07); }
.tiertab[aria-selected='true'] {
  background: rgba(255, 255, 255, 0.09);
  border-top-color: var(--tone);
  color: rgba(255, 255, 255, 0.78);
}

.tiertab__title {
  font: 700 13px/1 var(--display); letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.2s var(--ease);
}
.tiertab[aria-selected='true'] .tiertab__title { color: var(--tone); }

.tiertab__line {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.015em; line-height: 1.25;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem); color: #fff;
}
.tiertab__meta { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-top: 2px; }
.tiertab__days {
  font: 700 12px/1 var(--display); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--tone); padding: 6px 9px; border-radius: 3px;
  background: color-mix(in srgb, var(--tone) 16%, transparent);
}
.tiertab__window { font-size: 13.5px; color: rgba(255, 255, 255, 0.62); font-variant-numeric: tabular-nums; }

/* Without this nobody reads the tabs as a control. */
.tiertab__cue {
  margin-top: 4px;
  font: 700 11px/1 var(--display); letter-spacing: 0.13em; text-transform: uppercase;
}
.tiertab__cue em { font-style: normal; display: none; }
.tiertab__cue-off { color: var(--gold); }
.tiertab__cue-on { color: rgba(255, 255, 255, 0.45); }
.tiertab[aria-selected='true'] .tiertab__cue-on { display: inline; }
.tiertab[aria-selected='false'] .tiertab__cue-off { display: inline; }
.tiertab[aria-selected='false']:hover .tiertab__cue-off { color: #fff; }

/* --- the frame --- */

.mapstage__frame {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.9);
}
.mapstage__canvas {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 2; background: #FCFCFB;
}

.mappanel {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.mappanel.is-active { opacity: 1; }
.mappanel[hidden] { display: block; }      /* hidden panels stay laid out for the fade */
.mappanel > img { width: 100%; height: 100%; object-fit: cover; }

/* --- data chips over the empty land in the top right of both maps --- */

.mapchips {
  position: absolute; top: clamp(14px, 2.2vw, 26px);
  display: flex; flex-direction: column; gap: 8px;
}
.mapchips--right { right: clamp(14px, 2.2vw, 26px); align-items: flex-end; }
.mapchips--left  { left:  clamp(14px, 2.2vw, 26px); align-items: flex-start; }
.mapchip {
  --tone: var(--red);
  display: flex; align-items: baseline; gap: 9px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 1px 2px rgba(33, 30, 28, 0.12), inset 0 0 0 1px rgba(33, 30, 28, 0.08);
  border-left: 3px solid var(--tone);
  padding: 7px 12px 7px 10px;
  opacity: 0; transform: translateY(-6px);
}
.mapchip--red  { --tone: var(--red); }
.mapchip--gold { --tone: var(--gold-d); }
.is-active .mapchip { animation: chipin 0.5s var(--ease) both; }
.is-active .mapchip:nth-child(2) { animation-delay: 0.08s; }
.is-active .mapchip:nth-child(3) { animation-delay: 0.16s; }
@keyframes chipin { to { opacity: 1; transform: none; } }

.mapchip__k {
  font: 700 clamp(1rem, 1.5vw, 1.3rem)/1 var(--display); letter-spacing: -0.03em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.mapchip__l {
  font: 500 11px/1.2 var(--body); letter-spacing: 0.02em; color: var(--ink-2);
  max-width: 15ch;
}
@media (max-width: 620px) {
  .mapchips { gap: 6px; top: 10px; }
  .mapchips--right { right: 10px; }
  .mapchips--left { left: 10px; }
  .mapchip { padding: 5px 8px 5px 7px; gap: 6px; }
  .mapchip__l { font-size: 9.5px; max-width: 11ch; }
}

.mapstage__open {
  position: absolute; right: 0; bottom: 0; z-index: 3;
  background: var(--ink); color: #fff; text-decoration: none;
  font: 600 11px/1 var(--display); letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 16px;
  transition: background-color 0.18s var(--ease);
}
.mapstage__open:hover { background: var(--red); color: #fff; }

/* --- the sweep --- */

/* No z-index here on purpose: a stacking context would isolate the multiply
   blend and the band would sit on the map instead of tinting it. */
.mapstage__sweep { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.mapstage__sweep i {
  position: absolute; top: -8%; bottom: -8%; left: 0; width: 34%;
  background: linear-gradient(90deg,
    rgba(199, 51, 47, 0) 0%,
    rgba(199, 51, 47, 0.34) 55%,
    rgba(199, 51, 47, 0.72) 96%,
    rgba(199, 51, 47, 0.72) 100%);
  border-right: 2px solid var(--red);
  mix-blend-mode: multiply;
  transform: translateX(-130%) skewX(-9deg);
}
.mapstage.is-sweeping .mapstage__sweep i {
  animation: mapsweep 1.15s cubic-bezier(0.32, 0, 0.16, 1) both;
}
@keyframes mapsweep {
  from { transform: translateX(-130%) skewX(-9deg); }
  to   { transform: translateX(330%)  skewX(-9deg); }
}

.mapstage__foot { margin-top: clamp(20px, 2.4vw, 28px); }

@media (prefers-reduced-motion: reduce) {
  .mapstage.is-sweeping .mapstage__sweep i { animation: none; }
  .is-active .mapchip { animation: none; opacity: 1; transform: none; }
  .mappanel { transition: none; }
}

/* ============================================================================
   DOCUMENT CARDS — square-ish corners so they read as paper, not UI chips.
   ========================================================================= */

.doclist { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 22px); }

.doc {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 6px;
  padding: clamp(22px, 2.4vw, 28px);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}
.doc:has(a[href]):hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--line); }
.doc__kind {
  align-self: flex-start;
  font: 600 10.5px/1 var(--display); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); border: 1px solid var(--line); border-radius: 3px; padding: 5px 8px;
}
.doc__title { font-size: clamp(1.02rem, 1.4vw, 1.15rem); letter-spacing: -0.012em; line-height: 1.25; }
.doc__title a { color: inherit; text-decoration: none; }
.doc__title a::after { content: ''; position: absolute; inset: 0; }
.doc__desc { font-size: 14.5px; color: var(--ink-2); flex: 1; }
.doc__action {
  margin-top: 6px; font: 600 12px/1 var(--display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
}
.doc__action::after { content: '\2193'; font-family: var(--body); }
.doc--external .doc__action::after { content: '\2197'; }
.doc--pending { background: rgba(255, 255, 255, 0.45); box-shadow: none; border-style: dashed; }
.doc--pending .doc__title { color: var(--ink-2); }
.doc__pending-note {
  font: 500 12.5px/1.4 var(--body); color: var(--ink-3); font-style: italic;
}
.doc__thumb {
  border-radius: 4px; border: 1px solid var(--line-soft); margin-bottom: 4px;
  aspect-ratio: 16 / 9; object-fit: cover; object-position: center;
}

/* Featured "Start here" item. */
.featured {
  display: grid; grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px); align-items: center;
  background: var(--navy); color: rgba(255, 255, 255, 0.8);
  border-radius: 18px; padding: clamp(24px, 3.2vw, 40px);
}
.featured__thumb {
  border-radius: 8px; overflow: hidden; background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 8.5 / 11; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.featured__label {
  display: inline-block; background: var(--gold); color: var(--ink);
  font: 700 11px/1 var(--display); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 11px; border-radius: 4px; margin-bottom: 18px;
}
.featured h2 { color: #fff; margin-bottom: 14px; }
.featured__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
@media (max-width: 780px) { .featured { grid-template-columns: 1fr; } .featured__thumb { max-width: 220px; } }

/* Filter row */
.filters {
  position: sticky; top: 76px; z-index: 40;
  background: rgba(234, 228, 206, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
}
.filters__inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.filters__list { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; min-width: 0; }
.chip {
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; cursor: pointer;
  font: 600 12px/1 var(--display); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2); white-space: nowrap;
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed='true'] { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.search {
  flex: 0 0 auto; min-width: 220px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--white);
  padding: 10px 18px; font: 400 14px/1.2 var(--body); color: var(--ink);
}
.search::placeholder { color: var(--ink-3); }
@media (max-width: 700px) { .filters { position: static; } .search { width: 100%; } }

.docgroup + .docgroup { margin-top: clamp(40px, 5vw, 64px); }
.docgroup__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding-bottom: 14px; margin-bottom: clamp(20px, 2.5vw, 28px);
  border-bottom: 2px solid var(--ink);
}
.docgroup__head h2 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); }
.is-hidden { display: none !important; }
.empty-state { padding: 48px 0; color: var(--ink-3); font-size: 15px; }


/* ============================================================================
   NEWS
   ========================================================================= */

.tag {
  display: inline-block;
  font: 600 10.5px/1 var(--display); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 3px;
  background: var(--navy); color: #fff;
}
.tag--statement { background: var(--ink); }
.tag--in-the-news { background: transparent; color: var(--ink-2); box-shadow: inset 0 0 0 1px var(--line); }
.tag--coalition-update { background: var(--gold); color: var(--ink); }
.tag--press-release { background: var(--navy); }
.tag--draft { background: var(--red); color: #fff; margin-left: 8px; }

.lead-story {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px); align-items: center;
  padding-bottom: clamp(36px, 5vw, 56px); border-bottom: 2px solid var(--ink);
}
.lead-story__img { border-radius: 14px; overflow: hidden; border: 1px solid var(--line-soft); background: var(--white); }
.lead-story__img img { aspect-ratio: 16 / 10; object-fit: cover; }
.lead-story h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 18px 0 14px; letter-spacing: -0.024em; }
.lead-story h2 a { color: inherit; text-decoration: none; }
.lead-story h2 a:hover { color: var(--navy); }
.lead-story__meta { font: 600 12px/1 var(--display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 18px; }
@media (max-width: 860px) { .lead-story { grid-template-columns: 1fr; } }

.newslist { border-top: 1px solid var(--line); margin-top: clamp(36px, 4vw, 52px); }
.newslist[hidden] { display: none; }

.newsblank {
  border-top: 2px solid var(--ink); padding-top: clamp(24px, 3vw, 32px); max-width: 54ch;
}
.newsblank p { color: var(--ink-2); font-size: 15.5px; }
.newsblank .display-3 { color: var(--ink); }
.newsitem {
  display: grid; grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 8px clamp(20px, 3vw, 40px); align-items: start;
  padding: clamp(24px, 3vw, 32px) 0; border-bottom: 1px solid var(--line);
  position: relative;
}
.newsitem__aside { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.newsitem__date { font: 600 12px/1 var(--display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.newsitem h3 { font-size: clamp(1.12rem, 1.7vw, 1.42rem); letter-spacing: -0.018em; margin-bottom: 8px; }
.newsitem h3 a { color: inherit; text-decoration: none; }
.newsitem h3 a::after { content: ''; position: absolute; inset: 0; }
.newsitem:hover h3 a { color: var(--navy); }
.newsitem__excerpt { font-size: 15.5px; color: var(--ink-2); max-width: 62ch; }
.newsitem__thumb { width: 150px; border-radius: 6px; overflow: hidden; border: 1px solid var(--line-soft); }
.newsitem__thumb img { aspect-ratio: 3 / 2; object-fit: cover; }
.newsitem__out { font: 600 11.5px/1 var(--display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
@media (max-width: 760px) {
  .newsitem { grid-template-columns: 1fr; }
  .newsitem__aside { flex-direction: row; align-items: center; gap: 14px; }
  .newsitem__thumb { display: none; }
}

.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 860px) { .teaser-grid { grid-template-columns: 1fr; } }
.teaser {
  position: relative; display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  padding-top: 20px; border-top: 2px solid var(--ink);
}
.teaser h3 { font-size: 1.15rem; letter-spacing: -0.018em; }
.teaser h3 a { color: inherit; text-decoration: none; }
.teaser h3 a::after { content: ''; position: absolute; inset: 0; }
.teaser:hover h3 a { color: var(--navy); }
.teaser__excerpt { font-size: 14.5px; color: var(--ink-2); }
.teaser__date { font: 600 11.5px/1 var(--display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

/* Article body */
.article { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 940px) { .article { grid-template-columns: 1fr; } }
.article__head { border-bottom: 2px solid var(--ink); padding-bottom: clamp(24px, 3vw, 34px); margin-bottom: clamp(28px, 3.5vw, 40px); }
.article__head h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin: 18px 0 16px; letter-spacing: -0.026em; text-wrap: balance; }
.article__meta { font: 600 12.5px/1 var(--display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.article__body { font-size: 17.5px; line-height: 1.7; color: var(--ink-2); max-width: 68ch; }
.article__body p { margin-bottom: 1.25em; }
.article__body p:first-child { font-size: 19px; color: var(--ink); }
.article__figure { margin: clamp(28px, 4vw, 42px) 0; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-soft); }

.aside-card {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 24px; box-shadow: var(--shadow-card);
}
.aside-card + .aside-card { margin-top: 18px; }
.aside-card h2, .aside-card h3 {
  font: 600 11.5px/1 var(--display); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px;
}
.aside-card ul li + li { margin-top: 12px; }
.aside-card a { font-size: 14.5px; }
.contact-line { font-size: 15px; }
.contact-line strong { color: var(--ink); font-family: var(--display); letter-spacing: -0.01em; }

.placeholder {
  background: rgba(199, 51, 47, 0.08);
  box-shadow: inset 0 0 0 1px rgba(199, 51, 47, 0.28);
  border-radius: 3px; padding: 1px 6px;
  font-family: var(--body); font-weight: 600; font-size: 0.94em; color: var(--red-d);
}
.draft-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(199, 51, 47, 0.07); border: 1px dashed rgba(199, 51, 47, 0.4);
  border-radius: 8px; padding: 14px 18px; margin-bottom: 24px;
  font-size: 13.5px; line-height: 1.5; color: var(--red-d);
}
.draft-note strong { font-family: var(--display); letter-spacing: 0.04em; text-transform: uppercase; font-size: 11.5px; white-space: nowrap; padding-top: 2px; }

/* ============================================================================
   COALITION
   ========================================================================= */

.logogrid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-soft);
  border: 1px solid var(--line-soft); border-radius: 12px; overflow: hidden;
}
.logogrid li {
  background: var(--white); display: grid; place-items: center;
  padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 28px); min-height: 130px;
}
.logogrid img {
  max-height: 62px; width: auto; max-width: 100%;
  filter: grayscale(1); opacity: 0.72;
  transition: filter 0.2s var(--ease), opacity 0.2s var(--ease);
}
.logogrid li:hover img { filter: grayscale(0); opacity: 1; }

/* Trailing cell so a 7-logo grid does not end on an empty slot. */
.logogrid__join { padding: 0 !important; background: var(--paper) !important; }
.logogrid__join a {
  display: flex; flex-direction: column; gap: 10px;
  align-items: center; justify-content: center; text-align: center;
  width: 100%; height: 100%; padding: 24px 18px; text-decoration: none;
  font: 600 11.5px/1.4 var(--display); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2);
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}
.logogrid__join a:hover { background: var(--navy); color: #fff; }
.logogrid__join em { font-style: normal; font-size: 17px; color: var(--gold); }
.logogrid__join a:hover em { color: #fff; }
@media (max-width: 860px) { .logogrid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================================
   FORMS
   ========================================================================= */

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font: 600 11.5px/1 var(--display); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2);
}
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 8px;
  background: var(--white); color: var(--ink);
  padding: 13px 15px; font: 400 16px/1.4 var(--body);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30, 65, 127, 0.16);
}
.field textarea { min-height: 118px; resize: vertical; }
.field__error { font-size: 13px; color: var(--red-d); font-weight: 500; min-height: 0; }
.field.has-error input, .field.has-error textarea { border-color: var(--red); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid--4 { grid-template-columns: repeat(4, 1fr); }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 900px) { .form-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .form-grid, .form-grid--4 { grid-template-columns: 1fr; } }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin-top: 16px; font-size: 15px; font-weight: 500; }
.form-status--ok { color: #1B6B3A; }
.form-status--err { color: var(--red-d); }
.section--navy .form-status--ok, .section--ink .form-status--ok { color: #8FE0AE; }
.section--navy .form-status--err, .section--ink .form-status--err { color: #FFB4B1; }

.section--navy .field label { color: rgba(255, 255, 255, 0.7); }
.section--navy .field input, .section--navy .field textarea {
  background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.24); color: #fff;
}
.section--navy .field input::placeholder, .section--navy .field textarea::placeholder { color: rgba(255, 255, 255, 0.42); }
.section--navy .field input:focus, .section--navy .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(247, 174, 57, 0.28); background: rgba(255, 255, 255, 0.12);
}
.section--navy .field__error { color: #FFB4B1; }

/* Petition band. Colour comes from .section--navy; this block is layout only. */
.petition__grid {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
@media (max-width: 900px) { .petition__grid { grid-template-columns: 1fr; } }
.petition h2 { color: #fff; margin-bottom: 16px; }
.petition__form { display: flex; flex-direction: column; gap: 18px; }
.petition__fine { font-size: 12.5px; color: rgba(255, 255, 255, 0.5); }

/* Media kit band (Materials) */
.mediakit {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 72px); align-items: start;
}
@media (max-width: 860px) { .mediakit { grid-template-columns: 1fr; } }
.mediakit__list {
  display: flex; flex-direction: column; gap: 18px;
  border-top: 2px solid var(--ink); padding-top: 24px;
}

/* Contact page cards */
.contact-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 12px;
  padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-card);
}
.contact-card .eyebrow { margin-bottom: 18px; }
.contact-card--wide { grid-column: 1 / -1; }
.contact-big {
  font-family: var(--display); font-weight: 700; color: var(--ink);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: -0.018em; margin: 0;
}
.contact-links { display: flex; flex-direction: column; gap: 11px; }
.contact-links a { font-size: 15px; }
.subscribe-inline { display: flex; gap: 12px; align-items: flex-start; flex-wrap: wrap; }
.subscribe-inline .field { flex: 1 1 220px; }

/* ============================================================================
   ABOUT
   ========================================================================= */

.pullquote {
  border-top: 3px solid var(--gold); padding-top: clamp(24px, 3vw, 32px);
  font-family: var(--display); font-weight: 500; color: var(--ink);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem); line-height: 1.34; letter-spacing: -0.02em;
}
.pullquote cite {
  display: block; margin-top: 22px;
  font: 600 12px/1 var(--display); letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-3); font-style: normal;
}

.tiertable { border-top: 2px solid var(--ink); }
.tierrow {
  display: grid; grid-template-columns: 130px minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 10px clamp(18px, 2.6vw, 36px);
  padding: clamp(20px, 2.4vw, 26px) 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.tierrow__tier { font: 700 13px/1 var(--display); letter-spacing: 0.14em; text-transform: uppercase; }
.tierrow--red .tierrow__tier { color: var(--red); }
.tierrow--gold .tierrow__tier { color: var(--gold-d); }
.tierrow--ink .tierrow__tier { color: var(--ink-3); }
.tierrow__scope { font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1.02rem; letter-spacing: -0.012em; }
.tierrow__detail { font-size: 14px; color: var(--ink-3); margin-top: 4px; }
.tierrow__window { font-size: 15px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.tierrow__days { font: 600 14px/1.35 var(--display); color: var(--ink); letter-spacing: -0.01em; }
@media (max-width: 860px) {
  .tierrow { grid-template-columns: 1fr; }
  .tierrow__days { color: var(--ink-2); }
}

/* ============================================================================
   FOOTER
   ========================================================================= */

.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.62); padding-block: clamp(48px, 6vw, 76px); }
.site-footer h2 { color: #fff; }
.footer__top {
  display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer h3 {
  font: 600 11px/1 var(--display); letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45); margin-bottom: 18px;
}
.footer__col li + li { margin-top: 11px; }
.footer__col a { color: rgba(255, 255, 255, 0.78); text-decoration: none; font-size: 14.5px; }
.footer__col a:hover { color: var(--gold); }

/* ============================================================================
   ADMIN (internal)
   ========================================================================= */

.admin { padding-block: 40px; }
.admin table { width: 100%; border-collapse: collapse; font-size: 13.5px; background: var(--white); }
.admin th, .admin td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.admin th { font: 600 11px/1 var(--display); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); background: var(--paper); }
.admin__scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
.admin__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin: 40px 0 16px; }

/* --- reveal on scroll --------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- print -------------------------------------------------------------- */

@media print {
  .site-header, .site-footer, .petition, .filters, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
