/* =====================================================
   CHERRYFIELDS CHILDREN'S HOME — MAIN STYLESHEET
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --cherry: #C0392B;
  --cherry-dark: #96281B;
  --cherry-light: #E74C3C;
  --gold: #D4A843;
  --gold-light: #F0C96A;
  --cream: #FDF8F2;
  --warm-white: #FFFCF8;
  --charcoal: #1C1C1C;
  --slate: #4A4A4A;
  --muted: #7A7A7A;
  --border: #E8DDD0;
  --green: #27AE60;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TOPBAR ── */
.topbar {
  background: var(--charcoal);
  color: #ccc;
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-contact { display: flex; gap: 24px; align-items: center; }
.topbar-contact a { color: #ccc; display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.topbar-contact a:hover { color: var(--gold); }
.topbar-social { display: flex; gap: 10px; }
.topbar-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 0.75rem;
  transition: background var(--transition), color var(--transition);
}
.topbar-social a:hover { background: var(--cherry); color: #fff; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,252,248,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo img { height: 52px; width: auto; border-radius: 8px; }
.navbar-logo-text { display: flex; flex-direction: column; }
.navbar-logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}
.navbar-logo-text .tagline { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--cherry); background: rgba(192,57,43,0.06); }
.nav-link .chevron { font-size: 0.65rem; transition: transform var(--transition); }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 999;
  overflow: hidden;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 0.875rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--cream); color: var(--cherry); padding-left: 24px; }

