/* -----------------------------------------------
   Try to Imagine Collective — Global Stylesheet
----------------------------------------------- */

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

:root {
  --coral:       #E8521A;
  --coral-light: #FAEADE;
  --amber:       #F0A500;
  --amber-light: #FEF3D6;
  --teal:        #0E8A7A;
  --teal-light:  #D6EFEC;
  --forest:      #1A2E2B;
  --cream:       #FAF6EE;
  --warm-white:  #FFFDF9;
  --sand:        #F4EFE4;
  --text-dark:   #1A2E2B;
  --text-mid:    #4A5450;
  --text-soft:   #8A9490;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--warm-white); color: var(--text-dark); overflow-x: hidden; }

/* -----------------------------------------------
   NAV
----------------------------------------------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(255,253,249,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,82,26,0.08);
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  padding: 0.85rem 3rem;
  box-shadow: 0 2px 20px rgba(26,46,43,0.08);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--forest); text-decoration: none; letter-spacing: 0.02em;
  position: relative; z-index: 101;
}
.nav-logo span { color: var(--coral); font-style: italic; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-mid); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--coral); }
.nav-cta {
  background: var(--coral); color: #fff !important;
  padding: 0.6rem 1.5rem; border-radius: 100px;
  transition: background 0.2s !important, transform 0.2s !important;
}
.nav-cta:hover { background: #cc4412 !important; transform: translateY(-1px); }
.nav-cta.active { background: #cc4412 !important; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; position: relative; z-index: 101;
}
.nav-close {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(26,46,43,0.12);
  border-radius: 50%;
  background: rgba(255,253,249,0.96);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 102;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--forest); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------------------
   HERO (Home page)
----------------------------------------------- */
.hero {
  min-height: 100vh; padding-top: 80px;
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; bottom: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--coral-light); opacity: 0.5; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; top: 100px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--teal-light); opacity: 0.4; z-index: 0;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3rem 5rem 4.5rem; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1.25rem;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(3rem, 4.5vw, 4.8rem);
  font-weight: 300; line-height: 1.1; color: var(--forest);
  margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
}
.hero-headline em { font-style: italic; color: var(--coral); }
.hero-body {
  font-size: 1rem; line-height: 1.85; color: var(--text-mid);
  max-width: 420px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  opacity: 0; animation: fadeUp 0.7s 0.65s forwards;
}
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 3rem;
  opacity: 0; animation: fadeIn 1s 0.4s forwards;
}
.hero-logo-display {
  display: flex; flex-direction: column; align-items: center;
  gap: 2rem;
}
.hero-tagline-card {
  background: #fff; border-radius: 20px;
  padding: 2rem 2.5rem; max-width: 340px;
  border: 1px solid rgba(232,82,26,0.1);
  box-shadow: 0 4px 32px rgba(26,46,43,0.06);
}
.htc-quote {
  font-family: var(--font-display); font-size: 1.35rem; font-style: italic;
  font-weight: 300; color: var(--forest); line-height: 1.55;
  margin-bottom: 1.25rem;
}
.htc-pillars { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.htc-pill {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem; border-radius: 100px;
}
.pill-coral { background: var(--coral-light); color: var(--coral); }
.pill-amber { background: var(--amber-light); color: #b07800; }
.pill-teal  { background: var(--teal-light);  color: var(--teal); }

/* -----------------------------------------------
   PAGE HERO (inner pages)
----------------------------------------------- */
.page-hero {
  padding: 9rem 4.5rem 5rem;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: var(--coral-light); opacity: 0.45; z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute; top: 60px; left: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--teal-light); opacity: 0.35; z-index: 0;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.page-hero-eyebrow {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.page-hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 300; line-height: 1.1; color: var(--forest);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
}
.page-hero-title em { font-style: italic; color: var(--coral); }
.page-hero-body {
  font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); max-width: 540px;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
}

/* -----------------------------------------------
   STATS BAND
----------------------------------------------- */
.stats-band {
  background: var(--sand);
  padding: 3rem 4rem;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
  border-top: 1px solid rgba(232,82,26,0.1);
  border-bottom: 1px solid rgba(232,82,26,0.1);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 300;
  line-height: 1; margin-bottom: 0.4rem;
}
.stat-number.c { color: var(--coral); }
.stat-number.a { color: var(--amber); }
.stat-number.t { color: var(--teal); }
.stat-number.f { color: var(--forest); }
.stat-label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); }

/* -----------------------------------------------
   SHARED SECTION UTILITIES
----------------------------------------------- */
section { padding: 7rem 4.5rem; }
.section-tag {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; display: block; margin-bottom: 0.85rem;
}
.tag-coral { color: var(--coral); }
.tag-teal  { color: var(--teal); }
.tag-amber { color: var(--amber); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1.5rem; color: var(--forest);
}
.section-title em { font-style: italic; color: var(--coral); }
.section-body { font-size: 1rem; line-height: 1.85; color: var(--text-mid); max-width: 540px; }

