/* ============================================================
   TESS Care — Save the Children-inspired Design
   Brand Colours: Red #ec2029 · Orange #f69522 · Maroon #71030e · Black #231f20
   ============================================================ */

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

:root {
  --red:       #ec2029;
  --red-dark:  #c9191f;
  --orange:    #f69522;
  --maroon:    #71030e;
  --black:     #231f20;
  --white:     #ffffff;
  --off-white: #f7f5f5;
  --light-red: rgba(236,32,41,0.07);
  --text:      #231f20;
  --muted:     #6b5f5f;
  --border:    #e8e0e0;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-full: 9999px;
  --trans: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

img { display: block; max-width: 100%; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; color: var(--black); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; }

h2 em, h1 em { font-style: normal; color: var(--red); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.eyebrow-light { color: var(--orange); }

.section-head { margin-bottom: 56px; }
.section-head-center { text-align: center; }

.h2-light { color: var(--white); }

/* ── Buttons ── */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--trans);
  font-family: var(--font);
  white-space: nowrap;
}

.pill-btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.pill-btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(236,32,41,0.3);
}

.pill-btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.pill-btn-dark:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  transform: translateY(-1px);
}

.pill-btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.pill-btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.pill-btn-full { width: 100%; justify-content: center; }

/* ── Arrow link ── */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  margin-top: 12px;
  transition: gap var(--trans);
}
.arrow-link:hover { gap: 10px; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}

#header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  /* Invert to white for dark footer background */
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--trans), background var(--trans);
}
.main-nav a:hover { color: var(--red); background: var(--light-red); }

.header-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }

.lang-switcher { display: flex; gap: 4px; }
.lang-switcher button {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: 0.05em;
}
.lang-switcher button:hover, .lang-switcher .lang-active {
  color: var(--red);
  background: var(--light-red);
}

.btn-donate {
  background: var(--red);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: var(--trans);
  flex-shrink: 0;
}
.btn-donate:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 14px rgba(236,32,41,0.3);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--trans);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, #231f20 0%, #71030e 45%, #3a0a0a 100%);
  /* Replace with a real image: background-image: url('hero.jpg'); background-size: cover; background-position: center; */
  position: relative;
}

/* Decorative geometric shapes to create visual interest without a photo */
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(246,149,34,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 30%, rgba(236,32,41,0.15) 0%, transparent 50%);
}

.hero-image::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: url("data:image/svg+xml,%3Csvg width='400' height='600' viewBox='0 0 400 600' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='300' cy='150' r='200' fill='rgba(236,32,41,0.06)'/%3E%3Ccircle cx='350' cy='400' r='150' fill='rgba(246,149,34,0.05)'/%3E%3Ccircle cx='100' cy='500' r='180' fill='rgba(113,3,14,0.07)'/%3E%3C/svg%3E") no-repeat center center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(35,31,32,0.85) 50%, rgba(35,31,32,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-text { max-width: 620px; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 20px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-text h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0 24px;
}

.ticker-dot { color: rgba(255,255,255,0.5) !important; padding: 0 4px !important; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   MISSION STRIP
   ============================================================ */
.mission-strip {
  padding: 96px 0;
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-text h2 { margin-bottom: 20px; }
.mission-text p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-size: 1rem; }
.mission-text .pill-btn { margin-top: 12px; }

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.m-stat {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.m-stat strong {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.m-stat strong span { font-size: 1.8rem; }

.m-stat > span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-section {
  padding: 96px 0;
  background: var(--off-white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.prog-card {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}

.prog-card:hover { background: var(--off-white); }

.prog-card-red {
  background: var(--red);
}
.prog-card-red:hover { background: var(--red-dark); }
.prog-card-red h3 { color: var(--white); }
.prog-card-red p { color: rgba(255,255,255,0.8); }
.prog-card-red .arrow-link { color: var(--orange); }

.prog-icon { font-size: 1.8rem; margin-bottom: 16px; }
.prog-card h3 { margin-bottom: 10px; }
.prog-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; flex: 1; }

/* ============================================================
   FEATURED PROJECT
   ============================================================ */
.feature-section {
  padding: 96px 0;
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feature-image-col { position: relative; }

.feature-image {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(145deg, var(--maroon) 0%, var(--black) 100%);
  position: relative;
}

/* Decorative pattern overlay */
.feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, rgba(246,149,34,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(236,32,41,0.2) 0%, transparent 40%);
}

.feature-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--orange);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
}

.feature-text-col h2 { margin-bottom: 20px; }
.feature-text-col p { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }

.feature-bullets {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--off-white);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--red);
}

.f-bullet-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.4; }
.f-bullet strong { display: block; font-size: 0.9rem; color: var(--black); margin-bottom: 2px; }
.f-bullet em { font-style: normal; font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   GALLERY SLIDESHOW
   ============================================================ */
.gallery-section {
  padding: 96px 0 80px;
  background: var(--black);
}

.gallery-section .section-head { margin-bottom: 40px; }
.gallery-section .eyebrow { color: var(--orange); }
.gallery-section h2 { color: var(--white); }

/* ── Main slideshow ── */
.slideshow {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #111;
}

.slideshow-track { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active { opacity: 1; z-index: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 48px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.slide-caption span {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}

/* ── Prev / Next buttons ── */
.ss-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), border-color var(--trans);
  backdrop-filter: blur(4px);
  line-height: 1;
}
.ss-btn:hover { background: var(--red); border-color: var(--red); }
.ss-prev { left: 20px; }
.ss-next { right: 20px; }

/* ── Progress bar ── */
.ss-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}

.ss-progress-bar {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width linear;
}

