/* ===========================================================
   Stand With Stuart Adams — independent supporter site
   Dependency-free. Theme: Utah blue + warm gold accent.
   =========================================================== */

:root {
  --navy: #0a2a52;
  --navy-deep: #061c39;
  --blue: #1d5aa6;
  --blue-bright: #2f73c9;
  --gold: #f4c95d;
  --gold-deep: #d9a528;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --mist-2: #e9f0f8;
  --ink: #1a2433;
  --ink-soft: #495469;
  --line: #dbe4f0;
  --radius: 16px;
  --shadow: 0 18px 50px -20px rgba(10, 42, 82, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(10, 42, 82, 0.3);
  --max: 1140px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, .brand { font-family: var(--font-head); line-height: 1.15; }

a { color: var(--blue); }

/* ---------- Disclaimer bar ---------- */
.disclaimer-bar {
  background: var(--navy-deep);
  color: #cdddf2;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem 1rem;
  letter-spacing: 0.01em;
}
.disclaimer-bar a { color: var(--gold); font-weight: 600; text-decoration: none; white-space: nowrap; }
.disclaimer-bar a:hover { text-decoration: underline; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.brand strong { color: var(--blue); }
.brand-mark { color: var(--gold-deep); font-size: 1.1rem; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--blue-bright); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; background: var(--navy-deep); overflow: hidden; }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 38%;
  animation: heroZoom 26s ease-out both;
  transform-origin: 72% 34%;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }
@media (prefers-reduced-motion: reduce) { .hero-img { animation: none; } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(6,28,57,0.94) 0%, rgba(8,33,64,0.80) 36%, rgba(10,42,82,0.46) 68%, rgba(13,64,122,0.28) 100%),
    linear-gradient(0deg, rgba(6,28,57,0.88) 0%, rgba(6,28,57,0) 48%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.25rem 4rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero h1 span { color: var(--gold); }
.lede {
  max-width: 640px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #e4eefb;
  margin: 0 0 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 3rem; }

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); background: #ffd877; }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--gold); }
.hero-stats span { font-size: 0.9rem; color: #cfe0f4; max-width: 12ch; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--mist); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 0.6rem;
}
.section-eyebrow.light { color: var(--gold); }
.section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--navy);
}
.section-intro { max-width: 620px; color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 2.5rem; }

/* ---------- Record cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  width: 56px; height: 56px;
  margin-bottom: 1rem;
}
.card-icon img {
  width: 100%; height: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.2rem; margin: 0 0 0.5rem; color: var(--navy); }
.card p { margin: 0; color: var(--ink-soft); }
.card strong { color: var(--ink); }

/* ---------- Where he stands ---------- */
.stands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.stand {
  padding: 1.4rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: #fff;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm);
}
.stand h3 { margin: 0 0 0.4rem; color: var(--navy); font-size: 1.1rem; }
.stand p { margin: 0; color: var(--ink-soft); }

.pull-quote {
  margin: 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--navy);
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 0;
}
.pull-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 1rem;
}

