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

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFFFF;
  --sand: #F0EBE1;
  --gold: #E8A020;
  --gold-light: #F5C660;
  --teal: #2A7C6F;
  --teal-light: #4A9E91;
  --teal-pale: #E0F0EE;
  --text-dark: #1C2B2A;
  --text-mid: #4A5A58;
  --text-soft: #8A9A98;
  --border: #E0DDD8;
  --shadow: 0 4px 24px rgba(28,43,42,0.08);
  --shadow-lg: 0 12px 48px rgba(28,43,42,0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--teal);
  flex-shrink: 0;
}
.nav-brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 2px;
  background: var(--gold); border-radius: 1px;
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-btn {
  background: none; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: var(--text-mid); cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--teal); border-color: var(--teal); color: white;
}

.btn-donate {
  background: var(--gold); color: white;
  border: none; border-radius: 24px;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.btn-donate:hover {
  background: var(--text-dark); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,160,32,0.4);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(42,124,111,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(232,160,32,0.07) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 560px; height: 560px; opacity: 0.04;
}

.hero-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-pale); color: var(--teal);
  border-radius: 20px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}

.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title em { color: var(--teal); font-style: italic; }

.hero-subtitle {
  font-size: 18px; color: var(--text-mid);
  font-weight: 300; margin-bottom: 36px; max-width: 460px;
}

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

.btn-primary {
  background: var(--teal); color: white;
  border: none; border-radius: 28px; padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; display: inline-block;
}
.btn-primary:hover {
  background: var(--text-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,124,111,0.3);
}

.btn-outline {
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal); border-radius: 28px; padding: 12px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--teal); color: white; transform: translateY(-2px); }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
}

.hero-card {
  background: white; border-radius: 24px;
  padding: 36px; box-shadow: var(--shadow-lg);
  max-width: 360px; width: 100%;
}
.hero-card-stat {
  display: flex; gap: 20px; margin-bottom: 28px;
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: var(--teal);
}
.stat-label { font-size: 12px; color: var(--text-soft); font-weight: 500; }

.hero-card-divider { height: 1px; background: var(--border); margin-bottom: 24px; }

.hero-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--sand); color: var(--text-mid);
  border-radius: 16px; padding: 6px 14px;
  font-size: 13px; font-weight: 500;
}
.tag.teal { background: var(--teal-pale); color: var(--teal); }
.tag.gold { background: #FDF3DC; color: #B07010; }

/* ── SECTIONS ── */
.section { padding: 96px 24px; }
.section-alt { background: var(--sand); }
.section-inner { max-width: 1160px; margin: 0 auto; }

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px); color: var(--text-dark);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-mid); font-weight: 300;
  max-width: 560px; margin-bottom: 56px;
}

/* ── MISSION CARDS ── */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.mission-card {
  background: white; border-radius: 20px; padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.mission-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.mission-icon.teal { background: var(--teal-pale); }
.mission-icon.gold { background: #FDF3DC; }
.mission-icon.rose { background: #FDE8E8; }

.mission-card h3 { font-size: 20px; margin-bottom: 10px; }
.mission-card p { font-size: 15px; color: var(--text-mid); line-height: 1.65; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.stat-block {
  background: var(--teal); padding: 48px 40px;
  text-align: center; color: white;
}
.stat-block:first-child { border-radius: 20px 0 0 20px; }
.stat-block:last-child { border-radius: 0 20px 20px 0; }
.stat-block .num {
  font-family: 'DM Serif Display', serif;
  font-size: 56px; line-height: 1;
  margin-bottom: 8px;
}
.stat-block .lbl { font-size: 15px; opacity: 0.8; font-weight: 300; }

/* ── FAQ ── */
.faq-grid { display: flex; flex-direction: column; gap: 2px; max-width: 760px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer; text-align: left; gap: 16px;
}
.faq-question span {
  font-family: 'DM Serif Display', serif;
  font-size: 18px; color: var(--text-dark);
  transition: color 0.2s;
}
.faq-question:hover span { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sand); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--teal); transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-answer {
  font-size: 15px; color: var(--text-mid); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--teal); border-radius: 28px;
  padding: 64px 56px; margin: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-text h2 { font-size: 36px; color: white; margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 16px; }
.btn-cta {
  background: var(--gold); color: white;
  border: none; border-radius: 28px; padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; white-space: nowrap; display: inline-block;
  flex-shrink: 0;
}
.btn-cta:hover { background: white; color: var(--teal); transform: scale(1.03); }

/* ── CONTACT SECTION ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 36px; margin-bottom: 16px; }
.contact-info p { font-size: 16px; color: var(--text-mid); margin-bottom: 36px; }

.contact-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-soft); margin-bottom: 2px; }
.contact-item-text span { font-size: 15px; color: var(--text-dark); }

.contact-form {
  background: white; border-radius: 24px; padding: 40px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-soft); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--cream);
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,124,111,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; background: var(--teal); color: white;
  border: none; border-radius: 12px; padding: 15px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s; margin-top: 4px;
}
.form-submit:hover { background: var(--text-dark); }

/* ── FOOTER ── */
.footer {
  background: var(--text-dark); color: rgba(255,255,255,0.6);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 20px; color: white; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--text-mid); font-weight: 300; max-width: 560px; }

/* ── DOCUMENTS PAGE ── */
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.doc-card {
  background: white; border-radius: 16px; padding: 24px;
  border: 1px solid var(--border); display: flex; gap: 16px;
  align-items: flex-start; transition: all 0.2s;
}
.doc-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.doc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #FDE8E8; color: #C0392B;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.doc-icon.blue { background: #E8F0FE; color: #1A73E8; }
.doc-icon.green { background: var(--teal-pale); color: var(--teal); }
.doc-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.doc-info span { font-size: 13px; color: var(--text-soft); }
.doc-dl {
  margin-top: 10px; font-size: 12px; font-weight: 600;
  color: var(--teal); text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { font-size: 36px; margin-bottom: 20px; }
.about-text p { font-size: 16px; color: var(--text-mid); margin-bottom: 16px; line-height: 1.75; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-card { background: white; border-radius: 20px; padding: 28px; text-align: center; border: 1px solid var(--border); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 26px;
  margin: 0 auto 16px;
}
.team-card h4 { font-size: 17px; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--text-soft); }

/* ── MOBILE ── */
.mobile-menu {
  display: none !important;
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream); padding: 90px 24px 40px;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex !important; }
.mobile-menu a {
  font-family: 'DM Serif Display', serif; font-size: 28px;
  color: var(--text-dark); padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block:first-child { border-radius: 20px 20px 0 0; }
  .stat-block:last-child { border-radius: 0 0 20px 20px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 48px 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .section-inner[style*="grid-template-columns:1fr 1.2fr"] {
    display: block !important;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mission-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero { padding: 100px 20px 60px; }
  .section { padding: 64px 20px; }
  .cta-banner { margin: 0; border-radius: 0; }
}