/* -----------------------------------------------
   BUTTONS
----------------------------------------------- */
.btn-primary {
  background: var(--coral); color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none;
  transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { background: #cc4412; transform: translateY(-2px); }

.btn-secondary {
  background: var(--teal); color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none;
  transition: background 0.2s, transform 0.2s; display: inline-block;
}
.btn-secondary:hover { background: #0a6b5e; transform: translateY(-2px); }

.btn-ghost {
  font-size: 0.82rem; font-weight: 500; color: var(--forest);
  text-decoration: none; display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--coral); }

.btn-white {
  background: #fff; color: var(--teal);
  padding: 0.9rem 2.2rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.55); color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* -----------------------------------------------
   MISSION SECTION
----------------------------------------------- */
.mission {
  background: var(--warm-white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.mission-visual { position: relative; height: 460px; }
.mv-block { position: absolute; border-radius: 16px; overflow: hidden; }
.mv-main {
  width: 72%; height: 78%; top: 0; left: 0;
  background: var(--teal);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem;
}
.mv-main-text {
  font-family: var(--font-display); font-size: 1.5rem; font-style: italic;
  font-weight: 300; color: #fff; line-height: 1.5;
}
.mv-coral {
  width: 44%; height: 44%; bottom: 0; right: 0;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.mv-coral-text {
  font-family: var(--font-display); font-size: 3rem; font-weight: 300;
  color: #fff; text-align: center; line-height: 1;
}
.mv-coral-text span {
  display: block; font-family: var(--font-body);
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-top: 0.4rem;
}
.mv-amber-dot {
  width: 80px; height: 80px; border-radius: 50%;
  bottom: 46%; right: 38%; background: var(--amber); position: absolute;
}

/* -----------------------------------------------
   PILLARS / PROGRAMS CARDS
----------------------------------------------- */
.pillars { background: var(--cream); }
.pillars-header { margin-bottom: 3.5rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pillar-card {
  background: #fff; border-radius: 20px; padding: 2.5rem 2rem;
  border: 1px solid rgba(26,46,43,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,46,43,0.1);
}
.pillar-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.pc-coral::after { background: var(--coral); }
.pc-amber::after { background: var(--amber); }
.pc-teal::after  { background: var(--teal); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-dot {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.pd-coral { background: var(--coral-light); }
.pd-amber { background: var(--amber-light); }
.pd-teal  { background: var(--teal-light); }
.pillar-num {
  font-family: var(--font-display); font-size: 1.1rem; font-style: italic; font-weight: 400;
}
.num-coral { color: var(--coral); }
.num-amber { color: var(--amber); }
.num-teal  { color: var(--teal); }
.pillar-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--forest); margin-bottom: 0.75rem; line-height: 1.3;
}
.pillar-desc { font-size: 0.88rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 1.5rem; }
.pillar-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.ptag {
  font-size: 0.65rem; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; border-radius: 100px;
}
.pt-coral { background: var(--coral-light); color: var(--coral); }
.pt-amber { background: var(--amber-light); color: #9a6500; }
.pt-teal  { background: var(--teal-light);  color: var(--teal); }

/* -----------------------------------------------
   PROGRAM DETAIL BLOCKS (programs.html)
----------------------------------------------- */
.program-detail-section { background: var(--warm-white); }
.program-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  padding: 5rem 4.5rem;
  border-bottom: 1px solid rgba(26,46,43,0.06);
}
.program-block:nth-child(even) { background: var(--sand); }
.program-block:last-child { border-bottom: none; }
.program-block.reverse { direction: rtl; }
.program-block.reverse > * { direction: ltr; }
.program-visual {
  border-radius: 24px;
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem; position: relative; overflow: hidden;
}
.pv-coral { background: linear-gradient(135deg, #e85c28 0%, #c43a12 100%); }
.pv-amber { background: linear-gradient(135deg, #f0a800 0%, #c88000 100%); }
.pv-teal  { background: linear-gradient(135deg, #0e8a7a 0%, #096a5c 100%); }
.program-visual-num {
  font-family: var(--font-display); font-size: 7rem; font-weight: 300;
  color: rgba(255,255,255,0.14); line-height: 1;
  position: absolute; top: 1.5rem; right: 2rem;
}
.program-visual-label {
  font-family: var(--font-display); font-size: 1.6rem; font-style: italic;
  font-weight: 300; color: #fff; line-height: 1.4; position: relative; z-index: 1;
}
.program-features { margin-top: 2rem; list-style: none; }
.program-features li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(26,46,43,0.06);
  font-size: 0.9rem; line-height: 1.65; color: var(--text-mid);
}
.program-features li:last-child { border-bottom: none; }
.pf-dot {
  width: 8px; height: 8px; border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0;
}
.pf-coral { background: var(--coral); }
.pf-amber { background: var(--amber); }
.pf-teal  { background: var(--teal); }

/* How programs work */
.how-it-works { background: var(--cream); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.how-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(26,46,43,0.06);
  transition: transform 0.3s;
}
.how-card:hover { transform: translateY(-4px); }
.how-card-num {
  font-family: var(--font-display); font-size: 2rem; font-style: italic;
  font-weight: 300; color: var(--coral); margin-bottom: 0.75rem;
}
.how-card h4 { font-size: 0.95rem; font-weight: 500; color: var(--forest); margin-bottom: 0.5rem; }
.how-card p { font-size: 0.85rem; line-height: 1.75; color: var(--text-mid); }

/* -----------------------------------------------
   BELIEFS / VALUES
----------------------------------------------- */
.beliefs { background: var(--sand); }
.beliefs-inner { max-width: 960px; }
.beliefs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.belief-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  border: 1px solid rgba(26,46,43,0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.belief-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.belief-num {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: var(--coral); margin-bottom: 0.6rem; opacity: 0.7;
}
.belief-text { font-size: 0.92rem; line-height: 1.78; color: var(--text-mid); }
.belief-text strong { color: var(--forest); font-weight: 500; }

/* -----------------------------------------------
   APPROACH
----------------------------------------------- */
.approach {
  background: var(--warm-white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.approach-list { margin-top: 2rem; }
.approach-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26,46,43,0.07);
  transition: padding-left 0.3s;
}
.approach-item:hover { padding-left: 0.5rem; }
.approach-num {
  font-family: var(--font-display); font-size: 1.2rem; font-style: italic;
  min-width: 24px; padding-top: 0.1rem;
}
.an-c { color: var(--coral); }
.an-a { color: var(--amber); }
.an-t { color: var(--teal); }
.approach-content h4 { font-size: 0.92rem; font-weight: 500; color: var(--forest); margin-bottom: 0.3rem; }
.approach-content p { font-size: 0.85rem; line-height: 1.7; color: var(--text-soft); }
.approach-right { padding-top: 2rem; }
.quote-block {
  border-left: 3px solid var(--amber);
  padding: 2rem 2.5rem;
  background: var(--amber-light);
  border-radius: 0 16px 16px 0;
  margin-bottom: 2rem;
}
.quote-block p {
  font-family: var(--font-display); font-size: 1.35rem; font-style: italic;
  font-weight: 300; color: var(--forest); line-height: 1.6; margin-bottom: 0.75rem;
}
.quote-block cite {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-soft); font-style: normal;
}

/* -----------------------------------------------
   GET INVOLVED
----------------------------------------------- */
.involve-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.involve-card {
  background: #fff; border-radius: 20px; padding: 2.5rem 2rem;
  border: 1px solid rgba(26,46,43,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.involve-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,46,43,0.1); }
.involve-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.5rem;
}
.ii-coral { background: var(--coral-light); }
.ii-amber { background: var(--amber-light); }
.ii-teal  { background: var(--teal-light); }
.involve-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--forest); margin-bottom: 0.75rem;
}
.involve-desc { font-size: 0.88rem; line-height: 1.8; color: var(--text-mid); flex: 1; margin-bottom: 1.75rem; }
.btn-involve-coral {
  background: var(--coral-light); color: var(--coral);
  padding: 0.7rem 1.5rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  text-decoration: none; text-align: center; display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-involve-coral:hover { background: var(--coral); color: #fff; }
.btn-involve-amber {
  background: var(--amber-light); color: #9a6500;
  padding: 0.7rem 1.5rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  text-decoration: none; text-align: center; display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-involve-amber:hover { background: var(--amber); color: #fff; }
.btn-involve-teal {
  background: var(--teal-light); color: var(--teal);
  padding: 0.7rem 1.5rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  text-decoration: none; text-align: center; display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-involve-teal:hover { background: var(--teal); color: #fff; }

/* -----------------------------------------------
   FORMS
----------------------------------------------- */
.form-section { background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-info .section-body { margin-bottom: 2rem; }
.form-info-list { list-style: none; margin-top: 0.5rem; }
.form-info-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.85rem 0; border-bottom: 1px solid rgba(26,46,43,0.07);
  font-size: 0.88rem; line-height: 1.65; color: var(--text-mid);
}
.form-info-list li:last-child { border-bottom: none; }
.fi-marker {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral); margin-top: 0.5rem; flex-shrink: 0;
}
.contact-form {
  background: #fff; border-radius: 20px; padding: 2.5rem;
  border: 1px solid rgba(26,46,43,0.06);
  box-shadow: 0 4px 24px rgba(26,46,43,0.05);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group label {
  display: block; font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid rgba(26,46,43,0.12);
  border-radius: 10px; font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.2s; outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--coral); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--coral); color: #fff;
  width: 100%; padding: 1rem;
  border: none; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: #cc4412; transform: translateY(-1px); }

/* -----------------------------------------------
   CONTACT PAGE INFO CARDS
----------------------------------------------- */
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.contact-info-card {
  background: var(--sand); border-radius: 14px; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: transform 0.2s;
}
.contact-info-card:hover { transform: translateX(4px); }
.cic-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.cic-coral { background: var(--coral-light); }
.cic-teal  { background: var(--teal-light); }
.cic-amber { background: var(--amber-light); }
.cic-label {
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 0.25rem;
}
.cic-value { font-size: 0.9rem; color: var(--text-dark); line-height: 1.6; }
.cic-value a { color: var(--coral); text-decoration: none; }
.cic-value a:hover { text-decoration: underline; }

/* -----------------------------------------------
   CTA SECTION
----------------------------------------------- */
.cta-section {
  background: var(--teal);
  padding: 6rem 4.5rem; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-section::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-section .section-tag { color: rgba(255,255,255,0.65); }
.cta-section .section-title { color: #fff; max-width: 580px; margin: 0 auto 1.25rem; }
.cta-section .section-title em { color: var(--amber); }
.cta-section .section-body { color: rgba(255,255,255,0.8); margin: 0 auto 2.75rem; }
.cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
footer {
  background: var(--sand);
  padding: 4rem 4.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  border-top: 1px solid rgba(26,46,43,0.08);
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 300;
  color: var(--forest); margin-bottom: 0.25rem;
}
.footer-brand-name span { font-style: italic; color: var(--coral); }
.footer-tagline { font-size: 0.8rem; color: var(--text-soft); margin-top: 0.75rem; line-height: 1.65; max-width: 240px; }
.footer-dots { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.fdot { width: 10px; height: 10px; border-radius: 50%; }
.footer-col h5 {
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.85rem; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  background: var(--cream);
  padding: 1.25rem 4.5rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(26,46,43,0.06);
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-soft); }

/* -----------------------------------------------
   EXECUTIVE DIRECTOR CARD (about.html)
----------------------------------------------- */
.ed-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(26,46,43,0.08);
  border-left: 4px solid #E8521A;
  box-shadow: 0 4px 32px rgba(26,46,43,0.06);
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
  max-width: 900px;
}
.ed-initials {
  background: #0E8A7A;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.ed-initials span {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
}
.ed-content { padding: 2.5rem 3rem; }
.ed-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.ed-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}
.ed-credentials {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.ed-bio {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}
.ed-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
  line-height: 1.55;
}

/* -----------------------------------------------
   SCROLL REVEAL
----------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

/* -----------------------------------------------
   RESPONSIVE
----------------------------------------------- */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column; gap: 0.75rem;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,253,249,0.98); backdrop-filter: blur(20px);
    z-index: 9999; justify-content: center; align-items: center; padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    font-size: 1.1rem; padding: 0.95rem 1rem; display: block;
    border-bottom: 1px solid rgba(26,46,43,0.06);
  }
  .nav-links li:last-child a { border-bottom: none; margin-top: 1rem; }
  .nav-cta { border-radius: 100px !important; padding: 0.75rem 2rem !important; }
  .nav-toggle { display: flex; }
  nav.menu-open .nav-toggle { display: none; }
  nav.menu-open .nav-close { display: flex; position: fixed; top: 1rem; right: 1rem; z-index: 10000; }

  .hero, .mission, .approach { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-left { padding: 5.5rem 1.5rem 2.5rem; }
  .hero-right { padding: 2rem 1.5rem 3rem; }
  section { padding: 4rem 1.5rem; }
  .stats-band { grid-template-columns: repeat(2,1fr); padding: 2rem 1.5rem; }
  .mission-visual { height: 260px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .beliefs-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1rem 1.5rem; }

  .page-hero { padding: 7rem 1.5rem 3.5rem; }
  .involve-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .program-block { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .program-block.reverse { direction: ltr; }
  .program-visual { min-height: 240px; }
  .how-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 4rem 1.5rem; }
  .ed-card { grid-template-columns: 1fr; }
  .ed-initials { min-height: 160px; }
  .ed-content { padding: 2rem 1.5rem; }
}

@media (max-width: 768px) {
  .mission {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .mission-visual,
  .mv-block,
  .mv-amber-dot {
    display: none !important;
  }
  .mission .section-title {
    font-size: clamp(1.9rem, 6.5vw, 2.2rem);
    line-height: 1.12;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .mission .section-body {
    max-width: 100%;
  }
}
