/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Playfair Display', Georgia, serif;

  /* Backgrounds */
  --bg-hero:   #FEFCF8;
  --bg-white:  #FFFFFF;
  --bg-warm:   #FFF7EF;
  --bg-cream:  #FFF3E6;

  /* Brand palette */
  --red:        #8eb6dc;
  --red-dark:   #AE2E1C;
  --red-tint:   #FFF0EE;
  --amber:      #F0A020;
  --amber-dark: #C8860A;
  --amber-tint: #FEF5E0;
  --teal:       #2A7B6F;
  --teal-tint:  #E6F5F3;
  --rose:       #C44B6A;
  --rose-tint:  #FBE8EF;

  /* Text */
  --text:      #1C1008;
  --text-mid:  #5A4840;
  --text-soft: #A08878;

  /* Borders & shadows */
  --border:    #EAD5CA;
  --border-lg: #DFC8BC;
  --sh-xs: 0 1px 4px rgba(100,50,30,0.06);
  --sh-sm: 0 2px 10px rgba(100,50,30,0.08);
  --sh-md: 0 6px 24px rgba(100,50,30,0.1);
  --sh-lg: 0 12px 48px rgba(100,50,30,0.12);
  --sh-xl: 0 24px 72px rgba(100,50,30,0.14);

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.3s;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== SECTION TYPOGRAPHY ===== */
.sec-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.sec-tag.light { color: rgba(255,255,255,0.65); }

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}
.sec-title em { font-style: italic; color: var(--red); }

.sec-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.75;
}

.sec-header { margin-bottom: 52px; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur);
  white-space: nowrap;
}
.btn.full { width: 100%; }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,68,46,0.28);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,68,46,0.38);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border-lg);
}
.btn-outline-dark:hover {
  border-color: var(--text);
  background: rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--red);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* ===== LANGUAGE TOGGLE ===== */
.nav-end {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1.5px solid var(--border-lg);
  border-radius: var(--r-full);
  padding: 7px 13px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--text-mid);
  transition: border-color var(--dur) var(--ease);
  flex-shrink: 0;
}
.lang-btn:hover  { border-color: var(--red); }
.lb-active       { color: var(--red); }
.lb-sep          { color: var(--border-lg); font-weight: 300; margin: 0 1px; }
.lb-inactive     { color: var(--text-soft); }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: padding var(--dur) var(--ease), background var(--dur), box-shadow var(--dur);
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(254,252,248,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(100,50,30,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 140px;
  width: auto;
  display: block;
}
.logo-img-footer {
  height: 140px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--r-full);
  transition: color var(--dur), background var(--dur);
}
.nav-link:hover {
  color: var(--text);
  background: rgba(0,0,0,0.05);
}
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 10px 22px;
  box-shadow: 0 2px 8px rgba(212,68,46,0.25);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  box-shadow: 0 4px 14px rgba(212,68,46,0.35) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.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 ===== */