/* ---------- Nuclear & Energy (featured) ---------- */
.section-energy {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, #16407a 0%, var(--navy) 45%, var(--navy-deep) 100%);
  color: #eaf2fc;
}
.section-energy h2 { color: #fff; max-width: 18ch; }
.section-intro.light { color: #cfe0f4; }
.energy-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(244,201,93,0.22) 0%, rgba(244,201,93,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.section-energy .container { position: relative; z-index: 1; }
.energy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin: 2.2rem 0;
}
.energy-tile {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 1.3rem 1.35rem;
  backdrop-filter: blur(4px);
}
.energy-tile h3 { margin: 0 0 0.4rem; color: var(--gold); font-size: 1.08rem; }
.energy-tile p { margin: 0; color: #d4e2f4; font-size: 0.97rem; }
.energy-tile strong { color: #fff; }
.energy-figure {
  margin: 0 0 1.6rem; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.14);
}
.energy-figure img { width: 100%; height: auto; display: block; }
.energy-figure figcaption { font-size: 0.8rem; color: #b9cce6; padding: 0.6rem 1rem; background: rgba(0,0,0,0.28); }
.energy-highlight {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  padding: 1.8rem 1.9rem;
  margin-top: 1.5rem;
}
.energy-highlight h3 { margin: 0 0 0.7rem; color: #fff; font-size: 1.3rem; }
.energy-highlight p { margin: 0; color: #d8e5f6; }
.energy-highlight strong { color: #fff; }
.energy-quote {
  margin: 1.4rem 0 0;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 600;
  color: var(--gold);
}
.energy-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 600;
  color: #b9cce6;
  margin-top: 0.5rem;
}

/* ---------- Story ---------- */
.story {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.story-text p { color: var(--ink-soft); }
.story-text strong { color: var(--ink); }
.story-facts {
  background: var(--navy);
  color: #e6eefa;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.story-facts h3 { margin: 0 0 1rem; color: var(--gold); font-size: 1.1rem; }
.story-facts ul { list-style: none; margin: 0; padding: 0; }
.story-facts li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.98rem;
}
.story-facts li:last-child { border-bottom: 0; }
.story-facts span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  color: #9bb6da;
  margin-bottom: 0.1rem;
}

/* ---------- Why (accent) ---------- */
.section-accent {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
}
.section-accent h2 { color: #fff; }
.why { max-width: 760px; }
.why-body p { color: #dfeaf8; font-size: 1.1rem; }
.why-sign { font-family: var(--font-head); font-weight: 600; color: var(--gold); margin-top: 1.5rem; }
.editable-note {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: #bcd1ec;
  background: rgba(255,255,255,0.08);
  padding: 0.1rem 0.55rem;
  border-radius: 6px;
  margin-left: 0.4rem;
}

/* ---------- Get involved ---------- */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.involve-card {
  display: block;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  font: inherit;
  cursor: pointer;
  width: 100%;
}
.involve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.involve-card.as-button { background: #fff; }
.involve-icon {
  width: 54px; height: 54px;
  margin-bottom: 1rem;
}
.involve-icon img {
  width: 100%; height: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: var(--shadow-sm);
}
.involve-card h3 { margin: 0 0 0.5rem; color: var(--navy); font-size: 1.2rem; }
.involve-card p { margin: 0 0 1rem; color: var(--ink-soft); }
.involve-link { font-weight: 700; color: var(--blue); font-family: var(--font-head); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #b9cae3; padding: 3rem 0; font-size: 0.9rem; }
.footer-inner { display: grid; gap: 1.5rem; }
.footer-disclaimer { max-width: 820px; line-height: 1.7; }
.footer-disclaimer strong { color: #fff; }
.footer-disclaimer a { color: var(--gold); }
.footer-meta { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.2rem; }
.footer-meta p { margin: 0.3rem 0; }
.footer-sources a { color: var(--gold); text-decoration: none; }
.footer-sources a:hover { text-decoration: underline; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--navy-deep);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Stats band (Utah by the Numbers) ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--blue) 100%);
  color: #fff;
  padding: 3.6rem 0;
  text-align: center;
}
.stats-band .stats-eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem;
  font-weight: 700; color: var(--gold); margin: 0 0 2rem;
}
.bignum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem 1.5rem;
}
.bignum strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.bignum > span { display: block; color: #e3eefb; font-weight: 600; margin-top: 0.6rem; font-size: 1rem; }
.bignum .num { display: inline; }
.bignum small { display: block; color: #9bb6da; font-size: 0.78rem; margin-top: 0.35rem; }

/* ---------- Timeline ---------- */
.timeline-title { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin: 0 0 1.5rem; }
.timeline { position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 118px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.tl-item { position: relative; display: grid; grid-template-columns: 118px 1fr; gap: 1.6rem; padding-bottom: 1.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 112px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--gold-deep);
}
.tl-year { text-align: right; padding-right: 1.6rem; font-family: var(--font-head); font-weight: 800; color: var(--blue); }
.tl-body h4 { margin: 0 0 0.2rem; color: var(--navy); font-size: 1.08rem; }
.tl-body p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- FAQ accordions ---------- */
.faq { max-width: 780px; }
.faq details {
  border: 1px solid var(--line); border-radius: 12px;
  padding: 0 1.3rem; margin-bottom: 0.85rem; background: #fff;
  transition: border-color 0.15s ease;
}
.faq details[open] { border-color: var(--blue); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 0;
  font-family: var(--font-head); font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.5rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq details > p { margin: 0 0 1.1rem; color: var(--ink-soft); }
/* dark variant for the energy section */
.faq-dark details { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); }
.faq-dark details[open] { border-color: var(--gold); }
.faq-dark summary { color: #fff; }
.faq-dark summary::after { color: var(--gold); }
.faq-dark details > p { color: #d4e2f4; }

/* ---------- Key dates + share ---------- */
.dates-callout {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem;
  background: var(--mist); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.4rem 1.7rem; margin-bottom: 2.2rem;
}
.dates-callout .dc-lead { font-family: var(--font-head); font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 0.6rem; }
.dc-lead .dc-dot { width: 10px; height: 10px; border-radius: 50%; background: #e0322f; box-shadow: 0 0 0 4px rgba(224,50,47,0.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(224,50,47,0.18); } 50% { box-shadow: 0 0 0 7px rgba(224,50,47,0.06); } }
.date-pill { display: flex; flex-direction: column; }
.date-pill strong { font-family: var(--font-head); color: var(--navy); font-size: 1.05rem; }
.date-pill span { font-size: 0.82rem; color: var(--ink-soft); }
.share-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; align-items: center; }
.share-row .share-label { font-weight: 600; color: var(--ink-soft); margin-right: 0.2rem; }
.share-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.1rem; border-radius: 999px; font-weight: 700;
  text-decoration: none; border: 1px solid var(--line); color: var(--navy);
  background: #fff; cursor: pointer; font-family: var(--font-head); font-size: 0.92rem;
  transition: border-color 0.15s ease, transform 0.12s ease;
}
.share-btn:hover { border-color: var(--blue); transform: translateY(-2px); }
.share-btn svg { width: 18px; height: 18px; }

/* ---------- Issue deep-dives + charts ---------- */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}
.issue-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.issue-tag {
  align-self: flex-start;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--blue); background: var(--mist-2); padding: 0.3rem 0.7rem;
  border-radius: 999px; margin-bottom: 0.9rem;
}
.issue-card h3 { margin: 0 0 0.5rem; color: var(--navy); font-size: 1.2rem; }
.issue-card > p { margin: 0 0 1.3rem; color: var(--ink-soft); font-size: 0.96rem; }
.issue-card .issue-spacer { flex: 1; }
.issue-source { font-size: 0.72rem; color: #8794a8; margin-top: 1rem; }
.issue-source a { color: #8794a8; }

.chart { display: flex; align-items: flex-end; gap: 0.7rem; height: 160px; padding-top: 1.5rem; }
.cbar {
  flex: 1; min-width: 0; position: relative; height: var(--h);
  background: linear-gradient(180deg, var(--blue-bright), var(--navy));
  border-radius: 7px 7px 0 0;
}
.cbar.gold { background: linear-gradient(180deg, var(--gold), var(--gold-deep)); }
.js .cbar { height: 0; transition: height 1.1s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .chart.in-view .cbar { height: var(--h); }
.cbar .cv {
  position: absolute; top: -1.5em; left: -2px; right: -2px; text-align: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--navy); white-space: nowrap;
}
.chart-x { display: flex; gap: 0.7rem; margin-top: 0.55rem; }
.chart-x span { flex: 1; text-align: center; font-size: 0.76rem; color: var(--ink-soft); }

/* ---------- Quotes + validation ("In His Own Words") ---------- */
.quotes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem; margin-top: 2rem;
}
.quote-card {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0; padding: 1.6rem; box-shadow: var(--shadow-sm);
}
.quote-card blockquote {
  margin: 0 0 1rem; font-family: var(--font-head); font-weight: 600;
  font-size: 1.12rem; color: var(--navy); line-height: 1.45;
}
.quote-card cite { font-style: normal; font-size: 0.84rem; color: var(--ink-soft); font-weight: 600; }
.validation { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.val-pill {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--mist); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.95rem 1.2rem; flex: 1; min-width: 240px;
}
.val-pill .vp-num { font-family: var(--font-head); font-weight: 800; color: var(--gold-deep); font-size: 1.7rem; line-height: 1; flex: none; }
.val-pill span { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Supporters / endorsers ---------- */
.supporters-intro {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.supporters-intro strong { color: var(--navy); }
.endorsers {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}
.endorsers li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1.2rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.endorsers li::before {
  content: "\2605";
  color: var(--gold-deep);
  font-size: 1.05rem;
  line-height: 1;
  flex: none;
}
.supporters-note {
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: #8794a8;
}

/* ---------- Language switch ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 0.3rem; margin-left: 0.5rem;
  font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); text-decoration: none;
  border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.8rem;
}
.lang-switch:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- Responsive ---------- */
/* Nav collapses to a hamburger early — the full row of links needs ~1100px,
   so below that we switch to the mobile menu to avoid a cramped/wrapped header. */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 0; white-space: normal; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
}

@media (max-width: 860px) {
  .timeline::before { left: 7px; }
  .tl-item { grid-template-columns: 1fr; gap: 0.2rem; padding-left: 2rem; }
  .tl-item::before { left: 1px; }
  .tl-year { text-align: left; padding-right: 0; }
  .story { grid-template-columns: 1fr; }
  .story-facts { position: static; }
}
