:root {
  --green-deep: #16493b;
  --green-darker: #0f332a;
  --clay: #b85c2e;
  --gold: #e0a23b;
  --sand: #f5f6f0;
  --sand-warm: #efebe0;
  --ink: #22261f;
  --ink-soft: #4a5048;
}

* {
  box-sizing: border-box;
}
::selection {
  background: var(--gold);
  color: var(--green-darker);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.serif,
.logo,
.footer-logo {
  font-family: "Source Serif 4", serif;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a,
button {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

a:hover,
button:hover {
  transform: translateY(-1px);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(184, 92, 46, 0.35);
  outline-offset: 4px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--green-darker);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 240, 0.88);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  border-bottom: 1px solid rgba(22, 73, 59, 0.08);
}

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

.logo {
  display: inline-block;
  width: 220px;
  height: 58px;
  background: url("assets/shed-logo.png") left center / contain no-repeat;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(22, 73, 59, 0.12);
  border-radius: 10px;
  background: #fff;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 2px 8px rgba(22, 73, 59, 0.06);
}

.nav-toggle:hover {
  border-color: rgba(22, 73, 59, 0.22);
  box-shadow: 0 4px 12px rgba(22, 73, 59, 0.1);
}

.nav-toggle:active {
  background: var(--sand);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--green-deep);
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms ease;
  transform-origin: center;
}

.site-nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--green-deep);
}

.site-nav a[aria-current="page"] {
  color: var(--green-deep);
  font-weight: 700;
  position: relative;
  background: rgba(224, 162, 59, 0.14);
  padding: 6px 10px;
  border-radius: 999px;
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -2px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 999px;
}

.btn-donate {
  background: var(--gold);
  color: var(--green-darker);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  letter-spacing: 0.3px;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 14px rgba(224, 162, 59, 0.28);
}
.btn-donate:hover {
  background: #e8b44a;
  border-color: #e8b44a;
  box-shadow: 0 6px 20px rgba(224, 162, 59, 0.36);
}

.site-nav ul li.mobile-donate {
  display: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 51, 42, 0.12) 0%, rgba(15, 51, 42, 0.32) 52%, rgba(15, 51, 42, 0.88) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 20%, rgba(224, 162, 59, 0.08) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  width: 100%;
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-content .eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.9;
  border-radius: 999px;
}

.hero .eyebrow {
  color: #fff;
  background: rgba(15, 51, 42, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.22);
  font-size: 11px;
  letter-spacing: 2px;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow,
.kicker {
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
  font-size: 58px;
  line-height: 1.02;
  font-weight: 700;
  max-width: 820px;
  margin: 0 0 22px;
  letter-spacing: -1.4px;
  text-wrap: balance;
  font-optical-sizing: auto;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 0 34px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-darker);
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.3px;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 14px rgba(224, 162, 59, 0.28);
}
.btn-primary:hover {
  background: #e8b44a;
  border-color: #e8b44a;
  box-shadow: 0 6px 20px rgba(224, 162, 59, 0.36);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  letter-spacing: 0.2px;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.waveline {
  height: 64px;
  position: relative;
  background: var(--sand);
}

.waveline svg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 65px;
}

.section-pad {
  padding: 20px 0 70px;
}

.mission-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.mission-head.no-gap {
  margin-bottom: 0;
}

.mission-head h2,
.impact-top h2,
.story-quote,
.donate-band h2 {
  font-family: "Source Serif 4", serif;
}

.mission-head h2 {
  font-size: 36px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--green-darker);
  margin: 0;
  letter-spacing: -0.8px;
  text-wrap: balance;
}

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

.pillar {
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid rgba(22, 73, 59, 0.07);
  box-shadow: 0 12px 32px rgba(22, 73, 59, 0.06);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 220ms ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(22, 73, 59, 0.11);
  border-color: rgba(22, 73, 59, 0.1);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sand-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-deep);
  font-size: 20px;
}

.pillar h3 {
  font-size: 20px;
  color: var(--green-darker);
  margin: 0 0 10px;
  font-weight: 600;
}

.pillar p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

.pillar a {
  color: var(--clay);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

.impact {
  background: var(--green-deep);
  position: relative;
  padding: 74px 0;
  overflow: hidden;
}

.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 22px 22px;
}

.impact .wrap {
  position: relative;
}

.impact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 46px;
  flex-wrap: wrap;
  gap: 20px;
}

.impact-top h2 {
  color: #fff;
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  max-width: 480px;
}

.impact-top p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  max-width: 340px;
  margin: 0;
}

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

