/* ============================================================
   Shared design system — Truthteller Society / TruthIcons
   Classical + modern: ink navy, marble, gold, serif display
   ============================================================ */

:root {
  /* Core palette */
  --ink:        #0d1b2a;
  --ink-2:      #14293f;
  --ink-3:      #1d3a55;
  --marble:     #f7f5ef;
  --marble-2:   #efebe1;
  --paper:      #ffffff;
  --gold:       #c9a227;
  --gold-soft:  #e3c86a;
  --gold-deep:  #8f7215;
  --ember:      #b3402f;
  --text:       #16202b;
  --text-soft:  #4c5b6a;
  --line:       #d9d3c6;
  --line-dark:  rgba(255,255,255,.14);

  /* Type */
  --display: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --wrap: 1160px;
  --narrow: 760px;
  --r: 4px;
  --shadow: 0 1px 2px rgba(13,27,42,.06), 0 8px 28px rgba(13,27,42,.08);
  --shadow-lg: 0 2px 6px rgba(13,27,42,.08), 0 24px 60px rgba(13,27,42,.16);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--marble);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink-3); text-decoration-color: rgba(201,162,39,.55); text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: var(--body); font-weight: 700; letter-spacing: .01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--narrow); margin-left: auto; margin-right: auto; }

.eyebrow {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 1rem;
  display: block;
}
.dark .eyebrow { color: var(--gold-soft); }

.lede { font-size: 1.2rem; line-height: 1.6; color: var(--text-soft); }
.dark .lede { color: rgba(247,245,239,.78); }

.rule { width: 64px; height: 2px; background: var(--gold); border: 0; margin: 0 0 1.6rem; }
.rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,27,42,.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-dark);
}
.nav {
  display: flex; align-items: center; gap: 20px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--display); font-size: 1.32rem; font-weight: 600;
  color: var(--marble); letter-spacing: .005em;
}
.brand-sub {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: 9px 13px; border-radius: var(--r);
  color: rgba(247,245,239,.82); text-decoration: none;
  font-size: .87rem; font-weight: 500; letter-spacing: .01em;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.active { color: var(--gold-soft); }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; background: var(--gold);
  margin-top: 5px; border-radius: 2px;
}

.nav-cta {
  background: var(--gold); color: var(--ink) !important;
  padding: 10px 18px !important; font-weight: 700 !important;
  border-radius: var(--r); white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-soft) !important; }

/* Language switcher */
.lang { display: flex; gap: 2px; margin-left: 6px; }
.lang button {
  background: none; border: 0; cursor: pointer;
  font: inherit; font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  color: rgba(247,245,239,.55); padding: 6px 7px; border-radius: 3px;
}
.lang button:hover { color: #fff; }
.lang button[aria-pressed="true"] { color: var(--ink); background: var(--gold-soft); }

.burger {
  display: none; background: none; border: 1px solid var(--line-dark);
  border-radius: var(--r); padding: 9px 11px; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--marble); margin: 4px 0; }

@media (max-width: 1040px) {
  .burger { display: block; order: 3; }
  .nav-links {
    order: 4; flex-basis: 100%; flex-direction: column; align-items: stretch;
    gap: 0; display: none; padding-bottom: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--line-dark); }
  .nav-links a.active::after { display: none; }
  .nav-cta { text-align: center; margin-top: 12px; border-bottom: 0 !important; }
  .nav { flex-wrap: wrap; padding-top: 8px; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
section.tight { padding: 56px 0; }
.dark { background: var(--ink); color: rgba(247,245,239,.86); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--marble); }
.dark a { color: var(--gold-soft); }
.alt { background: var(--marble-2); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .rule { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(201,162,39,.20), transparent 62%),
    radial-gradient(760px 420px at 5% 108%, rgba(29,58,85,.85), transparent 60%),
    linear-gradient(165deg, #0b1725 0%, #0d1b2a 45%, #13263a 100%);
  color: var(--marble);
  padding: 108px 0 100px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.030) 0 1px, transparent 1px 92px);
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: var(--marble); max-width: 15ch; }
.hero .lede { max-width: 62ch; color: rgba(247,245,239,.8); font-size: 1.28rem; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .8fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-quote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 22px;
  font-family: var(--display); font-size: 1.5rem; line-height: 1.35;
  color: rgba(247,245,239,.92);
}
.hero-quote cite {
  display: block; margin-top: 12px; font-family: var(--body); font-style: normal;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: var(--r);
  font-weight: 700; font-size: .93rem; letter-spacing: .015em;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s, color .15s, border-color .15s;
  font-family: var(--body);
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--marble); }
.btn-ink:hover { background: var(--ink-3); color: #fff; }
.btn-ghost { border-color: rgba(247,245,239,.4); color: var(--marble); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--marble); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 30px 28px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: .4em; }
.card p { color: var(--text-soft); font-size: .97rem; }
.dark .card {
  background: rgba(255,255,255,.045); border-color: var(--line-dark);
  box-shadow: none;
}
.dark .card p { color: rgba(247,245,239,.72); }

