@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --blue-dark:  #1a3a5c;
  --blue:       #2563a8;
  --blue-mid:   #3b7ec8;
  --blue-light: #e8f1fb;
  --blue-pale:  #f4f8fd;
  --white:      #ffffff;
  --text:       #1a2a3a;
  --muted:      #5a6e82;
  --line:       #d8e4f0;
  --max:        1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 14px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ANNOUNCE */
.announce {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 13px;
  padding: 9px 20px;
  letter-spacing: 0.03em;
}
.announce a { color: #93c5f5; text-decoration: underline; }

/* HEADER */
header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(26,58,92,0.07);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-wrap img { height: 48px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text .name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 600;
  color: var(--blue-dark); letter-spacing: 0.01em;
}
.logo-text .tagline {
  font-size: 11px; color: var(--blue);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
}
nav { display: flex; align-items: center; gap: 6px; }
nav a {
  font-size: 14.5px; font-weight: 500; color: var(--text);
  text-decoration: none; padding: 6px 12px; border-radius: 4px;
  transition: background 0.15s, color 0.15s; letter-spacing: 0.01em;
}
nav a:hover { background: var(--blue-light); color: var(--blue-dark); text-decoration: none; }
nav a.active { background: var(--blue-light); color: var(--blue-dark); font-weight: 600; }
.nav-apply {
  background: var(--blue) !important; color: var(--white) !important;
  padding: 8px 18px !important; border-radius: 4px !important;
  margin-left: 6px; font-weight: 600 !important;
}
.nav-apply:hover { background: var(--blue-dark) !important; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; gap: 5px; flex-direction: column;
}
.hamburger span { width: 22px; height: 2px; background: var(--text); display: block; border-radius: 2px; }
.mob-nav {
  display: none; flex-direction: column; background: var(--white);
  border-top: 1px solid var(--line); padding: 16px 32px 20px; gap: 4px;
}
.mob-nav a {
  font-size: 15px; font-weight: 500; color: var(--text); padding: 9px 0;
  border-bottom: 1px solid var(--line); display: block; text-decoration: none;
}
.mob-nav a:last-child { border-bottom: none; }
.mob-nav.open { display: flex; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--blue-dark);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(37,99,168,0.35) 0%, transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400; color: var(--white);
  margin: 0 0 14px; line-height: 1.2;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.68);
  font-weight: 300; max-width: 580px; margin: 0;
}

/* FULL HERO (home only) */
.hero {
  position: relative; min-height: 580px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('https://www.jamespgfoundation.org/library/images/pexels-baptiste-valthier-803246.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,35,60,0.25) 0%, rgba(15,35,60,0.55) 50%, rgba(15,35,60,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 60px 32px 64px; max-width: var(--max); margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; margin-bottom: 22px; font-weight: 500;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: #93c5f5; border-radius: 50%; flex-shrink: 0;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400; color: var(--white);
  margin: 0 0 18px; line-height: 1.15;
  max-width: 680px; letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: #93c5f5; }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.78);
  max-width: 520px; font-weight: 300;
  margin-bottom: 32px; line-height: 1.75;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-block; padding: 12px 24px;
  font-size: 15px; font-family: 'Source Sans 3', sans-serif;
  font-weight: 600; letter-spacing: 0.03em; text-decoration: none;
  border-radius: 4px; transition: all 0.18s; cursor: pointer; border: 2px solid transparent;
}
.btn-white { background: var(--white); color: var(--blue-dark); }
.btn-white:hover { background: var(--blue-light); text-decoration: none; }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); text-decoration: none; }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); text-decoration: none; }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); text-decoration: none; }

