/* =======================================================
   Future Enlightenment — Design System 2026
   Bold blocks · Hard shadows · Warm palette · Dark mode
   ======================================================= */

/* ---- TOKENS ---- */
:root {
  --bg:        #FFF8F0;
  --ink:       #1D3557;
  --ink-soft:  #3A5070;
  --red:       #E63946;
  --red-deep:  #C42836;  /* darker red — white text passes WCAG AA (5.7:1) */
  --butter:    #FFD166;
  --mint:      #9BCBB1;
  --paper:     #FFFFFF;
  --deep:      #1D3557;
  --muted:     rgba(29,53,87,0.72);  /* WCAG AA on cream (4.6:1) */
  --on-accent: #FFFFFF;
  --on-warm:   #1D3557;
  --stripe:    rgba(29,53,87,0.06);
  --sh:        6px 6px 0 var(--ink);
  --sh-sm:     4px 4px 0 var(--ink);
  --sh-lg:     8px 8px 0 var(--ink);
  --t:         0.15s ease;
  --font-d:    'Archivo', 'DM Serif Display', serif;
  --font-b:    'Archivo', 'Inter', system-ui, sans-serif;
}

[data-theme="dark"] {
  --bg:       #0E1520;
  --ink:      #F5EFE3;
  --ink-soft: #C8C2B5;
  --paper:    #18222F;
  --deep:     #050B14;
  --muted:    rgba(245,239,227,0.55);
  --stripe:   rgba(245,239,227,0.08);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 20px; overflow-x: hidden; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ---- SKIP LINK ---- */
/* Invisible until Tab is pressed; slides into view for keyboard/screen-reader users */
.skip-link {
  position: fixed;
  top: -100px;
  left: 12px;
  z-index: 9999;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--butter);
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: top 0.18s cubic-bezier(.5,.1,.3,1);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 3px solid var(--butter);
  outline-offset: 3px;
}
#main-content:focus { outline: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
}
p, li { text-wrap: pretty; }

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 640px) { .container { padding: 0 1.25rem; } }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; min-height: 52px; padding: 0 1.5rem;
  border: 2px solid var(--ink); background: var(--red-deep);
  color: var(--on-accent); font-family: var(--font-b);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.01em;
  border-radius: 0; box-shadow: var(--sh); text-decoration: none;
  transition: transform var(--t), box-shadow var(--t); white-space: nowrap;
}
.btn:hover  { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.btn:active { transform: translate(2px,2px);   box-shadow: none; }
.btn-primary  { background: var(--red-deep); color: var(--on-accent); }
.btn-secondary { background: var(--paper); color: var(--ink); }
.btn-ghost    { background: transparent; color: var(--ink); box-shadow: none; }
.btn-ghost:hover { background: var(--red-deep); color: var(--on-accent); border-color: var(--red-deep); transform: none; box-shadow: none; }
.btn-outline  { background: transparent; color: var(--on-accent); border-color: rgba(255,255,255,0.6); box-shadow: none; }
.btn-outline:hover { background: rgba(255,255,255,0.15); color: var(--on-accent); transform: none; }
.btn-green    { background: var(--mint); color: var(--on-warm); }
.btn-sm { min-height: 42px; padding: 0 1rem; font-size: 0.82rem; box-shadow: var(--sh-sm); }
.btn-sm:hover { box-shadow: var(--sh); }

/* ---- FOCUS RINGS — visible for keyboard/switch users ---- */
.btn:focus-visible,
.btn-sm:focus-visible,
.btn-ghost:focus-visible,
.btn-outline:focus-visible,
.nav-link:focus-visible,
.nav-hamburger:focus-visible,
.lang-trigger:focus-visible,
.lang-option:focus-visible,
.theme-toggle:focus-visible,
.sticky-help:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 3px;
  z-index: 1;
}

/* ---- EYEBROW ---- */
.eyebrow, .section-eyebrow, .page-eyebrow {
  display: inline-block;
  background: var(--butter); color: var(--on-warm);
  border: 2px solid var(--ink);
  padding: 0.28rem 0.75rem;
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-family: var(--font-b);
}

/* ---- ICON TOGGLE ---- */
.icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: block; }

