/* ===========================
   ASSET COMMUNITY — STYLESHEET
   =========================== */

:root {
  --navy:   #1B3A6B;
  --green:  #00A850;
  --purple: #7B3FA0;
  --orange: #F47920;
  --pink:   #E5007E;
  --mint:   #4DC8A0;

  --navy-dark:  #122a52;
  --bg-light:   #f8f9fb;
  --white:      #ffffff;
  --text:       #1a1a2e;
  --text-mid:   #4a4a6a;
  --border:     #e2e6ef;

  --font-display: 'Nunito', sans-serif;
  --font-body:    'Lora', serif;

  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 8px 48px rgba(27,58,107,0.16);

  --max-w: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
}

/* ---- UTILITY ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.mt-40 { margin-top: 2.5rem; }
.mt-1 { margin-top: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 2.5rem;
  text-align: center;
}

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 800; color: var(--navy); line-height: 1.2; }

em { font-family: var(--font-body); font-style: italic; color: var(--pink); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  line-height: 1;
}
.btn-primary   { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,58,107,0.3); }
.btn-accent    { background: var(--orange); color: var(--white); }
.btn-accent:hover { background: #d96810; transform: translateY(-2px); }
.btn-outline   { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white     { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: white; }
.btn-full { width: 100%; text-align: center; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.nav-logo img { height: 52px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--bg-light); }
.nav-links .btn-accent { color: white !important; background: var(--orange); }
.nav-links .btn-accent:hover { background: #d96810; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2244 100%);
  padding: 6rem 0 5rem;
  overflow: hidden;
  color: white;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.shape-1 { width: 500px; height: 500px; background: var(--green); top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--orange); bottom: -100px; left: 10%; }
.shape-3 { width: 200px; height: 200px; background: var(--pink); top: 20%; left: -80px; }

.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--mint); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-wave { margin-top: 3rem; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2244 100%);
  padding: 5rem 0 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.08;
  top: -150px; right: -100px;
}
.page-hero-inner { max-width: 700px; position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero h1 em { color: var(--mint); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.page-hero .section-label { color: rgba(255,255,255,0.6); }

/* ---- PILLARS ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.pillar-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--navy); }
.pillar-card p { color: var(--text-mid); font-size: 0.97rem; }

/* ---- ABOUT STRIP ---- */
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-strip-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.25rem; }
.about-strip-text p { color: var(--text-mid); margin-bottom: 1rem; }
.about-strip-text .btn { margin-top: 0.5rem; }

.about-strip-visual { display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--c);
  box-shadow: var(--shadow);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.88rem; color: var(--text-mid); }

/* ---- PROJECTS GRID ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.project-card:hover { transform: translateY(-4px); }
.project-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.project-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.project-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1rem; }
.card-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}
.card-link:hover { color: var(--orange); }

/* ---- PROJECTS FULL PAGE ---- */
.project-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.project-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pfc-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pfc-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.pfc-icon { font-size: 2.5rem; }
.pfc-body { padding: 1.75rem; }
.pfc-body h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.pfc-body p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 1.25rem; }
.pfc-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.pfc-features li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.pfc-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.pfc-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot.active { background: var(--green); box-shadow: 0 0 0 3px rgba(0,168,80,0.2); }
.status-dot.building { background: var(--orange); box-shadow: 0 0 0 3px rgba(244,121,32,0.2); }

