/* ============================================================
   SAVE THE WORKIES — STYLES
   Black and white only, like the magpie. The look is "miners'
   banner meets Victorian handbill": heavy type, double rules,
   hard borders, no decoration that doesn't earn its keep.
   ============================================================ */

:root {
  --ink: #111111;          /* near-black */
  --paper: #faf9f6;        /* warm white, like limewash */
  --tint: #efede8;         /* section band tint */
  --line: #d8d5cd;         /* light rule */
  --urgent: #d92b2b;       /* deadline red — used ONLY for the countdown */
  --accent: #f0c000;       /* Magpies gold — Tumble RFC's third colour.
                              Rule: bold on black, or ink text on gold.
                              Never gold TEXT on white (unreadable). */
  --measure: 42rem;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Anchors jump instantly — smooth-scrolling a page this long is
   slow, and some embedded browsers choke on it. */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

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

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---- magpie colour classes (the outline makes it work on any band) ---- */
.mg-ink   { fill: var(--ink); }
.mg-paper { fill: var(--paper); }
.mg-body  { fill: var(--paper); stroke: var(--ink); stroke-width: 5; stroke-linejoin: round; }
.mg-line  { stroke: var(--paper); stroke-width: 2.5; stroke-linecap: round; }
.mg-leg   { stroke: var(--ink); stroke-width: 4; stroke-linecap: round; }
.mg-rule-thick { stroke: var(--ink); stroke-width: 6; }
.mg-rule-thin  { stroke: var(--ink); stroke-width: 2; }

/* On black bands the legs and perch flip to paper so they stay visible */
.band-ink .mg-leg,
.band-ink .mg-rule-thick,
.band-ink .mg-rule-thin { stroke: var(--paper); }

/* ---- layout helpers ---- */
.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
.wrap-narrow { max-width: 48rem; }

.section { padding: 4.5rem 0; }
.band-tint { background: var(--tint); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.band-ink {
  background: var(--ink);
  color: var(--paper);
}
.band-ink a { color: var(--paper); }

/* ---- type ---- */
h1, h2, h3 { line-height: 1.05; letter-spacing: -0.015em; text-wrap: balance; }
h2 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; text-transform: uppercase; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: .5rem; }
p + p { margin-top: 1rem; }

.kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: .9rem;
  opacity: .75;
}

.section-lede { max-width: var(--measure); font-size: 1.125rem; margin-bottom: 2.5rem; }

/* ---- buttons ---- */
.btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: transform .08s ease;
}
.btn:active { transform: translate(2px, 2px); }

.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--paper); color: var(--ink); }

.band-ink .btn { border-color: var(--paper); }
.btn-ghost { background: transparent; color: inherit; }
.btn-ghost:hover { background: var(--paper); color: var(--ink); }

.btn-small { padding: .45rem .9rem; font-size: .8rem; }

/* a.btn-accent + explicit band override so .band-ink a can never
   paint this text paper-on-gold (same war the popular tile lost once) */
a.btn-accent, .band-ink a.btn-accent { background: var(--accent); color: var(--ink); border-color: var(--ink); }
a.btn-accent:hover, .band-ink a.btn-accent:hover { background: var(--ink); color: var(--accent); border-color: var(--accent); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .6rem 1.25rem .45rem;
}

/* quick-jump chips — the page is long, these are the lift */
.jump-nav {
  display: flex;
  gap: .45rem;
  padding: 0 1.25rem .6rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.jump-nav::-webkit-scrollbar { display: none; }
.jump-nav a {
  flex: none;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: .28rem .7rem;
  white-space: nowrap;
}
.jump-nav a:hover, .jump-nav a[aria-current] { background: var(--ink); color: var(--paper); }

/* anchored sections stop below the taller sticky header */
main section[id] { scroll-margin-top: 7.5rem; }

/* ---- where the red lives: the clock, nowhere else ---- */
.jump-nav a.jump-days { border-color: var(--urgent); color: var(--urgent); }
.jump-nav a.jump-days:hover { background: var(--urgent); color: var(--paper); }
.figure-countdown {
  margin: .35rem 0 .5rem;
  font-weight: 900;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--urgent);
}