.card-num {
  font-family: var(--display); font-size: 2.4rem; color: var(--gold);
  line-height: 1; margin-bottom: 14px; font-weight: 600;
}
.card-icon { width: 34px; height: 34px; margin-bottom: 16px; color: var(--gold-deep); }
.dark .card-icon { color: var(--gold-soft); }

/* Pillar / value cards with top gold edge */
.card.edge { border-top: 3px solid var(--gold); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line-dark); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--ink); padding: 34px 22px; text-align: center; }
.stat-n {
  font-family: var(--display); font-size: 2.9rem; line-height: 1;
  color: var(--gold-soft); font-weight: 600;
}
.stat-l {
  font-size: .72rem; letter-spacing: .17em; text-transform: uppercase;
  color: rgba(247,245,239,.66); margin-top: 12px; font-weight: 600;
}

/* ---------- Directory ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; align-items: center; }
.filters input[type="search"] {
  flex: 1 1 240px; min-width: 200px;
  padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--r);
  font: inherit; font-size: .93rem; background: var(--paper);
}
.chip {
  border: 1px solid var(--line); background: var(--paper); color: var(--text-soft);
  padding: 9px 16px; border-radius: 100px; font: inherit; font-size: .82rem;
  font-weight: 600; cursor: pointer; transition: all .15s;
}
.chip:hover { border-color: var(--gold); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--marble); }

.org {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s;
}
.org:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.org h3 { font-size: 1.14rem; margin: 0; }
.org p { font-size: .92rem; color: var(--text-soft); margin: 0; flex: 1; }
.org-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  background: var(--marble-2); color: var(--text-soft);
  padding: 4px 9px; border-radius: 3px;
}
.tag.region { background: rgba(201,162,39,.16); color: var(--gold-deep); }
.org a.org-link { font-size: .85rem; font-weight: 700; text-decoration: none; }
.org a.org-link::after { content: " \2197"; }

/* ---------- Timeline / steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: s; }
.steps li {
  counter-increment: s; position: relative; padding: 0 0 34px 62px;
  border-left: 1px solid var(--line); margin-left: 18px;
}
.dark .steps li { border-color: var(--line-dark); }
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(s); position: absolute; left: -19px; top: -4px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
}
.steps h3 { margin-bottom: .25em; }
.steps p { color: var(--text-soft); margin: 0; }
.dark .steps p { color: rgba(247,245,239,.72); }

/* ---------- Nominee / ballot ---------- */
.nominee {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 0; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: box-shadow .15s, transform .15s;
}
.nominee:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.nominee-portrait {
  height: 148px; background: linear-gradient(150deg, var(--ink-2), var(--ink));
  display: grid; place-items: center; position: relative;
}
.nominee-initials {
  font-family: var(--display); font-size: 2.7rem; color: var(--gold-soft); font-weight: 600;
  letter-spacing: .04em;
}
.nominee-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.nominee-body h3 { margin: 0; font-size: 1.2rem; }
.nominee-role {
  font-size: .74rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
}
.nominee-body p { font-size: .92rem; color: var(--text-soft); margin: 0; flex: 1; }

.meter { height: 7px; background: var(--marble-2); border-radius: 100px; overflow: hidden; }
.meter i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); border-radius: 100px; }
.meter-label { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-soft); font-weight: 600; }

.vote-btn {
  width: 100%; margin-top: 6px; padding: 12px; border-radius: var(--r);
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  font: inherit; font-weight: 700; font-size: .9rem; cursor: pointer; transition: all .15s;
}
.vote-btn:hover { background: var(--ink); color: var(--marble); }
.vote-btn[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.vote-btn[aria-pressed="true"]::before { content: "\2713  "; }

/* ---------- Countdown ---------- */
.countdown { display: flex; gap: 14px; flex-wrap: wrap; }
.cd-unit {
  background: rgba(255,255,255,.06); border: 1px solid var(--line-dark);
  border-radius: var(--r); padding: 14px 18px; min-width: 84px; text-align: center;
}
.cd-n { font-family: var(--display); font-size: 2.1rem; line-height: 1; color: var(--gold-soft); font-weight: 600; }
.cd-l { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(247,245,239,.6); margin-top: 8px; font-weight: 700; }

/* ---------- Laureate / hall of honour ---------- */
.laureate {
  display: grid; grid-template-columns: 96px 1fr; gap: 24px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.dark .laureate { border-color: var(--line-dark); }
.laureate:last-child { border-bottom: 0; }
.laureate-medal {
  width: 96px; height: 96px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, var(--gold-soft), var(--gold) 46%, var(--gold-deep) 100%);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: #2b2205;
  box-shadow: inset 0 -3px 10px rgba(0,0,0,.25), var(--shadow);
}
.laureate-month {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 6px;
}
.dark .laureate-month { color: var(--gold-soft); }
@media (max-width: 560px) { .laureate { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-soft); }
.field .hint { font-size: .84rem; color: var(--text-soft); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r);
  font: inherit; font-size: .96rem; background: var(--paper); color: var(--text);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: transparent;
}
.field textarea { min-height: 150px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 660px) { .field-row { grid-template-columns: 1fr; } }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: var(--text-soft); }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: none; }

