/* ================================================================
   LEMSAT AMEL — Touch of Hope
   Premium Edition · English · Editorial · Cinematic
   ================================================================ */

:root {
  /* === CORE PALETTE === */
  --ink-900: #050d0a;
  --ink-800: #0a1a13;
  --ink-700: #0d2620;
  --ink-600: #14382c;
  --forest-500: #1a4a3a;
  --forest-400: #2c6b53;
  --forest-300: #4a8a70;
  --sage: #6b9080;

  --gold-900: #6b4f1d;
  --gold-700: #a07928;
  --gold-600: #c8a04a;
  --gold-500: #d4af37;
  --gold-400: #e6cd89;
  --gold-300: #f0d894;
  --gold-100: #faf3df;

  --cream:     #faf6ec;
  --cream-soft:#fefcf6;
  --ivory:     #fdfbf4;

  --text-primary: #0f1f1a;
  --text-soft:    #3b4a45;
  --text-mute:    #6a7773;

  --coral:    #c4424a;
  --whatsapp: #25D366;

  --line:     rgba(200, 160, 74, 0.20);
  --line-soft:rgba(15, 31, 26, 0.06);

  /* === SHADOWS === */
  --shadow-xs: 0 1px 2px rgba(10, 26, 19, 0.05);
  --shadow-sm: 0 2px 8px rgba(10, 26, 19, 0.06), 0 1px 2px rgba(10, 26, 19, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 26, 19, 0.10), 0 4px 12px rgba(10, 26, 19, 0.06);
  --shadow-lg: 0 18px 48px rgba(10, 26, 19, 0.18), 0 8px 16px rgba(10, 26, 19, 0.08);
  --shadow-xl: 0 32px 80px rgba(10, 26, 19, 0.24), 0 12px 32px rgba(10, 26, 19, 0.12);
  --shadow-gold: 0 12px 36px rgba(200, 160, 74, 0.30), 0 4px 12px rgba(200, 160, 74, 0.18);
  --shadow-emerald: 0 16px 40px rgba(20, 56, 44, 0.40);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* === GRADIENTS === */
  --g-gold: linear-gradient(135deg, #f0d894 0%, #d4af37 50%, #c8a04a 100%);
  --g-forest: linear-gradient(150deg, #050d0a 0%, #0d2620 50%, #14382c 100%);
  --g-forest-deep: linear-gradient(160deg, #050d0a 0%, #0a1a13 60%, #1a4a3a 100%);
  --g-cream: linear-gradient(180deg, #fdfbf4 0%, #faf6ec 100%);
  --g-coral: linear-gradient(135deg, #d8636a 0%, #c4424a 100%);
  --g-shine: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.05) 100%);

  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");

  --max-w: 1320px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold-500); color: var(--ink-700); }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--cream-soft);
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  background: rgba(253, 251, 244, 0.74);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar.scrolled {
  background: rgba(253, 251, 244, 0.96);
  box-shadow: 0 4px 32px rgba(10, 26, 19, 0.06);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 18px 32px;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand-logo {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 2px rgba(212, 175, 55, 0.45),
    0 0 0 6px rgba(212, 175, 55, 0.10),
    0 6px 20px rgba(10, 26, 19, 0.18);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand:hover .brand-logo { transform: rotate(8deg) scale(1.04); }

.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 5px; }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2.5px;
  color: var(--ink-700);
}

.brand-sub {
  font-size: 11px;
  color: var(--gold-700);
  letter-spacing: 1.2px;
  font-weight: 500;
  font-style: italic;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--g-gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--gold-700); }
.nav-links a:hover::after { width: 100%; }

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

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--ink-700);
  border-radius: 2px;
  transition: 0.3s;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 9px;
  font-weight: 700;
  border-radius: var(--r-pill);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.4px;
}

.btn-sm { padding: 10px 22px; font-size: 13.5px; }
.btn-lg { padding: 16px 32px; font-size: 15.5px; }
.btn-xl { padding: 20px 40px; font-size: 17px; }

.btn-primary {
  background: var(--g-gold);
  color: var(--ink-700);
  box-shadow: var(--shadow-gold);
  background-size: 200% 200%;
}

.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.50) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(200, 160, 74, 0.50);
}

.btn-primary:hover::after { transform: translateX(100%); }

.btn-donate {
  background: var(--g-coral);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(196, 66, 74, 0.40), 0 2px 6px rgba(196, 66, 74, 0.20);
}