.nav-donate {
  margin-left: 12px;
  background: var(--cherry);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 4px 15px rgba(192,57,43,0.35) !important;
}
.nav-donate:hover { background: var(--cherry-dark) !important; transform: translateY(-1px) !important; box-shadow: 0 6px 20px rgba(192,57,43,0.45) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 10px 14px; border-radius: 8px; color: var(--slate); font-weight: 500; transition: all var(--transition); }
.mobile-nav a:hover { background: var(--cream); color: var(--cherry); }
.mobile-nav .mobile-sub { padding-left: 28px; font-size: 0.875rem; color: var(--muted); }
.mobile-nav .mobile-group-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding: 12px 14px 4px; font-weight: 600; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d1a16 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  position: relative;
  margin-bottom: 12px;
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.875rem; position: relative; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary { background: var(--cherry); color: #fff; box-shadow: 0 4px 15px rgba(192,57,43,0.3); }
.btn-primary:hover { background: var(--cherry-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(192,57,43,0.4); }
.btn-secondary { background: #fff; color: var(--cherry); border: 2px solid var(--cherry); }
.btn-secondary:hover { background: var(--cherry); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 15px rgba(212,168,67,0.35); }
.btn-gold:hover { background: #b8912e; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: #fff; color: var(--cherry); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-sm { padding: 56px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 860px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cherry);
  margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; height: 1px; width: 30px; background: var(--cherry);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title em { color: var(--cherry); font-style: italic; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { justify-content: center; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(28,28,28,0.82) 0%, rgba(96,28,20,0.65) 60%, rgba(28,28,28,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,67,0.2); border: 1px solid rgba(212,168,67,0.4);
  color: var(--gold-light); padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  margin-bottom: 24px; backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #fff; line-height: 1.15;
  margin-bottom: 24px; max-width: 680px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem; max-width: 520px;
  margin-bottom: 40px; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: all var(--transition);
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── URGENCY BANNER ── */
.urgency-banner {
  background: linear-gradient(90deg, var(--cherry) 0%, var(--cherry-dark) 100%);
  color: #fff; padding: 20px 24px;
}
.urgency-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.urgency-text { display: flex; align-items: center; gap: 14px; }
.urgency-icon { font-size: 1.5rem; }
.urgency-text h3 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.urgency-text p { font-size: 0.875rem; opacity: 0.9; }
.progress-bar-wrap { flex: 1; min-width: 200px; max-width: 320px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.78rem; margin-bottom: 6px; opacity: 0.9; }
.progress-bar { background: rgba(255,255,255,0.25); border-radius: 50px; height: 8px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 50px; width: 35%; animation: fillBar 2s ease 0.5s both; }
@keyframes fillBar { from { width: 0; } to { width: 35%; } }

/* ── STATS ── */
.stats-row {
  background: var(--charcoal);
  padding: 40px 24px;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }

/* ── ABOUT (homepage) ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-stack { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold);
  border-radius: var(--radius); padding: 20px 24px;
  text-align: center; box-shadow: var(--shadow-md);
}
.about-img-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #fff; }
.about-img-badge .label { font-size: 0.78rem; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.06em; }
.about-content { padding-top: 16px; }
.about-content p { color: var(--slate); margin-bottom: 20px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-point {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--cream);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.about-point-icon { font-size: 1.2rem; flex-shrink: 0; }
.about-point p { font-size: 0.875rem; color: var(--slate); margin: 0; line-height: 1.5; }

/* ── MISSION CARDS ── */
.mission-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.mission-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.mission-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--cherry);
  transform: scaleX(0); transition: transform var(--transition);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mission-card:hover::before { transform: scaleX(1); }
.mission-icon { font-size: 2rem; margin-bottom: 16px; }
.mission-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 10px; }
.mission-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── WAYS TO HELP ── */
.ways-bg { background: var(--cream); }
.ways-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.way-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.way-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.way-card-img { height: 220px; overflow: hidden; position: relative; }
.way-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.way-card:hover .way-card-img img { transform: scale(1.06); }
.way-card-body { padding: 28px; }
.way-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 10px; }
.way-card-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

/* ── APPEAL / CTA ── */
.appeal-section {
  background: linear-gradient(135deg, #1C1C1C 0%, #3d1a16 100%);
  color: #fff; position: relative; overflow: hidden;
}
.appeal-section::before {
  content: '☀';
  position: absolute; right: -40px; top: -40px;
  font-size: 280px; opacity: 0.03; line-height: 1;
}
.appeal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.appeal-content .section-label { color: var(--gold-light); }
.appeal-content .section-label::before,
.appeal-content .section-label::after { background: var(--gold-light); }
.appeal-content .section-title { color: #fff; }
.appeal-content p { color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.appeal-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.appeal-img img { width: 100%; height: 420px; object-fit: cover; }
.solar-goal {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 20px 24px; margin: 24px 0;
}
.solar-goal .goal-top { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.solar-goal .goal-amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); }
.solar-goal .bar { background: rgba(255,255,255,0.15); height: 10px; border-radius: 50px; overflow: hidden; }
.solar-goal .bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 50px; width: 35%; animation: fillBar 2s ease 0.5s both; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 0.85rem; font-weight: 500; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem; cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--cherry); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 1.5rem; cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.12);
  transition: background var(--transition);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--cherry); }

/* ── VIDEOS ── */
.videos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.video-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
.video-card video { width: 100%; display: block; }
.video-caption { background: var(--charcoal); color: rgba(255,255,255,0.8); padding: 14px 16px; font-size: 0.875rem; }

/* ── DONATIONS ── */
.donation-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.donation-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.donation-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.donation-card-header {
  background: linear-gradient(135deg, var(--cherry), var(--cherry-dark));
  color: #fff; padding: 28px; text-align: center;
}
.donation-card-header.intl { background: linear-gradient(135deg, #2c3e50, #1a252f); }
.donation-card-header.annual { background: linear-gradient(135deg, #1a6b4a, #145a3c); }
.donation-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 6px; }
.donation-card-header p { opacity: 0.85; font-size: 0.875rem; }
.donation-card-body { padding: 24px; }
.donation-amounts { display: flex; flex-direction: column; gap: 10px; }
.donation-amount {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); transition: all var(--transition);
  font-weight: 600; font-size: 0.95rem;
}
.donation-amount:hover { border-color: var(--cherry); background: rgba(192,57,43,0.04); }
.donation-amount a {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; color: var(--charcoal);
}
.donation-amount a:hover { color: var(--cherry); }
.donation-amount .arrow { color: var(--cherry); font-size: 0.8rem; }

/* ── SPONSOR ── */
.sponsor-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.sponsor-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.sponsor-img img { width: 100%; height: 480px; object-fit: cover; }
.sponsor-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.sponsor-info p { color: var(--slate); margin-bottom: 16px; line-height: 1.75; }
.sponsor-contact {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  margin-top: 24px;
}
.sponsor-contact a { color: var(--cherry); font-weight: 600; }

/* ── VOLUNTEER ── */
.volunteer-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.role-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition);
}
.role-card:hover { border-color: var(--cherry); background: #fff; box-shadow: var(--shadow-sm); }
.role-icon { font-size: 1.8rem; margin-bottom: 12px; }
.role-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; color: var(--charcoal); }
.role-card p { font-size: 0.9rem; color: var(--slate); line-height: 1.65; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 20px; }
.contact-info p { color: var(--slate); margin-bottom: 28px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon { font-size: 1.1rem; color: var(--cherry); flex-shrink: 0; margin-top: 2px; }
.contact-detail-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 2px; }
.contact-detail-text a { color: var(--charcoal); }
.contact-detail-text a:hover { color: var(--cherry); }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--slate); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius); font-family: inherit;
  font-size: 0.9rem; color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--cherry); box-shadow: 0 0 0 3px rgba(192,57,43,0.12); background: #fff; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-status { margin-top: 12px; font-size: 0.9rem; font-weight: 600; }

