/* ============================================
   KINGDOM DESTINY MINISTRIES — GLOBAL STYLES
   ============================================ */

:root {
  --purple: #2D1550;
  --purple-deep: #1a0a3c;
  --gold: #C8A04A;
  --gold-dark: #8B6914;
  --green: #2E7D32;
  --orange: #E65100;
  --ink: #14101f;
  --paper: #faf7f0;
  --paper-warm: #f3ecdd;
  --gray: #6b6577;
  --white: #ffffff;
  --shadow: 0 18px 50px -20px rgba(26, 10, 60, 0.45);
  --shadow-soft: 0 10px 30px -15px rgba(26, 10, 60, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.1; font-weight: 800; }

.serif { font-family: 'Playfair Display', serif; }

a { color: inherit; text-decoration: none; }

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

.container { width: min(1180px, 92vw); margin: 0 auto; }

.section { padding: clamp(56px, 9vw, 110px) 0; }

/* ---------- Decorative accents ---------- */
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dark); display: inline-flex;
  align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  color: var(--purple); letter-spacing: -0.01em; margin-bottom: 1rem;
}
.section-title em { font-family: 'Playfair Display', serif; font-weight: 600; font-style: italic; color: var(--gold-dark); }

.lead { font-size: 1.1rem; color: var(--gray); max-width: 60ch; }

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled, .nav.solid {
  background: rgba(26, 10, 60, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.6rem clamp(1rem, 4vw, 3rem);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.5);
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; }
.nav-brand img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); background: #fff; object-fit: cover; }
.nav-brand .bname { color: #fff; font-weight: 800; font-size: 0.95rem; line-height: 1.1; }
.nav-brand .bname span { color: var(--gold); display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.88); font-size: 0.88rem; font-weight: 600; position: relative; transition: color 0.25s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.btn-donate-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff !important; padding: 0.6rem 1.4rem; border-radius: 50px;
  font-weight: 700 !important; font-size: 0.85rem;
  box-shadow: 0 6px 20px -6px rgba(200,160,74,0.7);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-donate-nav:hover { transform: translateY(-2px); box-shadow: 0 10px 28px -6px rgba(200,160,74,0.9); }
.btn-donate-nav::after { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 50px; font-weight: 700;
  font-size: 0.9rem; cursor: pointer; border: none;
  transition: transform 0.25s, box-shadow 0.25s; letter-spacing: 0.01em;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; box-shadow: 0 10px 28px -10px rgba(200,160,74,0.8); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -10px rgba(200,160,74,0.9); }
.btn-purple { background: var(--purple); color: #fff; box-shadow: 0 10px 28px -12px rgba(45,21,80,0.8); }
.btn-purple:hover { transform: translateY(-3px); background: var(--purple-deep); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.4); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(26,10,60,0.94) 0%, rgba(45,21,80,0.82) 45%, rgba(26,10,60,0.55) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 80px; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); letter-spacing: -0.02em; text-transform: uppercase; }
.hero h1 .g { color: var(--gold); }
.hero .tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.3rem, 3vw, 2rem); color: var(--gold); margin: 0.8rem 0 1.4rem; }
.hero p.intro { font-size: 1.15rem; max-width: 52ch; color: rgba(255,255,255,0.9); margin-bottom: 2.2rem; }
.hero p.intro b { color: var(--gold); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-ind { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; text-align: center; }
.scroll-ind .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.6); border-radius: 12px; margin: 0 auto 8px; position: relative; }
.scroll-ind .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--gold); border-radius: 2px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 1; top: 7px; } 70% { opacity: 0; top: 18px; } 100% { opacity: 0; } }

