/*
Theme Name:        MercyFuture Foundation
Theme URI:         https://mercyfuturefoundation.org
Author:            MercyFuture Foundation
Description:       A fully Elementor-compatible WordPress theme that faithfully replicates the MercyFuture Foundation HTML layout — hero, mission (2-column + overlapping images), causes grid with progress bars, impact strip, how-it-works steps, stories grid, testimonials, donate section, volunteer form, partners strip, and footer. Every image, text, colour, and arrangement is editable from the WordPress Customizer or Elementor — no code required.
Version:           2.0.0
Requires at least: 6.0
Tested up to:      6.6
Requires PHP:      7.4
License:           GNU General Public License v2 or later
Text Domain:       mercyfuture
Tags:              charity, nonprofit, elementor, one-page, custom-colors, custom-logo
*/

/* ============================================================
   DESIGN TOKENS — mirrors the original HTML :root block
   ============================================================ */
:root {
  --gold:    #C8860A;
  --gold-lt: #F5E6C8;
  --gold-dk: #9A6508;
  --amber:   #E8A020;
  --cream:   #FDFAF4;
  --cream2:  #F7F0E3;
  --warm:    #3D2A0E;
  --rust:    #A84520;
  --green:   #1A5C3A;
  --green-lt:#E3F0E8;
  --white:   #FFFFFF;
  --dark:    #1A1209;
  --muted:   #6B5E4A;
  --border:  #EAE0CC;
  --r:       12px;
  --tr:      .32s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #fdf6ee; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--gold);
  color: var(--warm);
  text-align: center;
  padding: 9px 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announce a { color: var(--warm); font-weight: 700; text-decoration: underline; }

/* ============================================================
   NAV
   ============================================================ */
nav, .site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253,250,244,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-emblem {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-emblem svg { width: 24px; height: 24px; }
.logo-text strong { display: block; font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; color: var(--warm); line-height: 1.1; }
.logo-text span   { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li a, .nav-links a {
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--tr);
  display: block;
}
.nav-links li a:hover, .nav-links a:hover,
.nav-links li.current-menu-item > a { color: var(--warm); background: var(--cream2); }
.nav-links .nav-donate,
.nav-links li.nav-cta > a {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}
.nav-links .nav-donate:hover,
.nav-links li.nav-cta > a:hover { background: var(--gold-dk) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 1.8px; background: var(--warm); transition: var(--tr); border-radius: 2px; }

.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: var(--cream); flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  font-family: 'Lora', serif; font-size: 1.8rem; font-weight: 600;
  color: var(--warm); text-decoration: none; padding: 14px 0;
  width: 100%; text-align: center; border-bottom: 1px solid var(--border); transition: var(--tr);
}
.mob-menu a:hover { color: var(--gold); }
.mob-close { position: absolute; top: 24px; right: 28px; background: none; border: none; font-size: 2rem; color: var(--muted); cursor: pointer; line-height: 1; }

/* ============================================================
   HERO — exact replica of original
   ============================================================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(160deg,rgba(26,18,9,.72) 0%,rgba(61,42,14,.55) 50%,rgba(26,18,9,.8) 100%),
    var(--hero-bg-url, url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1900&q=85')) center/cover no-repeat;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 32px 80px; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 100px; background: linear-gradient(to top, var(--cream), transparent);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,134,10,.18); border: 1px solid rgba(200,134,10,.45);
  border-radius: 24px; padding: 7px 18px; margin-bottom: 24px;
  position: relative; z-index: 1; animation: fadeUp .8s .1s both;
}
.hero-badge span { font-size: .75rem; font-weight: 600; color: var(--amber); letter-spacing: .08em; text-transform: uppercase; }
.hb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: pulse 1.5s infinite; }
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem,6vw,5.2rem);
  color: #fff; font-weight: 700; line-height: 1.12;
  margin-bottom: 16px; position: relative; z-index: 1; animation: fadeUp .8s .25s both;
}
.hero h1 em { color: var(--amber); font-style: italic; }
.hero-motto {
  font-size: clamp(.95rem,2vw,1.2rem); color: rgba(255,255,255,.7);
  font-style: italic; font-family: 'Lora', serif; max-width: 580px;
  margin: 0 auto 14px; position: relative; z-index: 1; animation: fadeUp .8s .38s both;
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.62); max-width: 480px;
  margin: 0 auto 40px; line-height: 1.75; position: relative; z-index: 1; animation: fadeUp .8s .5s both;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; animation: fadeUp .8s .62s both; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 10px; font-size: .9rem; font-weight: 600; letter-spacing: .02em; text-decoration: none; transition: var(--tr); cursor: pointer; border: none; font-family: 'Inter', sans-serif; }
.btn-gold    { background: var(--gold); color: #fff; }
.btn-gold:hover    { background: var(--gold-dk); transform: translateY(-2px); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-warm    { background: var(--warm); color: #fff; }
.btn-warm:hover    { background: var(--dark); transform: translateY(-2px); color: #fff; }

.hero-impact {
  display: flex; gap: 0; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12); position: relative; z-index: 1; animation: fadeUp .8s .75s both;
}
.hi-item { flex: 1; text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.1); }
.hi-item:last-child { border-right: none; }
.hi-num { font-family: 'Lora', serif; font-size: 2.4rem; font-weight: 700; color: #fff; display: block; line-height: 1; }
.hi-label { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .06em; text-transform: uppercase; }

.hero-scroll {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.35); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; z-index: 1;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollAnim 2s ease-in-out infinite; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 96px 32px; }
.container { max-width: 1240px; margin: 0 auto; }

.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
}
.sec-eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--gold); }
.sec-title { font-family: 'Lora', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--dark); line-height: 1.18; margin-bottom: 16px; }
.sec-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.8; }

/* ============================================================
   MISSION SECTION — 2-col, overlapping images, stamp badge
   ============================================================ */
.mission { background: var(--cream); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 64px; }

.mission-media { position: relative; }
.mission-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 20px;
  /* URL overridden by inline style from template */
}
.mission-img-wrap { position: relative; }
.mission-img-wrap img.main-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 20px; }
.mission-img-wrap img.overlay-img {
  position: absolute; bottom: -28px; right: -24px;
  width: 52%; aspect-ratio: 1; object-fit: cover;
  border-radius: 16px; border: 5px solid var(--cream);
}
.mission-stamp {
  position: absolute; top: 24px; left: -20px;
  background: var(--gold); color: #fff; width: 90px; height: 90px;
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; z-index: 2;
}
.mission-stamp strong { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.mission-stamp span   { font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

.mission-text .sec-sub { margin-bottom: 28px; max-width: 100%; }
.mission-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.pillar { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; transition: var(--tr); }
.pillar:hover { border-color: var(--gold); transform: translateY(-2px); }
.pillar-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; font-size: 1.2rem; }
.pi-gold  { background: var(--gold-lt); }
.pi-green { background: var(--green-lt); }
.pillar h4 { font-size: .9rem; font-weight: 600; color: var(--warm); margin-bottom: 4px; }
.pillar p  { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   CAUSES GRID — 3 cards with image, progress bar, button
   ============================================================ */
.causes { background: var(--white); }
.causes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.cause-card { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: var(--tr); background: var(--white); }
.cause-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.cause-img { height: 220px; position: relative; overflow: hidden; }
.cause-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.cause-card:hover .cause-img img { transform: scale(1.06); }
.cause-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.cause-body { padding: 24px; }
.cause-body h3 { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 700; color: var(--warm); margin-bottom: 8px; }
.cause-body p  { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.cause-progress { margin-bottom: 16px; }
.prog-bar  { height: 6px; background: var(--cream2); border-radius: 3px; overflow: hidden; }
.prog-fill { height: 100%; background: linear-gradient(90deg,var(--gold),var(--amber)); border-radius: 3px; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
.prog-labels { display: flex; justify-content: space-between; margin-top: 6px; font-size: .75rem; color: var(--muted); }
.prog-labels strong { color: var(--warm); font-weight: 600; }

/* ============================================================
   IMPACT STRIP — dark bg, 4-col counters
   ============================================================ */
.impact-strip { background: linear-gradient(135deg,var(--warm) 0%,var(--dark) 100%); padding: 72px 32px; }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; max-width: 1240px; margin: 0 auto; }
.impact-item { text-align: center; padding: 32px 24px; border-right: 1px solid rgba(255,255,255,.08); }
.impact-item:last-child { border-right: none; }
.impact-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(200,134,10,.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.impact-icon svg { width: 24px; height: 24px; }
.impact-num   { font-family: 'Lora', serif; font-size: 3rem; font-weight: 700; color: #fff; display: block; line-height: 1; margin-bottom: 6px; }
.impact-label { font-size: .8rem; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; }

/* ============================================================
   HOW IT WORKS — 4 numbered steps with connector line
   ============================================================ */
.how { background: var(--cream); }
.how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
.how-steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px; background: var(--border); z-index: 0;
}
.how-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 700;
  border: 2px solid var(--border); background: var(--white); position: relative; z-index: 1;
}
.sc-1 { background: var(--gold-lt); border-color: var(--gold); color: var(--gold-dk); }
.sc-2 { background: var(--green-lt); border-color: var(--green); color: var(--green); }
.sc-3 { background: #FEF0E6; border-color: var(--rust); color: var(--rust); }
.sc-4 { background: var(--cream2); border-color: var(--gold-dk); color: var(--gold-dk); }
.how-step h3 { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--warm); margin-bottom: 8px; }
.how-step p  { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   IMPACT STORIES — featured card + 2 side cards
   ============================================================ */
.stories { background: var(--white); }
.stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.story-card { display: grid; grid-template-columns: 180px 1fr; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; transition: var(--tr); background: var(--white); }
.story-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.story-card.featured { grid-template-columns: 1fr; grid-row: span 2; }
.story-img { overflow: hidden; }
.story-img img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.story-card.featured .story-img img { height: 280px; }
.story-body { padding: 24px; }
.story-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dk); background: var(--gold-lt); padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.story-body h3 { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; color: var(--warm); margin-bottom: 8px; line-height: 1.35; }
.story-body p  { font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.story-author { display: flex; align-items: center; gap: 10px; }
.story-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-lt); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; color: var(--gold-dk); flex-shrink: 0; }
.story-author-info small  { display: block; font-size: .75rem; color: var(--muted); }
.story-author-info strong { font-size: .84rem; font-weight: 600; color: var(--warm); }

/* ============================================================
   TESTIMONIALS — 3-col cards
   ============================================================ */
.testimonials { background: var(--cream); }
.testi-wrap { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: var(--tr); position: relative; overflow: hidden; }
.testi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--tr); }
.testi-card:hover { transform: translateY(-3px); }
.testi-card:hover::before { transform: scaleX(1); }
.testi-quote { font-family: 'Lora', serif; font-size: 3.5rem; color: var(--cream2); position: absolute; top: 16px; right: 20px; line-height: 1; font-weight: 700; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { width: 14px; height: 14px; background: var(--amber); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.testi-text { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-lt); display: flex; align-items: center; justify-content: center; font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--gold-dk); flex-shrink: 0; }
.testi-info strong { display: block; font-size: .88rem; font-weight: 600; color: var(--warm); }
.testi-info span   { font-size: .76rem; color: var(--muted); }

