/* ==========================================================================
   CHILDREN OF GAZA — THE LINE
   Shared design system. Used by children-of-gaza.org and
   theline.children-of-gaza.org (subdomain imports this file, then layers
   theline.css on top).

   Contents
   01. Tokens
   02. Reset & base
   03. Typography
   04. Layout primitives
   05. The Line (red-line motif)
   06. Header / navigation
   07. Buttons
   08. Hero
   09. Sections & cards
   10. Manifesto
   11. Facts / accordion
   12. Forms
   13. Gallery / grid of people
   14. Audio player
   15. Transparency / chart
   16. Share
   17. Footer
   18. Utilities
   19. Motion & reveal
   20. Responsive
   21. Reduced motion / print / forced colours
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Core palette — from the brief */
  --bg:            #0f0f0f;
  --surface:       #1a1a1a;
  --accent:        #d4854a;  /* dusty orange */
  --accent-2:      #6b9bd1;  /* pale blue */
  --text:          #f5f5f0;  /* warm white */
  --text-muted:    #a0a0a0;
  --line:          #c0392b;  /* the red line — used sparingly */

  /* Derived */
  --surface-2:     #232323;
  --surface-3:     #2c2c2c;
  --border:        rgba(245, 245, 240, 0.10);
  --border-strong: rgba(245, 245, 240, 0.20);
  --accent-soft:   rgba(212, 133, 74, 0.14);
  --accent-2-soft: rgba(107, 155, 209, 0.14);
  --line-soft:     rgba(192, 57, 43, 0.16);
  --shadow:        0 18px 50px -20px rgba(0, 0, 0, 0.85);
  --shadow-sm:     0 6px 20px -10px rgba(0, 0, 0, 0.8);

  /* Type */
  --font-display: "Space Grotesk", "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif:   "Crimson Text", "Merriweather", Georgia, "Times New Roman", serif;

  /* Fluid type scale (mobile-first, clamps to desktop) */
  --fs-xs:   0.78rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   clamp(1.05rem, 0.99rem + 0.30vw, 1.20rem);
  --fs-lg:   clamp(1.25rem, 1.10rem + 0.75vw, 1.65rem);
  --fs-xl:   clamp(1.60rem, 1.30rem + 1.50vw, 2.40rem);
  --fs-2xl:  clamp(2.00rem, 1.50rem + 2.50vw, 3.40rem);
  --fs-3xl:  clamp(2.60rem, 1.60rem + 4.60vw, 5.60rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --section-y: clamp(3.5rem, 2rem + 7vw, 7.5rem);

  /* Structure */
  --wrap:        1180px;
  --wrap-narrow: 760px;
  --wrap-wide:   1440px;
  --radius:      4px;
  --radius-lg:   10px;
  --header-h:    68px;

  /* Motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur:       0.5s;
  --dur-fast:  0.22s;
}

/* --------------------------------------------------------------------------
   02. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, video, svg, canvas { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover, a:focus-visible { color: var(--text); }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--line); color: #fff; }

hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: var(--space-6) 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--line);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}
.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
  color: #fff;
}

/* --------------------------------------------------------------------------
   03. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-md); letter-spacing: 0; }

p { margin: 0 0 var(--space-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--fs-md);
  color: var(--text-muted);
  max-width: 62ch;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--line);
  flex: none;
}
.eyebrow--center { justify-content: center; }

blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: var(--text);
}

cite {
  display: block;
  margin-top: var(--space-3);
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.serif { font-family: var(--font-serif); }
.mono-label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   04. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); }
.wrap--wide   { width: min(100% - 2.5rem, var(--wrap-wide)); }

.section { padding-block: var(--section-y); position: relative; }
.section--surface { background: var(--surface); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }

.section-head { max-width: 68ch; margin-bottom: var(--space-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

.grid { display: grid; gap: var(--space-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }

.stack > * + * { margin-top: var(--space-4); }
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}
.cluster--center { justify-content: center; }

/* --------------------------------------------------------------------------
   05. THE LINE — red-line motif
   -------------------------------------------------------------------------- */

/* Static rule under headings */
.rule {
  width: 72px;
  height: 3px;
  background: var(--line);
  border: 0;
  margin: 0 0 var(--space-5);
  transform-origin: left center;
}
.rule--center { margin-inline: auto; transform-origin: center; }

/* Rule that draws itself when scrolled into view */
.rule--draw { transform: scaleX(0); transition: transform 0.9s var(--ease-out); }
.is-revealed .rule--draw,
.rule--draw.is-revealed { transform: scaleX(1); }

/* Full-bleed divider line */
.line-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
  opacity: 0.55;
  border: 0;
  margin: 0;
}