/* STATS BAR */
.stats-bar { background: var(--blue-dark); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 400;
  color: #93c5f5; line-height: 1; margin-bottom: 5px;
}
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* SECTIONS */
section { padding: 76px 0; }
.section-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px;
  background: var(--blue); display: inline-block;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400; color: var(--blue-dark);
  margin: 0 0 18px; line-height: 1.25; letter-spacing: -0.01em;
}
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px; font-weight: 400;
  color: var(--blue-dark); margin: 0 0 10px;
}

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }
.lead-text {
  font-size: 19px; color: var(--blue-dark); font-weight: 400;
  line-height: 1.7; margin-bottom: 20px;
  font-family: 'Playfair Display', serif; font-style: italic;
}
.body-text { font-size: 17px; color: var(--muted); font-weight: 300; line-height: 1.8; }
.about-panel {
  background: var(--blue-pale); border: 1px solid var(--line);
  border-top: 3px solid var(--blue); padding: 30px;
  position: sticky; top: 90px;
}
.about-panel h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue);
  margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.detail-row {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.detail-row:last-of-type { border-bottom: none; }
.detail-row .lbl { color: var(--muted); }
.detail-row .val { color: var(--blue-dark); font-weight: 600; text-align: right; }
.trustee-items { margin-top: 6px; display: flex; flex-direction: column; }
.trustee-row {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.trustee-row:last-child { border-bottom: none; }
.t-name { color: var(--blue-dark); font-weight: 500; }
.t-role { color: var(--muted); font-size: 12px; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-mid); flex-shrink: 0; }

/* EYE IN THE SKY */
.eits-bg { background: var(--blue-dark); }
.eits-bg h2 { color: var(--white); }
.eits-bg .section-label { color: #93c5f5; }
.eits-bg .section-label::before { background: #93c5f5; }
.eits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.eits-body { color: rgba(255,255,255,0.72); font-weight: 300; line-height: 1.8; font-size: 16px; }
.eits-list { list-style: none; padding: 0; margin: 24px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.eits-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; color: rgba(255,255,255,0.78); font-weight: 300;
}
.eits-list li::before { content: 'ok'; font-size: 0; width: 8px; height: 8px; border-radius: 50%; background: #93c5f5; flex-shrink: 0; margin-top: 8px; }
.eits-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(147,197,245,0.25);
  padding: 44px 36px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 300px; gap: 16px;
}
.eits-logo-text { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--white); letter-spacing: 0.04em; }
.eits-logo-text span { color: #93c5f5; }
.eits-sub { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.eits-pill {
  background: rgba(37,99,168,0.6); border: 1px solid rgba(147,197,245,0.4);
  color: #93c5f5; font-size: 12px; padding: 7px 18px;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}

/* INITIATIVES */
.init-bg { background: var(--blue-pale); }
.init-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.init-card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 3px solid var(--blue); padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.init-card:hover { box-shadow: 0 8px 30px rgba(26,58,92,0.1); transform: translateY(-3px); }
.init-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.init-card p { font-size: 15px; color: var(--muted); font-weight: 300; flex: 1; margin-bottom: 20px; }
.card-cta {
  font-size: 14px; font-weight: 600; color: var(--blue);
  text-decoration: none; display: flex; align-items: center;
  gap: 5px; letter-spacing: 0.03em; transition: gap 0.2s;
}
.card-cta::after { content: '>'; }
.card-cta:hover { gap: 8px; text-decoration: none; }

/* IMPACT */
.impact-bg { background: var(--white); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.impact-box { background: var(--blue-pale); border: 1px solid var(--line); padding: 30px 20px; text-align: center; }
.impact-num { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 400; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.impact-lbl { font-size: 13px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }

/* ROADMAP */
.roadmap-bg { background: var(--white); }
.roadmap-grid { display: flex; flex-direction: column; }
.roadmap-phase { display: grid; grid-template-columns: 48px 1fr; gap: 0 28px; padding-bottom: 48px; }
.phase-marker { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.phase-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--line); background: var(--white); flex-shrink: 0; z-index: 1; }
.phase-dot.active { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,168,0.12); }
.phase-dot.launch { border-color: var(--blue-dark); background: var(--blue-dark); width: 20px; height: 20px; margin-top: -2px; }
.phase-line { width: 2px; flex: 1; background: var(--line); margin-top: 6px; min-height: 40px; }
.phase-line.hidden { display: none; }
.phase-body { padding-bottom: 8px; }
.phase-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); background: var(--blue-pale);
  border: 1px solid var(--line); padding: 3px 10px; border-radius: 3px; margin-bottom: 10px;
}
.phase-tag.active-tag { color: var(--blue); background: rgba(37,99,168,0.08); border-color: rgba(37,99,168,0.25); }
.phase-tag.launch-tag { color: var(--white); background: var(--blue-dark); border-color: var(--blue-dark); }
.phase-body h3 { margin-bottom: 10px; font-size: 20px; }
.phase-body p { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.75; margin-bottom: 14px; }
.phase-items { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.phase-items span { font-size: 12px; font-weight: 500; color: var(--blue-dark); background: var(--blue-pale); border: 1px solid var(--line); padding: 4px 12px; border-radius: 3px; }
.roadmap-note { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 32px; }
.roadmap-note-inner {
  background: var(--blue-pale); border: 1px solid var(--line);
  border-left: 3px solid var(--blue); padding: 24px 28px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.roadmap-note-inner p { flex: 1; font-size: 15px; color: var(--muted); font-weight: 300; margin: 0; min-width: 260px; }

/* GET INVOLVED */
.inv-bg { background: var(--blue-pale); }
.inv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.inv-card {
  background: var(--white); border: 1px solid var(--line);
  padding: 34px 28px; display: flex; flex-direction: column;
  gap: 12px; transition: border-color 0.2s;
}
.inv-card:hover { border-color: var(--blue-mid); }
.inv-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 400; color: var(--line); line-height: 1; }
.inv-card h3 { margin: 0; }
.inv-card p { font-size: 15px; color: var(--muted); font-weight: 300; flex: 1; margin: 0; }

/* APPLY */
.apply-bg { background: var(--blue-dark); }
.apply-bg h2 { color: var(--white); }
.apply-bg .section-label { color: #93c5f5; }
.apply-bg .section-label::before { background: #93c5f5; }
.apply-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 36px; }
.apply-body { color: rgba(255,255,255,0.68); font-size: 16px; font-weight: 300; line-height: 1.8; }
.criteria-list { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; }
.criteria-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px; color: rgba(255,255,255,0.68); font-weight: 300;
  display: flex; gap: 10px; align-items: flex-start;
}
.criteria-list li::before { content: '>'; color: #93c5f5; flex-shrink: 0; }
.status-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.form-box { background: var(--white); padding: 36px; border-radius: 2px; }
.form-box h3 { font-size: 20px; margin-bottom: 22px; color: var(--blue-dark); }
.form-group { margin-bottom: 16px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; border: 1.5px solid var(--line);
  background: var(--white); color: var(--text);
  padding: 11px 14px; font-family: 'Source Sans 3', sans-serif;
  font-size: 15px; outline: none; border-radius: 3px;
  transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); }
input::placeholder, textarea::placeholder { color: #a0aec0; }
textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* TRUSTEES */
.trustees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.trustee-card { background: var(--blue-pale); border: 1px solid var(--line); padding: 26px 24px; }
.tc-name { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 400; color: var(--blue-dark); margin-bottom: 3px; }
.tc-role { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.tc-bio { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* CONTACT */
.contact-bg { background: var(--blue-pale); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.c-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon { width: 44px; height: 44px; background: var(--blue-dark); color: #93c5f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; font-weight: 700; border-radius: 4px; }
.c-text strong { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 2px; }
.c-text span, .c-text a { font-size: 16px; color: var(--muted); }
.c-text a:hover { color: var(--blue); }
.contact-form { background: var(--white); border: 1px solid var(--line); padding: 36px; }

/* FOOTER */
footer { background: var(--blue-dark); color: rgba(255,255,255,0.55); padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.7; margin: 14px 0 0; max-width: 280px; }
.footer-brand .name { color: rgba(255,255,255,0.9); font-size: 18px; font-family: 'Playfair Display', serif; }
.footer-brand .tagline { color: #93c5f5; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.f-col h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #93c5f5; margin: 0 0 14px; }
.f-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.f-col a { color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.f-col a:hover { color: rgba(255,255,255,0.9); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; }
.reg-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); padding: 5px 14px; font-size: 12px; color: rgba(255,255,255,0.5); border-radius: 3px; letter-spacing: 0.06em; display: inline-block; margin-top: 16px; }

/* FADE */
.fade { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade.in { opacity: 1; transform: translateY(0); }

/* HOME PREVIEW CARDS */
.home-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.home-card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 3px solid var(--blue); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.home-card:hover { box-shadow: 0 8px 28px rgba(26,58,92,0.1); transform: translateY(-2px); }
.home-card-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); }
.home-card h3 { font-size: 19px; margin: 0; }
.home-card p { font-size: 15px; color: var(--muted); font-weight: 300; flex: 1; margin: 0; }

/* RESPONSIVE */
@media (max-width: 920px) {
  .about-grid, .eits-grid, .apply-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-panel { position: static; }
  .init-grid, .trustees-grid, .home-cards { grid-template-columns: 1fr 1fr; }
  .inv-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .hero-content { padding: 48px 18px 52px; }
  .init-grid, .trustees-grid, .home-cards { grid-template-columns: 1fr; }
  .inv-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-phase { grid-template-columns: 28px 1fr; gap: 0 14px; }
  .roadmap-note-inner { flex-direction: column; }
}