.btn-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(196, 66, 74, 0.55), 0 4px 12px rgba(196, 66, 74, 0.30);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-700);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.40);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  background: var(--g-forest-deep);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}

.hero-orb-1 {
  width: 700px; height: 700px;
  top: -250px; right: -200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.55) 0%, transparent 65%);
  animation: orb-drift-1 18s ease-in-out infinite;
}

.hero-orb-2 {
  width: 600px; height: 600px;
  bottom: -200px; left: -150px;
  background: radial-gradient(circle, rgba(44, 107, 83, 0.50) 0%, transparent 65%);
  animation: orb-drift-2 22s ease-in-out infinite;
}

.hero-orb-3 {
  width: 450px; height: 450px;
  top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(200, 160, 74, 0.30) 0%, transparent 65%);
  animation: orb-drift-3 26s ease-in-out infinite;
}

@keyframes orb-drift-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,30px) scale(1.10); } }
@keyframes orb-drift-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.15); } }
@keyframes orb-drift-3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,30px) scale(0.95); } }

.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.40;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-text { color: var(--cream); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.40);
  color: var(--gold-400);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin-bottom: 32px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  animation: fadeUp 1s 0.05s both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 12px var(--gold-400);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 0.92;
  margin-bottom: 28px;
  letter-spacing: -2px;
  animation: fadeUp 1.1s 0.15s both;
}

.hero-title-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 600;
  background: var(--g-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -3px;
  line-height: 0.92;
}

.hero-title-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--cream);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-text-fill-color: rgba(250, 246, 236, 0.85);
}

.hero-slogan {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--gold-300);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  animation: fadeUp 1.1s 0.25s both;
}

.hero-slogan em {
  font-style: italic;
  font-weight: 500;
  font-family: 'Playfair Display', serif;
  text-transform: none;
  font-size: 1.15em;
  letter-spacing: 0;
}

.hero-slogan .dot {
  width: 5px; height: 5px;
  background: var(--gold-500);
  border-radius: 50%;
  display: inline-block;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(250, 246, 236, 0.78);
  max-width: 580px;
  margin-bottom: 44px;
  animation: fadeUp 1.1s 0.35s both;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
  animation: fadeUp 1.1s 0.45s both;
}

/* HERO STATS - glass cards with separated cells */
.hero-quickstats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: var(--shadow-emerald);
  animation: fadeUp 1.1s 0.55s both;
  position: relative;
}

.hero-quickstats::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--g-shine);
  pointer-events: none;
}

.qs {
  display: flex; flex-direction: column; gap: 4px;
  padding: 28px 26px;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}

.qs + .qs {
  border-left: 1px solid rgba(212, 175, 55, 0.18);
}

.qs:hover { background: rgba(255, 255, 255, 0.04); }

.qs-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

.qs-suffix {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  margin-bottom: 6px;
}

.qs-label {
  font-size: 12.5px;
  color: rgba(250, 246, 236, 0.65);
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.qs-highlight {
  background: linear-gradient(135deg, rgba(212,175,55,0.18) 0%, rgba(200,160,74,0.10) 100%);
}

.qs-highlight .qs-num { font-style: italic; }

/* HERO VISUAL */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: fadeIn 1.4s 0.3s both;
}

.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
}

.hero-logo-ornament {
  position: absolute;
  inset: -50px;
  animation: rotate 60s linear infinite;
}

.hero-logo-ornament svg {
  width: 100%; height: 100%;
}

.hero-logo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative; z-index: 2;
  box-shadow:
    0 0 0 4px rgba(212,175,55,0.40),
    0 0 0 14px rgba(212,175,55,0.12),
    0 0 0 28px rgba(212,175,55,0.06),
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 10px 30px rgba(0, 0, 0, 0.35);
  animation: float-logo 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes float-logo {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.halo {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(212,175,55,0.45) 25%, transparent 50%, rgba(212,175,55,0.45) 75%, transparent 100%);
  filter: blur(22px);
  animation: rotate 16s linear infinite;
  z-index: 1;
  opacity: 0.85;
}

.halo-2 {
  inset: -45px;
  background: conic-gradient(from 90deg, transparent 0%, rgba(74, 138, 112, 0.5) 25%, transparent 50%, rgba(74, 138, 112, 0.5) 75%, transparent 100%);
  animation: rotate 24s linear reverse infinite;
  opacity: 0.7;
}

