/* --- Google Font: Inter Tight for body --- */
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap");

/* =============================================
   SAVE — Stop Aux Violences d'État
   Design System — Charte graphique officielle
   Polices : TuskerGrotesk (display) + Save brush fonts + Inter Tight (body)
   ============================================= */

/* --- Custom Fonts --- */
@font-face {
  font-family: 'TuskerGrotesk';
  src: url('/fonts/TuskerGrotesk-3500Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TuskerGrotesk';
  src: url('/fonts/TuskerGrotesk-3700Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TuskerGrotesk';
  src: url('/fonts/TuskerGrotesk-3800Super.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TuskerGroteskWide';
  src: url('/fonts/TuskerGrotesk-5500Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TuskerGroteskWide';
  src: url('/fonts/tusker-grotesk-5700-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TuskerGroteskWide';
  src: url('/fonts/TuskerGrotesk-7700Bold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SaveBrush';
  src: url('/fonts/SaveDryBrush-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SaveMarker';
  src: url('/fonts/Save_marker_regualr-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SavePen';
  src: url('/fonts/Save_pen_regular-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'SavePencil';
  src: url('/fonts/Save_pencil-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables --- */
:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --ink: #f4f1ec;
  --ink-dim: #a8a29e;
  --rule: #262626;
  --red: #e02424;
  --red-deep: #a81818;
  --paper: #f4f1ec;

  --font-display: 'TuskerGroteskWide', 'Impact', 'Arial Black', sans-serif;
  --font-display-narrow: 'TuskerGrotesk', 'Impact', sans-serif;
  --font-brush: 'SaveBrush', 'Permanent Marker', cursive;
  --font-marker: 'SaveMarker', cursive;
  --font-pen: 'SavePen', cursive;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--red); color: #fff; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* --- Topbar --- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  height: 58px;
  width: auto;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-dim);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--red-deep); }

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all .2s;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 100px 32px 120px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(224,36,36,.14), transparent 55%),
    radial-gradient(ellipse at 95% 100%, rgba(224,36,36,.06), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--red);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--red);
}
h1.title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(46px, 6.5vw, 96px);
  line-height: .92;
  letter-spacing: -.035em;
  margin-bottom: 36px;
  text-transform: uppercase;
}
h1.title em {
  font-style: italic;
  color: var(--red);
  font-weight: 900;
}
.lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 640px;
  margin-bottom: 44px;
}
.lede strong { color: #fff; font-weight: 600; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-dim);
}
.hero-meta b {
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* --- Pulse card --- */
.pulse-card {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  padding: 38px 34px;
  position: relative;
}
.pulse-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--red);
}
.pulse-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.pulse-amount {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pulse-goal {
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.pulse-goal b { color: var(--ink); }
.progress {
  height: 6px;
  background: #222;
  margin-bottom: 12px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--red);
  width: 0;
  animation: fill 1.6s ease-out forwards;
}
@keyframes fill { to { width: 38%; } }
.pulse-stats {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.pulse-cta {
  display: block;
  text-align: center;
  margin-top: 28px;
  background: var(--red);
  color: #fff;
  padding: 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: background .2s;
}
.pulse-cta:hover { background: var(--red-deep); }

/* --- Section base --- */
section { padding: 110px 32px; border-bottom: 1px solid var(--rule); }
.container { max-width: 1300px; margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: end;
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.section-title em { font-style: italic; color: var(--red); }

/* --- About --- */
.about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about p { font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 22px; }
.about p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 74px;
  font-weight: 900;
  float: left;
  line-height: .85;
  padding-right: 14px;
  padding-top: 6px;
  color: var(--red);
}
.about strong { color: #fff; font-weight: 600; }
.quote {
  border-left: 3px solid var(--red);
  padding: 22px 0 22px 32px;
  margin: 36px 0;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 23px;
  line-height: 1.4;
  color: #fff;
  text-transform: uppercase;
}
.quote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink-dim);
}

/* --- Missions --- */
.missions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.mission {
  padding: 54px 38px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.mission:last-child { border-right: none; }
.mission-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
  margin-bottom: 28px;
  letter-spacing: .1em;
}
.mission h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.mission p { font-size: 15px; line-height: 1.65; color: var(--ink-dim); margin-bottom: 18px; }
.mission ul {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.mission ul li {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-dim);
  padding: 8px 0;
  display: flex;
  gap: 12px;
}
.mission ul li::before { content: "\2192"; color: var(--red); }

/* --- Featured project 435-1 --- */
.featured {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(224,36,36,.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(224,36,36,.08), transparent 50%);
  pointer-events: none;
}
.featured-inner { max-width: 1300px; margin: 0 auto; position: relative; }
.featured-flag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.featured-flag::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--red);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}
.featured-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(54px, 8vw, 128px);
  line-height: .88;
  letter-spacing: -.04em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.featured-title em { font-style: italic; color: var(--red); font-weight: 900; }