/* The scroll-drawn line — fixed to the viewport on the manifesto page.
   Width is driven by --line-progress (0 → 1), set in main.js. */
.scroll-line {
  position: fixed;
  left: 0;
  top: 50vh;
  width: 100%;
  height: 2px;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}
.scroll-line__track {
  position: absolute;
  inset: 0;
  background: rgba(192, 57, 43, 0.10);
}
.scroll-line__fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--line), #e35d4c);
  transform: scaleX(var(--line-progress, 0));
  transform-origin: left center;
  box-shadow: 0 0 18px 1px rgba(192, 57, 43, 0.55);
  will-change: transform;
}
.scroll-line__label {
  position: absolute;
  top: 0.75rem;
  right: max(1.25rem, calc((100vw - var(--wrap)) / 2));
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(192, 57, 43, 0.85);
}

/* Reading-progress bar at the very top of long pages */
.progress-bar {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--line);
  transform: scaleX(var(--read-progress, 0));
  transform-origin: left center;
  z-index: 60;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   06. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(15, 15, 15, 0);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-fast) linear, border-color var(--dur-fast) linear,
              backdrop-filter var(--dur-fast) linear;
}
.header.is-stuck {
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
}
.header__inner {
  width: min(100% - 2.5rem, var(--wrap-wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Logo: wordmark with a red line through it */
.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.logo:hover, .logo:focus-visible { color: var(--text); }
.logo__mark { display: block; }
.logo__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--line);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease);
}
.logo:hover .logo__line { transform: scaleX(1.35); }
.logo__sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: var(--space-5); }
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  padding-block: 0.4rem;
  transition: color var(--dur-fast) linear;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-fast) var(--ease);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--text); }
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--text); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  background: transparent;
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__toggle-bars {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  display: block;
  transition: background var(--dur-fast) linear;
}
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform var(--dur-fast) var(--ease);
}
.nav__toggle-bars::before { top: -6px; }
.nav__toggle-bars::after  { top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   07. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background var(--dur-fast) linear, color var(--dur-fast) linear,
              border-color var(--dur-fast) linear, transform var(--dur-fast) var(--ease);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--accent);
  --btn-fg: #14100c;
  --btn-bd: var(--accent);
}
.btn--primary:hover, .btn--primary:focus-visible { --btn-bg: #e59a60; --btn-bd: #e59a60; color: #14100c; }

.btn--line {
  --btn-bg: var(--line);
  --btn-fg: #fff;
  --btn-bd: var(--line);
}
.btn--line:hover, .btn--line:focus-visible { --btn-bg: #d4463a; --btn-bd: #d4463a; color: #fff; }

.btn--ghost:hover, .btn--ghost:focus-visible {
  --btn-bd: var(--accent);
  color: var(--accent);
}

.btn--blue {
  --btn-bg: transparent;
  --btn-fg: var(--accent-2);
  --btn-bd: rgba(107, 155, 209, 0.5);
}
.btn--blue:hover, .btn--blue:focus-visible { --btn-bg: var(--accent-2-soft); color: var(--accent-2); }

.btn--sm { padding: 0.55rem 1rem; min-height: 40px; font-size: var(--fs-xs); }
.btn--wide { width: 100%; }
.btn__icon { width: 18px; height: 18px; flex: none; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.link-arrow::after {
  content: "→";
  transition: transform var(--dur-fast) var(--ease);
}
.link-arrow:hover::after, .link-arrow:focus-visible::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   08. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 3rem) var(--space-8);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Poster also sits here as a background so it still shows when the video
     file is missing or the browser refuses to load it. */
  background: url("/assets/images/hero-poster.svg") center / cover no-repeat, var(--bg);
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05) brightness(0.62);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 15% 15%, rgba(212, 133, 74, 0.18), transparent 58%),
    radial-gradient(90% 80% at 85% 95%, rgba(107, 155, 209, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.72) 0%, rgba(15, 15, 15, 0.80) 45%, var(--bg) 100%);
}
/* Faint concrete/dust texture, pure CSS so it costs nothing */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

/* Note: keep the .wrap gutter — do not set width here, it would override .wrap. */
.hero__inner { position: relative; z-index: 1; }
.hero__title {
  font-size: var(--fs-3xl);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: var(--space-5);
}
.hero__title .word-line {
  position: relative;
  display: inline-block;
  color: var(--line);
}
.hero__title .word-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.12em;
  height: 0.07em;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left center;
  animation: draw-line 1.4s var(--ease-out) 0.5s forwards;
}
@keyframes draw-line { to { transform: scaleX(1); } }

