
:root {
  --green: #143e2b;
  --green-2: #0d2f21;
  --gold: #c99335;
  --cream: #f7f3eb;
  --paper: #fffdf9;
  --ink: #17231c;
  --muted: #68736d;
  --line: rgba(20, 62, 43, .15);
  --shadow: 0 20px 55px rgba(20, 62, 43, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.55;
}

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

a { color: inherit; }

.container {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 185px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green);
  border-color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  transition: .2s ease;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.primary:hover { background: var(--green-2); transform: translateY(-1px); }

.button.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--green);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(201,147,53,.18), transparent 28%),
    linear-gradient(135deg, #f9f5ed 0%, #fffdf9 65%);
  padding: 92px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 18px;
}

h1, h2, h3 {
  color: var(--green);
  line-height: 1.05;
  margin-top: 0;
}

h1 {
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -.025em;
}

h3 {
  font-size: 25px;
  font-weight: 600;
}

.lead {
  font-size: clamp(20px, 2vw, 25px);
  color: #4b5c52;
  max-width: 710px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  position: relative;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

.hero-card .caption {
  padding: 20px 24px 23px;
  color: var(--muted);
  font-size: 15px;
}

.section {
  padding: 88px 0;
}

.section.alt { background: var(--cream); }

.section-intro {
  max-width: 760px;
  margin-bottom: 44px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}

.card .number {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
}

.project-band {
  background: var(--green);
  color: white;
}

.project-band h2,
.project-band h3 { color: white; }

.project-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 58px;
  align-items: center;
}

.project-logo {
  background: white;
  border-radius: 24px;
  padding: 34px;
}

.project-logo img { width: 100%; }

.project-band .lead { color: rgba(255,255,255,.8); }

.page-hero {
  background: var(--cream);
  padding: 72px 0 60px;
  border-bottom: 1px solid var(--line);
}

.page-hero .lead { max-width: 820px; }

