/* =========================================================
   Brighter Path Foundation — shared stylesheet
   Palette: deep bayou teal + sunflower + soft coral + warm white
   Type: Bricolage Grotesque (display) + Nunito Sans (body)
   No pure #fff/#000. Inline stroke SVG icons only — no emoji.
   ========================================================= */

:root {
  --teal: #15565c;
  --teal-deep: #0c3d43;
  --teal-soft: #e3efee;
  --sun: #f4b13e;
  --sun-deep: #d68f1a;
  --coral: #e3654a;
  --coral-deep: #c34c33;
  --warm: #fdf9f1;
  --warm-deep: #f6edda;
  --ink: #1f3134;
  --text: #3c4d4a;
  --text-soft: #6e7d78;
  --line: #e8dfc9;
  --shadow: 0 12px 32px -14px rgba(12, 61, 67, 0.22);
  --shadow-sun: 0 14px 30px -12px rgba(214, 143, 26, 0.45);
  --shadow-coral: 0 14px 30px -12px rgba(195, 76, 51, 0.42);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 30px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--warm);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Trebuchet MS', sans-serif;
  color: var(--teal-deep);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.015em;
}

a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 26px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--teal-deep); color: var(--warm);
  padding: 10px 18px; z-index: 10000; border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 0.98rem;
  border-radius: var(--r-md); cursor: pointer; border: 2px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn-sun { background: var(--sun); color: var(--teal-deep); }
.btn-sun:hover { background: var(--sun-deep); transform: translateY(-3px) rotate(-0.5deg); box-shadow: var(--shadow-sun); }
.btn-coral { background: var(--coral); color: var(--warm); }
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-3px) rotate(0.5deg); box-shadow: var(--shadow-coral); }
.btn-teal { background: var(--teal); color: var(--warm); }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--teal-deep); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal-soft); transform: translateY(-3px); }
.btn-ghost-light { background: transparent; color: var(--warm); border-color: rgba(253, 249, 241, 0.4); }
.btn-ghost-light:hover { background: rgba(253, 249, 241, 0.12); border-color: var(--warm); transform: translateY(-3px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(253, 249, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav::before {
  content: ""; display: block; height: 5px;
  background: linear-gradient(90deg, var(--teal) 0 33%, var(--sun) 33% 66%, var(--coral) 66% 100%);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.28rem; color: var(--teal-deep); line-height: 1.1; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50% 50% 50% 12px;
  background: var(--teal); color: var(--sun);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-mark svg { width: 23px; height: 23px; }
.brand em { color: var(--coral); font-style: normal; display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links > li > a { font-weight: 700; font-size: 0.96rem; color: var(--text); position: relative; padding: 4px 0; }
.nav-links > li > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 3px;
  background: var(--sun); border-radius: 3px; transition: width 0.3s var(--ease);
}
.nav-links > li > a:not(.btn):hover { color: var(--teal-deep); }
.nav-links > li > a:not(.btn):hover::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--teal-deep); }
.nav-links a[aria-current="page"]:not(.btn)::after { width: 100%; }
.nav-links .btn { padding: 11px 22px; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2.5px; background: var(--teal-deep); border-radius: 3px; transition: 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav { display: none; background: var(--warm); border-bottom: 1px solid var(--line); padding: 16px 26px 24px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 13px 0; font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border: none; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 14px; }

/* ---------- Section scaffolding ---------- */
.section { padding: 100px 0; position: relative; }
.section.sand { background: var(--warm-deep); }
.section.deep { background: var(--teal-deep); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--coral);
}
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--sun); display: inline-block; }
.section.deep .eyebrow { color: var(--sun); }
.shead { max-width: 660px; margin-bottom: 56px; }
.shead.center { margin-left: auto; margin-right: auto; text-align: center; }
.shead.center .eyebrow { justify-content: center; }
.shead h2 { font-size: clamp(2rem, 4vw, 2.85rem); margin: 16px 0 14px; }
.shead p { color: var(--text-soft); font-size: 1.08rem; }
.section.deep .shead h2 { color: var(--warm); }
.section.deep .shead p { color: rgba(253, 249, 241, 0.76); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Hero (homepage, light + asymmetric collage) ---------- */
.hero { position: relative; background: var(--warm); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; left: -180px; bottom: -220px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(244, 177, 62, 0.22), transparent 68%); border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; padding: 84px 0 96px; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--teal-soft); border: 1px solid rgba(21, 86, 92, 0.25); color: var(--teal);
  padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 800; margin-bottom: 24px;
}
.hero-tag svg { width: 15px; height: 15px; }
.hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.2rem); margin-bottom: 22px; }
.hero h1 .swash { position: relative; white-space: nowrap; color: var(--coral); }
.hero h1 .swash::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px;
  background: rgba(244, 177, 62, 0.45); z-index: -1; border-radius: 6px; transform: rotate(-1deg);
}
.hero-sub { font-size: clamp(1.06rem, 2vw, 1.24rem); color: var(--text-soft); max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-proof { display: flex; align-items: center; gap: 16px; }
.hero-proof-avs { display: flex; }
.hero-proof-avs span {
  width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--warm);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.82rem;
  margin-left: -10px;
}
.hero-proof-avs span:first-child { margin-left: 0; }
.hero-proof-avs span:nth-child(1) { background: var(--teal); color: var(--warm); }
.hero-proof-avs span:nth-child(2) { background: var(--sun); color: var(--teal-deep); }
.hero-proof-avs span:nth-child(3) { background: var(--coral); color: var(--warm); }
.hero-proof p { font-size: 0.92rem; color: var(--text-soft); max-width: 250px; line-height: 1.45; }
.hero-proof p strong { color: var(--teal-deep); }

