:root {
  --violet: #3D2B6B;
  --violet-deep: #2a1d4e;
  --violet-light: #6b52a8;
  --violet-pale: #f0edf8;
  --gold: #E8A020;
  --gold-light: #f5c45e;
  --coral: #D4544A;
  --white: #ffffff;
  --cream: #faf9f6;
  --black: #0a0a0a;
  --text: #1a1228;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 4rem;
  background: transparent;
  transition: background 0.45s, padding 0.35s, border-color 0.45s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(14,8,32,0.97);
  backdrop-filter: blur(18px);
  padding: 0.95rem 4rem;
  border-bottom-color: rgba(232,160,32,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; display: block; }
.nav-logo-fallback { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--white); letter-spacing: -2px; line-height: 1; display: none; }
.nav-logo-fallback span { color: var(--gold); }
.nav-logo-text { line-height: 1.3; }
.nav-logo-name { font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 500; color: var(--white); display: block; }
.nav-logo-sub { font-size: 0.6rem; font-style: italic; color: rgba(255,255,255,0.45); display: block; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--violet-deep) !important; padding: 0.5rem 1.5rem; border-radius: 2px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.page-hero {
  min-height: 90vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 4rem 5rem;
  position: relative; overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-image: url('images/outreach1.jpg');
  background-size: cover; background-position: center 30%; z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(14,8,35,0.55) 0%, rgba(14,8,35,0.85) 60%, rgba(14,8,35,0.97) 100%);
}
.page-hero-content { position: relative; z-index: 3; max-width: 820px; }
.page-hero-eyebrow {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.page-hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 8rem); font-weight: 400; color: var(--white);
  line-height: 1.0; margin-bottom: 1.4rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.55);
  max-width: 520px; line-height: 1.9;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}

/* Anniversary badge */
.anniversary-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.4);
  border-radius: 2px; padding: 0.5rem 1.2rem;
  margin-bottom: 1.8rem;
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.anniversary-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); animation: dotPulse 1.8s ease-in-out infinite; }
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.3;transform:scale(0.6);} }

@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ── GOLD TICKER ── */
.ticker-wrap { background: var(--gold); overflow: hidden; padding: 0.82rem 0; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 34s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { display: inline-flex; align-items: center; gap: 1rem; padding: 0 2.5rem; font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.9rem; color: var(--violet-deep); }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(42,29,78,0.4); flex-shrink: 0; }

/* ── HELPERS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.section-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.75rem; }
.section-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; color: var(--violet); line-height: 1.15; margin-bottom: 1.4rem; }
.section-title em { font-style: italic; color: var(--coral); }
.body-text { font-size: 0.92rem; font-weight: 300; color: #555; line-height: 1.9; }

/* ── INTRO / MISSION STATEMENT ── */
.mission-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.mission-visual { position: relative; overflow: hidden; min-height: 600px; }
.mission-poster {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a0a4e 0%, #3D2B6B 40%, #2a1d4e 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem 2.5rem; text-align: center;
}
.poster-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%); pointer-events: none; }
.poster-eyebrow { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; position: relative; z-index: 2; }
.poster-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 0.5rem; position: relative; z-index: 2; }
.poster-title em { font-style: italic; color: var(--gold); display: block; }
.poster-year { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 700; color: rgba(232,160,32,0.12); position: absolute; bottom: 1rem; right: 1.5rem; line-height: 1; user-select: none; }
.poster-goal-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 2rem; margin-bottom: 0.4rem; position: relative; z-index: 2; }
.poster-goal-amount { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; position: relative; z-index: 2; }
.poster-divider { width: 60px; height: 1px; background: rgba(232,160,32,0.3); margin: 1.5rem auto; position: relative; z-index: 2; }
.poster-actions { display: flex; flex-direction: column; gap: 0.6rem; width: 100%; max-width: 220px; position: relative; z-index: 2; }
.poster-phone-row { font-size: 0.65rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }
.poster-phone-row strong { color: rgba(255,255,255,0.7); font-weight: 500; }