/* ---- where the gold lives ---- */
.band-ink .kicker { color: var(--accent); opacity: 1; }
.hero-lede-strong strong { color: var(--accent); }
.milestone.is-current { outline-color: var(--accent); }
.pull { border-top-color: var(--accent); }
.strip-big { display: inline-block; border-bottom: 5px solid var(--accent); padding-bottom: .1rem; }
.jump-nav a:hover, .jump-nav a[aria-current] { background: var(--accent); color: var(--ink); }
.footer-info > p:first-child strong { color: var(--accent); }
#donate { border-top: 5px solid var(--accent); }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand-magpie { width: 44px; height: 37px; flex: none; }
.brand-name { font-weight: 900; text-transform: uppercase; letter-spacing: .04em; font-size: 1rem; white-space: nowrap; }

.header-progress { flex: 1; display: flex; align-items: center; gap: .7rem; min-width: 0; }
.header-bar { flex: 1; height: 10px; border: 2px solid var(--ink); background: var(--paper); min-width: 60px; }
.header-bar-fill { height: 100%; width: 0%; background: var(--accent); transition: width .8s ease; }
.header-figure { font-size: .8rem; font-weight: 700; white-space: nowrap; }

.header-cta { flex: none; }

@media (max-width: 720px) {
  /* below here the sticky bottom bar carries the figure instead */
  .header-progress { display: none; }
  .header-top { justify-content: space-between; }
}

/* ---- thank-you banner ---- */
.thanks-banner {
  text-align: center;
  padding: 1.1rem 1.25rem;
  border-bottom: 2px solid var(--paper);
}
.thanks-banner .btn { margin: 0 .25rem; }
.thanks-share { margin-top: .6rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 4rem 0 4.5rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hero-title {
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .92;
  margin: .3rem 0 1.2rem;
}
.hero-welsh {
  font-size: 1.05rem;
  font-style: italic;
  opacity: .85;
  margin-bottom: 1.4rem;
}
.hero-lede { max-width: 34rem; font-size: 1.1rem; }
.hero-lede-strong { font-size: 1.2rem; }

/* ---- the figure card ---- */
.figure-card {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--paper);
  box-shadow: 8px 8px 0 rgba(250, 249, 246, .25);
  padding: 1.8rem 1.8rem 1.6rem;
}
.figure-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; opacity: .7;
}
.figure-number { margin: .2rem 0 1rem; line-height: 1.1; }
.figure-big { font-size: clamp(2.8rem, 6vw, 4rem); font-weight: 900; letter-spacing: -0.02em; }
.figure-of { display: block; font-weight: 700; font-size: 1.05rem; margin-top: .15rem; }

/* the meter — track + baseline-anchored fill, milestone label below */
.meter {
  height: 30px;
  border: 2px solid var(--ink);
  background: var(--tint);
  position: relative;
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 0 4px 4px 0;   /* rounded data-end only */
  transition: width 1.1s cubic-bezier(.22,.9,.35,1);
}
.figure-milestone { font-size: .85rem; font-weight: 700; margin-top: .5rem; text-transform: uppercase; letter-spacing: .06em; }

.figure-meta { list-style: none; margin: 1.1rem 0 1.3rem; font-size: .95rem; }
.figure-meta li { padding: .28rem 0; border-top: 1px solid var(--line); }
.figure-updated { opacity: .7; font-size: .85rem; }

.figure-ctas { display: flex; gap: .7rem; flex-wrap: wrap; }
.figure-ctas .btn { flex: 1; border-color: var(--ink); }
.figure-card .btn-ghost { color: var(--ink); }
.figure-card .btn-ghost:hover { background: var(--ink); color: var(--paper); }

