/* ==========================================================================
   Pro Ukraine e.V. — site styles
   Ported from the Claude design artifact. Blue + gold on warm paper,
   Lora serif headlines + Manrope sans. Mobile-first, responsive.
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --paper: #fbfaf6;
  --paper-2: #f4f0e6;
  --paper-3: #f7f4ec;
  --paper-4: #f0ece0;
  --line: #e8e2d4;
  --line-2: #ddd6c6;

  --blue: #0a4da0;
  --blue-dark: #08376f;
  --navy: #0e1b2a;
  --gold: #ffd500;
  --gold-ink: #8a6d00;

  --ink: #16202b;
  --ink-2: #2c3a47;
  --ink-3: #33414e;
  --ink-4: #43525f;
  --muted: #5c6b7a;
  --muted-2: #9aa6b2;
  --footer-bg: #0e1b2a;
  --footer-muted: #9fb0c4;
  --footer-dim: #6b7c90;

  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --maxw: 1200px;
  --radius: 12px;
  --shadow-card: 0 18px 36px -22px rgba(8, 55, 111, 0.4);
}

/* ---- Reset / base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* clears the sticky header on anchor jumps */
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--blue);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
::selection {
  background: var(--gold);
  color: var(--blue-dark);
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 20px;
}
@media (min-width: 720px) {
  .container {
    padding-inline: 32px;
  }
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.section {
  padding-block: 56px;
}
@media (min-width: 720px) {
  .section {
    padding-block: 84px;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  padding: 13px 24px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(10, 77, 160, 0.28);
}
.btn-primary:hover {
  background: var(--blue-dark);
}
.btn-gold {
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(255, 213, 0, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid #c9d4e0;
  font-weight: 700;
}
.btn-outline:hover {
  border-color: var(--blue);
}
.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}
.btn .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.flag-bar {
  display: inline-block;
  width: 18px;
  height: 13px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--blue) 50%, var(--gold) 50%);
  flex-shrink: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img {
  height: 40px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--blue-dark);
  line-height: 1;
}
.brand-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--muted-2);
}
.brand-sub .upper {
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.primary-nav a {
  color: var(--ink-4);
  text-decoration: none;
  border-radius: 8px;
  padding: 9px 13px;
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--paper-4);
  color: var(--blue-dark);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--paper-4);
  border-radius: 999px;
  padding: 3px;
}
.lang-switch a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #7a8794;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 12.5px;
  white-space: nowrap;
}
.lang-switch a[aria-current="true"] {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.lang-switch .flag {
  font-size: 13px;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  background: var(--paper-4);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile-first: nav + donate collapse behind a toggle */
.nav-toggle {
  order: 3;
}
.header-cta {
  display: none;
}
.primary-nav {
  display: none;
}
@media (max-width: 859px) {
  .header-collapse {
    display: none;
    flex-basis: 100%;
    order: 4;
  }
  .header-collapse.open {
    display: block;
  }
  .header-collapse .primary-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding-block: 12px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }
  .header-collapse .primary-nav a {
    padding: 12px 14px;
    font-size: 16px;
  }
  .header-collapse .header-cta {
    display: flex;
    width: 100%;
    margin-bottom: 8px;
  }
}
@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }
  .header-collapse {
    display: contents;
  }
  .primary-nav {
    display: flex;
    order: 1;
    margin-left: 6px;
  }
  .lang-switch {
    order: 2;
    margin-left: auto;
  }
  .header-cta {
    display: inline-flex;
    order: 3;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.hero-watermark {
  position: absolute;
  right: -60px;
  top: -30px;
  width: 560px;
  max-width: 70%;
  opacity: 0.05;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-block: 48px 56px;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    padding-block: 84px 92px;
  }
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 22px;
}
.tag-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.tag-pill span:last-child {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.hero h1 {
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #0e1b2a;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero-lead {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
  color: var(--ink-4);
  margin: 0 0 28px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-since {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
}

.hero-media {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
.hero-frame {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  position: relative;
  background: var(--blue);
  box-shadow: 0 30px 60px -24px rgba(8, 55, 111, 0.4);
}
.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(8, 55, 111, 0.7));
  color: #fff;
  z-index: 3;
  font-size: 12.5px;
  font-weight: 600;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  right: -10px;
  z-index: 20;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 16px 34px -12px rgba(8, 55, 111, 0.6);
}
@media (min-width: 880px) {
  .hero-badge {
    bottom: -22px;
    right: -22px;
  }
}
.hero-badge .num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-badge .lbl {
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 3px;
  color: #cfe0f5;
}

/* Slideshow */
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: var(--blue);
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  filter: blur(16px);
  transform: scale(1.05);
  transition: opacity 1.4s ease, filter 1.4s ease, transform 6s ease;
}
.slide.is-active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1.04);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .slide {
    transition: opacity 0.4s ease;
    transform: none;
    filter: none;
  }
  .slide.is-active {
    transform: none;
  }
}

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats {
  background: var(--blue-dark);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding-block: 30px;
}
@media (min-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-block: 34px;
  }
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-left: 2px solid rgba(255, 213, 0, 0.55);
  padding-left: 16px;
}
.stat .num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat .lbl {
  font-size: 13.5px;
  color: #bfd2ec;
  font-weight: 500;
  line-height: 1.35;
}