.hero-collage { position: relative; display: grid; grid-template-columns: 1fr 0.78fr; grid-template-rows: auto auto; gap: 18px; }
.hero-collage .ph-a { grid-row: 1 / 3; }
.hero-collage .ph-a img { width: 100%; height: 470px; object-fit: cover; border-radius: 120px 28px 28px 28px; }
.hero-collage .ph-b img { width: 100%; height: 220px; object-fit: cover; border-radius: 28px 28px 28px 90px; }
.hero-collage .ph-c {
  background: var(--teal); color: var(--warm); border-radius: 28px;
  padding: 26px 24px; display: flex; flex-direction: column; justify-content: center;
}
.hero-collage .ph-c .num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.3rem; font-weight: 800; color: var(--sun); line-height: 1; }
.hero-collage .ph-c .lbl { font-size: 0.9rem; color: rgba(253, 249, 241, 0.85); margin-top: 7px; line-height: 1.4; }

/* ---------- Stats band ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.stat { border-left: 3px solid rgba(244, 177, 62, 0.55); padding-left: 22px; }
.stat .num { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: var(--sun); line-height: 1; margin-bottom: 8px; }
.stat .lbl { color: rgba(253, 249, 241, 0.78); font-size: 0.94rem; font-weight: 600; line-height: 1.45; }

/* ---------- Program rows (alternating, not card grid) ---------- */
.prog-row { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; padding: 54px 0; border-bottom: 1px dashed var(--line); }
.prog-row:last-of-type { border-bottom: none; }
.prog-row.flip .prog-fig { order: 2; }
.prog-fig { position: relative; }
.prog-fig img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--r-lg); }
.prog-fig .tape {
  position: absolute; top: -14px; left: 34px; background: var(--sun); color: var(--teal-deep);
  font-weight: 800; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 8px; transform: rotate(-2deg); box-shadow: var(--shadow-sun);
}
.prog-row h3 { font-size: clamp(1.55rem, 2.6vw, 2rem); margin: 14px 0 12px; }
.prog-row > div > p { color: var(--text-soft); font-size: 1.03rem; margin-bottom: 18px; }
.prog-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.prog-meta span {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--teal-soft); color: var(--teal); font-weight: 700; font-size: 0.84rem;
  padding: 7px 14px; border-radius: 50px;
}
.prog-meta span svg { width: 14px; height: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--coral); }
.text-link svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.text-link:hover { color: var(--coral-deep); }
.text-link:hover svg { transform: translateX(5px); }