.trustees {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.trustee {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
}

.trustee img {
  aspect-ratio: 4 / 4.7;
  width: 100%;
  object-fit: cover;
}

.trustee .copy { padding: 22px; }
.trustee .copy p { margin: 4px 0 0; color: var(--muted); }

.notice {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: #fbf6eb;
  color: #5c513f;
  margin-top: 28px;
}

.fridge-hero {
  background: #071c32;
  color: white;
}

.fridge-hero h1 { color: white; }
.fridge-hero .lead { color: rgba(255,255,255,.78); }

.fridge-hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.fridge-logo-panel {
  background: rgba(255,255,255,.96);
  border-radius: 25px;
  padding: 28px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.info-box strong {
  display: block;
  color: var(--green);
  font-size: 20px;
  margin-bottom: 7px;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.photo-strip img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 22px;
}

.donate {
  background: #f2e8d4;
  border-radius: 28px;
  padding: 42px;
}

footer {
  background: #0c261b;
  color: rgba(255,255,255,.75);
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.footer-brand {
  color: white;
  font-weight: 700;
  font-size: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a { text-decoration: none; }

.small { font-size: 14px; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid, .project-grid, .fridge-hero-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .trustees { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 14px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav {
    align-items: flex-start;
    padding: 15px 0;
    flex-direction: column;
  }
  .nav-links { flex-wrap: wrap; gap: 12px 18px; }
  .hero { padding: 58px 0 62px; }
  .section { padding: 62px 0; }
  .trustees, .info-grid, .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 330px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}


/* Accessibility and expanded site */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: #fff; color: #143e2b; padding: 12px 16px;
  border: 2px solid #143e2b; border-radius: 6px; font-weight: 700;
}
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible {
  outline: 3px solid #c99335; outline-offset: 4px;
}
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.text-link { color:var(--green); font-weight:700; text-underline-offset:4px; }
.partners .card { min-height:100%; }
.donation-band { background:var(--green); color:white; }
.donation-band h2 { color:white; }
.donation-band .lead { color:rgba(255,255,255,.84); }

.supporters-grid { display:grid; gap:32px; }
.supporter-card {
  display:grid; grid-template-columns:320px 1fr; align-items:center; gap:48px;
  border:1px solid var(--line); border-radius:24px; padding:36px; background:white;
}
.supporter-logo {
  min-height:190px; display:flex; align-items:center; justify-content:center;
  padding:28px; border-radius:18px; background:#fff;
}
.supporter-logo img { max-height:135px; width:auto; }
.supporter-card h2 { font-size:38px; margin-bottom:14px; }

.policy-width { max-width:860px; }
.policy-hero h1 { font-size:clamp(42px,5vw,66px); }
.policy-meta {
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px; background:var(--line); border:1px solid var(--line);
  border-radius:14px; overflow:hidden; margin-top:34px;
}
.policy-meta div { background:white; padding:14px 18px; }
.policy-meta dt { font-weight:700; color:var(--green); }
.policy-meta dd { margin:3px 0 0; }
.policy-content { font-size:18px; }
.policy-content h2 { font-size:32px; margin-top:48px; margin-bottom:16px; }
.policy-content h3 { font-size:25px; margin-top:34px; margin-bottom:12px; }
.policy-content h4 { font-size:21px; margin-top:28px; margin-bottom:10px; color:var(--green); }
.policy-content p, .policy-content li { max-width:78ch; }
.policy-content li { margin:.35em 0; }
.policy-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.policy-card h2 { font-size:30px; }
.policy-card p { color:var(--muted); }

@media (max-width: 900px) {
  .nav { align-items:flex-start; padding:16px 0; }
  .nav-links { flex-wrap:wrap; gap:10px 18px; justify-content:flex-end; }
  .supporter-card { grid-template-columns:1fr; gap:20px; }
  .grid-2, .policy-grid { grid-template-columns:1fr; }
}
@media (max-width: 650px) {
  .nav { display:block; }
  .brand img { width:155px; margin-bottom:14px; }
  .nav-links { justify-content:flex-start; font-size:15px; }
  .policy-meta { grid-template-columns:1fr; }
  .supporter-card { padding:22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; transition:none !important; }
}


/* 2026 visual refresh: clean, contemporary, digital-first */
:root {
  --green: #182230;
  --green-2: #101828;
  --gold: #7c3aed;
  --cream: #f7f7fb;
  --paper: #ffffff;
  --ink: #101828;
  --muted: #667085;
  --line: #e4e7ec;
  --shadow: 0 18px 50px rgba(16,24,40,.08);
  --accent: #7c3aed;
  --accent-soft: #f3f0ff;
}

body { background:#fff; color:var(--ink); }
.site-header { background:rgba(255,255,255,.95); border-color:#eaecf0; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color:#6941c6; border-color:#7c3aed; }
.button.primary { background:#101828; }
.button.primary:hover { background:#344054; }
.button.secondary { color:#101828; border-color:#d0d5dd; }
.hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(124,58,237,.10), transparent 29%),
    linear-gradient(135deg,#fafaff 0%,#ffffff 62%);
}
.eyebrow { color:#6941c6; }
h1,h2,h3 { color:#101828; }
.lead { color:#475467; }
.section.alt, .page-hero { background:#f8f9fc; }
.card, .info-box, .trustee, .supporter-card { border-color:#e4e7ec; }
.project-band, .donation-band { background:#101828; }
.project-band h2,.project-band h3,.donation-band h2 { color:white; }
.text-link { color:#6941c6; }
footer { background:#101828; }
.skip-link { color:#101828; border-color:#101828; }
a:focus-visible,button:focus-visible { outline-color:#7c3aed; }
.policy-meta dt { color:#344054; }
.policy-content h4 { color:#344054; }
.notice { border-left-color:#7c3aed; background:#f4f3ff; color:#42307d; }

/* Trustees are intentionally a vertical editorial list, not cards across the page */
.trustees {
  display:flex;
  flex-direction:column;
  gap:0;
  max-width:980px;
}
.trustee {
  display:grid;
  grid-template-columns:220px 1fr;
  gap:34px;
  align-items:center;
  border:0;
  border-bottom:1px solid #e4e7ec;
  border-radius:0;
  padding:30px 0;
}
.trustee:first-child { padding-top:0; }
.trustee img {
  width:220px;
  height:220px;
  aspect-ratio:1;
  object-fit:cover;
  border-radius:18px;
}
.trustee .copy { padding:0; }
.trustee .copy h3 { margin-bottom:5px; font-size:30px; }
.trustee .copy p { color:#667085; }

/* Privacy notice */
.privacy-contact {
  background:#f8f9fc;
  border:1px solid #e4e7ec;
  border-radius:16px;
  padding:22px 24px;
  margin:26px 0 36px;
}
.privacy-contact p { margin:.35em 0; }

@media (max-width:640px) {
  .trustee { grid-template-columns:100px 1fr; gap:20px; padding:22px 0; }
  .trustee img { width:100px; height:100px; border-radius:12px; }
  .trustee .copy h3 { font-size:24px; }
}