/* ==============================================
   NAVIGATION
   ============================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.main-nav {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1.5rem; min-height: 72px;
}
.nav-left {
  display: flex; align-items: center; gap: 2.5rem; flex-shrink: 0;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; color: var(--ink);
}
.brand-mark {
  width: 40px; height: 40px; background: var(--red);
  border: 2px solid var(--ink); position: relative; flex-shrink: 0;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 6px; background: var(--butter);
}
.brand-mark::before {
  content: ''; position: absolute;
  left: 12px; top: 12px; width: 13px; height: 13px;
  background: var(--ink); border-radius: 50%; z-index: 2;
}
.brand-name-wrap { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-d); font-weight: 900; font-size: 0.95rem;
  letter-spacing: -0.01em; line-height: 1.1; color: var(--ink);
}
.brand-tagline {
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 2px solid var(--ink); background: var(--paper);
  color: var(--ink); padding: 0;
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.theme-toggle:hover { transform: translate(-1px,-1px); box-shadow: var(--sh); }
[data-theme="dark"] .theme-toggle { background: var(--butter); color: var(--on-warm); }

.nav-panel {
  display: flex; align-items: center;
  gap: 0.5rem; flex: 1; justify-content: flex-end;
}
.nav-links-row {
  display: flex; align-items: center; gap: 0; list-style: none;
}
.nav-link {
  display: block; padding: 0.5rem 0.85rem;
  font-weight: 600; font-size: 0.82rem; color: var(--ink);
  text-decoration: none; position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 2px;
  height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.18s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-right {
  display: inline-flex; align-items: center; gap: 0.5rem; flex-shrink: 0;
}
.nav-hamburger {
  display: none; width: 38px; height: 38px;
  border: 2px solid var(--ink); background: var(--bg);
  padding: 0; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-hamburger span,
.nav-hamburger span::before,
.nav-hamburger span::after {
  display: block; width: 18px; height: 2px;
  background: var(--ink); position: relative;
}
.nav-hamburger span::before,
.nav-hamburger span::after {
  content: ''; position: absolute; left: 0;
}
.nav-hamburger span::before { top: -5px; }
.nav-hamburger span::after  { top: 5px; }

/* ---- LANGUAGE SWITCHER ---- */
.lang-switcher { position: relative; display: inline-flex; }
.lang-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 12px;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); box-shadow: var(--sh-sm);
  font-family: var(--font-b); font-weight: 700; font-size: 0.75rem;
  cursor: pointer; transition: transform var(--t), box-shadow var(--t);
}
.lang-trigger:hover { transform: translate(-1px,-1px); box-shadow: var(--sh); }
.lang-trigger:active { transform: translate(1px,1px); box-shadow: none; }
.lang-trigger[aria-expanded="true"] { background: var(--butter); color: var(--on-warm); }
.lang-native { font-weight: 700; letter-spacing: -0.005em; line-height: 1; }
.lang-code {
  font-family: ui-monospace, monospace; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 3px 6px; background: var(--ink); color: var(--paper);
}
.lang-trigger[aria-expanded="true"] .lang-code { background: var(--on-warm); color: var(--butter); }
.lang-chev { margin-left: 2px; transition: transform 0.15s ease; opacity: 0.7; flex-shrink: 0; }
.lang-trigger[aria-expanded="true"] .lang-chev { transform: rotate(180deg); }

.lang-panel {
  display: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  z-index: 60; min-width: 280px;
  background: var(--paper); border: 2px solid var(--ink); box-shadow: var(--sh-lg);
}
.lang-panel.is-open {
  display: block;
  animation: langIn 0.18s ease forwards;
}
@keyframes langIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-panel-head {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-bottom: 2px solid var(--ink); background: var(--ink); color: var(--paper);
  font-family: ui-monospace, monospace; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.lang-panel-list { display: flex; flex-direction: column; }
.lang-option {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: 12px; padding: 11px 14px;
  background: transparent; border: none; border-bottom: 1px solid var(--stripe);
  color: var(--ink); text-align: left; font-family: var(--font-b); cursor: pointer;
  transition: background 0.1s ease, padding-left 0.1s ease; position: relative;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--bg); padding-left: 20px; }
.lang-option.active { background: var(--butter); color: var(--on-warm); }
.lang-option-native {
  grid-column: 1; font-family: var(--font-d); font-weight: 900;
  font-size: 1.1rem; letter-spacing: -0.01em; line-height: 1.1; display: block;
}
.lang-option-meta {
  grid-column: 1; grid-row: 2; font-family: ui-monospace, monospace;
  font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 4px;
}
.lang-option.active .lang-option-meta { color: var(--on-warm); opacity: 0.75; }
.lang-check {
  grid-column: 2; grid-row: 1 / span 2; align-self: center;
  display: inline-flex; width: 26px; height: 26px;
  background: var(--red); color: var(--on-accent);
  border: 2px solid var(--ink); align-items: center; justify-content: center;
}