/* ---------- Story / quote ---------- */
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.story-fig { position: relative; }
.story-fig img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 110px; }
.story-fig::after {
  content: ""; position: absolute; inset: -16px 16px 16px -16px;
  border: 2px dashed rgba(227, 101, 74, 0.5); border-radius: var(--r-lg) var(--r-lg) var(--r-lg) 110px; z-index: -1;
}
.story-quote { position: relative; padding-left: 8px; }
.story-quote .qmark { font-family: 'Bricolage Grotesque', sans-serif; font-size: 5rem; font-weight: 800; color: var(--sun); line-height: 0.5; display: block; margin-bottom: 26px; }
.story-quote blockquote { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 600; color: var(--teal-deep); line-height: 1.4; margin-bottom: 26px; }
.story-who { display: flex; align-items: center; gap: 14px; }
.story-who .av { width: 52px; height: 52px; border-radius: 50%; background: var(--coral); color: var(--warm); display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; }
.story-who h4 { font-family: 'Nunito Sans', sans-serif; font-size: 1rem; font-weight: 800; }
.story-who span { font-size: 0.88rem; color: var(--text-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--teal); color: var(--warm); border-radius: var(--r-lg);
  padding: 64px 54px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center;
}
.cta-band::before { content: ""; position: absolute; right: -90px; top: -90px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(244, 177, 62, 0.3), transparent 70%); border-radius: 50%; }
.cta-band h2 { color: var(--warm); font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(253, 249, 241, 0.82); font-size: 1.08rem; position: relative; }
.cta-actions { display: flex; flex-direction: column; gap: 13px; position: relative; }
.cta-actions .btn { justify-content: center; }

/* ---------- Page header (interior) ---------- */
.page-head { background: var(--teal-deep); color: var(--warm); padding: 80px 0 86px; position: relative; overflow: hidden; }
.page-head::after { content: ""; position: absolute; right: -110px; bottom: -150px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(227, 101, 74, 0.25), transparent 70%); border-radius: 50%; }
.page-head .eyebrow { color: var(--sun); }
.page-head h1 { color: var(--warm); font-size: clamp(2.3rem, 5vw, 3.4rem); margin: 16px 0 14px; position: relative; }
.page-head p { color: rgba(253, 249, 241, 0.8); font-size: 1.1rem; max-width: 620px; position: relative; }

/* ---------- Camp feature ---------- */
.camp-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.camp-hero img { width: 100%; height: 430px; object-fit: cover; border-radius: 100px 28px 100px 28px; }
.camp-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(244, 177, 62, 0.18); border: 1.5px solid var(--sun); color: var(--sun-deep);
  padding: 8px 18px; border-radius: 50px; font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.camp-badge svg { width: 16px; height: 16px; }
.session-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.session {
  background: var(--warm); border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 26px 24px; position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.session:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sun); }
.session .s-tag { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); }
.session h4 { font-size: 1.25rem; margin: 8px 0 4px; }
.session .s-date { font-weight: 800; color: var(--teal); font-size: 0.97rem; margin-bottom: 12px; }
.session p { font-size: 0.92rem; color: var(--text-soft); }
.session.full::after {
  content: "Filling fast"; position: absolute; top: 18px; right: 18px;
  background: var(--coral); color: var(--warm); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
}