.featured-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-dim);
  margin-bottom: 36px;
}
.featured-kicker b { color: var(--red); font-weight: 600; }
.featured-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 560px;
}
.featured-lede strong { color: #fff; font-weight: 600; }
.featured-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 48px;
}
.featured-col {
  padding: 38px 36px;
  border-right: 1px solid var(--rule);
}
.featured-col:last-child { border-right: none; }
.featured-col h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.featured-col p { font-size: 14px; line-height: 1.65; color: var(--ink-dim); }
.featured-tour {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--bg-2);
}
.tour-stop {
  flex: 1;
  min-width: 180px;
  padding: 24px 28px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.tour-stop:last-child { border-right: none; }
.tour-stop .date {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 8px;
}
.tour-stop .city {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.tour-stop.first { background: #1a0e0e; }
.tour-stop.first::after {
  content: "OUVERTURE";
  position: absolute;
  top: 8px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .15em;
  color: var(--red);
}

/* --- Et aussi (autres actions) --- */
.actions { background: var(--bg-2); }
.actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.action {
  background: var(--bg-2);
  padding: 44px 38px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  transition: background .25s;
}
.action:hover { background: #1a1a1a; }
.action-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  letter-spacing: -.02em;
}
.action h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.action-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.action p { font-size: 14px; line-height: 1.6; color: var(--ink-dim); }

/* --- DON --- */
.donate { background: var(--paper); color: #0a0a0a; }
.donate .section-tag { color: var(--red-deep); }
.donate .section-title { color: #0a0a0a; }
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.donate-side h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: #0a0a0a;
  text-transform: uppercase;
}
.donate-side p { font-size: 16px; line-height: 1.7; color: #333; margin-bottom: 22px; }
.uses { list-style: none; margin-top: 36px; border-top: 1px solid #d4cfc6; }
.uses li {
  padding: 24px 0;
  border-bottom: 1px solid #d4cfc6;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
}
.uses li b {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--red-deep);
  line-height: 1;
  white-space: nowrap;
}
.uses li strong { display: block; font-size: 16px; font-weight: 600; color: #0a0a0a; margin-bottom: 4px; }
.uses li span { font-size: 14px; line-height: 1.5; color: #666; display: block; }

.donate-card {
  background: #0a0a0a;
  color: var(--ink);
  padding: 48px 44px;
  position: relative;
}
.donate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 80px;
  background: var(--red);
}
.donate-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-dim);
  margin-bottom: 24px;
}
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 32px;
  border: 1px solid #333;
}
.tab {
  padding: 18px;
  background: transparent;
  color: var(--ink-dim);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  transition: all .2s;
}
.tab.active { background: var(--red); color: #fff; }
.tab:not(.active):hover { color: #fff; }
.tab small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .05em;
  margin-top: 2px;
  opacity: .8;
}

.amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.amount {
  background: transparent;
  color: var(--ink);
  border: 1px solid #333;
  padding: 24px 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  text-transform: uppercase;
}
.amount:hover { border-color: #666; }
.amount.selected { background: var(--red); border-color: var(--red); color: #fff; }
.custom-wrap { position: relative; margin-bottom: 24px; }
.custom-wrap input {
  width: 100%;
  background: transparent;
  border: 1px solid #333;
  color: var(--ink);
  padding: 20px 60px 20px 22px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}
.custom-wrap input::-webkit-outer-spin-button,
.custom-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.custom-wrap input:focus { border-color: var(--red); }
.custom-wrap span {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-dim);
  pointer-events: none;
}

.deduction {
  background: #1a1a1a;
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.deduction-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 13px;
}
.deduction-line:last-of-type {
  margin-bottom: 0;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #333;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}
.deduction-line b { color: var(--red); font-weight: 600; }
.deduction small {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-dim);
  font-style: italic;
}

.submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  display: block;
  text-align: center;
}
.submit:hover { background: var(--red-deep); }
.secure {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink-dim);
}

/* --- Trust --- */
.trust { background: var(--bg); padding: 90px 32px; border-bottom: 1px solid var(--rule); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.trust-item { border-top: 1px solid var(--rule); padding-top: 28px; }
.trust-item .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.trust-item p { font-size: 13px; color: var(--ink-dim); line-height: 1.55; }
.trust-item p strong { color: #fff; display: block; margin-bottom: 4px; }

/* --- Heartbeat separator --- */
.heartbeat-separator {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.heartbeat-separator img {
  height: 24px;
  width: auto;
  opacity: 0.6;
}

/* --- Footer --- */
footer {
  background: #050505;
  padding: 70px 32px 40px;
  border-top: 1px solid var(--rule);
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo { height: 36px; width: auto; margin-bottom: 8px; }
.footer-brand p {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 340px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
  margin-bottom: 18px;
}
.footer-col a,
.footer-col p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.9;
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #555;
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .hero { padding: 60px 24px 80px; }
  .hero-inner,
  .donate-grid,
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .missions,
  .actions-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-cols { grid-template-columns: 1fr; }
  .featured-col { border-right: none; border-bottom: 1px solid var(--rule); }
  .featured-col:last-child { border-bottom: none; }
  .tour-stop { flex-basis: 100%; border-right: none; border-bottom: 1px solid var(--rule); }
  .tour-stop:last-child { border-bottom: none; }
  .mission { border-right: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  section { padding: 64px 24px; }
  .topbar-inner { padding: 14px 20px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .donate-card { padding: 36px 28px; }
  .action { grid-template-columns: 60px 1fr; padding: 32px 24px; }
  .action-num { font-size: 36px; }
}

@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .amounts { grid-template-columns: repeat(2, 1fr); }
}