/* ---- LANGUAGE BANNER ---- */
.lang-banner {
  background: var(--butter); color: var(--on-warm);
  border-bottom: 2px solid var(--ink);
  animation: langBannerIn 0.32s cubic-bezier(.5,.1,.3,1) both;
}
@keyframes langBannerIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.lang-banner-inner {
  display: flex; align-items: center; gap: 14px; padding: 12px 2rem; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
}
.lang-banner-globe {
  width: 36px; height: 36px; border: 2px solid var(--ink); background: var(--paper);
  color: var(--ink); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lang-banner-text { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.lang-banner-native { font-family: var(--font-d); font-weight: 900; font-size: 1.05rem; letter-spacing: -0.01em; }
.lang-banner-offer { font-size: 0.78rem; font-weight: 600; }
.lang-banner-actions { display: inline-flex; align-items: center; gap: 8px; }
.lang-banner-close {
  width: 34px; height: 34px; background: transparent; border: 2px solid var(--ink);
  color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  transition: transform var(--t), box-shadow var(--t);
}
.lang-banner-close:hover { transform: translate(-1px,-1px); box-shadow: var(--sh-sm); }

@media (max-width: 860px) {
  .nav-panel {
    position: fixed; inset: 72px 0 0 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    background: var(--bg); border-top: 2px solid var(--ink);
    padding: 1.5rem; gap: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto; z-index: 49;
  }
  .nav-panel.open { transform: translateX(0); }
  .nav-links-row { flex-direction: column; align-items: stretch; }
  .nav-link {
    font-size: 1.1rem; padding: 0.9rem 0.5rem;
    border-bottom: 1px solid var(--stripe); min-height: 3rem;
  }
  .nav-link::after { display: none; }
  .nav-hamburger { display: inline-flex; }
  .nav-left { gap: 0.75rem; flex-shrink: 1; min-width: 0; }
  /* Compact lang trigger on mobile: hide native label */
  .lang-native { display: none; }
  .lang-trigger { padding: 0 10px; gap: 6px; }
  .lang-panel { position: fixed; top: 72px; left: 0; right: 0; min-width: auto; max-width: none; }
  .lang-banner-text { min-width: 0; flex: 1 1 100%; order: 2; }
  .lang-banner-actions { flex-wrap: wrap; }
}
@media (max-width: 540px) {
  .brand-name-wrap { display: none; }
}
@media (max-width: 640px) {
  .main-nav { padding: 0 1.25rem; }
  .lang-banner-inner { padding: 12px 1.25rem; }
}

/* hide old nav artefacts */
.nav-divider, .nav-controls, .brand-icon, .nav-actions, .lang-select { display: none; }

/* ==============================================
   HERO
   ============================================== */
.hero {
  padding: 5rem 0 4.5rem; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-text .eyebrow { margin-bottom: 1.4rem; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 1.4rem;
}
.h1-highlight {
  background: var(--red); color: var(--on-accent);
  padding: 0 0.2em; display: inline-block; transform: rotate(-0.8deg);
}
.hero p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.65; max-width: 520px;
  margin-bottom: 2rem; color: var(--ink-soft);
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-credibility {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 700; color: var(--muted);
}
.hero-art {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 160px; gap: 1rem;
}
.hero-tile {
  border: 2px solid var(--ink); overflow: hidden; position: relative;
}
.hero-tile-1 {
  grid-column: 1; grid-row: 1;
  box-shadow: 8px 8px 0 var(--red); background: var(--butter);
}
.hero-tile-2 {
  grid-column: 2; grid-row: 1 / 3;
  box-shadow: 8px 8px 0 var(--ink); background: var(--mint);
}
.hero-tile-3 {
  grid-column: 1; grid-row: 2;
  background: var(--red); color: var(--on-accent);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  box-shadow: 8px 8px 0 var(--butter);
}
.hero-tile-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-tile-num {
  font-family: var(--font-d); font-weight: 900; font-size: 2.5rem;
  line-height: 1; letter-spacing: -0.025em;
}
.hero-tile-lbl {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 0.25rem; opacity: 0.9;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-art { display: none; }
}
@media (max-width: 640px) { .hero { padding: 3.5rem 0 3rem; } }

/* ==============================================
   STATS BAND
   ============================================== */
.stats-band {
  background: var(--paper);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 2px solid var(--ink);
}
.stat-item {
  padding: 2rem 1.5rem;
  border-right: 2px solid var(--ink);
  background: var(--paper);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block; font-family: var(--font-d); font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.75rem); line-height: 1;
  color: var(--red); letter-spacing: -0.025em;
}
.stat-label {
  display: block; font-size: 0.68rem; font-weight: 700;
  margin-top: 0.55rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.05em;
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 2px solid var(--ink); padding: 1.25rem 1rem; }
  .stat-item:nth-child(odd) { border-right: 2px solid var(--ink); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-number { font-size: clamp(1.2rem, 5vw, 2rem); word-break: break-word; overflow-wrap: break-word; }
}

/* ==============================================
   SECTIONS
   ============================================== */
.section { padding: 5rem 0; }
.section.tight { padding: 3.5rem 0; }
.section-alt { background: var(--paper); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.bg-cream  { background: var(--bg); }
.bg-paper  { background: var(--paper); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.bg-red    { background: var(--red); color: var(--on-accent); }
.bg-navy   { background: var(--deep); color: var(--on-accent); }
.bg-mint   { background: var(--mint); color: var(--on-warm); }
.bg-butter { background: var(--butter); color: var(--on-warm); }
.text-center { text-align: center; }
.section-title { font-size: clamp(2rem, 5vw, 3.25rem); margin-top: 0.85rem; margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1rem; color: var(--ink-soft);
  max-width: 580px; line-height: 1.7; margin: 0 auto;
}
.text-center .section-subtitle { margin: 0 auto; }

/* ==============================================
   CARD GRID (services)
   ============================================== */
.card-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.card {
  background: var(--paper); border: 2px solid var(--ink);
  padding: 1.75rem; box-shadow: var(--sh);
  transition: transform var(--t), box-shadow var(--t);
  position: relative;
}
.card::before {
  content: ''; display: block; height: 5px;
  background: var(--red); margin: -1.75rem -1.75rem 1.25rem;
  border-bottom: 2px solid var(--ink);
}
.card:hover { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.55rem; line-height: 1.25; }
.card p  { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .card-grid { grid-template-columns: 1fr; } }

/* ==============================================
   WHO WE HELP — tile redesign
   ============================================== */
.who-section { background: var(--paper); }

.who-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.who-h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  margin-top: 0.9rem;
  line-height: 1;
}
.who-h2-hl {
  background: var(--butter);
  color: var(--on-warm);
  padding: 0 0.3em;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.who-header-side {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 1.25rem;
  padding-bottom: 0.5rem;
}
.who-header-side p { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); margin: 0; }

/* Tile grid — 3 columns × 2 rows */
.who-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.who-tile {
  position: relative;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex; flex-direction: column;
  min-height: 200px;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.who-tile:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }

/* Colour variants */
.who-tile-red    { background: var(--red);    color: var(--on-accent); }
.who-tile-butter { background: var(--butter); color: var(--on-warm); }
.who-tile-mint   { background: var(--mint);   color: var(--on-warm); }
.who-tile-deep   { background: var(--deep);   color: var(--on-accent); }
.who-tile-paper  { background: var(--paper);  color: var(--ink); }

/* Small square marker at top-left */
.who-marker {
  width: 13px; height: 13px;
  background: currentColor;
  opacity: 0.9;
  display: block;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.who-tile-body { margin-top: auto; position: relative; z-index: 1; }
.who-name {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.1; margin: 0;
  max-width: 16ch;
}

/* Decorative blob — bottom-right corner */
.who-shape {
  position: absolute; right: -10px; bottom: -10px;
  pointer-events: none; opacity: 0.85;
}

/* Coverage strip */
.who-coverage {
  margin-top: 2rem;
  display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap;
  padding: 1.1rem 1.6rem;
  border: 2px solid var(--ink);
  background: var(--bg);
  box-shadow: 6px 6px 0 var(--ink);
}
.who-coverage-label {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft);
  white-space: nowrap;
}
.who-coverage-list { display: flex; gap: 1.35rem; flex-wrap: wrap; flex: 1; }
.who-coverage-item {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 700; font-size: 0.9rem;
}
.who-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border: 2px solid var(--ink);
  display: inline-block; flex-shrink: 0;
}

@media (max-width: 900px) {
  .who-header { grid-template-columns: 1fr; gap: 1.75rem; align-items: start; }
  .who-tiles  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .who-tiles { grid-template-columns: 1fr; }
  .who-tile  { min-height: 160px; }
}

/* ==============================================
   HELP PATHS (3-up)
   ============================================== */
.help-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.help-card {
  border: 2px solid var(--ink); padding: 2rem;
  display: flex; flex-direction: column; min-height: 300px;
  box-shadow: var(--sh);
  transition: transform var(--t), box-shadow var(--t);
}
.help-card:hover { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.help-card-num {
  font-family: ui-monospace, monospace; font-size: 0.7rem;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.9rem;
}
.help-card h3 { font-size: 1.2rem; margin-bottom: 0.65rem; }
.help-card p  { font-size: 0.87rem; line-height: 1.65; flex: 1; margin-bottom: 1.5rem; }
@media (max-width: 860px) { .help-grid { grid-template-columns: 1fr; } }

/* ==============================================
   CTA BANNER
   ============================================== */
.cta-banner {
  background: var(--deep); color: var(--on-accent);
  padding: 5rem 2rem; text-align: center;
  border-top: 2px solid var(--ink);
}
.cta-banner h2 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin-bottom: 1rem; color: var(--on-accent);
}
.cta-banner p {
  font-size: 1rem; opacity: 0.85; line-height: 1.7;
  margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-banner-inner { /* legacy wrapper */ }

/* ==============================================
   INFO BOX
   ============================================== */
.info-box {
  background: var(--butter); border: 2px solid var(--ink);
  color: var(--on-warm); padding: 1.15rem 1.4rem;
  font-size: 0.88rem; line-height: 1.7;
  box-shadow: var(--sh-sm);
}
.info-box strong { font-weight: 800; color: var(--on-warm); }
.mt-3 { margin-top: 1.75rem; }

/* ==============================================
   PAGE HERO (inner pages)
   ============================================== */
.page-hero, .donate-hero {
  background: var(--deep); color: var(--on-accent);
  padding: 5rem 2rem 4.5rem; text-align: center;
}
.page-hero-inner, .donate-hero-inner {
  max-width: 780px; margin: 0 auto;
}
.page-hero h1, .donate-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem); color: var(--on-accent);
  margin-bottom: 0.9rem; line-height: 1.05;
}
.page-hero p, .donate-hero p {
  font-size: 1.05rem; opacity: 0.85; line-height: 1.75;
  max-width: 560px; margin: 0 auto;
}
.breadcrumb { font-size: 0.72rem; opacity: 0.6; margin-bottom: 1.25rem; }
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb a:hover { color: var(--on-accent); }
@media (max-width: 600px) {
  .page-hero, .donate-hero { padding: 3.5rem 1.25rem 3rem; text-align: left; }
  .page-hero p, .donate-hero p { margin: 0; }
}

/* ==============================================
   TWO-COL
   ============================================== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; border: 2px solid var(--ink);
}
.two-col > div { padding: 2.5rem; }
.two-col > div:first-child { border-right: 2px solid var(--ink); }
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col > div:first-child { border-right: none; border-bottom: 2px solid var(--ink); }
}

/* ==============================================
   VALUES
   ============================================== */
.values-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.value-card {
  border: 2px solid var(--ink); padding: 1.5rem 1.25rem;
  box-shadow: var(--sh-sm); background: var(--paper);
  display: flex; flex-direction: column; gap: 0.35rem;
  transition: background var(--t), transform var(--t);
}
.value-card:hover { background: var(--butter); color: var(--on-warm); transform: translate(-2px,-2px); }
.value-card strong { font-size: 0.95rem; font-weight: 800; }
.value-card span   { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.5; }
.value-card:hover span { color: var(--on-warm); }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr 1fr; } }