/* ==========================================================================
   Donate
   ========================================================================== */
.donate-card {
  max-width: 1080px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 24px 50px -30px rgba(8, 55, 111, 0.3);
}
@media (min-width: 820px) {
  .donate-card {
    grid-template-columns: 1fr 1fr;
  }
}
.donate-bank {
  padding: 36px 28px;
}
@media (min-width: 720px) {
  .donate-bank {
    padding: 48px 46px;
    border-right: 1px solid #eee9dc;
  }
}
.donate-bank h2 {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.15;
  margin: 12px 0 14px;
}
.donate-bank p.lead {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-4);
  margin: 0 0 26px;
}
.iban-box {
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
}
.field-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 5px;
}
.field-value {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 16px;
}
.iban-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.iban-row code,
.bic code {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.02em;
}
.iban-grid {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.copy-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.copy-btn:hover {
  background: var(--blue-dark);
}
.copy-btn.copied {
  background: #1f8a4c;
}
.receipt-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin: 18px 0 0;
}
.check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e4f0e2;
  color: #2e7d32;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.donate-paypal {
  padding: 36px 28px;
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) {
  .donate-paypal {
    padding: 48px 46px;
  }
}
.donate-paypal .watermark {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 260px;
  opacity: 0.07;
}
.donate-paypal .inner {
  position: relative;
}
.donate-paypal h2,
.donate-paypal .h {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.donate-paypal p {
  font-size: 15px;
  line-height: 1.55;
  color: #cfe0f5;
  margin: 0 0 26px;
}
.donate-paypal .secure {
  margin-top: 22px;
  font-size: 12.5px;
  color: #9fbee6;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ==========================================================================
   Pillars
   ========================================================================== */
.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.12;
  margin: 12px 0 14px;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-4);
  margin: 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.pillar .no {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
}
.pillar h3 {
  font-size: 20px;
  margin: 2px 0 9px;
}
.pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   Founder quote
   ========================================================================== */
.quote-band {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-block: 56px;
  align-items: center;
  max-width: 1080px;
  margin-inline: auto;
}
@media (min-width: 720px) {
  .quote-grid {
    grid-template-columns: 200px 1fr;
    gap: 48px;
    padding-block: 72px;
  }
}
.quote-portrait {
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 14px 30px -14px rgba(8, 55, 111, 0.4);
}
@media (min-width: 720px) {
  .quote-portrait {
    width: 100%;
  }
}
.quote-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 64px;
  color: var(--gold);
  line-height: 0.6;
  height: 30px;
}
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 3vw, 24px);
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.quote-by {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-by .rule {
  width: 34px;
  height: 2px;
  background: var(--blue);
}
.quote-by .name {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.quote-by .role {
  font-size: 13.5px;
  color: var(--muted);
}

/* ==========================================================================
   News cards
   ========================================================================== */
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}
.news-head h2 {
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.12;
  margin: 12px 0 0;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 620px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 920px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -24px rgba(8, 55, 111, 0.45);
}
.news-thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--line);
}
.news-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.news-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted-2);
  margin-bottom: 9px;
}
.news-body h3 {
  font-size: 19.5px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.news-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 16px;
  flex: 1;
}
.read-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

/* Category colour variants */
.cat-event {
  background: #fff3c4;
  color: #8a6d00;
}
.cat-press {
  background: #dce9fb;
  color: #0a4da0;
}
.cat-rohatyn {
  background: #e4f0e2;
  color: #2e7d32;
}
.cat-default {
  background: #dce9fb;
  color: #0a4da0;
}

/* Pillar colour variants */
.pill-1 {
  background: #dce9fb;
  color: #0a4da0;
}
.pill-2 {
  background: #fff3c4;
  color: #8a6d00;
}
.pill-3 {
  background: #e4f0e2;
  color: #2e7d32;
}
.pill-4 {
  background: #fbe3dc;
  color: #b23a1e;
}