.hero {
  position: relative;
  background: var(--bg-hero);
  overflow: hidden;
  padding: 0;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hbs {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}
.hbs-1 {
  width: 500px; height: 500px;
  top: -120px; left: -80px;
  background: rgba(240,160,32,0.13);
}
.hbs-2 {
  width: 420px; height: 420px;
  top: 100px; right: -100px;
  background: rgba(212,68,46,0.08);
}
.hbs-3 {
  width: 300px; height: 300px;
  bottom: -60px; left: 40%;
  background: rgba(42,123,111,0.07);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 100vh;
  padding-top: 88px;
  padding-bottom: 60px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  background: var(--amber-tint);
  border: 1.5px solid rgba(240,160,32,0.3);
  color: var(--amber-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* hero visual */
.hero-visual { position: relative; }
.hv-wrap { position: relative; border-radius: var(--r-xl); overflow: visible; }
.hv-photo {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  display: block;
}
.hv-accent {
  position: absolute;
  top: 28px; right: -20px; bottom: -20px; left: 28px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--amber-tint), var(--red-tint));
  z-index: -1;
  border: 2px dashed rgba(240,160,32,0.35);
}

.hv-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}
.hv-card-top  { top: 28px; right: -24px; min-width: 130px; }
.hv-card-bottom { bottom: 36px; left: -24px; }
.hvc-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.hvc-num-sm { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.hvc-label  { font-size: 0.75rem; color: var(--text-soft); margin-top: 2px; font-weight: 500; }
.hvc-lang   { display: flex; align-items: center; gap: 12px; }
.lang-flag  { font-size: 1.4rem; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.si-n {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.si-l {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
  font-weight: 600;
}
.stat-divider { width: 1px; height: 40px; background: var(--border-lg); flex-shrink: 0; }

/* ===== VALUES ===== */
.values-section { padding: 100px 0; background: var(--bg-warm); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.vcard {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 22px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur), border-color var(--dur);
  cursor: default;
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(212,68,46,0.3); }
.vcard-letter {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
}
.vcard h3 { font-family: var(--font-head); font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.vcard p  { font-size: 0.82rem; color: var(--text-soft); line-height: 1.65; }

/* ===== ABOUT ===== */
.about-section { padding: 120px 0; background: var(--bg-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-stack { position: relative; padding-bottom: 36px; }
.about-img-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); line-height: 0; }
.about-photo { width: 100%; height: 420px; object-fit: cover; display: block; border-radius: var(--r-xl); }

.about-float-card {
  position: absolute;
  bottom: 0; right: -28px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  max-width: 260px;
  box-shadow: var(--sh-lg);
}
.afc-quote {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--red);
  opacity: 0.4;
  line-height: 0.9;
  margin-bottom: 6px;
}
.about-float-card p    { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; font-style: italic; margin-bottom: 8px; }
.about-float-card cite { font-size: 0.75rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; font-style: normal; }

.about-img-badge {
  position: absolute;
  top: 20px; left: -20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  box-shadow: var(--sh-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.about-img-badge svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }

.about-content { padding: 8px 0; }
.about-text { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1.5px solid var(--border);
}
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--red-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.pillar-icon svg { width: 19px; height: 19px; }
.pillar h4 { font-size: 0.93rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.pillar p  { font-size: 0.84rem; color: var(--text-mid); line-height: 1.55; }

/* ===== SERVICES ===== */
.services-section { padding: 120px 0; background: var(--bg-warm); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 38px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  opacity: 0;
  transition: opacity var(--dur);
}
.svc-card:nth-child(1)::before { background: var(--red); }
.svc-card:nth-child(2)::before { background: var(--amber); }
.svc-card:nth-child(3)::before { background: var(--teal); }
.svc-card:nth-child(4)::before { background: var(--rose); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.svc-card:hover::before { opacity: 1; }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-icon.red   { background: var(--red-tint);   color: var(--red); }
.svc-icon.amber { background: var(--amber-tint);  color: var(--amber-dark); }
.svc-icon.teal  { background: var(--teal-tint);   color: var(--teal); }
.svc-icon.rose  { background: var(--rose-tint);   color: var(--rose); }

.svc-card h3 { font-family: var(--font-head); font-size: 1.25rem; color: var(--text); margin-bottom: 10px; }
.svc-card p  { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.svc-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--dur);
}
.svc-link:hover { gap: 10px; }

/* ===== TEAM ===== */
.team-section { padding: 120px 0; background: var(--bg-white); }

.team-featured {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px;
  margin-bottom: 24px;
  box-shadow: var(--sh-md);
}
.tf-photo-wrap {
  flex-shrink: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--bg-white);
  box-shadow: var(--sh-md);
}
.tf-photo { width: 100%; height: 100%; object-fit: cover; }
.tf-content { flex: 1; }
.tf-role {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 6px;
}
.tf-content h3 { font-family: var(--font-head); font-size: 1.65rem; color: var(--text); margin-bottom: 10px; }
.tf-bio { font-size: 0.97rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; max-width: 540px; }
.tf-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.tf-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--dur);
}
.tf-contact a:hover { color: var(--red); }
.tf-contact svg { width: 15px; height: 15px; flex-shrink: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.team-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.tc-photo-wrap {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2.5px var(--border), var(--sh-sm);
}
.tc-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h4 { font-family: var(--font-head); font-size: 1rem; color: var(--text); margin-bottom: 5px; }
.tc-role { font-size: 0.76rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.07em; }

.volunteers-wrap {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 36px;
}
.volunteers-wrap h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--text); margin-bottom: 16px; }
.volunteers-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.volunteers-chips span {
  padding: 7px 16px;
  border-radius: var(--r-full);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ===== RESOURCES ===== */
.resources-section { padding: 120px 0; background: var(--bg-warm); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.res-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.res-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.res-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--red-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  margin-bottom: 18px;
}
.res-icon svg { width: 22px; height: 22px; }
.res-card h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }
.res-card p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.res-link {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: opacity var(--dur);
}
.res-link:hover { opacity: 0.7; }

/* ===== EVENTS ===== */
.events-section { padding: 120px 0; background: var(--bg-white); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.event-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.event-month {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-body { flex: 1; }
.event-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-tint);
  border-radius: 99px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.event-title { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }
.event-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }

/* ===== DONATE ===== */
.donate-section { padding: 100px 0; background: var(--red); position: relative; overflow: hidden; }
.donate-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(240,160,32,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.donate-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r-xl);
  padding: 60px;
  backdrop-filter: blur(4px);
}
.donate-content { max-width: 460px; }
.donate-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.donate-content p { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 32px; }
.donate-visual { position: relative; overflow: visible; }
.donate-img-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); }
.donate-img { width: 100%; height: 300px; object-fit: cover; display: block; }
.donate-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 20px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}
.donate-badge-top    { top: 20px; right: -20px; min-width: 130px; }
.donate-badge-bottom { bottom: 28px; left: -20px; }