/* ==============================================
   PRINCIPLES (about page)
   ============================================== */
.principles-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.principle-card {
  border: 2px solid var(--ink); padding: 2.25rem;
  box-shadow: var(--sh); display: flex; flex-direction: column;
}
.principle-num {
  font-family: var(--font-d); font-weight: 900; font-size: 3.5rem;
  line-height: 1; color: var(--red); margin-bottom: 0.75rem;
}
.principle-card.bg-butter .principle-num,
.principle-card.bg-mint   .principle-num { color: var(--ink); }
.principle-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.principle-card p  { font-size: 0.87rem; line-height: 1.7; }
@media (max-width: 640px) { .principles-grid { grid-template-columns: 1fr; } }

/* ==============================================
   TEAM
   ============================================== */
.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.team-card {
  border: 2px solid var(--ink); background: var(--paper);
  overflow: hidden; box-shadow: var(--sh);
}
.team-avatar {
  width: 100%; height: 170px; background: var(--red);
  color: var(--on-accent); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-d);
  font-size: 2.25rem; font-weight: 900;
  border-bottom: 2px solid var(--ink);
}
.team-card-body { padding: 1.25rem; }
.team-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.68rem; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem;
}
.team-card p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ==============================================
   PARTNERS
   ============================================== */
.partners-list {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 2.5rem;
}
.partner-badge {
  border: 2px solid var(--ink); padding: 0.6rem 1.2rem;
  font-weight: 700; font-size: 0.8rem; background: var(--paper);
  box-shadow: var(--sh-sm);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.partner-badge:hover {
  background: var(--butter); color: var(--on-warm);
  transform: translate(-2px,-2px); box-shadow: var(--sh);
}

/* ==============================================
   IMPACT BARS (about page)
   ============================================== */
.impact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: center; margin-top: 1rem;
}
.impact-bar-list { display: flex; flex-direction: column; gap: 0.85rem; }
.impact-bar-row { display: flex; flex-direction: column; gap: 0.35rem; }
.impact-bar-label {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; font-weight: 600;
}
.impact-bar-label span:last-child {
  font-family: var(--font-d); font-weight: 900; font-size: 1rem;
}
.impact-bar {
  height: 16px; background: var(--bg);
  border: 2px solid var(--ink); overflow: hidden;
}
.impact-bar-fill { height: 100%; background: var(--red); }
@media (max-width: 720px) { .impact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ==============================================
   SESSIONS TABLE (events page)
   ============================================== */
.sessions-table { --row-border: 2px solid var(--ink); }

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
  margin-top: 0;
}