.halo-3 {
  inset: -70px;
  background: conic-gradient(from 180deg, transparent 0%, rgba(200,160,74,0.30) 25%, transparent 50%, rgba(200,160,74,0.30) 75%, transparent 100%);
  animation: rotate 36s linear infinite;
  opacity: 0.5;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column; align-items: center; gap: 12px;
  color: var(--gold-300);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  z-index: 3;
  font-weight: 600;
}

.mouse {
  width: 22px; height: 38px;
  border: 1.5px solid rgba(212,175,55,0.50);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 3px; height: 6px;
  background: var(--gold-400);
  border-radius: 2px;
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.6s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ================================================================
   WAVE DIVIDERS
   ================================================================ */
.wave-divider {
  position: relative;
  width: 100%;
  margin-top: -2px;
  margin-bottom: -2px;
  line-height: 0;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-divider-flipped svg { transform: scaleY(-1); }

/* ================================================================
   MARQUEE STRIP
   ================================================================ */
.marquee-strip {
  background: var(--ink-700);
  color: var(--gold-400);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(212,175,55,0.30);
  border-bottom: 1px solid rgba(212,175,55,0.30);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-size: 24px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.marquee-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cream);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.section-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-700);
  letter-spacing: 5px;
  margin-bottom: 22px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 18px;
  background: rgba(212, 175, 55, 0.10);
  border-radius: var(--r-pill);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--ink-700);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--g-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 17.5px;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}

.section-divider {
  display: flex;
  align-items: center; justify-content: center;
  gap: 16px;
  margin: 28px auto 0;
}

.section-divider span {
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.section-divider .d-mid {
  width: auto; height: auto;
  font-size: 16px;
  color: var(--gold-600);
  position: relative;
}

.section-divider .d-mid::before,
.section-divider .d-mid::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px; height: 4px;
  background: var(--gold-500);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-divider .d-mid::before { left: -16px; }
.section-divider .d-mid::after { right: -16px; }

/* ================================================================
   ABOUT
   ================================================================ */
.section-about {
  background: var(--cream-soft);
  position: relative;
}

.section-about::before {
  content: '';
  position: absolute;
  top: -120px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--cream-soft) 100%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.about-card {
  background: var(--ivory);
  padding: 50px 36px;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid var(--line-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.about-card:hover::before { opacity: 1; }
.about-card:hover::after { transform: scaleX(1); }

.about-card-featured {
  background: var(--g-forest-deep);
  color: var(--cream);
  border-color: transparent;
  box-shadow: var(--shadow-emerald);
}

.about-card-featured::after {
  background: var(--g-gold);
  transform: scaleX(1);
}

.about-card-featured .about-icon {
  filter: drop-shadow(0 4px 14px rgba(212,175,55,0.55));
}

.about-card-featured h3 { color: var(--gold-400); }
.about-card-featured p { color: rgba(250,246,236,0.80); }

.about-icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.10));
  transition: transform 0.5s ease;
}

.about-card:hover .about-icon { transform: scale(1.12) rotate(-6deg); }

.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.about-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.about-text-block {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 50px;
  background: var(--ivory);
  border-radius: var(--r-lg);
  border: 1px dashed rgba(200, 160, 74, 0.40);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.about-text-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-soft);
  font-weight: 400;
  font-style: italic;
}

.about-text-block strong {
  color: var(--forest-500);
  font-weight: 600;
  font-style: normal;
}

.ornament {
  position: absolute;
  font-size: 22px;
  color: var(--gold-600);
  z-index: 1;
}

.ornament-tl { top: 20px; left: 22px; }
.ornament-tr { top: 20px; right: 22px; }
.ornament-bl { bottom: 20px; left: 22px; }
.ornament-br { bottom: 20px; right: 22px; }

/* ================================================================
   SERVICES
   ================================================================ */
.section-services {
  background: var(--ivory);
  position: relative;
}

.section-services::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.30;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--cream-soft);
  border-radius: var(--r-lg);
  padding: 44px 32px 40px;
  border: 1px solid var(--line-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(212,175,55,0.12) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(44,107,83,0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.30);
}

.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.65;
  position: relative;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-num { opacity: 1; }

.service-emoji {
  font-size: 56px;
  margin-bottom: 22px;
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

.service-card:hover .service-emoji {
  transform: scale(1.22) rotate(-8deg);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}

.service-card p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
  position: relative; z-index: 1;
}