.donate-venmo {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 20px;
}
.dvn-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.dvn-handle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.dvn-qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  width: 72px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  text-align: center;
}
.dvn-qr-placeholder svg { width: 44px; height: 44px; opacity: 0.5; }

/* ===== CONTACT ===== */
.contact-section { padding: 120px 0; background: var(--bg-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { position: sticky; top: 100px; }
.contact-intro { font-size: 1rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--red-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.ci-icon svg { width: 19px; height: 19px; }
.ci-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-soft); margin-bottom: 3px; }
.contact-item a { font-size: 0.96rem; font-weight: 600; color: var(--text); text-decoration: none; transition: color var(--dur); }
.contact-item a:hover { color: var(--red); }
.contact-item p { font-size: 0.96rem; font-weight: 600; color: var(--text); }

.contact-form-col .contact-form {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 0.84rem; font-weight: 700; color: var(--text); }
.opt { font-weight: 400; color: var(--text-soft); font-size: 0.8rem; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border-lg);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text);
  background: var(--bg-white);
  transition: border-color var(--dur), box-shadow var(--dur);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,68,46,0.1);
}
.fg textarea { resize: vertical; min-height: 110px; }
.fg select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a08878' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-note  { font-size: 0.78rem; color: var(--text-soft); text-align: center; margin-top: 4px; }
.form-error { font-size: 0.82rem; color: #b71c1c; text-align: center; margin-top: 8px; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 32px;
  text-align: center;
}
.form-success[hidden] { display: none; }
.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.form-success p { font-size: 1rem; color: var(--text-mid); line-height: 1.6; max-width: 320px; }

/* ===== FOOTER ===== */
.footer { background: #1C1008; padding: 80px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-logo { margin-bottom: 12px; display: inline-flex; }
.footer-tagline { font-size: 0.77rem; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; margin-bottom: 12px; }
.footer-note { font-size: 0.87rem; color: rgba(255,255,255,0.42); line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.52); text-decoration: none; transition: color var(--dur); }
.footer-col a:hover { color: #fff; }
.footer-link { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.52); text-decoration: none; transition: color var(--dur); margin-bottom: 6px; }
.footer-link:hover { color: #fff; }
.footer-link-text { font-size: 0.88rem; color: rgba(255,255,255,0.52); margin-bottom: 6px; }
.footer-donate-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 22px;
  border-radius: var(--r-full);
  background: var(--red);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--dur);
}
.footer-donate-btn:hover { background: var(--red-dark); }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { color: rgba(255,255,255,0.4); transition: color var(--dur); display: flex; }
.footer-social a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.22); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hv-card-top { right: -10px; }
  .hv-card-bottom { left: -10px; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; padding-bottom: 60px; gap: 48px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hv-photo { height: 380px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-float-card { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .donate-inner { grid-template-columns: 1fr; gap: 40px; padding: 44px 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .contact-info { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .lang-btn { padding: 6px 10px; font-size: 0.72rem; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 280px;
    background: var(--bg-white);
    border-left: 1.5px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 32px;
    gap: 4px;
    list-style: none;
    transition: right var(--dur) var(--ease);
    box-shadow: -10px 0 40px rgba(100,50,30,0.1);
    z-index: 150;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 12px 16px; width: 100%; color: var(--text); }
  .nav-cta { width: 100%; text-align: center; margin-top: 8px; }
  .team-featured { flex-direction: column; gap: 24px; padding: 36px 28px; }
  .resources-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 28px; }
  .stat-divider { display: none; }
  .about-img-badge { left: 12px; }
  .hv-accent { display: none; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .hv-card-top, .hv-card-bottom, .donate-badge { display: none; }
  .donate-inner { padding: 32px 24px; }
  .contact-form-col .contact-form { padding: 28px 24px; }
  .volunteers-wrap { padding: 24px 20px; }
}