/* page hero (smaller, interior pages) */
.page-hero {
  position: relative; padding: 170px 0 90px; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--purple-deep), var(--purple));
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(200,160,74,0.22), transparent 45%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); text-transform: uppercase; }
.page-hero h1 .g { color: var(--gold); }
.page-hero p { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 1.3rem; margin-top: 0.6rem; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================
   WELCOME BANNER
   ============================================ */
.welcome { background: var(--paper); position: relative; }
.welcome-grid { display: grid; grid-template-columns: 150px 1fr; gap: 2rem; align-items: center; }
.welcome-photo { width: 150px; height: 150px; border-radius: 50%; border: 4px solid var(--gold); object-fit: cover; object-position: top; box-shadow: var(--shadow-soft); }
.welcome-text .serif { font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; color: var(--purple); line-height: 1.4; }
.welcome-text .sig { margin-top: 1rem; font-weight: 700; color: var(--gold-dark); }
.welcome-text .sig span { display: block; font-weight: 500; color: var(--gray); font-size: 0.9rem; }

/* ============================================
   STATS BAR
   ============================================ */
.stats { background: linear-gradient(120deg, var(--purple-deep), var(--purple)); color: #fff; padding: clamp(48px, 7vw, 80px) 0; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 50%, rgba(200,160,74,0.18), transparent 40%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat .num { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: var(--gold); line-height: 1; }
.stat .label { margin-top: 0.5rem; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.78); }

/* ============================================
   PILLARS
   ============================================ */
.pillars { background: var(--ink); color: #fff; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pillar-card { background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(200,160,74,0.25); border-radius: 18px; padding: 2rem 1.6rem; transition: transform 0.3s, border-color 0.3s; }
.pillar-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.pillar-card .ic { font-size: 2rem; margin-bottom: 0.8rem; }
.pillar-card h3 { color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.1rem; margin-bottom: 0.4rem; }
.pillar-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

/* ============================================
   PROGRAM PREVIEW CARDS
   ============================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.prog-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.prog-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.prog-card .img { height: 200px; overflow: hidden; }
.prog-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.prog-card:hover .img img { transform: scale(1.08); }
.prog-card .body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.prog-card h3 { color: var(--purple); font-size: 1.2rem; margin-bottom: 0.5rem; }
.prog-card p { color: var(--gray); font-size: 0.92rem; flex: 1; }
.prog-card a.more { margin-top: 1rem; color: var(--gold-dark); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; }
.prog-card a.more:hover { color: var(--orange); }

/* ============================================
   FUNDING CTA / PROGRESS
   ============================================ */
.fund-cta { background: linear-gradient(120deg, var(--purple), var(--purple-deep)); color: #fff; position: relative; overflow: hidden; }
.fund-cta::before { content: "✝"; position: absolute; right: -2%; top: -20%; font-size: 22rem; color: rgba(200,160,74,0.06); }
.fund-cta .container { position: relative; }
.fund-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.fund-cta h2 em { color: var(--gold); font-family: 'Playfair Display', serif; font-style: italic; font-weight: 600; }
.fund-cta p { color: rgba(255,255,255,0.85); max-width: 60ch; margin-bottom: 1.8rem; }
.progress-wrap { max-width: 640px; margin-bottom: 1.8rem; }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 0.5rem; }
.progress-labels .raised { color: var(--gold); font-weight: 700; }
.progress-track { height: 14px; background: rgba(255,255,255,0.15); border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--orange)); border-radius: 10px; transition: width 1.6s ease; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi { background: var(--paper-warm); }
.testi-carousel { position: relative; max-width: 760px; margin: 0 auto; }
.testi-card { background: #fff; border-radius: 22px; padding: 2.6rem; box-shadow: var(--shadow-soft); text-align: center; display: none; }
.testi-card.active { display: block; animation: fade 0.6s; }
@keyframes fade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.testi-card .quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; color: var(--purple); line-height: 1.6; }
.testi-card .photo { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.4rem; margin: 1.4rem auto 0.6rem; }
.testi-card .name { font-weight: 700; color: var(--purple); }
.testi-card .role { font-size: 0.85rem; color: var(--gray); }
.testi-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.6rem; }
.testi-dots button { width: 11px; height: 11px; border-radius: 50%; border: none; background: rgba(45,21,80,0.2); cursor: pointer; transition: 0.3s; }
.testi-dots button.active { background: var(--gold); width: 28px; border-radius: 6px; }

/* ============================================
   NEWS CARDS
   ============================================ */
