:root{
  --bg:#F7F4EF;
  --green:#2F3A2E;
  --text:#3A3A3A;
  --muted:#6B6B6B;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

html{scroll-behavior:smooth}

body{
  background:var(--bg);
  color:var(--text);
  font-family:"Lato",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.6;
}

.hidden{display:none!important}

.page{
  max-width:1100px;
  margin:0 auto;
  padding:64px 24px 80px;
}

.section{padding:56px 0}
.section-hero{text-align:center;padding-top:24px}

/* LOGO */
.logo{
  height:140px;
  width:auto;
  margin:0 auto 22px;
  display:block;
  background:transparent;
  mix-blend-mode:multiply;
}

/* HERO */
.hero-heading{
  font-family:"Libre Baskerville",serif;
  color:var(--green);
  font-size:44px;
  line-height:1.25;
  margin:0 0 18px;
}

.hero-body{
  max-width:720px;
  margin:0 auto 14px;
  font-size:17px;
}

.status-line{
  color:var(--muted);
  font-size:13px;
  margin:10px 0 22px;
}

/* BUTTON */
.btn-primary{
  background:var(--green);
  color:#fff;
  border:none;
  padding:14px 30px;
  border-radius:999px;
  font-size:16px;
  cursor:pointer;
  text-decoration:none;
}

.btn-primary:hover{opacity:.92}

/* LAYOUT */
.two-column{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:center;
}

h2{
  font-family:"Libre Baskerville",serif;
  color:var(--green);
  font-size:30px;
  margin:0 0 14px;
}

.section-why .emphasis{margin-top:18px}

/* IMAGE */
.photo-frame{
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.family-photo{
  width:100%;
  height:auto;
  display:block;
}

/* DIVIDER */
.section-divider{
  display:flex;
  justify-content:center;
  padding:10px 0;
}

.divider-line{
  width:100%;
  max-width:900px;
  height:2px;
  background:var(--green);
  opacity:.12;
  border-radius:2px;
}

/* FEATURES */
.subtext{margin:0 0 14px}
.highlight{font-weight:700}

.feature-list{
  margin:0 0 18px;
  padding-left:18px;
}

.archive-statement{
  font-family:"Libre Baskerville",serif;
  color:var(--green);
  font-size:19px;
  line-height:1.5;
  margin:22px 0 0;
}

/* MAP */
.map-wrapper{opacity:.35}
.africa-map{
  width:100%;
  height:auto;
  display:block;
  filter:contrast(1.05) saturate(1.05);
}

/* CTA */
.section-cta{text-align:center}

.cta-subtext{
  max-width:720px;
  margin:0 auto 18px;
  font-size:15px;
}

.waitlist-form{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin:10px 0 10px;
}

.waitlist-form input{
  min-width:280px;
  padding:14px 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  font-size:14px;
}

.reassurance{
  color:var(--muted);
  font-size:12.5px;
  margin:10px 0 0;
}

.privacy-link{color:var(--muted);text-decoration:underline}

/* FOOTER */
.site-footer{
  text-align:center;
  padding:32px 0 0;
  font-size:12px;
  color:var(--muted);
}

/* MOBILE */
@media (max-width:860px){
  .two-column{grid-template-columns:1fr}
  .hero-heading{font-size:36px}
  .logo{height:120px}
}
/* SOCIAL PROOF */
.section-proof{
  padding-top:24px;
}

.center{
  text-align:center;
}

.proof-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:20px;
}

.quote-card{
  background:rgba(255,255,255,.45);
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  padding:16px 16px 14px;
}

.quote{
  margin:0;
  font-family:"Libre Baskerville",serif;
  color:var(--green);
  font-size:15px;
  line-height:1.55;
}

.quote-meta{
  margin:10px 0 0;
  color:var(--muted);
  font-size:12.5px;
}

@media (max-width:860px){
  .proof-grid{
    grid-template-columns:1fr;
  }
}
/* ===== Paper texture (image overlay) ===== */
body{ position: relative; }

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(1200px 800px at 50% 20%,
      rgba(0,0,0,0.05),
      rgba(0,0,0,0.00) 60%),
    url("images/paper-texture.svg");

  background-repeat: no-repeat, repeat;
  background-size: cover, 900px auto; /* texture tile size */
  background-position: center, top left;

  opacity: 0.45;          /* adjust 0.12–0.30 */
  mix-blend-mode: multiply;
}

.page{ position: relative; z-index: 1; }
