:root {
  --forest: #1E5A3C;
  --forest-light: #2d7a55;
  --gold: #C9A84C;
  --cream: #FAF7F2;
  --warm-white: #FDFBF8;
  --charcoal: #2C2C2C;
  --mid: #666;
  --light: #999;
  --border: #E8E0D4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 251, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-links {
  display: flex; gap: 40px; list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--forest); }

.nav-donate {
  background: var(--forest);
  color: white !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
}

.nav-donate:hover { background: var(--forest-light) !important; color: white !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
}

.hero-left {
  background: var(--forest);
  display: flex;
  align-items: center;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-text { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin-bottom: 48px;
  line-height: 1.8;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-primary:hover { background: #d4b560; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: white;
  padding: 13px 32px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}

.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-right {
  background: var(--cream);
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #c8ddd2 0%, #a8c4b4 40%, #7ba893 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 48px;
  position: relative;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e5a3c' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-caption-card {
  background: white;
  padding: 28px 32px;
  max-width: 360px;
  position: relative;
  z-index: 1;
  border-left: 3px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.hero-caption-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.3;
}

.hero-caption-text {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--charcoal);
  padding: 48px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.stat-item {
  padding: 8px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  animation: countUp 0.6s ease-out;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}

/* ── STORY SECTION ── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.story-image {
  background: linear-gradient(160deg, #5a8a70 0%, #3a6b52 50%, #1e5a3c 100%);
  position: relative;
  overflow: hidden;
}

.story-image-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start; padding: 48px;
}

.story-image-badge {
  background: var(--gold);
  color: var(--charcoal);
  padding: 12px 20px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-image-leaf {
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 100% 0 0 0;
}

.story-content {
  padding: 80px 72px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 28px;
}

.section-body {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: white;
}

.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.5;
}

.story-cta {
  align-self: flex-start;
  margin-top: 8px;
}

/* ── IMPACT SECTION ── */
.impact {
  padding: 96px 80px;
  background: white;
}

.impact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.impact-card {
  background: white;
  padding: 48px 40px;
  transition: transform 0.2s;
}

.impact-card:hover { transform: translateY(-4px); }

.impact-icon {
  width: 48px; height: 48px;
  background: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.impact-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

.impact-card-body {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
}

/* ── APPROACH SECTION ── */
.approach {
  background: var(--forest);
  padding: 96px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-content .section-title { color: white; }
.approach-content .section-eyebrow { color: var(--gold); }
.approach-content .section-body { color: rgba(255,255,255,0.75); }

.approach-assets {
  display: flex; flex-direction: column; gap: 16px;
}

.asset-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid transparent;
  transition: all 0.2s;
  cursor: default;
}

.asset-row:hover {
  background: rgba(255,255,255,0.1);
  border-left-color: var(--gold);
}

.asset-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 32px;
}

.asset-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.asset-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ── ABOUT PREVIEW ── */
.about-preview {
  padding: 88px 80px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-preview-copy {
  max-width: 700px;
}

.about-preview-copy .section-title {
  margin-bottom: 18px;
}

.about-preview-copy .section-body {
  margin-bottom: 0;
}

.about-preview-action {
  display: flex;
  justify-content: flex-end;
}

/* ── DONATE SECTION ── */
.donate {
  padding: 96px 80px;
  background: var(--cream);
  text-align: center;
}

.donate .section-title { margin-bottom: 16px; }
.donate .section-body { max-width: 560px; margin: 0 auto 56px; }

.giving-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.giving-card {
  background: white;
  border: 2px solid var(--border);
  padding: 32px 24px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.giving-card:hover, .giving-card.active {
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,90,60,0.12);
}

.giving-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--forest);
  display: block;
  margin-bottom: 8px;
}

.giving-desc {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.5;
}

.donate-button {
  font-size: 0.9rem;
  padding: 16px 48px;
}

.donate-note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--light);
}

/* ── ABOUT PAGE ── */
.about-page {
  background: var(--warm-white);
}