.figure-micro { font-size: .8rem; opacity: .7; margin-top: .8rem; }

/* ============================================================
   WHY-NOW STRIP
   ============================================================ */
.strip { border-bottom: 2px solid var(--ink); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip-item { padding: 1.6rem 1.5rem; border-left: 2px solid var(--ink); }
.strip-item:first-child { border-left: none; }
.strip-big { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; }
.strip-small { font-size: .95rem; max-width: 22rem; }
@media (max-width: 720px) {
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-left: none; border-top: 2px solid var(--ink); }
  .strip-item:first-child { border-top: none; }
}

/* ============================================================
   STORY
   ============================================================ */
.pull {
  margin: 2.5rem 0;
  padding: 1.4rem 0;
  border-top: 4px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
}

.timeline { list-style: none; margin-top: 2.2rem; }
.timeline li {
  display: flex;
  gap: 1.2rem;
  padding: .7rem 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.tl-year { flex: none; width: 4.2rem; font-weight: 900; font-size: 1.05rem; }

.story-credit {
  margin-top: 1.6rem;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  opacity: .7;
}

/* ============================================================
   MILESTONES
   ============================================================ */
.milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
@media (max-width: 860px) { .milestones { grid-template-columns: 1fr; } }

.milestone {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 1.5rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
}
.milestone-amount { font-size: 2.1rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: .5rem; }
.milestone-amount span { font-size: 1rem; font-weight: 700; }
.milestone p { font-size: .97rem; }
.milestone-state {
  margin-top: auto;
  padding-top: .9rem;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.milestone.is-current { outline: 3px solid var(--ink); outline-offset: 3px; }
.milestone.is-done .milestone-state::before { content: "✔ "; }

.money-where {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 1.6rem 1.8rem;
  max-width: var(--measure);
}
.money-where ol { margin: .8rem 0 1rem 1.2rem; }
.money-where li { margin: .45rem 0; }
.promise { border-top: 1.5px solid var(--ink); padding-top: .9rem; font-size: .97rem; }

.proof { margin-top: 2.5rem; }
.proof h3 { text-transform: uppercase; letter-spacing: .04em; }
.proof-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .9rem;
  margin-top: 1rem;
}
.proof-list li {
  border-left: 4px solid var(--ink);
  padding: .3rem 0 .3rem 1rem;
  font-size: .95rem;
}

/* ============================================================
   DONATE
   ============================================================ */
/* the all-or-nothing guarantee — gold, impossible to miss */
.guarantee {
  max-width: var(--measure);
  background: var(--accent);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(250, 249, 246, .25);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2.4rem;
  font-size: 1.02rem;
}
.figure-from { margin-top: .8rem; font-size: .95rem; font-weight: 700; }
.figure-guarantee {
  margin-top: .9rem;
  padding: .55rem .75rem;
  background: var(--accent);
  border: 2px solid var(--ink);
  font-size: .85rem;
  font-weight: 700;
}

.tier-heading { margin: 2.4rem 0 1rem; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; }
.tier-heading:first-of-type { margin-top: 0; }
.tier-note { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: .8; font-size: 1rem; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: .8rem;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  min-height: 108px;
  padding: 1rem .5rem;
  background: transparent;
  color: var(--paper);
  border: 2px solid var(--paper);
  text-decoration: none;
  text-align: center;
  transition: transform .08s ease;
}
.tier:hover { background: var(--paper); color: var(--ink); }
.tier:active { transform: translate(2px, 2px); }
.tier-amount { font-size: 1.9rem; font-weight: 900; letter-spacing: -0.02em; }
.tier-per { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.tier-tag {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .15rem .5rem;
  white-space: nowrap;
}
/* a.tier-popular so it outweighs the generic .band-ink a colour */
a.tier-popular { background: var(--paper); color: var(--ink); }
a.tier-popular .tier-tag { background: var(--accent); color: var(--ink); }
a.tier-popular:hover { background: transparent; color: var(--paper); }

.tier.is-pending { opacity: .92; border-style: dashed; }

.tier-maths { margin: 1.6rem 0 .5rem; font-size: 1.05rem; max-width: var(--measure); }
.tier-footnote { margin-top: 1rem; font-size: .95rem; max-width: var(--measure); }
.tier-pending { margin-top: 1.4rem; font-size: .95rem; font-weight: 700; border: 2px dashed var(--paper); padding: .9rem 1.1rem; max-width: var(--measure); }
.tier-micro { margin-top: 1.4rem; font-size: .85rem; opacity: .8; max-width: var(--measure); }

/* ============================================================
   VISION + SPACE
   ============================================================ */
.vision-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .9rem;
}
.vision-grid li {
  border: 2px solid var(--ink);
  padding: 1rem 1.1rem;
  background: var(--paper);
  font-size: .97rem;
}
.vision-grid strong { display: block; text-transform: uppercase; font-size: .9rem; letter-spacing: .04em; margin-bottom: .15rem; }
.vision-line { margin-top: 1.6rem; font-weight: 800; font-size: 1.15rem; text-transform: uppercase; letter-spacing: .02em; }

.space-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.4rem;
}
.space-list li, .idea-chip {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: .45rem .9rem;
  font-weight: 700;
  font-size: .9rem;
}
.space-list li { text-transform: uppercase; letter-spacing: .04em; }