/* Day-at-camp timeline */
.day-list { max-width: 720px; margin: 0 auto; }
.day-item { display: grid; grid-template-columns: 96px 1fr; gap: 26px; padding: 22px 0; border-bottom: 1px dashed var(--line); }
.day-item:last-child { border-bottom: none; }
.day-time { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; color: var(--coral); font-size: 1.05rem; padding-top: 2px; }
.day-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
.day-item p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Detail cards (programs page, 2-up offset) ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.detail-card { background: var(--warm); border: 1.5px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.detail-card:nth-child(2) { margin-top: 44px; }
.detail-card img { width: 100%; height: 240px; object-fit: cover; }
.detail-body { padding: 32px 30px 36px; }
.detail-body h3 { font-size: 1.45rem; margin-bottom: 10px; }
.detail-body > p { color: var(--text-soft); margin-bottom: 18px; }
.check-list { list-style: none; }
.check-list li { padding: 6px 0 6px 30px; position: relative; font-size: 0.96rem; }
.check-list li svg { position: absolute; left: 0; top: 10px; width: 18px; height: 18px; color: var(--sun-deep); }

/* ---------- Values (about) ---------- */
.values-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1.5px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.value-cell { padding: 42px 40px; border-bottom: 1.5px solid var(--line); background: var(--warm); transition: background 0.3s var(--ease); }
.value-cell:nth-child(odd) { border-right: 1.5px solid var(--line); }
.value-cell:nth-last-child(-n+2) { border-bottom: none; }
.value-cell:hover { background: var(--warm-deep); }
.value-ico { width: 54px; height: 54px; border-radius: 50% 50% 50% 12px; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.value-ico svg { width: 26px; height: 26px; }
.value-cell h3 { font-size: 1.28rem; margin-bottom: 8px; }
.value-cell p { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.team-card { text-align: left; }
.team-av {
  width: 100%; aspect-ratio: 1; border-radius: 50% 50% 50% 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.4rem; font-weight: 800;
  margin-bottom: 18px; transition: transform 0.35s var(--ease);
}
.team-card:hover .team-av { transform: rotate(-3deg) scale(1.03); }
.team-card:nth-child(4n+1) .team-av { background: var(--teal); color: var(--sun); }
.team-card:nth-child(4n+2) .team-av { background: var(--sun); color: var(--teal-deep); }
.team-card:nth-child(4n+3) .team-av { background: var(--coral); color: var(--warm); }
.team-card:nth-child(4n) .team-av { background: var(--warm-deep); color: var(--coral); border: 1.5px solid var(--line); }
.team-card h4 { font-size: 1.12rem; }
.team-card .role { color: var(--coral); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin: 3px 0 8px; }
.team-card p { font-size: 0.92rem; color: var(--text-soft); }

/* ---------- Timeline (about story) ---------- */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 36px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: repeating-linear-gradient(var(--sun) 0 10px, transparent 10px 20px); }
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -34px; top: 7px; width: 14px; height: 14px; border-radius: 50%; background: var(--coral); border: 3px solid var(--warm); box-shadow: 0 0 0 2px var(--coral); }
.tl-item .year { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; color: var(--coral); font-size: 1.05rem; }
.tl-item h4 { font-size: 1.18rem; margin: 4px 0 6px; }
.tl-item p { color: var(--text-soft); font-size: 0.98rem; max-width: 580px; }

/* ---------- Partners ---------- */
.partner-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.partner-chip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--line); background: var(--warm); border-radius: 50px;
  padding: 13px 24px; font-weight: 800; color: var(--teal-deep); font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.partner-chip:hover { border-color: var(--sun); transform: translateY(-3px); }
.partner-chip svg { width: 18px; height: 18px; color: var(--coral); }