.mission-content { padding: 5.5rem 4.5rem; display: flex; flex-direction: column; justify-content: center; }
.mission-content .body-text { margin-bottom: 1.3rem; }
.mission-highlight {
  background: var(--violet-pale); border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem; margin: 1.5rem 0; border-radius: 0 2px 2px 0;
  font-size: 0.88rem; font-weight: 500; color: var(--violet); line-height: 1.7;
  font-style: italic; font-family: 'Playfair Display', serif;
}

/* ── 3 ACTIONS GRID ── */
.actions-section { background: var(--violet-deep); padding: 6rem 4rem; position: relative; overflow: hidden; }
.actions-watermark { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-family: 'Playfair Display', serif; font-size: clamp(8rem,16vw,20rem); font-weight: 700; color: rgba(255,255,255,0.025); white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: -0.04em; }
.actions-header { text-align: center; margin-bottom: 4rem; }
.actions-header .section-label { justify-content: center; }
.actions-header .section-title { color: var(--white); }
.actions-header .section-title em { color: var(--gold); }
.actions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: rgba(232,160,32,0.08); position: relative; z-index: 2; }
.action-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(232,160,32,0.1); padding: 3rem 2.5rem; transition: background 0.3s, border-color 0.3s; }
.action-card:hover { background: rgba(232,160,32,0.07); border-color: rgba(232,160,32,0.3); }
.action-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: rgba(232,160,32,0.12); line-height: 1; margin-bottom: 1.2rem; }
.action-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(232,160,32,0.1); border: 1px solid rgba(232,160,32,0.25); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.action-icon svg { width: 20px; height: 20px; }
.action-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.8rem; }
.action-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; color: var(--white); line-height: 1.3; margin-bottom: 1rem; }
.action-body { font-size: 0.84rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.9; }