/* ============================================================
   FORMS (memories + ideas)
   ============================================================ */
.card-form {
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 1.5rem;
  max-width: var(--measure);
  margin-bottom: 2.5rem;
}
.card-form label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 1rem; }
.label-opt { font-weight: 400; opacity: .7; }
.card-form input[type="text"],
.card-form textarea {
  display: block;
  width: 100%;
  margin-top: .35rem;
  padding: .65rem .75rem;
  font: inherit;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
}
.card-form input:focus, .card-form textarea:focus,
.btn:focus-visible, .tier:focus-visible, a:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}
.band-ink a:focus-visible, .band-ink .btn:focus-visible, .band-ink .tier:focus-visible { outline-color: var(--paper); }
.check { display: flex; align-items: center; gap: .5rem; font-weight: 700; }
.check input { width: 1.1rem; height: 1.1rem; accent-color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: end; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-micro { font-size: .8rem; opacity: .7; margin-top: .7rem; }
.form-status {
  margin-top: .8rem;
  padding: .7rem .9rem;
  border: 2px solid var(--ink);
  background: var(--tint);
  font-weight: 700;
  font-size: .95rem;
}
.card-form input[type="file"] {
  display: block;
  width: 100%;
  margin-top: .35rem;
  font-size: .9rem;
}
/* honeypot: parked far off-screen, real people never see it */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* celebration layer for the confetti burst */
.confetti { position: fixed; inset: 0; pointer-events: none; z-index: 100; }

/* ============================================================
   SUPPORTERS' ROLL
   ============================================================ */
.roll-carousel { display: flex; align-items: stretch; gap: .5rem; }
.supporter-feed {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: .4rem;
  scrollbar-width: thin;
}
.supporter-item {
  flex: 0 0 250px;
  scroll-snap-align: start;
  border: 2px solid var(--ink); background: var(--paper); padding: .8rem 1rem;
}
.supporter-feed .wall-empty { width: 100%; }
.supporter-cta {
  flex: 0 0 250px;
  scroll-snap-align: start;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--ink);
  padding: .8rem 1rem;
  font-weight: 800; text-align: center;
  text-decoration: none; color: var(--ink);
  text-transform: uppercase; font-size: .85rem; letter-spacing: .04em;
}
.supporter-cta:hover { background: var(--accent); }
.roll-arrow {
  flex: none; align-self: center;
  width: 2.4rem; height: 2.4rem;
  border: 2px solid var(--ink); background: var(--paper); color: var(--ink);
  font-size: 1.3rem; font-weight: 900; line-height: 1;
  cursor: pointer; font-family: inherit;
}
.roll-arrow:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 720px) { .roll-arrow { display: none; } }
.supporter-item strong { display: block; }
.supporter-kind {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; opacity: .65;
}
.supporter-item p { font-size: .9rem; margin-top: .3rem; }