/* ============================================================
   DONATE SECTION — dark overlay hero with amount buttons
   ============================================================ */
.donate {
  background:
    linear-gradient(rgba(26,18,9,.82),rgba(26,18,9,.88)),
    var(--donate-bg-url, url('https://images.unsplash.com/photo-1593113598332-cd288d649433?w=1600&q=80')) center/cover;
  padding: 96px 32px; text-align: center;
}
.donate-eyebrow { color: var(--amber); margin-bottom: 12px; }
.donate-eyebrow::before { background: var(--amber); }
.donate-title  { font-family: 'Lora', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.donate-motto  { font-family: 'Lora', serif; font-style: italic; font-size: 1.15rem; color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto 40px; }
.donate-amounts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.da-btn { padding: 12px 24px; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: .9rem; font-weight: 600; cursor: pointer; transition: var(--tr); font-family: 'Inter', sans-serif; }
.da-btn:hover, .da-btn.sel { background: var(--gold); border-color: var(--gold); }
.donate-custom { display: flex; gap: 12px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.donate-input { padding: 13px 20px; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: .9rem; font-family: 'Inter', sans-serif; width: 200px; outline: none; transition: var(--tr); }
.donate-input::placeholder { color: rgba(255,255,255,.35); }
.donate-input:focus { border-color: var(--gold); }
.donate-contact { margin-top: 40px; padding: 28px 36px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; display: inline-block; }
.dc-label  { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.dc-phones { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.dc-phone  { display: flex; align-items: center; gap: 8px; font-size: 1.15rem; font-weight: 600; color: #fff; text-decoration: none; transition: var(--tr); }
.dc-phone:hover { color: var(--amber); }
.dc-phone svg { width: 18px; height: 18px; }

/* ============================================================
   VOLUNTEER SECTION — image left, form right
   ============================================================ */
.volunteer { background: var(--white); }
.vol-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vol-image { position: relative; }
.vol-img   { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 20px; }
.vol-badge { position: absolute; top: -16px; right: -16px; background: var(--gold); color: #fff; padding: 16px 20px; border-radius: 14px; text-align: center; font-family: 'Lora', serif; }
.vol-badge strong { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.vol-badge span   { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.vol-form  { background: var(--cream); border-radius: 16px; padding: 32px; border: 1px solid var(--border); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.form-input, .form-select, .form-textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--dark);
  background: var(--white); outline: none; transition: var(--tr);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 90px; }
.vol-perks   { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.vp-item     { display: flex; align-items: flex-start; gap: 12px; }
.vp-check    { width: 22px; height: 22px; border-radius: 6px; background: var(--green-lt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.vp-check svg { width: 12px; height: 12px; }
.vp-text strong { display: block; font-size: .88rem; font-weight: 600; color: var(--warm); }
.vp-text span   { font-size: .8rem; color: var(--muted); }

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
.partners { background: var(--cream); padding: 64px 32px; }
.partners-inner { max-width: 1240px; margin: 0 auto; text-align: center; }
.partners-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; font-weight: 500; }
.partners-row   { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.partner-chip   { padding: 12px 24px; border-radius: 10px; border: 1px solid var(--border); background: var(--white); font-size: .85rem; font-weight: 600; color: var(--muted); transition: var(--tr); }
.partner-chip:hover { border-color: var(--gold); color: var(--gold-dk); background: var(--gold-lt); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); padding: 72px 32px 32px; }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; text-decoration: none; }
.footer-logo-text strong { color: #fff; display: block; font-family: 'Lora', serif; font-size: 1.1rem; }
.footer-logo-text span   { color: var(--amber); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.footer-brand-desc { font-size: .87rem; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 20px; max-width: 260px; }
.footer-motto { font-style: italic; font-family: 'Lora', serif; font-size: .9rem; color: rgba(255,255,255,.3); border-left: 2px solid var(--gold); padding-left: 14px; line-height: 1.6; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; font-weight: 600; }
.footer-col a  { display: block; font-size: .86rem; color: rgba(255,255,255,.45); text-decoration: none; margin-bottom: 10px; transition: var(--tr); }
.footer-col a:hover { color: rgba(255,255,255,.85); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: .86rem; }
.fci { color: var(--amber); flex-shrink: 0; font-size: .95rem; margin-top: 1px; }
.fci-text { color: rgba(255,255,255,.5); line-height: 1.55; }
.fci-text a { color: rgba(255,255,255,.55); text-decoration: none; transition: var(--tr); }
.fci-text a:hover { color: var(--amber); }
.footer-bottom { max-width: 1240px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: .76rem; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bottom a:hover { color: var(--amber); }
.heart { color: var(--rust); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse  { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.6); } }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease,transform .7s ease; }
.reveal.on { opacity:1; transform:translateY(0); }

/* ============================================================
   ELEMENTOR OVERRIDES
   ============================================================ */
.elementor-widget-heading .elementor-heading-title { font-family: 'Lora', serif; }
.elementor-widget-button .elementor-button { font-family: 'Inter', sans-serif; font-weight: 600; border-radius: 10px; }
.mf-elementor-page .elementor-section { max-width: 100% !important; }

/* ============================================================
   RESPONSIVE — matches original breakpoints
   ============================================================ */
@media (max-width: 1024px) {
  .mission-grid, .vol-grid { grid-template-columns: 1fr; gap: 48px; }
  .mission-img-wrap img.overlay-img { display: none; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-card.featured .story-img img { height: 220px; }
  .story-card { grid-template-columns: 1fr; }
  .causes-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-wrap  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 72px 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 80px; }
  .hi-item { padding: 0 12px; }
  .hi-num { font-size: 1.8rem; }
  .causes-grid, .testi-wrap { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-steps::before { display: none; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mission-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .donate-contact { padding: 20px; }
  .dc-phones { flex-direction: column; gap: 12px; }
}
