/* REACH 316 — handcrafted & warm */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,900&family=Nunito+Sans:wght@400;600;700;800&family=Caveat:wght@600&display=swap');

:root {
  --teal: #00826a;          /* the bag */
  --teal-deep: #06554a;
  --teal-dark: #043d35;
  --teal-soft: #e2f1ec;
  --cream: #faf5ec;         /* paper */
  --cream-deep: #f3ead9;
  --sand: #eadfc9;
  --ink: #35322b;
  --grey: #6d675c;
  --line: #e4dcca;
  --ribbon: #a4489d;        /* the purple ribbon */
  --sun: #e8a13d;           /* warm gold */
  --radius: 22px;
  --shadow: 0 10px 30px rgba(6, 85, 74, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
}
h1, h2, h3, .serif { font-family: "Fraunces", Georgia, serif; }
.hand { font-family: "Caveat", cursive; }
img { max-width: 100%; display: block; }
a { color: var(--teal-deep); }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,245,236,.94); backdrop-filter: blur(8px);
  border-bottom: 1px dashed var(--sand);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 56px; height: 56px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 3px 10px rgba(0,0,0,.12); }
.brand-name { font-family: "Fraunces", serif; font-weight: 900; font-size: 1.25rem; color: var(--teal-deep); }
.brand-tag { display: block; font-family: "Caveat", cursive; font-size: .95rem; font-weight: 600; color: var(--teal); letter-spacing: .5px; }