.hero__sub {
  font-size: var(--fs-md);
  color: var(--text);
  opacity: 0.86;
  max-width: 48ch;
  margin-bottom: var(--space-6);
}
.hero__actions { gap: var(--space-3); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 1;
}
.hero__scroll span.bar {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
  animation: scroll-pulse 2.2s var(--ease) infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}

/* Compact page hero for interior pages */
.page-hero {
  position: relative;
  padding-block: calc(var(--header-h) + clamp(3.5rem, 2rem + 7vw, 7rem)) clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  background:
    radial-gradient(100% 120% at 12% 0%, rgba(212, 133, 74, 0.13), transparent 60%),
    radial-gradient(80% 100% at 95% 10%, rgba(107, 155, 209, 0.10), transparent 62%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero__title { max-width: 18ch; }
.page-hero .lead { font-size: var(--fs-md); }

/* --------------------------------------------------------------------------
   09. SECTIONS & CARDS
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: border-color var(--dur-fast) linear, transform var(--dur) var(--ease),
              background var(--dur-fast) linear;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card__num {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: var(--space-3);
  display: block;
}
.card__title { font-size: var(--fs-lg); margin-bottom: var(--space-3); }
.card__body { color: var(--text-muted); }
.card--accent { border-top: 3px solid var(--accent); }
.card--line   { border-top: 3px solid var(--line); }
.card--blue   { border-top: 3px solid var(--accent-2); }

/* Tier card (join page) */
.tier {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  height: 100%;
}
.tier__label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.tier__title { font-size: var(--fs-xl); margin: 0; }
.tier__action { color: var(--text); }
.tier__recognition {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.tier__recognition strong { color: var(--accent-2); font-weight: 600; }

/* Stat block */
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
}
.stat__value {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  display: block;
  margin-bottom: var(--space-2);
  font-variant-numeric: tabular-nums;
}
.stat__value[data-empty="true"] { color: var(--text-muted); opacity: 0.55; }
.stat__label {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  display: block;
}
.stat__source {
  margin-top: var(--space-3);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.stat__source a { color: var(--accent-2); }

/* Pull quote */
.pullquote {
  border-left: 3px solid var(--accent);
  padding: var(--space-2) 0 var(--space-2) var(--space-5);
  margin-block: var(--space-6);
}

/* Callout / notice */
.notice {
  background: var(--surface-2);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.notice strong { color: var(--text); }
.notice--todo { border-color: rgba(212, 133, 74, 0.5); }
.notice--todo::before {
  content: "Editor's note";
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   10. MANIFESTO
   -------------------------------------------------------------------------- */
.manifesto {
  position: relative;
  background: var(--bg);
}
.manifesto__body {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1rem + 1.6vw, 2.05rem);
  line-height: 1.45;
  text-align: center;
  max-width: 24ch;
  margin-inline: auto;
  color: var(--text);
}
.manifesto__body p {
  margin: 0 0 clamp(1.5rem, 1rem + 2vw, 2.75rem);
  max-width: none;
}
.manifesto__body em { font-style: italic; color: var(--text-muted); }
.manifesto__body .final {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1rem + 2.6vw, 2.9rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}
.manifesto__body .final .hl { color: var(--line); }
@media (min-width: 700px) {
  .manifesto__body { max-width: 28ch; }
}

/* --------------------------------------------------------------------------
   11. FACTS / ACCORDION
   -------------------------------------------------------------------------- */
.fact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-fast) linear;
}
.fact + .fact { margin-top: var(--space-4); }
.fact:hover { border-color: var(--border-strong); }
.fact.is-open { border-color: rgba(212, 133, 74, 0.45); }

.fact__button {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.fact__index {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 0.2rem;
  font-variant-numeric: tabular-nums;
}
.fact__summary {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
}
.fact__kicker {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.fact__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 0.25rem;
}
.fact__icon::before,
.fact__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) linear;
}
.fact__icon::before { top: 10px; left: 0;  width: 22px; height: 2px; }
.fact__icon::after  { top: 0;  left: 10px; width: 2px;  height: 22px; }
.fact.is-open .fact__icon::after { transform: rotate(90deg); opacity: 0; }

.fact__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease);
}
.fact.is-open .fact__panel { grid-template-rows: 1fr; }
.fact__panel-inner { overflow: hidden; }
.fact__content {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--text-muted);
  max-width: 72ch;
}
.fact__content > * + * { margin-top: var(--space-4); }
.fact__content strong { color: var(--text); }
.fact__sources {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
}
.fact__sources a { color: var(--accent-2); }
.fact__sources li::before { content: "↗ "; color: var(--text-muted); }