/* ── Dots ── */
.ss-dots {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}

.ss-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  padding: 0;
}

.ss-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ── Thumbnail strip ── */
.ss-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}

.ss-thumbs::-webkit-scrollbar { height: 4px; }
.ss-thumbs::-webkit-scrollbar-track { background: transparent; }
.ss-thumbs::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

.ss-thumb {
  flex-shrink: 0;
  width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--r-sm);
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity var(--trans), border-color var(--trans);
}

.ss-thumb:hover { opacity: 0.75; }
.ss-thumb.active { opacity: 1; border-color: var(--red); }

@media (max-width: 768px) {
  .slideshow { height: 320px; }
  .slide-caption { padding: 40px 20px 48px; }
  .slide-caption span { font-size: 0.85rem; }
  .ss-btn { width: 40px; height: 40px; font-size: 1.5rem; }
  .ss-thumb { width: 72px; height: 48px; }
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote-section {
  background: var(--off-white);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-section blockquote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.6;
  position: relative;
}

.quote-mark {
  font-size: 5rem;
  color: var(--red);
  line-height: 0.5;
  vertical-align: -1.5rem;
  margin-right: 4px;
  font-family: Georgia, serif;
}

cite {
  display: block;
  margin-top: 20px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   IMPACT
   ============================================================ */
.impact-section {
  padding: 96px 0;
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(246,149,34,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(236,32,41,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.impact-section .container { position: relative; z-index: 1; }

.impact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  overflow: hidden;
}

.impact-card {
  background: rgba(255,255,255,0.06);
  padding: 48px 32px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--trans);
}

.impact-card:hover { background: rgba(255,255,255,0.12); }

.impact-card strong {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}

.impact-card sup {
  font-size: 1.8rem;
  color: var(--orange);
  vertical-align: super;
  line-height: 0;
}

.impact-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   DONATE CTA (homepage strip)
   ============================================================ */
.donate-cta-section {
  padding: 80px 0;
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}

.donate-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 120% at 100% 50%, rgba(246,149,34,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 0% 50%, rgba(236,32,41,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.donate-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.donate-cta-text { flex: 1; min-width: 280px; }
.donate-cta-text h2 { margin-bottom: 10px; }
.donate-cta-text p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.6; }

.donate-cta-action { flex-shrink: 0; }

/* ============================================================
   DONATE PAGE (donate.html)
   ============================================================ */
.donate-page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--maroon) 100%);
  padding: 120px 0 72px;
  text-align: center;
}

.donate-page-hero h1 { color: var(--white); margin-bottom: 14px; }
.donate-page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }

.donate-page-body {
  padding: 72px 0 96px;
  background: var(--off-white);
}

.donate-page-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.donate-page-info h2 { margin-bottom: 16px; }
.donate-page-info p  { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }

.donate-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.donate-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
}

.donate-trust-list li strong { display: block; font-size: 0.88rem; color: var(--black); }
.donate-trust-list li span   { font-size: 0.82rem; color: var(--muted); }
.donate-trust-list .ti       { font-size: 1.2rem; flex-shrink: 0; }

.donate-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px;
  position: sticky;
  top: 88px;
}

.donate-lang-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.dlang-btn {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: var(--r-full);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: var(--trans);
}

.dlang-btn:hover { border-color: var(--red); color: var(--red); }
.dlang-active { background: var(--red); border-color: var(--red); color: var(--white); }

@media (max-width: 1024px) {
  .donate-page-grid { grid-template-columns: 1fr; }
  .donate-form-card { position: static; }
}

/* ============================================================
   GET INVOLVED
   ============================================================ */
.involve-section {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.involve-card {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--trans);
}

.involve-card:hover { background: var(--off-white); }

.involve-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
}

.involve-card h3 { font-size: 1.2rem; }
.involve-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; flex: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 96px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 { margin-bottom: 16px; }
.contact-left > p { color: var(--muted); line-height: 1.75; margin-bottom: 36px; }

.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.ci strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.ci a, .ci span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: color var(--trans);
}

.ci a:hover { color: var(--red); }

.social-row { display: flex; gap: 10px; flex-wrap: wrap; }

.social-pill {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: 2px solid var(--border);
  transition: var(--trans);
}

.social-pill:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* Contact form */
.contact-form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg { display: flex; flex-direction: column; gap: 6px; }

.fg label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.fg input, .fg select, .fg textarea {
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  outline: none;
  width: 100%;
  transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none;
}

.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(236,32,41,0.1);
}

.fg textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  background: #fef2f2;
  border: 1px solid rgba(236,32,41,0.2);
  color: var(--red);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.form-success.visible { display: block; }

.form-error {
  display: none;
  background: #fff3f3;
  border: 1px solid rgba(236,32,41,0.35);
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}

/* Cloudflare Turnstile widget */
.cf-turnstile { display: flex; justify-content: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mission-grid,
  .feature-grid,
  .donate-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .impact-cards { grid-template-columns: repeat(2, 1fr); }

  .programs-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .feature-image-col { order: -1; }

  .feature-image { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .main-nav.open a { padding: 12px 16px; }

  .burger { display: flex; }
  .lang-switcher { display: none; }

  .hero { min-height: 100svh; }

  .mission-stats { grid-template-columns: 1fr 1fr; }

  .programs-grid { grid-template-columns: 1fr; }

  .involve-grid { grid-template-columns: 1fr; }

  .impact-cards { grid-template-columns: 1fr 1fr; }

  .form-row-2 { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .contact-form { padding: 24px; }

  .donate-right { padding: 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .impact-cards { grid-template-columns: 1fr; }
}