/* ============================================================
   SHARE + SIGNUP BAND
   ============================================================ */
.share-band { padding: 3rem 0; }
.share-band h3 { text-transform: uppercase; }
.share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 820px) { .share-grid { grid-template-columns: 1fr; } }
.share-buttons { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.signup-row { display: flex; gap: .6rem; margin-top: 1rem; }
.signup-row input[type="email"] {
  flex: 1; min-width: 0; padding: .65rem .75rem; font: inherit;
  border: 2px solid var(--paper); background: transparent; color: var(--paper);
}
.signup-row input[type="email"]::placeholder { color: var(--paper); opacity: .5; }

/* ============================================================
   BUSINESS WALL
   ============================================================ */
.business-wall { margin-top: 2.5rem; }
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .9rem;
  margin-top: .6rem;
}
.business-card { border: 2px solid var(--ink); background: var(--paper); padding: 1rem; text-align: center; }
.business-card img {
  max-width: 100%; height: 72px; object-fit: contain;
  filter: grayscale(1); display: block; margin: 0 auto .6rem;
}
.business-card strong { display: block; text-transform: uppercase; font-size: .9rem; letter-spacing: .04em; }
.business-card a { color: inherit; }
.business-card p { font-size: .85rem; opacity: .85; margin-top: .3rem; }

/* ============================================================
   THANK-YOU BANNER NAME FORM
   ============================================================ */
.thanks-wall-form { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-top: .9rem; }
.thanks-wall-form input[type="text"]:not(.hp-field) {
  padding: .5rem .7rem; font: inherit; min-width: 210px;
  border: 2px solid var(--paper); background: transparent; color: var(--paper);
}
.thanks-wall-form input::placeholder { color: var(--paper); opacity: .55; }

/* ============================================================
   IDEAS — voting board (/ideas.html) + teaser scores
   ============================================================ */
.chip-score { font-weight: 900; margin-left: .4rem; }
.ideas-full { margin-top: 2.2rem; }
.idea-row {
  display: flex; align-items: center; gap: 1rem;
  border: 2px solid var(--ink); background: var(--paper);
  padding: .8rem 1rem; margin-bottom: .7rem;
}
.idea-votes { display: flex; flex-direction: column; align-items: center; gap: .25rem; flex: none; }
.vote-btn {
  border: 2px solid var(--ink); background: var(--paper); color: var(--ink);
  font-weight: 900; font-size: .95rem; line-height: 1;
  width: 2.4rem; height: 2rem; cursor: pointer; font-family: inherit;
}
.vote-btn:hover { background: var(--ink); color: var(--paper); }
.vote-btn.is-yours { background: var(--ink); color: var(--paper); }
.idea-score { font-weight: 900; font-size: 1.1rem; }
.idea-body { flex: 1; }
.idea-body p { font-size: 1rem; }
.idea-body .idea-name { font-size: .8rem; opacity: .7; font-weight: 700; margin-top: .1rem; }
.board-cta { margin-top: 1.8rem; }