/* ---- NEWS ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.news-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.news-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  background: linear-gradient(135deg, var(--navy), #0d2244);
  color: white;
}
.news-card.featured h3, .news-card.featured p { color: white; }
.news-card.featured .card-link { color: var(--mint); }
.news-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; }
.news-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: var(--orange);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}
.news-date { font-family: var(--font-display); font-size: 0.82rem; color: var(--text-mid); font-weight: 600; }
.news-card.featured .news-date { color: rgba(255,255,255,0.6); }
.news-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.news-card p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 1rem; }

/* Blog full page */
.blog-card-featured {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  background: linear-gradient(135deg, var(--navy), #0d2244);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  color: white;
  align-items: center;
}
.blog-featured-content h2 { color: white; font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 1rem; }
.blog-featured-content p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.blog-featured-badge {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.featured-badge-inner {
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card-top h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.blog-card-top p { color: var(--text-mid); font-size: 0.91rem; margin-bottom: 1rem; }

/* ---- DONATE CTA ---- */
.donate-cta {
  background: linear-gradient(135deg, var(--pink), #b0006a);
  padding: 5rem 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donate-cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.d-shape { position: absolute; border-radius: 50%; opacity: 0.15; }
.d-shape-1 { width: 400px; height: 400px; background: white; top: -200px; right: -100px; }
.d-shape-2 { width: 250px; height: 250px; background: var(--orange); bottom: -100px; left: 5%; }
.donate-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.donate-cta h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.donate-cta p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.donate-hero { background: linear-gradient(135deg, #b0006a, var(--pink)); }

/* ---- ABOUT PAGE ---- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.vm-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.vm-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mid); margin-bottom: 0.75rem; }
.vm-statement { font-size: 1.08rem; color: var(--navy); line-height: 1.7; }

.about-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: start; }
.about-body-text h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin-bottom: 1.25rem; }
.about-body-text p { color: var(--text-mid); margin-bottom: 1rem; }
.highlight-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--hc);
}
.highlight-box h4 { margin-bottom: 0.75rem; }
.highlight-box p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 0.75rem; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.why-block { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.why-block h3 { margin-bottom: 0.75rem; }
.why-block p { color: var(--text-mid); font-size: 0.93rem; }

.approach-steps { display: flex; flex-direction: column; gap: 1.5rem; max-width: 780px; margin: 0 auto; }
.approach-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
  min-width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 0.5rem; }
.step-content p { color: var(--text-mid); font-size: 0.95rem; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--text-mid); margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-mid); margin-top: 0.5rem; }
.form-success { text-align: center; padding: 2rem; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-info-card h3 { margin-bottom: 1.25rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-family: var(--font-display); font-size: 0.85rem; color: var(--navy); }
.contact-detail a, .contact-detail p { color: var(--text-mid); font-size: 0.93rem; text-decoration: none; }
.contact-detail a:hover { color: var(--navy); }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.who-list li { font-size: 0.93rem; color: var(--text-mid); }

/* ---- DONATE PAGE ---- */
.donate-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.donate-form-wrap h2 { margin-bottom: 0.5rem; }
.donate-form-wrap > p { color: var(--text-mid); margin-bottom: 2rem; }
.donate-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.amount-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-mid);
}
.amount-btn:hover, .amount-btn.active { border-color: var(--navy); background: var(--navy); color: white; }
.amount-custom { grid-column: 1 / -1; }
.amount-custom label { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 0.4rem; }
.custom-input-wrap { display: flex; align-items: center; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.custom-input-wrap span { padding: 0.75rem 1rem; background: var(--bg-light); font-family: var(--font-display); font-weight: 800; color: var(--navy); border-right: 2px solid var(--border); }
.custom-input-wrap input { border: none; outline: none; padding: 0.75rem 1rem; font-family: var(--font-body); font-size: 1rem; flex: 1; }
.donate-frequency { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; background: var(--bg-light); border-radius: var(--radius); padding: 4px; }
.freq-btn {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius) - 4px);
  padding: 0.6rem 1rem;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.2s;
}
.freq-btn.active { background: var(--white); color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.donate-notice {
  background: #fffbf0;
  border: 1px solid #ffe082;
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.notice-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.donate-notice strong { display: block; font-family: var(--font-display); font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--navy); }
.donate-notice p { font-size: 0.88rem; color: var(--text-mid); }
.donate-notice a { color: var(--navy); }

.donate-info { display: flex; flex-direction: column; gap: 1.5rem; }
.donate-why-card { background: var(--navy); border-radius: var(--radius); padding: 2rem; }
.donate-why-card h3 { color: white; margin-bottom: 0.75rem; }
.donate-why-card p { color: rgba(255,255,255,0.8); font-size: 0.93rem; }
.donate-assurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.assurance-item { background: var(--white); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 0.5rem; }
.assurance-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.assurance-item strong { font-family: var(--font-display); font-size: 0.82rem; color: var(--navy); display: block; }
.assurance-item p { font-size: 0.8rem; color: var(--text-mid); }
.other-ways-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.other-ways-card h3 { margin-bottom: 1.25rem; }
.other-way { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.other-way:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.other-way strong { font-family: var(--font-display); font-size: 0.9rem; display: block; margin-bottom: 0.25rem; color: var(--navy); }
.other-way p { font-size: 0.88rem; color: var(--text-mid); }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy-dark); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 55px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; max-width: 280px; }
.footer-links h4, .footer-contact h4 { color: white; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; padding: 0.3rem 0; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.25rem; }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.78rem; text-align: center; font-family: var(--font-display); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge, .hero h1, .hero-sub, .hero-cta { animation: fadeUp 0.7s ease both; }
.hero-badge { animation-delay: 0.1s; }
.hero h1    { animation-delay: 0.25s; }
.hero-sub   { animation-delay: 0.4s; }
.hero-cta   { animation-delay: 0.55s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-strip-inner, .vm-grid, .about-body { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid, .donate-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .news-card.featured { grid-template-columns: 1fr; }
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-featured-badge { display: none; }
  .donate-assurance-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 1rem 1.5rem; box-shadow: var(--shadow); gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 1rem; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-cta { flex-direction: column; }
  .section { padding: 3rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .donate-amounts { grid-template-columns: repeat(2, 1fr); }
}

/* RTO disclosure note */
.rto-note {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.rto-note a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.rto-note a:hover { color: var(--orange); }

/* Form error state */
.form-error {
  text-align: center;
  padding: 2rem;
  background: #fff5f5;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  margin-top: 1rem;
}
.form-error h3 { color: #dc2626; margin-bottom: 0.5rem; }
.form-error p { color: var(--text-mid); font-size: 0.93rem; }
.form-error a { color: var(--navy); }