.stat {
  border-left: 2px solid rgba(224, 162, 59, 0.5);
  padding-left: 18px;
}

.stat .num {
  font-family: "Source Serif 4", serif;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.stat .num span {
  color: var(--gold);
}

.stat .label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  margin-top: 8px;
  line-height: 1.4;
}

.story {
  padding: 88px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.story-grid img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  height: 480px;
}

.story-quote {
  font-size: 26px;
  line-height: 1.45;
  color: var(--green-darker);
  margin: 0 0 22px;
}

.story-attr {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}

.story-attr span {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  opacity: 0.75;
  font-size: 13px;
  margin-top: 2px;
}

.programs {
  padding: 20px 0 90px;
}

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

.program-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
  width: 100%;
  box-shadow: 0 12px 32px rgba(22, 73, 59, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}
.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(22, 73, 59, 0.16);
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover img {
  transform: scale(1.05);
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 51, 42, 0) 35%, rgba(15, 51, 42, 0.88) 100%);
}

.program-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  z-index: 2;
}

.program-label .tag {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.program-label h3 {
  color: #fff;
  font-size: 22px;
  margin: 8px 0 0;
  font-weight: 600;
}

.partners {
  padding: 60px 0;
  border-top: 1px solid rgba(22, 73, 59, 0.1);
  border-bottom: 1px solid rgba(22, 73, 59, 0.1);
}

.partners .kicker {
  text-align: center;
  margin-bottom: 26px;
}

.partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: 0.75;
}

.partner-row div {
  font-family: "Source Serif 4", serif;
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 500;
}

.donate-band {
  background: var(--clay);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donate-band h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.donate-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin: 0 0 30px;
}

.donate-band .btn-primary {
  background: #fff;
  color: var(--clay);
}

.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 51, 42, 0.18) 0%, rgba(15, 51, 42, 0.78) 100%);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 72px;
}

.page-hero h1 {
  font-size: 46px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.page-hero .eyebrow {
  color: var(--gold);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.page-hero .page-lead {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.32);
}

.page-lead {
  max-width: 680px;
}

.page-section {
  padding: 72px 0;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.info-card,
.donate-box,
.form-shell,
.quote-panel,
.board-panel {
  background: #fff;
  border: 1px solid rgba(22, 73, 59, 0.08);
  border-radius: 8px;
  padding: 30px;
}

.info-card h3,
.donate-box h3,
.quote-panel h3,
.board-panel h3 {
  margin: 0 0 12px;
  color: var(--green-darker);
}

.info-card p,
.donate-box p,
.quote-panel p,
.board-panel p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.detail-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.detail-list li,
.check-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(22, 73, 59, 0.1);
  color: var(--ink-soft);
}

.check-list li {
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--clay);
}

.section-title {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0 0 12px;
  color: var(--green-darker);
  font-size: 34px;
  line-height: 1.2;
}

.section-title p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.page-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(22, 73, 59, 0.08);
  padding: 28px;
}

.contact-card strong {
  display: block;
  color: var(--green-darker);
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-card-with-photo {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-card-with-photo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--green-soft, #e7eae0);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 73, 59, 0.14);
  border-radius: 6px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.board-list {
  display: grid;
  gap: 14px;
}

.board-list article {
  padding: 18px 0;
  border-top: 1px solid rgba(22, 73, 59, 0.1);
}

.board-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.board-list strong {
  display: block;
  color: var(--green-darker);
  margin-bottom: 5px;
}

.board-member {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(22, 73, 59, 0.1);
}

.board-member:first-child {
  border-top: 0;
  padding-top: 0;
}

.board-member img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--green-soft, #e7eae0);
}

.board-member .member-info strong {
  display: block;
  color: var(--green-darker);
  margin-bottom: 4px;
}

.board-member .member-info span {
  color: var(--ink-soft);
  font-size: 0.95em;
}

/* Featured board � clean square cards, no panel */
.board-list--featured {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  justify-content: center;
  gap: 22px;
}

.board-list--featured .board-member {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(22, 73, 59, 0.08);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  border-top: 1px solid rgba(22, 73, 59, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
  max-width: 320px;
  width: 100%;
}

.board-list--featured .board-member:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(22, 73, 59, 0.12);
}

.board-list--featured .board-member:first-child {
  padding-top: 0;
}

.board-list--featured .board-member img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center 22%;
  background: var(--sand-warm);
}

.board-list--featured .member-info {
  padding: 14px 16px 16px;
}