/* ==========================================================================
   Inner page hero (about, news index, legal, donate page)
   ========================================================================== */
.page-hero {
  background: linear-gradient(180deg, var(--blue-dark), var(--blue));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero.flip {
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
}
.page-hero .watermark {
  position: absolute;
  right: -50px;
  top: -40px;
  width: 420px;
  max-width: 60%;
  opacity: 0.08;
}
.page-hero-inner {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  padding-block: 56px 48px;
}
@media (min-width: 720px) {
  .page-hero-inner {
    padding-block: 74px 64px;
  }
}
.page-hero .eyebrow {
  display: block;
  color: var(--gold);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 6vw, 46px);
  line-height: 1.1;
  margin: 14px 0 18px;
  text-wrap: balance;
}
.page-hero p {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.6;
  color: #cfe0f5;
  margin: 0;
  max-width: 680px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 24px;
  text-decoration: none;
}
.back-link:hover {
  background: rgba(255, 255, 255, 0.22);
}
.back-link.light {
  background: var(--paper-4);
  color: var(--blue);
}
.back-link.light:hover {
  background: #e5dfd0;
}

/* ==========================================================================
   Prose (article body, legal pages, about body)
   ========================================================================== */
.prose {
  max-width: 760px;
  margin-inline: auto;
}
.prose p,
.prose li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-2);
}
.prose h2 {
  font-size: 26px;
  margin: 40px 0 16px;
}
.prose h3 {
  font-size: 20px;
  margin: 28px 0 10px;
}
.prose a {
  color: var(--blue);
}
.prose ul,
.prose ol {
  padding-left: 22px;
}
.prose code {
  font-family: var(--mono);
  font-size: 0.9em;
}

.review-flag {
  background: #fff7e0;
  border: 1px solid #f0d98a;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #6b5500;
  margin-bottom: 28px;
}

/* About extras */
.figure {
  margin: 0;
  max-width: 880px;
  margin-inline: auto;
}
.figure .frame {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 20px 44px -28px rgba(8, 55, 111, 0.5);
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.figure figcaption {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted-2);
  font-style: italic;
}
.timeline {
  max-width: 880px;
  margin-inline: auto;
}
.timeline h2 {
  font-size: 26px;
  margin: 0 0 24px;
}
.milestone {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
@media (min-width: 720px) {
  .milestone {
    grid-template-columns: 120px 1fr;
    gap: 28px;
    padding: 22px 0;
  }
}
.milestone .year {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
}
.milestone .text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
}
.partners {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.partners-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 24px;
  text-align: center;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partners-logos img {
  width: auto;
  filter: grayscale(0.1);
}
.cta-band {
  margin-top: 50px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 880px;
  margin-inline: auto;
}
.cta-band h3 {
  font-size: 24px;
  margin: 0 0 6px;
}
.cta-band p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* Article */
.article-wrap {
  max-width: 760px;
  margin-inline: auto;
}
.article-meta {
  font-size: 14px;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 28px;
}
.article-hero {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--line);
  margin-bottom: 32px;
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.article-foot {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Donate page two columns */
.donate-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin-inline: auto;
}
@media (min-width: 820px) {
  .donate-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
.card-plain {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
}
@media (min-width: 720px) {
  .card-plain {
    padding: 38px 36px;
  }
}
.card-plain h2 {
  font-size: 24px;
  margin: 0 0 6px;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin-inline: auto;
}
@media (min-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-3);
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #dce1e8;
  border-radius: 9px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: #fff;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 77, 160, 0.12);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.consent input {
  margin-top: 3px;
  flex-shrink: 0;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 9px;
  font-size: 14.5px;
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.ok {
  background: #e8f3ec;
  color: #1f6b3b;
  border: 1px solid #b8ddc4;
}
.form-status.err {
  background: #fdecea;
  color: #a4301b;
  border: 1px solid #f3c4bc;
}
.contact-aside h3 {
  font-size: 18px;
  margin: 0 0 10px;
}
.contact-aside .addr {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--ink-3);
}
.contact-aside a {
  color: var(--blue);
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--footer-bg);
  color: #fff;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-block: 52px 32px;
}
@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-block: 64px 36px;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 40px;
}
.footer-brand span {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}
.footer-blurb {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--footer-muted);
  margin: 0 0 18px;
  max-width: 340px;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--footer-muted);
}
.footer-links a {
  display: block;
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 2;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-admin {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--footer-muted);
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.footer-admin:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 20px;
}
.footer-bar-inner span {
  font-size: 12.5px;
  color: var(--footer-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Utilities */
.mt-cta {
  margin-top: 28px;
}
.center {
  text-align: center;
}