@media (max-width: 560px) {
  .fact__button { padding: var(--space-4); gap: var(--space-3); }
  .fact__content { padding: 0 var(--space-4) var(--space-4); }
}

/* --------------------------------------------------------------------------
   12. FORMS
   -------------------------------------------------------------------------- */
.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2.5vw, 2.75rem);
}
.form__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }

.label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.label .req { color: var(--line); }

.input, .select, .textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  padding: 0.85rem 1rem;
  min-height: 48px;
  transition: border-color var(--dur-fast) linear, background var(--dur-fast) linear;
}
.input::placeholder, .textarea::placeholder { color: rgba(160, 160, 160, 0.55); }
.input:hover, .select:hover, .textarea:hover { border-color: rgba(245, 245, 240, 0.32); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}
.textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23a0a0a0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
.select option { background: var(--surface); color: var(--text); }

.field__hint { font-size: var(--fs-xs); color: var(--text-muted); }
.field__error {
  font-size: var(--fs-xs);
  color: #e8776b;
  min-height: 1em;
}
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: var(--line);
}

/* Pledge checkbox — the heart of the form */
.pledge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
}
.pledge input[type="checkbox"] {
  appearance: none;
  width: 26px;
  height: 26px;
  margin: 2px 0 0;
  border: 2px solid var(--border-strong);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-content: center;
  flex: none;
  transition: border-color var(--dur-fast) linear, background var(--dur-fast) linear;
}
.pledge input[type="checkbox"]::after {
  content: "";
  width: 13px;
  height: 8px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) scale(0);
  transition: transform var(--dur-fast) var(--ease);
}
.pledge input[type="checkbox"]:checked {
  background: var(--line);
  border-color: var(--line);
}
.pledge input[type="checkbox"]:checked::after { transform: rotate(-45deg) scale(1); }
.pledge__text {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  line-height: 1.45;
  color: var(--text);
}

.form__footer {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}
.form__privacy { font-size: var(--fs-xs); color: var(--text-muted); max-width: 46ch; }

.form__status {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  display: none;
}
.form__status.is-visible { display: block; }
.form__status--ok   { background: var(--accent-2-soft); border: 1px solid rgba(107,155,209,0.4); color: var(--text); }
.form__status--err  { background: var(--line-soft);     border: 1px solid rgba(192,57,43,0.45);  color: var(--text); }

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* --------------------------------------------------------------------------
   13. GALLERY / PEOPLE GRID
   -------------------------------------------------------------------------- */
.people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
  gap: var(--space-4);
}
.person {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}
.person__img { aspect-ratio: 1; width: 100%; object-fit: cover; background: var(--surface-2); }
.person__body { padding: var(--space-3); }
.person__name { font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 600; margin: 0; }
.person__role { font-size: var(--fs-xs); color: var(--text-muted); margin: 0.25rem 0 0; }

.person--empty {
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  border-style: dashed;
  border-color: var(--border-strong);
  padding: var(--space-4);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}
.person--empty .plus {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   14. AUDIO PLAYER
   -------------------------------------------------------------------------- */
.player {
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr;
  gap: var(--space-6);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.player__art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  background: var(--surface-2);
}
.player__body { min-width: 0; }
.player__title { margin-bottom: var(--space-2); }
.player__meta { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--space-4); }

.player__controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}
.play-btn {
  width: 60px;
  height: 60px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: background var(--dur-fast) linear, transform var(--dur-fast) var(--ease);
}
.play-btn:hover { background: var(--accent); color: #14100c; transform: scale(1.05); }
.play-btn svg { width: 22px; height: 22px; }
.play-btn .icon-pause { display: none; }
.play-btn[aria-pressed="true"] .icon-play  { display: none; }
.play-btn[aria-pressed="true"] .icon-pause { display: block; }

.player__scrub {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.player__track {
  position: relative;
  flex: 1;
  height: 4px;
  background: var(--surface-3);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.player__fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(var(--audio-progress, 0));
  transform-origin: left center;
}

.player__note { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--space-3); }

@media (max-width: 640px) {
  .player { grid-template-columns: 1fr; text-align: left; }
  .player__art { max-width: 220px; }
}

/* Listener counter */
.counter {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   15. TRANSPARENCY / CHART
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}

.donut {
  width: min(280px, 70vw);
  margin-inline: auto;
  display: block;
}
.donut__ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 14;
  stroke-linecap: butt;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}