.service-card-wide {
  grid-column: span 3;
  background: var(--g-forest-deep);
  color: var(--cream);
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 50px 56px;
  border: 1px solid rgba(212,175,55,0.30);
  position: relative;
  overflow: hidden;
}

.service-card-wide::before { background: none; }

.service-card-wide::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  right: -120px; bottom: -180px;
  background: radial-gradient(circle, rgba(212,175,55,0.20) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.service-card-wide .service-num { color: var(--gold-300); opacity: 1; font-size: 56px; margin-bottom: 0; }
.service-card-wide .service-emoji { font-size: 64px; margin: 0; }
.service-card-wide h3 {
  color: var(--gold-400);
  font-size: 28px;
  margin-bottom: 8px;
}
.service-card-wide p {
  color: rgba(250,246,236,0.78);
  font-size: 17px;
  max-width: 700px;
}

/* ================================================================
   IMPACT
   ================================================================ */
.section-impact {
  background: var(--g-forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.section-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
  opacity: 0.7;
}

.section-impact::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.30;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.section-impact .section-eyebrow {
  color: var(--gold-400);
  background: rgba(212,175,55,0.15);
}

.section-impact .section-title { color: var(--cream); }
.section-impact .section-sub { color: rgba(250,246,236,0.72); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

.impact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--r-lg);
  padding: 40px 26px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--g-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.impact-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.impact-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.50);
  box-shadow: 0 24px 60px rgba(0,0,0,0.30);
}

.impact-card:hover::before { transform: scaleX(1); }
.impact-card:hover::after { opacity: 1; }

.impact-card-big {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(212,175,55,0.16) 0%, rgba(44,107,83,0.16) 100%);
  border-color: rgba(212, 175, 55, 0.50);
}

.impact-card-big::after {
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.22) 0%, transparent 70%);
  opacity: 1;
}

.impact-icon {
  font-size: 48px;
  margin-bottom: 18px;
  display: inline-block;
  filter: drop-shadow(0 6px 16px rgba(212,175,55,0.35));
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}

.impact-card:hover .impact-icon {
  transform: scale(1.18) rotate(-6deg);
}

.impact-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 54px;
  background: var(--g-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  position: relative; z-index: 1;
  letter-spacing: -1.5px;
}

.impact-card-big .impact-num { font-size: 88px; }

.impact-num-currency {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.impact-num-prefix {
  font-size: 32px;
  font-weight: 500;
  background: var(--g-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 4px;
}

.impact-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
  position: relative; z-index: 1;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.impact-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(250,246,236,0.55);
  position: relative; z-index: 1;
}

.impact-card-period .impact-num {
  font-style: italic;
  font-weight: 600;
}

.impact-bar {
  position: relative;
  z-index: 1;
  height: 4px;
  background: rgba(212,175,55,0.18);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}

.impact-bar-fill {
  height: 100%;
  background: var(--g-gold);
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* ================================================================
   REPORTS
   ================================================================ */
.section-reports {
  background: var(--g-cream);
  position: relative;
}

.reports-year-label {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 80px auto 40px;
  max-width: 920px;
}

.reports-year-label:first-child { margin-top: 0; }

.reports-year-text {
  font-family: 'Playfair Display', serif;
  font-size: 96px;
  font-weight: 500;
  font-style: italic;
  background: var(--g-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.85;
  letter-spacing: -4px;
  flex-shrink: 0;
}

.reports-year-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500) 0%, transparent 100%);
  border-radius: 2px;
}

.reports-year-meta {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: 2.5px;
  padding: 10px 20px;
  background: var(--ivory);
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  flex-shrink: 0;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.report-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.report-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.40);
}

.report-head {
  background: var(--g-forest);
  color: var(--cream);
  padding: 24px 28px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 3px solid var(--gold-500);
  position: relative;
  overflow: hidden;
}

.report-head::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 3px;
  background: var(--g-gold);
  transition: width 0.6s ease;
}

.report-card:hover .report-head::after { width: 100%; }

.report-month {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
}

.report-year {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--gold-400);
  letter-spacing: 4px;
  font-weight: 400;
}

.report-body { padding: 28px 28px 24px; flex: 1; }

.report-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-700);
  margin-bottom: 20px;
  line-height: 1.3;
}

.report-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.report-highlights li {
  font-size: 14px;
  color: var(--text-soft);
  padding: 9px 0;
  border-bottom: 1px dashed rgba(15, 31, 26, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-highlights li:last-child { border-bottom: none; }

.report-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--cream-soft);
  color: var(--forest-500);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  border-top: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}