.session-card {
  display: flex; flex-direction: column;
  border: var(--row-border);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform var(--t), box-shadow var(--t);
  min-width: 0;
}
.session-card:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }

/* Coloured header bands */
.session-head {
  padding: 1.375rem 1.625rem;
  border-bottom: var(--row-border);
  display: flex; align-items: center; gap: 0.875rem;
}
.session-head-red    { background: var(--red);    color: var(--on-accent); }
.session-head-butter { background: var(--butter); color: var(--on-warm); }
.session-head-mint   { background: var(--mint);   color: var(--on-warm); }

.session-num {
  font-family: ui-monospace, monospace;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border: var(--row-border);
  line-height: 1.1; flex-shrink: 0;
}
.session-num-butter { background: var(--butter); color: var(--on-warm); }
.session-num-red    { background: var(--red);    color: var(--on-accent); }

.session-head h3 {
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  letter-spacing: -0.01em; line-height: 1.1;
  margin: 0; color: inherit;
}

/* Body: definition list + description */
.session-body {
  background: var(--paper); color: var(--ink);
  padding: 1.625rem 1.75rem 1.75rem;
  flex: 1; display: flex; flex-direction: column; gap: 1rem;
}
.session-body dl { margin: 0; display: grid; gap: 0.75rem; }
.session-body dl > div {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  align-items: baseline; gap: 0.6rem;
  font-size: 0.85rem; line-height: 1.45;
}
.session-body dt {
  font-family: ui-monospace, monospace;
  font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700;
  color: var(--ink-soft); padding-top: 0.2rem;
}
.session-body dd { margin: 0; color: var(--ink); font-weight: 600; }
.session-body p {
  margin: 0; padding-top: 1rem;
  border-top: 1px dashed var(--ink-soft);
  color: var(--ink-soft); font-size: 0.8rem; line-height: 1.6;
}