.news-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s; }
.news-card:hover { transform: translateY(-6px); }
.news-card .meta { padding: 0.6rem 1.4rem 0; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.news-card .body { padding: 0.4rem 1.4rem 1.6rem; }
.news-card h3 { color: var(--purple); font-size: 1.1rem; margin-bottom: 0.5rem; }
.news-card p { color: var(--gray); font-size: 0.9rem; }
.news-card a { color: var(--gold-dark); font-weight: 700; font-size: 0.82rem; margin-top: 0.8rem; display: inline-block; }
.news-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

/* ============================================
   GENERAL CONTENT LAYOUT
   ============================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-img { order: 2; }
.split-img img { width: 100%; border-radius: 22px; box-shadow: var(--shadow); object-fit: cover; }
.split-text h2 { color: var(--purple); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.split-text p { color: var(--gray); margin-bottom: 1rem; }

.pullquote { border-left: 4px solid var(--gold); padding-left: 1.4rem; margin: 1.6rem 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; color: var(--purple); }

.bg-paper-warm { background: var(--paper-warm); }
.bg-purple { background: var(--purple); color: #fff; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* value / mission cards */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card { background: #fff; border-radius: 22px; padding: 2.4rem; box-shadow: var(--shadow-soft); border-top: 5px solid var(--gold); }
.mv-card .ic { font-size: 2.2rem; color: var(--gold-dark); margin-bottom: 0.8rem; }
.mv-card h3 { color: var(--purple); font-size: 1.4rem; margin-bottom: 0.8rem; }
.mv-card p { color: var(--gray); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value-item { text-align: center; padding: 1.8rem 1rem; background: #fff; border-radius: 16px; box-shadow: var(--shadow-soft); transition: transform 0.3s; }
.value-item:hover { transform: translateY(-6px); }
.value-item .ic { font-size: 1.9rem; margin-bottom: 0.5rem; }
.value-item h4 { color: var(--purple); font-size: 1.05rem; }

/* branch cards */
.branch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.branch-card { background: #fff; border-radius: 16px; padding: 1.4rem; box-shadow: var(--shadow-soft); border-left: 4px solid var(--purple); transition: 0.3s; }
.branch-card:hover { border-left-color: var(--gold); transform: translateX(4px); }
.branch-card h4 { color: var(--purple); display: flex; align-items: center; gap: 0.4rem; }
.branch-card p { font-size: 0.85rem; color: var(--gray); margin-top: 0.3rem; }

/* leadership */
.leader-feature { display: grid; grid-template-columns: 230px 1fr; gap: 2.4rem; align-items: center; margin-bottom: 3rem; }
.leader-feature.reverse { grid-template-columns: 1fr 230px; }
.leader-feature.reverse .lphoto { order: 2; }
.lphoto { width: 230px; height: 230px; border-radius: 50%; border: 5px solid var(--gold); object-fit: cover; object-position: top; box-shadow: var(--shadow); }
.leader-feature h3 { color: var(--purple); font-size: 1.7rem; }
.leader-feature .title { color: var(--gold-dark); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.82rem; margin-bottom: 1rem; }
.leader-feature p { color: var(--gray); margin-bottom: 0.9rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.team-card { text-align: center; background: #fff; border-radius: 18px; padding: 2rem 1.2rem; box-shadow: var(--shadow-soft); }
.team-photo { width: 110px; height: 110px; border-radius: 50%; border: 3px solid var(--gold); margin: 0 auto 1rem; background: linear-gradient(135deg, var(--purple), var(--purple-deep)); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; }
.team-card h4 { color: var(--purple); }
.team-card .role { font-size: 0.8rem; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.team-card p { font-size: 0.85rem; color: var(--gray); margin-top: 0.6rem; }

/* program full sections */
.prog-full { padding: clamp(48px, 7vw, 90px) 0; }
.prog-full:nth-child(even) { background: var(--paper-warm); }
.fund-card { background: var(--purple); color: #fff; border-radius: 16px; padding: 1.4rem 1.6rem; margin-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.fund-card .amt { font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.fund-card .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

.mini-stats { display: flex; gap: 1.8rem; margin: 1.2rem 0; flex-wrap: wrap; }
.mini-stats .ms .n { font-size: 1.8rem; font-weight: 900; color: var(--purple); }
.mini-stats .ms .l { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

/* gallery */
.gallery-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.4rem; }
.gallery-tabs button { padding: 0.55rem 1.3rem; border-radius: 50px; border: 1.5px solid rgba(45,21,80,0.2); background: #fff; color: var(--purple); font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: 0.3s; }
.gallery-tabs button.active, .gallery-tabs button:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { border-radius: 14px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; box-shadow: var(--shadow-soft); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.lightbox { position: fixed; inset: 0; background: rgba(10,5,25,0.94); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: 10px; box-shadow: 0 0 60px rgba(0,0,0,0.6); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; color: #fff; font-size: 2rem; cursor: pointer; background: rgba(255,255,255,0.1); border: none; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--gold); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* donate */
.donate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.donate-card { background: #fff; border-radius: 18px; padding: 1.8rem 1.5rem; box-shadow: var(--shadow-soft); border-top: 5px solid var(--gold); display: flex; flex-direction: column; }
.donate-card.g { border-top-color: var(--green); }
.donate-card.p { border-top-color: var(--purple); }
.donate-card.o { border-top-color: var(--orange); }
.donate-card.b { border-top-color: #1565C0; }
.donate-card h3 { color: var(--purple); font-size: 1.05rem; margin-bottom: 0.5rem; }
.donate-card p { color: var(--gray); font-size: 0.85rem; flex: 1; }
.donate-card .amt { font-size: 1.6rem; font-weight: 900; color: var(--gold-dark); margin: 0.8rem 0 0.6rem; }
.donate-card .mini-track { height: 8px; background: #eee; border-radius: 6px; overflow: hidden; margin-bottom: 1rem; }
.donate-card .mini-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--orange)); }

.form-card { background: #fff; border-radius: 22px; padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.8rem; font-weight: 700; color: var(--purple); letter-spacing: 0.04em; }
.field input, .field select, .field textarea { padding: 0.8rem 1rem; border: 1.5px solid #ddd; border-radius: 10px; font-family: inherit; font-size: 0.92rem; transition: border 0.25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.amount-presets { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.amount-presets button { flex: 1; min-width: 70px; padding: 0.7rem; border: 1.5px solid #ddd; background: #fff; border-radius: 10px; font-weight: 700; cursor: pointer; transition: 0.25s; }
.amount-presets button.active, .amount-presets button:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.freq-toggle { display: inline-flex; background: #f0ebe0; border-radius: 50px; padding: 4px; }
.freq-toggle button { padding: 0.55rem 1.4rem; border: none; background: none; border-radius: 50px; font-weight: 700; cursor: pointer; color: var(--gray); transition: 0.25s; }
.freq-toggle button.active { background: var(--gold); color: #fff; }

.bank-card-d { background: linear-gradient(135deg, var(--purple), var(--purple-deep)); color: #fff; border-radius: 22px; padding: 2.2rem; }
.bank-card-d h3 { color: var(--gold); margin-bottom: 1.2rem; }
.bank-row-d { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 0.9rem; }
.bank-row-d span { color: rgba(255,255,255,0.7); }
.bank-row-d b { color: #fff; }
.pay-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-top: 1.4rem; }
.pay-opt { background: #fff; border: 1.5px solid #eee; border-radius: 14px; padding: 1.2rem; text-align: center; box-shadow: var(--shadow-soft); }
.pay-opt .ic { font-size: 1.8rem; margin-bottom: 0.4rem; }
.pay-opt .nm { font-weight: 700; color: var(--purple); font-size: 0.9rem; }
.pay-opt .sub { font-size: 0.75rem; color: var(--gray); }

/* timeline (achievements) */
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--gold), var(--purple)); }
.tl-item { position: relative; margin-bottom: 2.4rem; }
.tl-item::before { content: ""; position: absolute; left: -1.65rem; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--gold); }
.tl-item .year { font-weight: 900; color: var(--gold-dark); font-size: 1.3rem; }
.tl-item h4 { color: var(--purple); margin: 0.2rem 0; }
.tl-item p { color: var(--gray); font-size: 0.92rem; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }
.contact-info .ci-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-info .ci-row .ic { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info .ci-row h4 { color: var(--purple); }
.contact-info .ci-row a, .contact-info .ci-row p { color: var(--gray); }
.contact-info .ci-row a:hover { color: var(--gold-dark); }
.map-embed { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); height: 280px; margin-top: 1.4rem; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--purple-deep); color: rgba(255,255,255,0.7); padding: clamp(48px, 6vw, 70px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 2.4rem; }
.footer-brand img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--gold); background: #fff; margin-bottom: 1rem; }
.footer-brand .motto { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 1.05rem; }
.footer h4 { color: #fff; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a:hover { color: var(--gold); }
.footer .fc-row { font-size: 0.88rem; margin-bottom: 0.6rem; display: flex; gap: 0.5rem; }
.footer .social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer .social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.footer .social a:hover { background: var(--gold); color: var(--purple-deep); }
.footer-bank { font-size: 0.8rem; line-height: 1.7; }
.footer-bank b { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.4rem 0; text-align: center; font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold); }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 1500; display: flex; align-items: center; gap: 0.6rem; background: #25D366; color: #fff; padding: 0.8rem 1.2rem; border-radius: 50px; font-weight: 700; font-size: 0.88rem; box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6); transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.06); }
.wa-float .ic { font-size: 1.3rem; }

/* cookie banner */
.cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1600; background: var(--purple-deep); color: rgba(255,255,255,0.85); padding: 1rem clamp(1rem, 4vw, 3rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; box-shadow: 0 -8px 30px rgba(0,0,0,0.3); }
.cookie.hidden { display: none; }
.cookie a { color: var(--gold); text-decoration: underline; }

/* reveal animation — only active when JS adds .js-anim to <html> */
.js-anim .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .nav-links { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 80vw); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; background: var(--purple-deep); padding: 2rem; transform: translateX(100%); transition: transform 0.4s; box-shadow: -10px 0 40px rgba(0,0,0,0.4); }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 1100; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-3, .news-strip, .values-grid, .gallery-grid, .donate-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .mv-grid, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-img { order: 0; }
  .leader-feature, .leader-feature.reverse { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .leader-feature.reverse .lphoto { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats-grid, .pillars-grid, .cards-3, .news-strip, .values-grid, .gallery-grid, .donate-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .welcome-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .wa-float span:not(.ic) { display: none; }
}