/* ── DONATE SECTION ── */
.donate-section { background: var(--cream); padding: 7rem 4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.donate-content .body-text { margin-bottom: 1.3rem; }
.donate-highlight { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; font-weight: 500; color: var(--violet); margin: 1.5rem 0; line-height: 1.6; }
.donate-ways { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.donate-way { background: var(--white); border: 1px solid rgba(61,43,107,0.1); border-radius: 2px; padding: 1.2rem 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.donate-way-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--violet-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.donate-way-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); margin-bottom: 0.3rem; }
.donate-way-body { font-size: 0.8rem; font-weight: 300; color: #777; line-height: 1.6; }
.donate-way-body a { color: var(--coral); text-decoration: none; }
.donate-way-body a:hover { text-decoration: underline; }

.donate-widget-wrap { position: relative; }
.donate-widget-card { background: var(--white); border: 1px solid rgba(61,43,107,0.1); border-radius: 4px; overflow: hidden; box-shadow: 0 8px 40px rgba(42,29,78,0.1); }
.donate-widget-header { background: var(--violet-deep); padding: 2rem 2.5rem; }
.donate-widget-header-lbl { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.donate-widget-header-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); font-weight: 500; }
.donate-widget-header-title em { color: var(--gold); font-style: italic; }
.donate-widget-body { padding: 2.5rem; }
.donate-goal-bar { margin-bottom: 2rem; }
.donate-goal-numbers { display: flex; justify-content: space-between; margin-bottom: 0.6rem; }
.donate-goal-raised { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--violet); }
.donate-goal-target { font-size: 0.78rem; font-weight: 300; color: #999; align-self: flex-end; padding-bottom: 4px; }
.donate-goal-track { height: 6px; background: var(--violet-pale); border-radius: 3px; overflow: hidden; }
.donate-goal-fill { height: 100%; width: 38%; background: linear-gradient(to right, var(--violet), var(--gold)); border-radius: 3px; animation: fillIn 2s 0.5s ease-out both; }
@keyframes fillIn { from{width:0} to{width:38%} }
.donate-goal-pct { font-size: 0.65rem; font-weight: 500; color: var(--gold); margin-top: 0.4rem; text-align: right; }
.donate-amounts { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.5rem; margin-bottom: 1.5rem; }
.donate-amount-btn {
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--violet); background: var(--violet-pale);
  border: 1.5px solid rgba(61,43,107,0.15); border-radius: 2px;
  padding: 0.7rem 0.5rem; cursor: pointer; transition: all 0.2s; text-align: center;
}
.donate-amount-btn:hover, .donate-amount-btn.active { background: var(--violet); color: var(--white); border-color: var(--violet); }
.donate-custom { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.donate-custom-input {
  flex: 1; font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  background: var(--violet-pale); border: 1.5px solid rgba(61,43,107,0.15);
  border-radius: 2px; color: var(--violet); padding: 0.7rem 1rem; outline: none;
  transition: border-color 0.2s;
}
.donate-custom-input:focus { border-color: var(--violet); }
.donate-custom-input::placeholder { color: rgba(61,43,107,0.35); }
.donate-btn-main {
  width: 100%; font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold);
  color: var(--violet-deep); border: none; border-radius: 2px; padding: 1rem;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.donate-btn-main:hover { background: var(--gold-light); transform: translateY(-2px); }
.donate-zeffy-note { font-size: 0.65rem; text-align: center; color: #999; margin-top: 0.8rem; }
.donate-zeffy-note a { color: var(--coral); text-decoration: none; }

/* ── CONTACT NUMBERS ── */
.contact-section { background: var(--white); padding: 6rem 4rem; }
.contact-inner { max-width: 900px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: rgba(61,43,107,0.08); margin-top: 3rem; }
.contact-card { background: var(--white); padding: 2rem 2.5rem; border: 1px solid rgba(61,43,107,0.08); }
.contact-card:hover { background: var(--violet-pale); }
.contact-flag { font-size: 1.5rem; margin-bottom: 0.6rem; }
.contact-country { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.contact-number { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--violet); font-weight: 500; }
.contact-email-row { margin-top: 2.5rem; text-align: center; padding: 1.5rem; background: var(--violet-pale); border-radius: 2px; }
.contact-email-lbl { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.contact-email-addr { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--violet); }
.contact-email-addr a { color: var(--violet); text-decoration: none; }
.contact-email-addr a:hover { color: var(--coral); }

/* ── CTA STRIP ── */
.cta-section { background: var(--black); padding: 8rem 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-watermark { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-family: 'Playfair Display', serif; font-size: clamp(8rem,18vw,22rem); font-weight: 700; color: rgba(255,255,255,0.025); white-space: nowrap; pointer-events: none; user-select: none; letter-spacing: -0.04em; }
.cta-lbl { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4.5vw, 5rem); font-weight: 400; color: var(--white); line-height: 1.2; max-width: 800px; margin: 0 auto 1.5rem; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.42); max-width: 460px; margin: 0 auto 3rem; line-height: 1.9; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-gold { background: var(--gold); color: var(--violet-deep); font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem 2.2rem; border: none; border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.65); font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.9rem 2rem; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(255,255,255,0.55); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 5rem 4rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500; color: var(--white); margin-bottom: 0.4rem; }
.footer-tagline { font-size: 0.68rem; font-style: italic; color: var(--gold); margin-bottom: 1.5rem; }
.footer-gold-line { width: 32px; height: 2px; background: var(--gold); margin-bottom: 1.2rem; }
.footer-desc { font-size: 0.8rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.38); }
.footer-col-title { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem 4rem; }
.footer-copy { font-size: 0.67rem; color: rgba(255,255,255,0.22); }
.social-links { display: flex; gap: 1rem; }
.social-link { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; }
.social-link:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.4rem 1.5rem; }
  nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .page-hero { padding: 0 1.5rem 3.5rem; min-height: 65vh; }
  .mission-section { grid-template-columns: 1fr; }
  .mission-visual { min-height: 420px; }
  .mission-content { padding: 3rem 1.5rem; }
  .actions-section { padding: 4rem 1.5rem; }
  .actions-grid { grid-template-columns: 1fr; }
  .donate-section { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .contact-section { padding: 4rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { padding: 1.2rem 1.5rem; flex-direction: column; gap: 0.5rem; }
}