.nav-toggle { display: none; background: none; border: 0; font-size: 1.8rem; color: var(--teal-deep); cursor: pointer; }
.site-nav ul { display: flex; gap: 24px; list-style: none; align-items: center; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 700; font-size: .93rem; padding: 6px 2px; border-bottom: 2px dashed transparent; }
.site-nav a:hover { color: var(--teal); }
.site-nav a.active { color: var(--teal-deep); border-bottom-color: var(--sun); }
.site-nav a.btn-donate { background: var(--teal); color: #fff; padding: 11px 22px; border-radius: 999px; border-bottom: none; box-shadow: 0 4px 14px rgba(0,130,106,.35); }
.site-nav a.btn-donate:hover { background: var(--teal-deep); color: #fff; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; text-decoration: none; font-weight: 800; border-radius: 999px; padding: 14px 30px; font-size: 1rem; transition: .18s; font-family: "Nunito Sans", sans-serif; }
.btn-green { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(0,130,106,.35); }
.btn-green:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-white { background: var(--cream); color: var(--teal-deep); }
.btn-white:hover { background: #fff; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--teal); color: var(--teal-deep); }
.btn-outline:hover { background: var(--teal-soft); }
.btn-outline-light { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.14); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { background: var(--cream); padding: 64px 0 40px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.12; font-weight: 900; color: var(--teal-dark); }
.hero h1 em { font-style: normal; color: var(--teal); position: relative; }
.hero h1 .underline { background: linear-gradient(transparent 62%, rgba(232,161,61,.55) 62%); }
.hero p.lead { margin: 22px 0 30px; font-size: 1.13rem; color: var(--grey); max-width: 32em; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.badge { background: #fff; border: 1.5px dashed var(--teal); color: var(--teal-deep); padding: 6px 16px; border-radius: 999px; font-size: .82rem; font-weight: 800; }

/* photo cluster */
.photo-cluster { position: relative; min-height: 480px; }
.snap { position: absolute; background: #fff; padding: 10px 10px 34px; border-radius: 6px; box-shadow: 0 12px 30px rgba(53,50,43,.18); transition: transform .25s; }
.snap img { border-radius: 3px; object-fit: cover; }
.snap .cap { font-family: "Caveat", cursive; font-size: 1.05rem; color: var(--grey); text-align: center; margin-top: 7px; line-height: 1; }
.snap:hover { transform: scale(1.04) rotate(0deg) !important; z-index: 5; }
.snap-1 { width: 58%; top: 0; left: 0; transform: rotate(-3.5deg); z-index: 2; }
.snap-2 { width: 46%; top: 90px; right: 0; transform: rotate(2.8deg); z-index: 3; }
.snap-3 { width: 44%; bottom: 0; left: 8%; transform: rotate(1.5deg); z-index: 1; }
.snap-1 img { height: 210px; width: 100%; }
.snap-2 img { height: 230px; width: 100%; }
.snap-3 img { height: 180px; width: 100%; }

/* wavy divider */
.wave { display: block; width: 100%; height: 60px; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-white { background: #fffdf8; }
.section-teal { background: var(--teal-deep); color: #fff; }
.section-sand { background: var(--cream-deep); }
.eyebrow { font-family: "Caveat", cursive; color: var(--teal); font-weight: 600; font-size: 1.5rem; display: block; }
h2.section-title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--teal-dark); margin: 4px 0 16px; font-weight: 900; line-height: 1.2; }
.section-teal h2.section-title { color: #fff; }
.section-intro { color: var(--grey); max-width: 46em; font-size: 1.04rem; }
.section-teal .section-intro { color: #cfe8e0; }

/* ---------- Stats ---------- */
.stats-band { background: var(--teal-deep); color: #fff; padding: 58px 0; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: "Fraunces", serif; font-size: 2.1rem; font-weight: 900; color: #ffd9a0; }
.stat-label { font-size: .84rem; color: #bfe0d7; line-height: 1.45; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 42px; }
.card {
  background: #fffdf8; border: 1.5px dashed var(--sand); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow); transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }
.card .icon {
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  background: var(--teal-soft); border-radius: 50% 45% 55% 50% / 55% 50% 50% 45%;
  font-size: 1.7rem; margin-bottom: 16px;
}
.card h3 { color: var(--teal-deep); font-size: 1.12rem; margin-bottom: 8px; font-weight: 700; }
.card p { color: var(--grey); font-size: .95rem; }

/* ---------- Two-column ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.blob-img { border-radius: 58% 42% 50% 50% / 45% 52% 48% 55%; box-shadow: var(--shadow); object-fit: cover; width: 100%; }
.framed-img { background: #fff; padding: 12px 12px 40px; border-radius: 6px; box-shadow: 0 14px 34px rgba(53,50,43,.16); transform: rotate(-2deg); max-width: 420px; justify-self: center; }
.framed-img img { border-radius: 3px; max-height: 430px; width: 100%; object-fit: cover; }
.framed-img .cap { font-family: "Caveat", cursive; font-size: 1.25rem; color: var(--grey); text-align: center; margin-top: 10px; line-height: 1; }

/* ---------- Lists ---------- */
.check-list { list-style: none; margin-top: 20px; }
.check-list li { padding-left: 36px; position: relative; margin-bottom: 15px; }
.check-list li::before {
  content: "🧶"; position: absolute; left: 0; top: 1px; font-size: 1rem;
}
.check-list li strong { color: var(--teal-deep); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 44px; }
.gallery .snapg { background: #fff; padding: 9px 9px 30px; border-radius: 5px; box-shadow: 0 10px 26px rgba(53,50,43,.15); transition: transform .22s; }
.gallery .snapg:nth-child(odd) { transform: rotate(-2deg); }
.gallery .snapg:nth-child(even) { transform: rotate(1.8deg); }
.gallery .snapg:hover { transform: rotate(0) scale(1.05); z-index: 3; }
.gallery img { height: 200px; width: 100%; object-fit: cover; border-radius: 3px; }
.gallery .cap { font-family: "Caveat", cursive; font-size: 1.05rem; color: var(--grey); text-align: center; margin-top: 7px; line-height: 1.1; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--teal); color: #fff; text-align: center; padding: 70px 0;
  position: relative;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 14px; font-weight: 900; }
.cta-band p { color: #d8efe8; margin: 0 auto 28px; max-width: 40em; }
.cta-band .hand-note { font-family: "Caveat", cursive; font-size: 1.5rem; color: #ffd9a0; display: block; margin-bottom: 8px; }

/* ---------- Story page ---------- */
.story-hero { background: var(--teal-deep); color: #fff; padding: 76px 0 130px; text-align: center; }
.story-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 900; }
.story-hero .hand-note { font-family: "Caveat", cursive; font-size: 1.7rem; color: #ffd9a0; }
.story-hero p.sub { color: #cfe8e0; max-width: 36em; margin: 14px auto 0; }
.story-card { max-width: 740px; margin: 0 auto; }
.keychain-frame { width: min(360px, 84%); margin: -90px auto 0; background: #fff; padding: 14px 14px 46px; border-radius: 6px; box-shadow: 0 18px 44px rgba(4,61,53,.28); transform: rotate(-2.5deg); position: relative; z-index: 2; }
.keychain-frame img { border-radius: 4px; max-height: 380px; width: 100%; object-fit: cover; }
.keychain-frame .cap { font-family: "Caveat", cursive; font-size: 1.35rem; color: var(--grey); text-align: center; margin-top: 12px; line-height: 1; }
.symbol-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 40px 0; }
.symbol { background: #fffdf8; border-radius: var(--radius); padding: 30px 26px; border: 1.5px dashed var(--sand); box-shadow: var(--shadow); }
.symbol h3 { margin-bottom: 8px; font-size: 1.15rem; }
.symbol.green h3 { color: var(--teal-deep); }
.symbol.purple h3 { color: var(--ribbon); }
.symbol p { color: var(--grey); font-size: .96rem; }
.screening-box {
  background: #fffdf8; border: 2px dashed var(--teal); border-radius: var(--radius);
  padding: 40px 34px; text-align: center; box-shadow: var(--shadow);
}
.screening-box h3 { color: var(--teal-deep); font-size: 1.5rem; margin-bottom: 12px; font-weight: 900; }
.screening-box p { color: var(--grey); margin-bottom: 24px; }
.impact-note {
  background: var(--teal-soft); border-radius: var(--radius); padding: 32px; text-align: center;
  border: 1.5px dashed var(--teal);
}
.impact-note h3 { color: var(--teal-deep); font-size: 1.25rem; margin-bottom: 10px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 42px; }
.contact-card { background: #fffdf8; border: 1.5px dashed var(--sand); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); }
.contact-card h3 { color: var(--teal-deep); margin-bottom: 12px; font-size: 1.15rem; }
.contact-card p { margin-bottom: 10px; color: var(--grey); }
.contact-card a { font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-dark); color: #a8cfc5; padding: 58px 0 30px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 42px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; margin-bottom: 14px; font-family: "Fraunces", serif; font-size: 1.05rem; }
.site-footer a { color: #a8cfc5; text-decoration: none; }
.site-footer a:hover { color: #ffd9a0; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px dashed rgba(255,255,255,.2); padding-top: 22px; text-align: center; font-size: .82rem; color: #7fa89e; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo img { width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 3px solid #fff; }
.footer-hand { font-family: "Caveat", cursive; font-size: 1.3rem; color: #ffd9a0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .two-col, .contact-grid, .symbol-row { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 44px 0 30px; }
  .photo-cluster { min-height: 430px; margin-top: 10px; }

  .nav-toggle { display: block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; align-items: stretch; padding: 10px 0 18px; }
  .site-nav a { display: block; padding: 13px 4px; border-bottom: 1px dashed var(--line); }
  .site-nav a.btn-donate { text-align: center; margin-top: 12px; }
  .nav-wrap { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .card-grid, .gallery { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .snap .cap { font-size: .9rem; }
}