.about-hero {
  padding: 148px 80px 88px;
  background:
    radial-gradient(circle at top right, rgba(201,168,76,0.14), transparent 28%),
    linear-gradient(160deg, #194830 0%, #1E5A3C 62%, #214f39 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0, transparent 48%, rgba(255,255,255,0.025) 48%, rgba(255,255,255,0.025) 50%, transparent 50%, transparent 100%);
  background-size: 72px 72px;
  pointer-events: none;
}

.about-hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.about-hero-eyebrow {
  margin-bottom: 20px;
}

.about-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.75rem);
  font-weight: 300;
  color: white;
  line-height: 1.06;
  max-width: 760px;
}

.about-hero-title em {
  color: var(--gold);
  font-style: italic;
}

.about-hero-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0 24px;
}

.about-hero-body {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
}

.about-content {
  padding: 0 80px 96px;
}

.about-container {
  max-width: 1160px;
  margin: -44px auto 0;
  position: relative;
  z-index: 2;
}

.about-section,
.about-cta {
  background: white;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  padding: 56px;
  box-shadow: 0 18px 54px rgba(28, 41, 35, 0.06);
}

.about-section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.about-grid {
  display: grid;
  gap: 18px;
}

.about-grid-four {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
}

.about-grid-three {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
}

.about-grid-two {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
}

.about-card,
.about-person-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 32px;
}

.about-card-kicker,
.about-site-label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 12px;
}

.about-card-body,
.about-person-body,
.about-detail-line {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--mid);
}

.about-person-body + .about-person-body {
  margin-top: 14px;
}

.about-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.about-person-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.about-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-avatar-small {
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.about-person-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.1;
}

.about-person-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  margin: 8px 0 12px;
}

.about-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: white;
  color: var(--mid);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-tag-forest {
  background: rgba(30,90,60,0.08);
  color: var(--forest);
  border-color: rgba(30,90,60,0.18);
}

.about-tag-gold {
  background: rgba(201,168,76,0.12);
  color: #8e6b1d;
  border-color: rgba(201,168,76,0.24);
}

.about-detail-block {
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.about-detail-line strong,
.about-pill strong {
  color: var(--forest);
  font-weight: 500;
}

.about-founders-quote {
  margin: 24px 0;
}

.about-guidance {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
}

.about-guidance-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
}

.about-guidance-list p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.5;
}

.about-section-note {
  margin-top: 20px;
}

.about-person-summary-wide {
  grid-column: 1 / -1;
}

.about-commitment {
  margin-top: 32px;
  padding: 32px 36px;
  background: var(--forest);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
}

.about-commitment-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}

.about-commitment-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-commitment-body {
  font-size: 0.94rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.about-pill {
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--mid);
  padding: 10px 16px;
  font-size: 0.86rem;
}

.about-site-card {
  min-height: 100%;
}

.about-cta {
  background: linear-gradient(160deg, var(--cream) 0%, #fff 100%);
}

.about-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-ghost {
  color: var(--forest);
  border-color: rgba(30,90,60,0.2);
}

.about-ghost:hover {
  border-color: var(--forest);
  background: rgba(30,90,60,0.06);
}

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  padding: 64px 80px 32px;
  color: rgba(255,255,255,0.6);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
}

.footer-brand-text {
  font-size: 0.87rem;
  line-height: 1.8;
  max-width: 340px;
}

.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link-disabled {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.35);
  cursor: default;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}

.footer-cert {
  display: flex; align-items: center; gap: 8px;
}

.cert-badge {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.7s ease-out forwards;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-body { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero, .story, .approach, .about-preview { grid-template-columns: 1fr; }
  .hero-right, .story-image { min-height: 300px; }
  .stats-bar, .giving-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: 1fr; }
  nav { padding: 0 24px; }
  .story-content, .impact, .donate, .approach, .about-hero, .about-content, .about-preview { padding: 64px 32px; }
  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hero-left { padding: 64px 32px; }
  .nav-links { display: none; }
  .about-preview-action { justify-content: flex-start; }
  .about-container { margin-top: -24px; }
  .about-section, .about-cta { padding: 36px 24px; }
  .about-grid-four, .about-grid-three, .about-grid-two, .about-founders, .about-commitment {
    grid-template-columns: 1fr;
  }
  .about-commitment { gap: 18px; }
}
