@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --teal:        #2A9D8F;
  --teal-dark:   #1f7a6e;
  --teal-light:  #E8F7F5;
  --coral:       #E76F51;
  --coral-light: #FEF0EB;
  --dark:        #1A1A2E;
  --gray:        #555555;
  --gray-light:  #F5F5F5;
  --border:      #E0E0E0;
  --white:       #FFFFFF;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

/* ── Nav ─────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.2rem; color: var(--dark);
}
.nav-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-icon svg { width: 20px; height: 20px; }
.nav-logo span.stays { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--coral); color: var(--white) !important;
  padding: 8px 20px; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #c95e3f !important; color: var(--white) !important; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: all 0.2s; border: 2px solid transparent;
}
.btn-primary { background: var(--white); color: var(--teal); }
.btn-primary:hover { background: var(--teal-light); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: #c95e3f; }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  background: var(--teal);
  padding: 100px 5% 90px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
  max-width: 780px; margin: 0 auto 20px;
}
.hero h1 em { font-style: normal; color: #a8e6e0; }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Page hero (subpages) ────────────────────────────────────── */
.page-hero {
  background: var(--teal); padding: 64px 5% 56px;
}
.page-hero-inner { max-width: 760px; }
.page-hero .eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--white); line-height: 1.2;
  margin-bottom: 16px;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.82); line-height: 1.7; }

/* ── Sections ────────────────────────────────────────────────── */
section { padding: 80px 5%; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--dark); line-height: 1.25; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--gray); line-height: 1.7;
  max-width: 600px;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

/* ── Stats bar ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark); padding: 48px 5%;
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat {
  text-align: center; padding: 16px 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 6px; line-height: 1.4; }

/* ── Mission strip ───────────────────────────────────────────── */
.mission-strip {
  background: var(--teal-light);
  border-left: 5px solid var(--teal);
  padding: 40px 5%;
}
.mission-strip p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600; color: var(--dark); line-height: 1.6;
  max-width: 860px; margin: 0 auto; text-align: center;
}
.mission-strip p em { font-style: normal; color: var(--teal); }

/* ── Cards grid ──────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 48px;
}
.card {
  background: var(--white); border: 1px solid var(--border);
  border-top: 4px solid var(--teal); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.card-icon {
  font-size: 1.8rem; margin-bottom: 16px;
}
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.card p  { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

/* ── Problem page ────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 760px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-lead {
  font-size: 1.2rem; font-weight: 600; color: var(--dark);
  line-height: 1.55; margin-bottom: 20px;
}
.problem-body { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }

.toll-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.toll-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; background: var(--coral-light);
  border-radius: 8px; border-left: 3px solid var(--coral);
}
.toll-list li .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.toll-list li .text { font-size: 0.95rem; color: var(--gray); line-height: 1.55; }
.toll-list li .text strong { color: var(--dark); display: block; margin-bottom: 2px; }

.callout {
  background: var(--teal); color: var(--white);
  border-radius: var(--radius); padding: 32px 36px;
  margin-top: 40px;
}
.callout p { font-size: 1.05rem; line-height: 1.65; }
.callout strong { display: block; font-size: 1.15rem; margin-bottom: 8px; }

/* ── Programs page ───────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 48px;
}
.program-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.2s;
}
.program-card:hover { transform: translateY(-4px); }
.program-card-top {
  background: var(--teal); padding: 28px 28px 24px;
}
.program-card-top .prog-icon { font-size: 2rem; margin-bottom: 10px; }
.program-card-top h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); }
.program-card-body { padding: 24px 28px; }
.program-card-body p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.program-details { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.program-details li {
  font-size: 0.88rem; color: var(--gray);
  padding-left: 16px; position: relative; line-height: 1.5;
}
.program-details li::before {
  content: '→'; position: absolute; left: 0; color: var(--teal); font-size: 0.85rem;
}

/* ── How it works ────────────────────────────────────────────── */
.how-strip { background: var(--gray-light); padding: 72px 5%; }
.how-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; margin-top: 48px; max-width: 1000px; margin-left: auto; margin-right: auto;
}
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p  { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ── Get Involved ────────────────────────────────────────────── */
.involve-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 48px;
}
.involve-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  border-top: 4px solid var(--coral); padding: 28px;
  background: var(--white); box-shadow: var(--shadow);
}
.involve-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.involve-card p  { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }

.contact-box {
  background: var(--dark); border-radius: var(--radius);
  padding: 56px; text-align: center; margin-top: 64px;
}
.contact-box h2 { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.contact-box p  { font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.contact-box a.email {
  font-size: 1.2rem; font-weight: 700; color: var(--teal);
  border-bottom: 2px solid var(--teal); padding-bottom: 2px;
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--dark); padding: 40px 5%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .nav-icon { width: 32px; height: 32px; }
.footer-logo span { font-weight: 700; color: var(--white); font-size: 1rem; }
.footer-logo span.stays { color: var(--teal); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