.is-revealed .donut__ring { stroke-dashoffset: 0; }
.donut__track { fill: none; stroke: var(--surface-3); stroke-width: 14; }
.donut__label {
  font-family: var(--font-display);
  font-weight: 700;
  fill: var(--text);
  font-size: 20px;
  text-anchor: middle;
}
.donut__sub {
  font-family: var(--font-body);
  fill: var(--text-muted);
  font-size: 6px;
  letter-spacing: 0.2em;
  text-anchor: middle;
  text-transform: uppercase;
}

.ledger {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
.ledger caption {
  text-align: left;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: var(--space-3);
}
.ledger th, .ledger td {
  text-align: left;
  padding: var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.ledger th {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.ledger td { color: var(--text); }
.ledger tbody tr:hover { background: var(--surface-2); }
.ledger .num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.ledger__empty { color: var(--text-muted); font-style: italic; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.partners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: var(--space-4);
}
.partner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  height: 100%;
}
.partner__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) opacity(0.75);
  transition: filter var(--dur-fast) linear;
}
.partner:hover .partner__logo { filter: none; }
.partner__name { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); margin: 0; }
.partner__desc { font-size: var(--fs-xs); color: var(--text-muted); margin: 0; }
.partner__link { margin-top: auto; font-size: var(--fs-xs); }

/* --------------------------------------------------------------------------
   16. SHARE
   -------------------------------------------------------------------------- */
.share {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.share__text {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  line-height: 1.55;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-4);
}
.share__langs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.chip {
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  min-height: 36px;
  cursor: pointer;
  transition: all var(--dur-fast) linear;
}
.chip:hover { color: var(--text); border-color: var(--border-strong); }
.chip[aria-pressed="true"], .chip.is-active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.share__buttons { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  min-height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--dur-fast) linear, color var(--dur-fast) linear,
              background var(--dur-fast) linear;
}
.share-btn:hover, .share-btn:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.share-btn svg { width: 17px; height: 17px; flex: none; }
.share-btn.is-done { border-color: var(--accent-2); color: var(--accent-2); }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 150%);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius);
  padding: 0.85rem 1.35rem;
  font-size: var(--fs-sm);
  box-shadow: var(--shadow);
  z-index: 90;
  transition: transform var(--dur) var(--ease);
  max-width: calc(100vw - 2rem);
}
.toast.is-visible { transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-block: var(--space-8) var(--space-6);
  font-size: var(--fs-sm);
}
.footer__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin-bottom: var(--space-7);
}
.footer__title {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-4);
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__list a { color: var(--text-muted); }
.footer__list a:hover, .footer__list a:focus-visible { color: var(--accent); }
.footer__pledge {
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  color: var(--text);
  border-left: 3px solid var(--line);
  padding-left: var(--space-4);
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: var(--fs-xs);
}
.footer__disclaimer {
  margin-top: var(--space-5);
  color: var(--text-muted);
  font-size: var(--fs-xs);
  max-width: 90ch;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   18. UTILITIES
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-line   { color: var(--line); }
.text-blue   { color: var(--accent-2); }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mb-0 { margin-bottom: 0; }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.full { width: 100%; }
.nowrap { white-space: nowrap; }

/* --------------------------------------------------------------------------
   19. MOTION & REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-revealed { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* --------------------------------------------------------------------------
   20. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: var(--space-4) 1.25rem var(--space-6);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-fast) linear, transform var(--dur-fast) var(--ease),
                visibility var(--dur-fast) linear;
  }
  .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--border); }
  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: var(--fs-md);
    font-family: var(--font-display);
    font-weight: 600;
  }
  .nav__link::after { bottom: 0.55rem; }
  .nav .btn { margin-top: var(--space-5); width: 100%; }
  .scroll-line__label { display: none; }
}

@media (max-width: 560px) {
  :root { --header-h: 60px; }
  .hero { min-height: 92svh; }
  .hero__actions .btn { width: 100%; }
  .form__footer { flex-direction: column; align-items: stretch; }
  .form__footer .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   21. REDUCED MOTION / PRINT / FORCED COLOURS
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .rule--draw { transform: scaleX(1); }
  .hero__title .word-line::after { transform: scaleX(1); }
  .donut__ring { stroke-dashoffset: 0; }
  .scroll-line { display: none; }
}

@media (forced-colors: active) {
  .btn, .card, .fact, .input, .select, .textarea { border: 1px solid ButtonBorder; }
  .rule, .scroll-line__fill { forced-color-adjust: none; }
}

@media print {
  .header, .footer, .scroll-line, .progress-bar, .hero__media, .hero__scroll, .nav__toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .fact, .form { border: 1px solid #ccc; background: #fff; }
  .fact__panel { grid-template-rows: 1fr !important; }
  a::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #555; }
}