.report-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--g-gold);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.report-cta:hover { color: var(--ink-700); }
.report-cta:hover::before { transform: translateX(0); }
.report-cta > * { position: relative; z-index: 1; }

.report-card-current {
  border: 2px solid var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.10), var(--shadow-md);
}

.report-card-current::after {
  content: 'ONGOING · CURRENT';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--g-gold);
  color: var(--ink-700);
  font-size: 10px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  letter-spacing: 2px;
  z-index: 5;
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.report-card-highlight {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.reports-summary-card {
  margin: 60px auto 0;
  max-width: 720px;
  background:
    linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  border: 2px dashed var(--gold-500);
  border-radius: var(--r-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.reports-summary-card::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(212,175,55,0.30);
  border-radius: calc(var(--r-lg) + 4px);
  pointer-events: none;
}

.reports-summary-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: inline-block;
  filter: drop-shadow(0 6px 16px rgba(212,175,55,0.4));
}

.reports-summary-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 14px;
  font-style: italic;
}

.reports-summary-card p {
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   STORY
   ================================================================ */
.section-story {
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}

.section-bg-glow {
  position: absolute; inset: 0;
  pointer-events: none;
}

.section-bg-glow::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 70%);
  filter: blur(80px);
}

.section-bg-glow::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(44,107,83,0.10) 0%, transparent 70%);
  filter: blur(80px);
}

.story-block {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-quote {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 70px 70px 56px;
  margin-bottom: 50px;
  border: 1px solid rgba(212,175,55,0.30);
  position: relative;
  box-shadow: var(--shadow-md);
}

.story-quote-mark {
  position: absolute;
  top: -32px; left: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 140px;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  background: var(--ivory);
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.story-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-700);
  font-style: italic;
  letter-spacing: -0.3px;
}

.story-paragraphs p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 26px;
  text-align: left;
  font-weight: 400;
}

.story-paragraphs strong {
  color: var(--forest-500);
  font-weight: 600;
  font-family: 'Inter', serif;
  font-size: 1.1em;
  letter-spacing: -0.2px;
}

.story-paragraphs em {
  color: var(--gold-700);
  font-style: italic;
  font-weight: 500;
}

.story-sign {
  margin-top: 50px;
  text-align: center;
  padding-top: 32px;
  border-top: 1px dashed rgba(212,175,55,0.40);
}

.story-sign-line {
  width: 100px; height: 2px;
  background: var(--g-gold);
  margin: 0 auto 18px;
  border-radius: 2px;
}

.story-sign-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-700);
  margin-bottom: 6px;
}

.story-sign-sub {
  font-size: 13px;
  color: var(--gold-700);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

/* ================================================================
   DONATE BIG
   ================================================================ */
.section-donate { padding: 80px 0; background: var(--cream-soft); }

.donate-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-xl);
}

.donate-bg {
  position: absolute; inset: 0;
  background: var(--g-forest-deep);
}

.donate-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.30;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.donate-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
}

.donate-bg .orb-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(212,175,55,0.50) 0%, transparent 65%);
  animation: orb-drift-1 18s ease-in-out infinite;
}

.donate-bg .orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(44,107,83,0.50) 0%, transparent 65%);
  animation: orb-drift-2 22s ease-in-out infinite;
}

.donate-content {
  position: relative;
  padding: 100px 60px;
  text-align: center;
  color: var(--cream);
  z-index: 1;
}

.donate-eyebrow {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(212,175,55,0.18);
  border: 1px solid rgba(212,175,55,0.50);
  color: var(--gold-300);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.donate-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.donate-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--g-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.donate-desc {
  max-width: 720px;
  margin: 0 auto 42px;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(250,246,236,0.80);
  font-weight: 300;
}

.donate-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.donate-trust {
  display: flex;
  gap: 38px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px dashed rgba(212,175,55,0.30);
}

.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: rgba(250,246,236,0.80);
  font-weight: 500;
}

.trust-icon {
  font-size: 18px;
  color: var(--gold-400);
}

/* ================================================================
   CONTACT
   ================================================================ */
.section-contact {
  background: var(--cream-soft);
  padding-bottom: 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
}

.contact-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 46px 32px;
  text-align: center;
  border: 1px solid var(--line-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,175,55,0.20) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  background: var(--g-forest-deep);
  color: var(--cream);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.contact-card:hover::after { opacity: 1; }