/* "Good to know" note */
.session-note {
  margin-top: 1.75rem;
  background: var(--butter); color: var(--on-warm);
  border: var(--row-border);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 1.375rem 1.625rem;
  font-size: 0.82rem; line-height: 1.6;
  display: flex; gap: 1.125rem; align-items: flex-start;
}
.session-note-tag {
  width: 2rem; height: 2rem;
  border: var(--row-border);
  background: var(--on-warm); color: var(--butter);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 900;
  font-size: 1rem; font-style: italic; flex-shrink: 0;
}
.session-note-text { flex: 1; }
.session-note strong { font-weight: 800; }

@media (max-width: 900px) {
  .sessions-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   CONTACT
   ============================================== */

/* Mode toggle (form ↔ info) */
.mode-toggle {
  display: inline-flex; border: 2px solid var(--ink);
  background: var(--paper); margin-bottom: 2.5rem;
}
.mode-btn {
  padding: 0.85rem 1.5rem; background: transparent; color: var(--ink);
  border: none; font-family: var(--font-b); font-weight: 700;
  font-size: 0.82rem; cursor: pointer; min-width: 170px;
  transition: background var(--t), color var(--t);
}
.mode-btn.active { background: var(--ink); color: var(--bg); }
.mode-btn:not(.active):hover { background: var(--stripe); }

/* Topic pills */
.topic-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
.topic-pill {
  padding: 0.55rem 0.9rem; border: 2px solid var(--ink);
  background: var(--paper); color: var(--ink);
  font-family: var(--font-b); font-weight: 600; font-size: 0.78rem;
  cursor: pointer; transition: background var(--t), color var(--t), box-shadow var(--t);
}
.topic-pill:hover { background: var(--stripe); }
.topic-pill.active {
  background: var(--red); color: var(--on-accent);
  box-shadow: var(--sh-sm);
}

/* Form 2-col row */
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* Contact layout: form + sidebar */
.contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 3rem; align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  background: var(--paper); border: 2px solid var(--ink);
  padding: 1.5rem; box-shadow: var(--sh-sm);
}
.contact-item h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem; }
.contact-item a { color: var(--red); font-weight: 600; text-decoration: underline; word-break: break-all; }
.contact-item p { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.7; }
.contact-form {
  background: var(--paper); border: 2px solid var(--ink);
  padding: 2rem; box-shadow: var(--sh);
}
.contact-form h2 { font-size: 1.4rem; margin-bottom: 1.5rem; line-height: 1.2; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.15rem; }
.form-group label { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.02em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.75rem 0.9rem;
  border: 2px solid var(--ink); background: var(--bg);
  font-family: var(--font-b); font-size: 0.87rem;
  color: var(--ink); border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; box-shadow: 4px 4px 0 var(--red);
  transform: translate(-2px,-2px);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-success {
  display: none; padding: 1rem;
  background: var(--mint); color: var(--on-warm);
  border: 2px solid var(--ink); font-weight: 700; margin-top: 1rem;
}
.form-success.visible { display: block; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }

/* Contact sidebar */
.contact-side { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-side-box {
  background: var(--paper); border: 2px solid var(--ink);
  padding: 1.5rem; box-shadow: var(--sh);
}
.contact-side-box h4 {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.9rem;
  font-family: var(--font-b);
}
.contact-side-box ol {
  margin: 0; padding-left: 1.1rem;
  display: grid; gap: 0.65rem;
  font-size: 0.83rem; line-height: 1.55;
}

/* Contact info cards (info mode) */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.contact-info-card {
  border: 2px solid var(--ink); padding: 1.75rem;
  box-shadow: var(--sh); color: var(--ink);
  display: flex; flex-direction: column; gap: 0.4rem;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t);
}
a.contact-info-card:hover { transform: translate(-2px,-2px); box-shadow: var(--sh-lg); }
.contact-info-card-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red);
}
.contact-info-card h3 {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 800; line-height: 1.2; word-break: break-word;
}
.contact-info-card p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.65; margin: 0; }