/* ── ABORTION NOTICE ── */
.abortion-notice {
  background: linear-gradient(135deg, #1a6b4a 0%, #145a3c 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 40px;
  text-align: center; margin-top: 40px;
}
.abortion-notice h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 12px; }
.abortion-notice p { opacity: 0.9; margin-bottom: 24px; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--cream); border-top: 1px solid var(--border); }
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.newsletter-text h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 6px; }
.newsletter-text p { color: var(--muted); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 12px 20px; border: 1px solid var(--border);
  border-radius: 50px; font-family: inherit; font-size: 0.9rem;
  outline: none; min-width: 240px;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--cherry); }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 64px 24px 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 56px; width: auto; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--cherry); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.875rem; }
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ── MISSION PAGE ── */
.objectives-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 40px;
}
.objective-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: var(--cream);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.objective-item:hover { border-color: var(--cherry); }
.objective-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cherry); color: #fff;
  font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.objective-item p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }

/* ── EVENTS ── */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.event-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-img { height: 180px; overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; }
.event-body { padding: 20px; }
.event-date {
  display: inline-block; background: var(--cherry);
  color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.event-body h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 8px; }
.event-body p { font-size: 0.875rem; color: var(--muted); }

/* ── NEWS ── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.news-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-img { height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 22px; }
.news-tag { font-size: 0.75rem; font-weight: 700; color: var(--cherry); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.news-body h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cherry); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; transform: translateY(16px);
  transition: all var(--transition); z-index: 999;
  font-size: 1rem;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--cherry-dark); transform: translateY(-2px); }

/* ── PAGE SPECIFIC ── */
.page-wrap { min-height: 60vh; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid, .appeal-grid, .sponsor-content, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { right: 0; }
  .mission-cards, .ways-grid, .donation-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 16px; }
  .mission-cards, .ways-grid, .donation-grid, .volunteer-roles, .objectives-grid, .videos-grid, .events-grid, .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-contact { font-size: 0.75rem; gap: 12px; }
  .urgency-inner { flex-direction: column; text-align: center; }
  .progress-bar-wrap { max-width: 100%; }
  .about-points { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .hero h1 { font-size: 2rem; }
  .topbar { display: none; }
}