.form-panel {
  background: var(--paper); border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--r); padding: 38px 36px; box-shadow: var(--shadow);
}
@media (max-width: 560px) { .form-panel { padding: 26px 20px; } }

.notice {
  border-left: 3px solid var(--gold); background: rgba(201,162,39,.09);
  padding: 18px 22px; border-radius: 0 var(--r) var(--r) 0; font-size: .95rem;
}
.notice.warn { border-color: var(--ember); background: rgba(179,64,47,.08); }
.notice strong { color: var(--ink); }
.dark .notice { background: rgba(201,162,39,.12); }
.dark .notice strong { color: var(--marble); }

/* ---------- Accordion ---------- */
details.acc {
  border-bottom: 1px solid var(--line); padding: 6px 0;
}
details.acc summary {
  cursor: pointer; list-style: none; padding: 18px 34px 18px 0; position: relative;
  font-family: var(--display); font-size: 1.25rem; font-weight: 600; color: var(--ink);
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--gold-deep); line-height: 1;
}
details.acc[open] summary::after { content: "\2013"; }
details.acc .acc-body { padding: 0 40px 20px 0; color: var(--text-soft); }

/* ---------- Callout band ---------- */
.band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--marble); border-radius: var(--r); padding: 54px 48px;
  position: relative; overflow: hidden;
}
.band h2 { color: var(--marble); }
.band p { color: rgba(247,245,239,.8); }
.band::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.28), transparent 68%);
}
@media (max-width: 560px) { .band { padding: 34px 24px; } }

/* ---------- Page header (interior pages) ---------- */
.page-head {
  background:
    radial-gradient(900px 420px at 88% -20%, rgba(201,162,39,.18), transparent 60%),
    linear-gradient(160deg, #0b1725, #13263a);
  color: var(--marble); padding: 76px 0 66px;
}
.page-head h1 { color: var(--marble); margin-bottom: .3em; }
.page-head .lede { color: rgba(247,245,239,.78); max-width: 68ch; }

/* ---------- Prose ---------- */
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 1.25em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose blockquote {
  margin: 1.8em 0; padding-left: 24px; border-left: 2px solid var(--gold);
  font-family: var(--display); font-size: 1.35rem; line-height: 1.4; color: var(--ink);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,245,239,.72); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--gold-soft); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(247,245,239,.72); text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer p { font-size: .92rem; }
.footer-bottom {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .82rem; color: rgba(247,245,239,.5);
}
.sister {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line-dark); border-radius: 100px;
  padding: 8px 16px; font-size: .82rem; color: rgba(247,245,239,.8);
  text-decoration: none; margin-top: 8px;
}
.sister:hover { border-color: var(--gold); color: var(--gold-soft); }
.sister b { color: var(--gold-soft); font-weight: 700; }