.contact-info-card.accent-red {
  background: var(--red); color: var(--on-accent);
}
.contact-info-card.accent-red .contact-info-card-label { color: rgba(255,255,255,0.85); }
.contact-info-card.accent-red p { color: rgba(255,255,255,0.8); }

.contact-info-card.accent-butter {
  background: var(--butter); color: var(--on-warm);
}
.contact-info-card.accent-butter .contact-info-card-label,
.contact-info-card.accent-butter p { color: var(--on-warm); opacity: 0.85; }

.contact-info-card.accent-mint {
  background: var(--mint); color: var(--on-warm);
}
.contact-info-card.accent-mint .contact-info-card-label,
.contact-info-card.accent-mint p { color: var(--on-warm); opacity: 0.85; }

@media (max-width: 640px) { .contact-info-grid { grid-template-columns: 1fr; } }

/* ==============================================
   GALLERY
   ============================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.gallery-item {
  border: 2px solid var(--ink);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29,53,87,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem;
  opacity: 0; transition: opacity 0.25s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
  display: inline-block; background: var(--red);
  color: var(--on-accent); font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem; margin-bottom: 0.35rem;
  border: 1px solid rgba(255,255,255,0.25);
}
.gallery-caption {
  color: var(--on-accent); font-size: 0.8rem;
  font-weight: 600; line-height: 1.3;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ==============================================
   MAP
   ============================================== */
.map-label {
  background: var(--deep); color: var(--on-accent);
  padding: 0.65rem 1.25rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.03em;
}
.map-container {
  border: 2px solid var(--ink); box-shadow: var(--sh);
  margin-top: 2rem; overflow: hidden;
}
.map-container iframe { width: 100%; height: 360px; display: block; border: 0; }
@media (max-width: 480px) { .map-container iframe { height: 280px; } }

/* Upgraded map with floating badge */
.map-wrap {
  position: relative; border: 2px solid var(--ink);
  box-shadow: var(--sh-lg); margin-top: 2rem; overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 400px; display: block; border: 0; }
.map-overlay {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); padding: 0.5rem 0.9rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; pointer-events: none;
}
@media (max-width: 480px) { .map-wrap iframe { height: 300px; } }

/* ==============================================
   CALENDAR
   ============================================== */
