/* Quiver Foundation — shared styles
   Brand: warm coral on white, uppercase geometric headings.
   Poppins for display/nav, Work Sans for body. */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;700;800&family=Jost:wght@400;500;600&display=swap');

@font-face {
  font-family: 'Kamerik 105';
  src: url('/fonts/Kamerik105Cyrillic-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-brand: 'Kamerik 105', 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --coral: #ff5b27;
  --coral-dark: #e0431a;
  --coral-tint: #ffe4d8;
  --ink: #241f1c;
  --muted: #6b625b;
  --line: #ece6de;
  --paper: #ffffff;
  --paper-alt: #faf7f3;
  --teal: #2b5152;
  --font-display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --radius: 10px;
  --shadow: 0 12px 32px -18px rgba(36, 31, 28, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.brand .logo-icon {
  height: 26px;
  width: auto;
  display: block;
}
.brand .logo-img {
  height: 22px;
  width: auto;
  display: block;
}
footer .brand .logo-icon { height: 22px; }
footer .brand .logo-img { height: 19px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.main-nav a:hover { color: var(--coral); }
.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--coral-dark); color: #fff !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { border-color: var(--coral); color: var(--coral); }
.btn-block { width: 100%; }

/* ---------- hero ---------- */
.hero {
  padding: 96px 0 72px;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  text-wrap: balance;
}
h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 300; }
h1 em, h1 .accent { font-weight: 600; }
h1 em, .accent { color: var(--coral); font-style: normal; }
h2 { font-size: clamp(24px, 3.4vw, 32px); }
h3 { font-size: 19px; }
.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 32px;
}
.lede .emphasis {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- whatsapp cta ---------- */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.whatsapp-cta svg { flex: none; color: #25D366; }
.whatsapp-cta a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.whatsapp-cta a:hover { border-color: #fff; }

/* ---------- stat grid ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 48px 0;
}
.stat-card {
  background: var(--paper);
  padding: 32px 24px;
}
.stat-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card p { margin: 0 0 12px; font-size: 14.5px; color: var(--muted); }
.stat-card a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 2px;
}

/* ---------- generic sections ---------- */
section { padding: 72px 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 62ch; margin-bottom: 40px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ---------- cards: get-involved / giving tracks ---------- */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.option-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.option-card .kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.option-card p { color: var(--muted); font-size: 15px; flex: 1; }
.option-card .btn { margin-top: 18px; align-self: flex-start; }

/* ---------- impact tiers ---------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.impact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.impact-card .amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--coral);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.impact-card h3 { margin-bottom: 8px; font-size: 16px; }
.impact-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- donate method cards ---------- */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 8px 0 12px;
}
.donate-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--paper);
  text-align: left;
}
.donate-card .region {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.donate-card h3 { margin-bottom: 8px; }
.donate-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.donate-note {
  background: var(--coral-tint);
  border-left: 3px solid var(--coral);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--coral-dark);
  margin-top: 8px;
}

/* ---------- team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 24px;
}
.team-card .photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--paper-alt);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 12px;
}
.team-card h3 { margin-bottom: 2px; font-size: 17px; }
.team-card .role {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.team-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- methodology steps ---------- */
.step-list { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--coral-tint);
  -webkit-text-stroke: 1.5px var(--coral);
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); }

/* ---------- newsletter ---------- */
.newsletter {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter h2 { color: #fff; margin-bottom: 8px; }
.newsletter p { color: #cfc7bf; margin: 0; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input[type="email"] {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid #46403b;
  background: #322c28;
  color: #fff;
  min-width: 240px;
}
.newsletter input[type="email"]::placeholder { color: #9a9089; }
.form-status { font-size: 13px; color: #cfc7bf; margin-top: 10px; width: 100%; }

/* ---------- building callout ---------- */
.callout {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

/* ---------- bank/gift-aid notes ---------- */
.note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 14.5px;
  color: var(--muted);
}
.note strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 13.5px; margin-bottom: 6px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  background: var(--paper-alt);
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
}
.footer-links a:hover { color: var(--coral); }
.footer-fine { font-size: 13px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav { position: fixed; inset: 76px 0 0 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 28px; gap: 22px; transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .nav-cta { margin-top: 4px; }
  .stat-grid { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; align-items: flex-start; }
  .newsletter form { width: 100%; }
  .newsletter input[type="email"] { flex: 1; min-width: 0; }
  .hero { padding: 56px 0 48px; }
}