/* ---------- Donation tiers ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.tier {
  background: var(--warm); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 28px; display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
}
.tier:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--teal); }
.tier.featured { background: var(--teal); border-color: var(--teal); color: rgba(253, 249, 241, 0.85); }
.tier.featured:hover { border-color: var(--sun); }
.tier .flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-1.5deg);
  background: var(--sun); color: var(--teal-deep); font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: 8px;
  box-shadow: var(--shadow-sun); white-space: nowrap;
}
.tier .amount { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.6rem; font-weight: 800; color: var(--teal-deep); line-height: 1; }
.tier.featured .amount { color: var(--sun); }
.tier .freq { font-size: 0.86rem; color: var(--text-soft); margin-bottom: 18px; }
.tier.featured .freq { color: rgba(253, 249, 241, 0.65); }
.tier h3 { font-size: 1.18rem; margin-bottom: 10px; }
.tier.featured h3 { color: var(--warm); }
.tier p { font-size: 0.94rem; color: var(--text-soft); flex-grow: 1; margin-bottom: 24px; }
.tier.featured p { color: rgba(253, 249, 241, 0.8); }
.tier .btn { justify-content: center; width: 100%; }

/* Fund breakdown rows */
.fund-row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: start; padding: 24px 0; border-bottom: 1px dashed var(--line); }
.fund-row:last-child { border-bottom: none; }
.fund-amt { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--coral); }
.fund-row h4 { font-size: 1.08rem; margin-bottom: 4px; }
.fund-row p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Forms ---------- */
.form-card { background: var(--warm); border-radius: var(--r-lg); padding: 42px; border: 1.5px solid var(--line); }
.form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-card > p { color: var(--text-soft); margin-bottom: 26px; font-size: 0.98rem; }
.fg { margin-bottom: 18px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg label { display: block; font-size: 0.88rem; font-weight: 800; color: var(--teal-deep); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: 'Nunito Sans', sans-serif; font-size: 0.97rem; background: #fffdf8; color: var(--text);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--sun); box-shadow: 0 0 0 3px rgba(244, 177, 62, 0.22); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-card .btn { width: 100%; justify-content: center; }

/* Volunteer split */
.vol-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.vol-point { display: flex; gap: 16px; margin-bottom: 24px; }
.vol-ico { width: 50px; height: 50px; flex-shrink: 0; border-radius: 50% 50% 50% 12px; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.vol-ico svg { width: 23px; height: 23px; }
.vol-point h4 { font-size: 1.08rem; margin-bottom: 3px; }
.vol-point p { font-size: 0.95rem; color: var(--text-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--teal-deep); color: rgba(253, 249, 241, 0.68); padding: 70px 0 28px; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--coral) 0 33%, var(--sun) 33% 66%, var(--teal) 66% 100%); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 46px; }
.footer .brand { color: var(--warm); margin-bottom: 16px; }
.footer .brand em { color: var(--sun); }
.footer-about p { font-size: 0.95rem; line-height: 1.7; max-width: 300px; }
.footer h4 { color: var(--warm); font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: 0.98rem; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 11px; font-size: 0.94rem; }
.footer li a:hover { color: var(--sun); }
.footer-tax { font-size: 0.84rem; margin-top: 18px; color: rgba(253, 249, 241, 0.45); }
.footer-bottom { border-top: 1px solid rgba(253, 249, 241, 0.14); padding-top: 26px; text-align: center; font-size: 0.88rem; }
.footer-bottom a:hover { color: var(--sun); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .story-grid, .camp-hero, .vol-grid, .cta-band { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-collage { order: -1; }
  .hero-collage .ph-a img { height: 340px; }
  .session-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-card:nth-child(2) { margin-top: 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .prog-row, .prog-row.flip { grid-template-columns: 1fr; gap: 30px; }
  .prog-row.flip .prog-fig { order: 0; }
  .prog-fig img { height: 280px; }
  .story-fig img { height: 340px; }
  .camp-hero img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 48px 36px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .section { padding: 70px 0; }
  .values-band { grid-template-columns: 1fr; }
  .value-cell:nth-child(odd) { border-right: none; }
  .value-cell:nth-last-child(2) { border-bottom: 1.5px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-card { padding: 28px; }
  .fg-row { grid-template-columns: 1fr; }
  .day-item { grid-template-columns: 72px 1fr; gap: 16px; }
}
@media (max-width: 500px) {
  .stat-grid, .team-grid, .tier-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
  .hero-collage { grid-template-columns: 1fr; }
  .hero-collage .ph-a { grid-row: auto; }
  .hero-collage .ph-a img { height: 280px; border-radius: 70px 24px 24px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