.cal-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.cal-wrap {
  border: 2px solid var(--ink); box-shadow: var(--sh-lg);
  background: var(--paper); overflow: hidden;
}
.cal-wrap iframe { display: block; border: 0; }
.upcoming-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.9rem;
}
.upcoming-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
}
.upcoming-cell {
  padding: 1.25rem 1.4rem;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  background: var(--paper);
}
.upcoming-cell:nth-child(3n) { border-right: none; }
.upcoming-cell:nth-last-child(-n+3) { border-bottom: none; }
.upcoming-when {
  font-family: ui-monospace, monospace; font-size: 0.62rem;
  letter-spacing: 0.08em; color: var(--muted); margin-bottom: 0.35rem;
}
.upcoming-what { font-weight: 700; font-size: 0.88rem; margin-bottom: 0.65rem; line-height: 1.3; }
.upcoming-tag {
  display: inline-block; font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; padding: 0.2rem 0.5rem;
  background: var(--butter); color: var(--on-warm); border: 2px solid var(--ink);
}
@media (max-width: 800px) {
  .upcoming-grid { grid-template-columns: 1fr 1fr; }
  .upcoming-cell:nth-child(3n) { border-right: 2px solid var(--ink); }
  .upcoming-cell:nth-child(2n) { border-right: none; }
  .upcoming-cell:nth-last-child(-n+3) { border-bottom: 2px solid var(--ink); }
  .upcoming-cell:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .upcoming-grid { grid-template-columns: 1fr; }
  .upcoming-cell { border-right: none !important; }
  .upcoming-cell:last-child { border-bottom: none !important; }
}

/* ==============================================
   DONATE
   ============================================== */
.donate-options {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.donate-card {
  border: 2px solid var(--ink); padding: 2rem;
  background: var(--paper); box-shadow: var(--sh);
  display: flex; flex-direction: column; gap: 0.85rem;
}
.donate-card.featured { background: var(--butter); color: var(--on-warm); }
.donate-card h3 { font-size: 1.1rem; font-weight: 800; }
.donate-card p  { font-size: 0.85rem; line-height: 1.7; color: var(--ink-soft); flex: 1; }
.donate-card.featured p { color: var(--on-warm); }
.card-stripe {
  height: 6px; background: var(--red);
  margin: -2rem -2rem 0; border-bottom: 2px solid var(--ink);
}
.bank-detail {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; padding: 0.45rem 0;
  border-bottom: 1px solid var(--stripe);
}
.bank-detail span   { color: var(--muted); }
.bank-detail strong { font-weight: 700; font-family: ui-monospace, monospace; }
@media (max-width: 860px) { .donate-options { grid-template-columns: 1fr; } }

/* ==============================================
   STICKY HELP BUTTON
   ============================================== */
.sticky-help {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 60;
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--deep); color: var(--on-accent);
  border: 2px solid var(--ink);
  padding: 0.8rem 1.3rem 0.8rem 1rem;
  font-family: var(--font-b); font-weight: 700; font-size: 0.82rem;
  box-shadow: 6px 6px 0 var(--red);
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t);
}
.sticky-help:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--red); }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--mint); flex-shrink: 0;
  box-shadow: 0 0 0 0 var(--mint);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(155,203,177,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(155,203,177,0); }
  100% { box-shadow: 0 0 0 0 rgba(155,203,177,0); }
}
@media (max-width: 600px) {
  .sticky-help { right: 1rem; bottom: 1rem; font-size: 0.78rem; max-width: calc(100vw - 2rem); box-sizing: border-box; }
}

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: var(--deep); color: var(--on-accent);
  padding: 4rem 0 1.75rem;
  border-top: 2px solid var(--ink);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; max-width: 1200px;
  margin: 0 auto 3rem; padding: 0 2rem;
}
.footer-brand .footer-logo {
  font-family: var(--font-d); font-size: 1rem; font-weight: 900;
  color: var(--on-accent); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.65rem;
}
.footer-logo-icon {
  width: 2rem; height: 2rem; background: var(--red);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 900; color: var(--on-accent);
  flex-shrink: 0; font-family: var(--font-d);
}
.footer-brand p {
  font-size: 0.8rem; line-height: 1.75; opacity: 0.8; max-width: 280px;
}
.footer-col h4 {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--butter);
  margin-bottom: 1rem; font-family: var(--font-b);
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 0.82rem;
  padding: 0.3rem 0; transition: color var(--t); min-height: 1.8rem;
}
.footer-col a:hover { color: var(--on-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 2rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 0.5rem;
}
.footer-charity-num {
  background: var(--butter); color: var(--on-warm);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.2rem 0.75rem;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 440px) { .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .footer-grid, .footer-bottom { padding-left: 1.25rem; padding-right: 1.25rem; }
}

/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.4s ease both; }