.contact-card-static { cursor: default; }
.contact-card-static:hover {
  background: var(--ivory);
  color: var(--text-primary);
  transform: none;
  box-shadow: var(--shadow-sm);
}
.contact-card-static:hover::after { opacity: 0; }

.contact-icon {
  font-size: 46px;
  margin-bottom: 18px;
  display: inline-block;
  position: relative; z-index: 1;
  transition: transform 0.5s ease;
}

.contact-card:hover .contact-icon { transform: scale(1.18) rotate(-6deg); }

.contact-label {
  font-size: 12px;
  color: var(--gold-700);
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative; z-index: 1;
}

.contact-card:hover .contact-label { color: var(--gold-400); }

.contact-value {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-700);
  word-break: break-word;
  position: relative; z-index: 1;
  transition: color 0.3s ease;
}

.contact-arrow {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 22px;
  color: var(--gold-500);
  transition: all 0.4s ease;
}

.contact-card:hover .contact-arrow { transform: translate(4px,-4px) rotate(10deg); }
.contact-card:hover .contact-value { color: var(--gold-300); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: linear-gradient(180deg, #0a1a13 0%, #050d0a 100%);
  color: rgba(250,246,236,0.75);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.site-footer::after {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--noise);
  opacity: 0.20;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 70px;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.footer-brand { display: flex; align-items: center; gap: 18px; }

.footer-logo {
  width: 70px; height: 70px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(212,175,55,0.45), var(--shadow-md);
  flex-shrink: 0;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--gold-400);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.footer-motto {
  font-size: 14px;
  color: rgba(250,246,236,0.55);
  line-height: 1.5;
}

.footer-motto em {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: rgba(250,246,236,0.75);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-col a, .footer-col a {
  font-size: 14px;
  color: rgba(250,246,236,0.65);
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.footer-col a:hover { color: var(--gold-300); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.20);
  padding: 26px 0;
  font-size: 13px;
  color: rgba(250,246,236,0.45);
  position: relative; z-index: 1;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.float-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 99;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.50);
  transition: transform 0.3s ease;
  animation: pulse-wa 2.6s ease-in-out infinite;
}

.float-wa:hover { transform: scale(1.1); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 12px 32px rgba(37,211,102,0.50), 0 0 0 0 rgba(37,211,102,0.55); }
  50% { box-shadow: 0 12px 32px rgba(37,211,102,0.50), 0 0 0 18px rgba(37,211,102,0); }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto 30px; }
  .hero-cta { justify-content: center; }
  .hero-quickstats { max-width: 700px; margin: 0 auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .about-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; grid-template-columns: auto auto 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-card-big { grid-column: span 2; }
  .reports-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 50px; }
  .donate-content { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .section { padding: 90px 0; }
  .nav-links {
    position: fixed;
    top: 84px; right: -100%;
    flex-direction: column;
    background: var(--ivory);
    width: 88%; max-width: 360px;
    height: calc(100vh - 84px);
    padding: 40px 28px;
    gap: 22px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.10);
    transition: right 0.4s ease;
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 18px; }
  .menu-toggle { display: flex; }
  .nav-actions .btn-sm { display: none; }

  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero-slogan { font-size: 13px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero-quickstats { grid-template-columns: 1fr; }
  .qs + .qs { border-left: none; border-top: 1px solid rgba(212,175,55,0.18); }
  .qs { padding: 18px 22px; }
  .qs-num { font-size: 36px; }

  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; grid-template-columns: 1fr; text-align: center; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card-big { grid-column: span 1; }
  .reports-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 30px; }

  .reports-year-label { flex-wrap: wrap; gap: 16px; margin: 50px auto 26px; }
  .reports-year-text { font-size: 72px; }
  .reports-year-meta { font-size: 11px; padding: 7px 16px; }

  .donate-content { padding: 70px 30px; }
  .donate-trust { gap: 22px; }
  .story-quote { padding: 40px 30px 35px; }
  .story-quote-mark { font-size: 100px; width: 60px; height: 60px; top: -20px; left: 30px; }
  .story-quote p { font-size: 22px; }

  .float-wa { bottom: 22px; right: 22px; width: 56px; height: 56px; }
  .wave-divider svg { height: 50px; }
}

@media (max-width: 480px) {
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .donate-actions { flex-direction: column; }
  .donate-actions .btn { width: 100%; }
  .reports-summary-card { padding: 40px 26px; }
}