/* ---- memory wall ---- */
.memory-wall {
  columns: 2;
  column-gap: 1.2rem;
}
@media (max-width: 760px) { .memory-wall { columns: 1; } }
.memory-card {
  break-inside: avoid;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.2rem;
}
.memory-card img { width: 100%; height: auto; display: block; border: 2px solid var(--ink); margin-bottom: .8rem; filter: grayscale(1); }
.memory-text { font-size: 1rem; }
.memory-text::before { content: "“"; font-size: 1.6rem; font-weight: 900; line-height: 0; margin-right: .1rem; }
.memory-text::after { content: "”"; font-size: 1.6rem; font-weight: 900; line-height: 0; margin-left: .1rem; }
.memory-name { margin-top: .7rem; font-weight: 800; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.memory-years { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: .75; display: block; }

.wall-empty {
  border: 2px dashed var(--ink);
  padding: 1.4rem;
  text-align: center;
  font-weight: 700;
  column-span: all;
}

/* ---- ideas board ---- */
.ideas-board { display: flex; flex-wrap: wrap; gap: .6rem; }
.board-label { width: 100%; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .7; margin-bottom: .2rem; }

/* ============================================================
   PRESS
   ============================================================ */
.fact-sheet {
  margin-top: 1.8rem;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.fact-sheet dt {
  float: left;
  clear: left;
  width: 8.5rem;
  padding: .7rem 1rem;
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fact-sheet dd { padding: .7rem 1rem .7rem 9.5rem; border-bottom: 1px solid var(--line); }
.fact-sheet dd:last-child { border-bottom: none; }
@media (max-width: 560px) {
  .fact-sheet dt { float: none; width: auto; padding-bottom: 0; }
  .fact-sheet dd { padding: .2rem 1rem .7rem; }
}

/* ============================================================
   FAQ
   ============================================================ */
details {
  border: 2px solid var(--ink);
  background: var(--paper);
  margin-bottom: .7rem;
}
summary {
  padding: .9rem 1.1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; font-weight: 900; flex: none; }
details[open] summary::after { content: "–"; }
details p { padding: 0 1.1rem 1rem; max-width: var(--measure); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 3.5rem 0 6rem; }
.footer-grid { display: flex; gap: 3rem; align-items: flex-start; flex-wrap: wrap; }
.footer-magpie { width: 96px; height: 81px; }
.footer-name { font-weight: 900; text-transform: uppercase; margin-top: .6rem; line-height: 1.3; }
.footer-name span { font-weight: 400; text-transform: none; font-style: italic; opacity: .8; }
.footer-info { max-width: 26rem; }
.footer-contact { display: flex; gap: 1.4rem; margin-top: 1rem; font-weight: 700; }
.footer-tiny { font-size: .8rem; opacity: .65; margin-top: 1.2rem; }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 1rem;
  background: var(--paper);
  border-top: 2px solid var(--ink);
}
.sticky-figure { font-size: .9rem; font-weight: 700; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}

/* ============================================================
   MEMBER PERKS — the gold band under the hero
   (ink on gold only, per the design rules)
   ============================================================ */
.perks-band { background: var(--accent); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.perks-band .kicker { opacity: 1; font-weight: 700; }
.perks-band .section-lede { margin-bottom: 2rem; }
.perks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.perk-card { display: flex; flex-direction: column; background: var(--paper); border: 2px solid var(--ink); color: var(--ink); text-decoration: none; }
a.perk-card:hover .perk-name { text-decoration: underline; }
.perk-card.perk-soon { border-style: dashed; }
.perk-soon .perk-offer { font-weight: 400; font-style: italic; }
.perk-logo { display: flex; align-items: center; justify-content: center; height: 110px; padding: .8rem; background: #fff; border-bottom: 2px solid var(--ink); }
.perk-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.perk-body { display: block; padding: .95rem 1.05rem 1.15rem; }
.perk-name { display: block; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; margin-bottom: .35rem; }
.perk-offer { display: block; font-weight: 700; font-size: 1.05rem; line-height: 1.35; }
.perk-detail { display: block; font-size: .9rem; opacity: .8; margin-top: .35rem; }
.perks-foot { margin-top: 1.8rem; margin-bottom: 1.4rem; max-width: var(--measure); font-size: .95rem; }