.board-list--featured .member-info strong {
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.board-list--featured .member-info span {
  font-size: 13.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
}

footer {
  background: var(--green-darker);
  padding: 88px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 14px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.footer-logo {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

footer p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  line-height: 1.75;
  letter-spacing: 0.1px;
}

footer h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 18px;
  opacity: 0.92;
  font-weight: 700;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin-bottom: 10px;
}

footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.15px;
  text-underline-offset: 3px;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13.5px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1150px) {
  .wrap {
    padding: 0 20px;
  }

  .nav-inner {
    position: relative;
    min-height: 68px;
  }

  .logo {
    width: 180px;
    height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .site-nav ul {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(22, 73, 59, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(17, 30, 26, 0.18), 0 4px 16px rgba(17, 30, 26, 0.08);
    overflow: hidden;
    animation: menuIn 200ms ease;
  }

  @keyframes menuIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }

  .site-nav.is-open ul {
    display: flex;
  }

  .site-nav ul li a {
    display: block;
    padding: 13px 14px;
    font-size: 15px;
    border-radius: 10px;
    transition: background 150ms ease, color 150ms ease;
  }

  .site-nav ul li a:hover {
    background: var(--sand);
    color: var(--green-deep);
  }

  .site-nav ul li a[aria-current="page"] {
    background: rgba(224, 162, 59, 0.14);
    color: var(--green-deep);
  }

  .site-nav ul li a[aria-current="page"]::after {
    display: none;
  }

  .btn-donate {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    padding: 9px 16px;
    font-size: 13px;
    white-space: nowrap;
    order: 2;
  }

  .nav-toggle {
    margin-left: 10px;
    order: 3;
  }

  .site-nav ul li.mobile-donate {
    display: block;
    border-top: 1px solid rgba(22, 73, 59, 0.08);
    margin-top: 6px;
    padding-top: 6px;
  }

  .site-nav ul li.mobile-donate a {
    display: block;
    padding: 14px;
    margin: 0;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    color: var(--green-darker);
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(224, 162, 59, 0.3);
  }

  .site-nav ul li.mobile-donate a:hover {
    background: #e8b44a;
    color: var(--green-darker);
  }

  /* Hero */
  .hero {
    min-height: 72vh;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
  }

  .eyebrow, .kicker {
    font-size: 11.5px;
    letter-spacing: 1.6px;
  }

  /* Sections */
  .section-pad {
    padding: 12px 0 48px;
  }

  .mission-head h2 {
    font-size: 26px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .pillars,
  .stats,
  .programs-grid,
  .footer-grid,
  .story-grid,
  .panel-grid,
  .three-col,
  .page-image-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding-left: 16px;
  }

  .stat .num {
    font-size: 36px;
  }

  .story {
    padding: 48px 0;
  }

  .story-grid {
    gap: 28px;
  }

  .story-grid img {
    height: 280px;
  }

  .story-quote {
    font-size: 21px;
  }

  .programs {
    padding: 12px 0 56px;
  }

  .programs-grid {
    gap: 18px;
    margin-top: 28px;
  }

  .program-card {
    height: 300px;
  }

  .page-hero {
    min-height: 42vh;
  }

  .page-hero h1 {
    font-size: 28px;
    line-height: 1.15;
  }

.page-hero .hero-content {
    padding-top: 90px;
    padding-bottom: 48px;
  }

  .page-section {
    padding: 48px 0;
  }

  .info-card, .board-panel, .contact-card, .form-shell {
    padding: 22px 20px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-logo-img {
    height: 42px;
  }

  .partner-row {
    gap: 18px 20px;
  }

  .board-list--featured {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .board-list--featured .board-member {
    max-width: 360px;
    width: 100%;
  }

  .board-list--featured .board-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .logo {
    width: 150px;
    height: 42px;
  }

  .btn-donate {
    padding: 8px 13px;
    font-size: 12.5px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero p, .page-lead {
    font-size: 15px;
  }

  .btn-primary, .btn-secondary {
    padding: 13px 20px;
    font-size: 14px;
  }

  .mission-head h2, .section-title h2, .impact-top h2 {
    font-size: 22px;
  }

  .stat .num {
    font-size: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
/* ---- Video & map embeds ---- */
.video-embed,
.map-embed {
  position: relative;
  width: 100%;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(22, 73, 59, 0.1);
  background: #0f332a;
}

.video-embed {
  aspect-ratio: 16 / 9;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.map-embed {
  aspect-ratio: 4 / 3;
  max-height: 380px;
}

.video-embed iframe,
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