/* ---------- Letter templates ---------- */
.tpl {
  background: var(--paper); border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r); margin-bottom: 26px; overflow: hidden;
  box-shadow: var(--shadow);
}
.tpl-head {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 20px 24px; border-bottom: 1px solid var(--line);
  background: var(--marble);
}
.tpl-head h3 { margin: 0; flex: 1; font-size: 1.2rem; }
.tpl-copy { padding: 8px 18px; font-size: .8rem; }
.tpl pre {
  margin: 0; padding: 24px; overflow-x: auto;
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  font-size: .85rem; line-height: 1.72; color: var(--text);
  white-space: pre-wrap; word-wrap: break-word;
}
.dark .tpl, .dark-tpl { background: rgba(255,255,255,.04); border-color: var(--line-dark); box-shadow: none; }
.dark .tpl-head { background: rgba(255,255,255,.04); border-color: var(--line-dark); }
.dark .tpl pre { color: rgba(247,245,239,.86); }
.tpl-copy.done::after { content: " \2713"; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt0 { margin-top: 0; } .mt1 { margin-top: 14px; } .mt2 { margin-top: 28px; } .mt3 { margin-top: 44px; }
.mb0 { margin-bottom: 0; } .mb2 { margin-bottom: 28px; } .mb3 { margin-bottom: 44px; }
.small { font-size: .86rem; }
.muted { color: var(--text-soft); }
.dark .muted { color: rgba(247,245,239,.66); }
.hide { display: none !important; }
.nowrap { white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .btn-row, .lang, .burger { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .hero, .page-head, .dark, .band { background: #fff !important; color: #000 !important; }
  .hero h1, .page-head h1, .dark h2, .band h2 { color: #000 !important; }
}

/* ============================================================
   TruthIcons-specific — the assembly
   ============================================================ */

/* Sticky call-to-action bar */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: linear-gradient(100deg, #12253a 0%, #0d1b2a 60%, #1d3a55 100%);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0,0,0,.35);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.cta-bar.show { transform: translateY(0); }
.cta-bar .wrap {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 14px; padding-bottom: 14px;
}
.cta-bar-text { flex: 1 1 300px; min-width: 0; color: var(--marble); }
.cta-bar-text b { color: var(--gold-soft); display: block; }
.cta-bar-text b [data-days-left] { white-space: nowrap; }
.cta-bar-text span { display: block; font-size: .82rem; color: rgba(247,245,239,.65); }
.cta-bar .btn { padding: 12px 26px; }
.cta-close {
  background: none; border: 0; color: rgba(247,245,239,.5);
  font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 6px 4px;
}
.cta-close:hover { color: #fff; }
body.has-cta-bar { padding-bottom: 92px; }
@media (max-width: 620px) {
  .cta-bar .wrap { gap: 10px; }
  .cta-bar-text { min-width: 100%; }
  .cta-bar .btn { flex: 1; text-align: center; }
}

/* Hero medal */
.medal-wrap { display: grid; place-items: center; position: relative; }
.medal {
  width: min(300px, 72vw); aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 33% 28%, #f2dc9a 0%, var(--gold-soft) 22%, var(--gold) 52%, var(--gold-deep) 88%);
  display: grid; place-items: center; text-align: center;
  box-shadow:
    inset 0 -10px 30px rgba(0,0,0,.32), inset 0 8px 24px rgba(255,255,255,.42),
    0 30px 70px rgba(0,0,0,.45);
  position: relative;
}
.medal::before {
  content: ""; position: absolute; inset: 13px; border-radius: 50%;
  border: 2px solid rgba(43,34,5,.34);
}
.medal-inner { padding: 12px 20px; }
.medal-mark {
  font-family: var(--display); font-size: clamp(2.1rem, 6vw, 3rem);
  color: #2b2205; line-height: 1; font-weight: 700;
}
.medal-sub {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(43,34,5,.75); font-weight: 800; margin-top: 10px;
}
.medal-halo {
  position: absolute; width: min(430px, 96vw); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(201,162,39,.28);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .55 } 50% { transform: scale(1.06); opacity: .2 } }

/* Ribbon flag */
.ribbon {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(201,162,39,.14); border: 1px solid rgba(201,162,39,.4);
  color: var(--gold-soft); border-radius: 100px;
  padding: 8px 18px; font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.ribbon .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,162,39,.7); animation: blip 2s infinite;
}
@keyframes blip {
  0% { box-shadow: 0 0 0 0 rgba(201,162,39,.7) }
  70% { box-shadow: 0 0 0 11px rgba(201,162,39,0) }
  100% { box-shadow: 0 0 0 0 rgba(201,162,39,0) }
}

/* Big CTA block */
.mega-cta {
  text-align: center;
  background:
    radial-gradient(700px 340px at 50% -20%, rgba(201,162,39,.28), transparent 65%),
    linear-gradient(150deg, #0b1725, #16293e);
  color: var(--marble); border-radius: var(--r);
  padding: 72px 40px; border: 1px solid rgba(201,162,39,.28);
}
.mega-cta h2 { color: var(--marble); font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 20ch; margin-inline: auto; }
.mega-cta p { color: rgba(247,245,239,.78); max-width: 58ch; margin-inline: auto; }
.mega-cta .btn-row { justify-content: center; }
@media (max-width: 560px) { .mega-cta { padding: 44px 22px; } }

/* Award showcase */
.award-frame {
  background: linear-gradient(160deg, #16293e, #0b1725);
  border: 1px solid rgba(201,162,39,.3); border-radius: var(--r);
  padding: 46px 38px; text-align: center; color: var(--marble);
  box-shadow: var(--shadow-lg);
}
.award-plate {
  background: linear-gradient(155deg, #fdfbf4 0%, #efe9d8 55%, #ddd3ba 100%);
  border: 10px solid #1a1408; border-radius: 3px;
  padding: 40px 32px; color: #1a1408; box-shadow: 0 20px 50px rgba(0,0,0,.45);
  max-width: 460px; margin: 0 auto;
}
.award-plate .ap-top { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; font-weight: 800; color: #6b5410; }
.award-plate .ap-name { font-family: var(--display); font-size: 2.1rem; font-weight: 700; margin: 16px 0 6px; line-height: 1.1; }
.award-plate .ap-line { width: 54px; height: 2px; background: var(--gold-deep); margin: 16px auto; }
.award-plate .ap-cite { font-family: var(--display); font-size: 1.02rem; font-style: italic; line-height: 1.5; color: #3a2f10; }
.award-plate .ap-foot { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; margin-top: 22px; color: #6b5410; font-weight: 700; }

/* Vote confirmation strip */
.confirm-strip {
  position: sticky; bottom: 96px; z-index: 90;
  background: var(--ink); color: var(--marble);
  border: 1px solid rgba(201,162,39,.45); border-left: 4px solid var(--gold);
  border-radius: var(--r); padding: 18px 24px; margin-top: 30px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.confirm-strip p { margin: 0; flex: 1; min-width: 200px; }
.confirm-strip b { color: var(--gold-soft); }

/* Nominee rank badge */
.nominee { position: relative; }
.rank {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(13,27,42,.75); border: 1px solid rgba(201,162,39,.6);
  color: var(--gold-soft); display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
}
.nominee-flag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800;
  color: rgba(247,245,239,.75);
}

/* ---------- Header polish: keep nav on one line ---------- */
@media (min-width: 1041px) {
  .nav-links a { white-space: nowrap; padding: 9px 11px; }
  .brand-sub { white-space: nowrap; }
}
@media (min-width: 1041px) and (max-width: 1300px) {
  .brand-sub { display: none; }
  .nav-links a { font-size: .84rem; padding: 9px 9px; }
  .nav-cta { padding: 10px 15px !important; }
}

/* ============================================================
   The Aletheia — sculpture, frame and presentation
   ============================================================ */
.statue-stage {
  position: relative;
  background:
    radial-gradient(520px 420px at 50% 22%, rgba(201,162,39,.20), transparent 68%),
    linear-gradient(170deg, #16293e 0%, #0b1725 70%);
  border: 1px solid rgba(201,162,39,.28); border-radius: var(--r);
  padding: 44px 30px 34px; text-align: center; overflow: hidden;
}
.statue-stage::after {
  content: ""; position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 62%; height: 26px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 70%);
}
.statue-stage img, .statue-stage svg { height: clamp(340px, 52vh, 560px); width: auto; margin: 0 auto; position: relative; z-index: 1; }
.statue-cap {
  position: relative; z-index: 1; margin-top: 22px;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 700;
}
.statue-cap span { display: block; color: rgba(247,245,239,.55); letter-spacing: .1em; font-weight: 500; margin-top: 6px; text-transform: none; font-size: .8rem; }

/* Spec list */
.spec { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.dark .spec { border-color: var(--line-dark); }
.spec li {
  display: grid; grid-template-columns: 168px 1fr; gap: 18px;
  padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .95rem;
}
.dark .spec li { border-color: var(--line-dark); }
.spec b {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 800; padding-top: 3px;
}
.dark .spec b { color: var(--gold-soft); }
@media (max-width: 560px) { .spec li { grid-template-columns: 1fr; gap: 4px; } }

/* Framed citation — the encadrement */
.frame-outer {
  background: linear-gradient(150deg, #7a4f27 0%, #4a2c13 40%, #6b4420 70%, #35200d 100%);
  padding: 26px; border-radius: 3px;
  box-shadow: 0 26px 60px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.09);
  max-width: 460px; margin: 0 auto;
}
.frame-lip { background: linear-gradient(160deg,#d9bf62,#8f7215); padding: 3px; border-radius: 1px; }
.frame-mount {
  background: #f6f2e6; padding: 40px 30px 30px; text-align: center; color: #1a1408;
  box-shadow: inset 0 0 40px rgba(120,100,60,.12);
}
.frame-mount .fm-top { font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; font-weight: 800; color: #6b5410; }
.frame-mount .fm-name { font-family: var(--display); font-size: 2rem; font-weight: 700; margin: 18px 0 4px; line-height: 1.08; }
.frame-mount .fm-rule { width: 48px; height: 1.5px; background: #8f7215; margin: 16px auto; }
.frame-mount .fm-cite { font-family: var(--display); font-style: italic; font-size: 1rem; line-height: 1.55; color: #3a2f10; }
.frame-plate {
  margin: 24px auto 0; max-width: 250px;
  background: linear-gradient(150deg,#f0dfa4,#c9a227 40%,#8f7215 78%,#dcc478);
  color: #2b2205; padding: 9px 12px; border-radius: 1px;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800;
}

/* Provenance card */
.prov {
  background: linear-gradient(160deg,#fdfbf3,#efe8d6);
  border: 1px solid #ded3b8; border-radius: 2px; padding: 26px 24px;
  color: #2a2413; box-shadow: var(--shadow);
}
.prov h3 { font-size: 1.15rem; margin-bottom: 6px; color: #1a1408; }
.prov .prov-num {
  font-family: var(--display); font-size: 2.4rem; color: #8f7215; line-height: 1; font-weight: 700;
}
.prov p { font-size: .9rem; color: #5a5136; }
.prov .prov-sig {
  margin-top: 16px; padding-top: 12px; border-top: 1px dashed #cabf9f;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: #8a7c4e; font-weight: 700;
}

/* Crate / case contents */
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.case-item {
  border: 1px solid var(--line-dark); border-radius: var(--r);
  background: rgba(255,255,255,.045); padding: 22px 20px;
}
.case-item .ci-n {
  font-family: var(--display); font-size: 1.6rem; color: var(--gold-soft); line-height: 1; margin-bottom: 10px;
}

/* ============================================================
   Photograph upload — nominations and the ballot
   ============================================================ */
.photo-field { display: block; }
.photo-field > label {
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-soft); display: block; margin-bottom: 6px;
}
.photo-field .opt {
  text-transform: none; letter-spacing: 0; font-weight: 500;
  color: var(--gold-deep); font-size: .78rem; margin-left: 6px;
}
.photo-row { display: flex; gap: 16px; align-items: stretch; flex-wrap: wrap; margin-top: 10px; }
.photo-drop {
  position: relative; flex: 1 1 260px; min-height: 128px;
  border: 2px dashed var(--line); border-radius: var(--r);
  background: var(--marble); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; padding: 18px 16px;
  text-align: center; cursor: pointer; transition: border-color .15s, background .15s;
}
.photo-drop:hover, .photo-drop.over { border-color: var(--gold); background: rgba(201,162,39,.07); }
.photo-drop input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.photo-drop .pd-icon { font-size: 1.5rem; color: var(--gold-deep); line-height: 1; }
.photo-drop .pd-text { font-size: .9rem; color: var(--text-soft); font-weight: 600; }
.photo-drop .pd-file { font-size: .78rem; color: var(--gold-deep); font-weight: 700; word-break: break-all; }
.photo-preview {
  position: relative; flex: 0 0 auto; width: 128px; height: 128px;
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  background: var(--ink);
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-remove {
  position: absolute; top: 6px; right: 6px; width: 26px; height: 26px;
  border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(13,27,42,.8); color: #fff; font-size: 1rem; line-height: 1;
}
.photo-remove:hover { background: var(--ember); }
.photo-error { color: var(--ember); font-size: .85rem; font-weight: 600; margin-top: 8px; }

/* Nominee portraits, when a photograph exists */
.nominee-portrait img.nominee-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(.92) contrast(1.03);
}
.nominee-portrait img.nominee-photo + .nominee-initials { display: none; }
.nominee-portrait::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(13,27,42,.72), rgba(13,27,42,0) 58%);
}
.nominee-credit {
  position: absolute; bottom: 6px; right: 10px; z-index: 3;
  font-size: .58rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(247,245,239,.72);
}

/* ============================================================
   Live chat widget
   ============================================================ */
.chat-root { position: fixed; right: 20px; bottom: 20px; z-index: 130; }
body.has-cta-bar .chat-root { bottom: 96px; }

.chat-launch {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(140deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #241c02; border: 0; border-radius: 100px;
  padding: 14px 22px; font: inherit; font-weight: 800; font-size: .9rem;
  cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.chat-launch:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,.5); }
.chat-root.open .chat-launch { display: none; }

.chat-panel {
  padding: 0;                       /* the global section padding must not apply here */
  width: min(392px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 140px));
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.chat-panel[hidden] { display: none; }

.chat-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 14px 14px 18px;
  background: linear-gradient(120deg, #0d1b2a, #1d3a55);
  color: var(--marble);
}
.chat-head .ch-title { display: block; font-size: .98rem; font-weight: 700; }
.chat-head .ch-sub { display: block; font-size: .68rem; color: rgba(247,245,239,.6); margin-top: 2px; }
.chat-head > div:first-child { flex: 1; min-width: 0; }
.chat-lang { display: flex; gap: 2px; }
.chat-lang button {
  background: none; border: 0; cursor: pointer; font: inherit;
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  color: rgba(247,245,239,.55); padding: 5px 6px; border-radius: 3px;
}
.chat-lang button[aria-pressed="true"] { background: var(--gold-soft); color: var(--ink); }
.chat-x {
  background: none; border: 0; color: rgba(247,245,239,.7);
  font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 4px;
}
.chat-x:hover { color: #fff; }

.chat-log {
  flex: 1; overflow-y: auto; padding: 18px 16px; display: flex;
  flex-direction: column; gap: 12px; background: var(--marble);
  overscroll-behavior: contain;
}
.chat-msg {
  max-width: 88%; padding: 12px 15px; border-radius: 14px;
  font-size: .92rem; line-height: 1.55; word-wrap: break-word;
}
.chat-msg.bot { background: var(--paper); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.me { background: var(--ink); color: var(--marble); border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-msg a { color: var(--gold-deep); font-weight: 600; }
.chat-msg.me a { color: var(--gold-soft); }
.chat-msg.typing { display: flex; gap: 5px; padding: 15px; }
.chat-msg.typing i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--text-soft);
  animation: chatdot 1s infinite ease-in-out;
}
.chat-msg.typing i:nth-child(2) { animation-delay: .15s; }
.chat-msg.typing i:nth-child(3) { animation-delay: .3s; }
@keyframes chatdot { 0%,60%,100% { opacity:.25; transform: translateY(0) } 30% { opacity:1; transform: translateY(-3px) } }

.chat-chips {
  display: flex; gap: 7px; flex-wrap: wrap;
  padding: 12px 14px; background: var(--marble-2); border-top: 1px solid var(--line);
}
.chat-chip {
  background: var(--paper); border: 1px solid var(--line); color: var(--text-soft);
  border-radius: 100px; padding: 7px 13px; font: inherit; font-size: .79rem;
  font-weight: 600; cursor: pointer;
}
.chat-chip:hover { border-color: var(--gold); color: var(--ink); }

.chat-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: var(--paper); }
.chat-input {
  flex: 1; min-width: 0; padding: 12px 14px; font: inherit; font-size: .92rem;
  border: 1px solid var(--line); border-radius: 100px; background: var(--marble);
}
.chat-input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.chat-send {
  background: var(--gold); color: var(--ink); border: 0; border-radius: 100px;
  padding: 12px 20px; font: inherit; font-weight: 700; font-size: .86rem; cursor: pointer;
}
.chat-send:hover { background: var(--gold-soft); }
.chat-note {
  margin: 0; padding: 0 14px 12px; font-size: .68rem; color: var(--text-soft);
  background: var(--paper); text-align: center;
}

@media (max-width: 560px) {
  .chat-root { right: 12px; bottom: 12px; left: 12px; }
  body.has-cta-bar .chat-root { bottom: 104px; }
  .chat-launch { width: 100%; justify-content: center; }
  .chat-panel { width: 100%; height: min(76vh, calc(100vh - 120px)); }
  .chat-msg { max-width: 92%; }
}

/* ---------- Touch targets ---------- */
@media (max-width: 1040px), (pointer: coarse) {
  .lang button { min-height: 44px; min-width: 44px; padding: 12px 10px; }
  .chat-lang button { min-height: 40px; min-width: 38px; }
  .chip, .chat-chip { min-height: 40px; }
}
.spot-dots button {
  width: 30px; height: 30px; border-radius: 50%; background: none; position: relative;
}
.spot-dots button::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 9px; height: 9px; border-radius: 50%; background: var(--line);
}
.spot-dots button[aria-current="true"] { background: none; transform: none; }
.spot-dots button[aria-current="true"]::after { background: var(--gold); transform: scale(1.35); }

/* ============================================================
   Donation window
   ============================================================ */
.give-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold-soft); border-radius: 100px;
  padding: 9px 16px; font: inherit; font-size: .82rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background .15s, color .15s;
}
.give-btn:hover { background: var(--gold); color: #fff; }
.give-btn svg { width: 14px; height: 14px; }
@media (max-width: 1040px) { .nav .give-btn { order: 2; margin-left: auto; } }

.give-root { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.give-root[hidden] { display: none; }
.give-backdrop { position: absolute; inset: 0; background: rgba(8,14,20,.72); backdrop-filter: blur(3px); }
.give-modal {
  position: relative; width: min(600px, 100%); max-height: calc(100vh - 40px);
  overflow-y: auto; overscroll-behavior: contain;
  background: var(--paper); border-radius: 8px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
  padding: 34px 34px 30px;
}
@media (max-width: 560px) { .give-modal { padding: 26px 20px 22px; } }
.give-modal h2 { margin-bottom: .25em; }
.give-x {
  position: absolute; top: 12px; right: 14px; width: 38px; height: 38px;
  border: 0; background: none; color: var(--text-soft); font-size: 1.7rem;
  line-height: 1; cursor: pointer; border-radius: 50%;
}
.give-x:hover { background: var(--marble-2); color: var(--ink); }
.give-back {
  border: 0; background: none; color: var(--gold-deep); cursor: pointer;
  font: inherit; font-size: 1.2rem; padding: 0 0 8px;
}

.give-toggle { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin: 20px 0 16px; }
.give-toggle button {
  border: 1px solid var(--line); background: var(--paper); color: var(--text-soft);
  border-radius: 100px; padding: 9px 18px; font: inherit; font-size: .85rem;
  font-weight: 600; cursor: pointer; min-height: 42px;
}
.give-toggle button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--marble); }
.give-cur {
  margin-left: auto; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: var(--r); font: inherit; font-size: .85rem; font-weight: 700; background: var(--paper);
  min-height: 42px;
}

.give-amts { display: flex; flex-wrap: wrap; gap: 9px; }
.give-amt {
  flex: 1 1 84px; min-height: 52px; border: 1.5px solid var(--line);
  background: var(--paper); border-radius: var(--r); font: inherit;
  font-size: 1.02rem; font-weight: 700; color: var(--text); cursor: pointer;
}
.give-amt:hover { border-color: var(--gold); }
.give-amt[aria-pressed="true"] { border-color: var(--gold); background: rgba(201,162,39,.12); color: var(--gold-deep); }
.give-custom {
  flex: 1 1 130px; display: flex; align-items: center; gap: 4px;
  border: 1.5px dashed var(--line); border-radius: var(--r); padding: 0 12px; min-height: 52px;
}
.give-custom span { font-weight: 700; color: var(--text-soft); }
.give-custom input {
  width: 100%; border: 0; background: none; font: inherit; font-size: 1.02rem;
  font-weight: 700; padding: 12px 0; color: var(--text);
}
.give-custom input:focus { outline: none; }
.give-custom:focus-within { border-color: var(--gold); border-style: solid; }

.give-impact {
  margin: 16px 0 0; padding: 13px 16px; border-left: 3px solid var(--gold);
  background: rgba(201,162,39,.09); border-radius: 0 var(--r) var(--r) 0; font-size: .93rem;
}
.give-routes { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 6px; }
.give-route { flex: 1 1 auto; text-align: center; }
.give-alt { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; }
.give-link {
  border: 0; background: none; padding: 0; font: inherit; font-size: .88rem;
  font-weight: 600; color: var(--ink-3); cursor: pointer;
  text-decoration: underline; text-decoration-color: rgba(201,162,39,.6); text-underline-offset: 3px;
}
.give-link:hover { color: var(--gold-deep); }

.give-foot {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  color: var(--text-soft); font-size: .88rem;
}
.give-foot p { margin: 0 0 8px; }
.give-foot .small { font-size: .8rem; }

.give-bank { list-style: none; margin: 18px 0 0; padding: 0; }
.give-bank li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .93rem;
}
.give-bank b {
  flex: 0 0 110px; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-deep);
}
.give-bank span { flex: 1; word-break: break-all; font-weight: 600; }
.give-copy {
  border: 1px solid var(--line); background: var(--paper); border-radius: var(--r);
  width: 38px; height: 38px; cursor: pointer; font-size: 1rem; color: var(--text-soft);
}
.give-copy:hover { border-color: var(--gold); color: var(--gold-deep); }

.give-form { margin-top: 18px; }
.give-form label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-soft); }
.give-form input, .give-form textarea { margin-top: 6px; text-transform: none; letter-spacing: 0; font-weight: 400; }
.give-form textarea { min-height: 120px; }
.give-form .check span { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: .92rem; }

/* ============================================================
   Reserved space — a forthcoming piece
   ============================================================ */
.reserved {
  position: relative; overflow: hidden;
  background:
    radial-gradient(520px 380px at 50% 12%, rgba(201,162,39,.14), transparent 70%),
    linear-gradient(165deg, #14263a, #0a1523);
  border: 1px dashed rgba(201,162,39,.5); border-radius: var(--r);
  padding: 48px 40px 40px; text-align: center; color: var(--marble);
}
@media (max-width: 560px) { .reserved { padding: 34px 20px 30px; } }
.reserved img { height: clamp(200px, 30vh, 300px); width: auto; margin: 0 auto 22px; opacity: .95; }
.reserved h3 { color: var(--marble); }
.reserved p { color: rgba(247,245,239,.76); max-width: 56ch; margin-inline: auto; }
.reserved-tag {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(201,162,39,.5); background: rgba(201,162,39,.12);
  color: var(--gold-soft); border-radius: 100px; padding: 7px 17px;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800;
  margin-bottom: 22px;
}
.reserved-tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 0 rgba(201,162,39,.7); animation: blip 2.4s infinite;
}
