/*
Theme Name: Humanity First
Theme URI: https://humanityfirst.org
Author: Humanity First Foundation
Author URI: https://humanityfirst.org
Description: A modern, dark-themed nonprofit donation WordPress theme with full Customizer support. Features hero section, causes/campaigns, impact stats, testimonials, newsletter, and a complete donation page.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: humanity-first
Tags: nonprofit, donation, charity, dark, modern, customizer, one-page
*/

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --hf-primary:     #e8a045;
  --hf-primary2:    #f0bc6e;
  --hf-primary3:    rgba(232,160,69,0.14);
  --hf-primary4:    rgba(232,160,69,0.07);
  --hf-ink:         #09090b;
  --hf-ink2:        #111113;
  --hf-ink3:        #1e1e22;
  --hf-ink4:        #2a2a30;
  --hf-surface:     #16161a;
  --hf-border:      rgba(255,255,255,0.09);
  --hf-border2:     rgba(255,255,255,0.16);
  --hf-text:        #f4f1eb;
  --hf-text2:       #c8c3bc;
  --hf-text3:       #9a9590;
  --hf-jade:        #4ecca3;
  --hf-rose:        #e05c5c;
  --hf-sapphire:    #5c8de0;
  --hf-shadow:      0 32px 80px rgba(0,0,0,0.6);
  --hf-glow:        0 0 60px rgba(232,160,69,0.18);
  --hf-r:           12px;
  --hf-r2:          20px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--hf-ink);
  color: var(--hf-text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── CURSOR ── */
#hf-cursor {
  width: 10px; height: 10px;
  background: var(--hf-primary);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  z-index: 99999; pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
  mix-blend-mode: difference;
}
#hf-cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(232,160,69,0.55);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  z-index: 99998; pointer-events: none;
  transform: translate(-50%,-50%);
  transition: all .15s ease;
}
#hf-particle-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none; opacity: .45;
}

/* ── KEYFRAMES ── */
@keyframes hf-fadeDown  { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes hf-fadeUp    { from{opacity:0;transform:translateY(30px)}  to{opacity:1;transform:translateY(0)} }
@keyframes hf-fadeIn    { from{opacity:0} to{opacity:1} }
@keyframes hf-scaleIn   { from{opacity:0;transform:scale(.93)} to{opacity:1;transform:scale(1)} }
@keyframes hf-slowSpin  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes hf-ticker    { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes hf-blink     { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

/* ── ANNOUNCEMENT BAR ── */
#hf-announcement {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(90deg,#c77b20,var(--hf-primary),#c77b20);
  padding: 10px 20px; font-size: .82rem; font-weight: 700;
  color: #09090b; letter-spacing: .5px; position: relative; z-index: 999;
}
#hf-announcement.hidden { display: none; }
.hf-ann-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  cursor: pointer; font-size: 1rem; opacity: .6; background: none; border: none; color: #09090b;
}
.hf-ann-close:hover { opacity: 1; }

/* ── NAVIGATION ── */
#hf-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 72px;
  background: rgba(9,9,11,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--hf-border);
  transition: all .3s;
}
#hf-nav.scrolled { height: 60px; background: rgba(9,9,11,0.97); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.hf-nav-brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.hf-nav-brand-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg,var(--hf-primary),#c77b20);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.hf-nav-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600; letter-spacing: .5px; color: var(--hf-text);
}
.hf-nav-links { display: flex; align-items: center; gap: 4px; }
.hf-nav-link {
  color: var(--hf-text2); font-size: .875rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; cursor: pointer; transition: all .2s;
}
.hf-nav-link:hover { color: var(--hf-text); background: rgba(255,255,255,0.06); }
.hf-nav-cta {
  display: flex; align-items: center; gap: 10px;
  background: var(--hf-primary); color: #09090b;
  padding: 10px 24px; border-radius: 10px;
  font-weight: 700; font-size: .875rem; cursor: pointer; border: none;
  transition: all .25s; letter-spacing: .3px;
  box-shadow: 0 4px 20px rgba(232,160,69,0.35);
}
.hf-nav-cta:hover { background: var(--hf-primary2); box-shadow: 0 6px 32px rgba(232,160,69,0.5); transform: translateY(-1px); }

/* ── HERO ── */
.hf-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 52px 80px; position: relative; overflow: hidden;
}
.hf-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%,rgba(232,160,69,0.08) 0%,transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%,rgba(78,204,163,0.05) 0%,transparent 60%),
              radial-gradient(ellipse 50% 50% at 80% 20%,rgba(92,141,224,0.05) 0%,transparent 60%);
}
.hf-hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px,transparent 1px),
                    linear-gradient(90deg,rgba(255,255,255,0.025) 1px,transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black 0%,transparent 100%);
}
.hf-hero-content { position: relative; z-index: 2; max-width: 900px; text-align: center; }
.hf-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,69,0.12); border: 1px solid rgba(232,160,69,0.28);
  border-radius: 100px; padding: 6px 18px 6px 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--hf-primary); margin-bottom: 32px;
  animation: hf-fadeDown .8s ease both;
}
.hf-hero-eyebrow-dot { width: 6px; height: 6px; background: var(--hf-primary); border-radius: 50%; animation: hf-blink 2s infinite; }
.hf-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem,9vw,8rem); font-weight: 300;
  line-height: 1.0; letter-spacing: -2px; color: var(--hf-text);
  animation: hf-fadeUp .9s .1s ease both;
}
.hf-hero-title em  { font-style: italic; color: var(--hf-primary); font-weight: 300; }
.hf-hero-title strong { font-weight: 600; display: block; color: var(--hf-text); }
.hf-hero-sub {
  margin-top: 28px; font-size: 1.1rem; color: var(--hf-text2);
  max-width: 560px; margin-left: auto; margin-right: auto;
  line-height: 1.8; font-weight: 300;
  animation: hf-fadeUp .9s .2s ease both;
}
.hf-hero-actions {
  display: flex; gap: 14px; margin-top: 44px; justify-content: center; flex-wrap: wrap;
  animation: hf-fadeUp .9s .3s ease both;
}
.hf-btn-primary {
  display: flex; align-items: center; gap: 10px;
  background: var(--hf-primary); color: #09090b;
  padding: 17px 40px; border-radius: 12px; font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none; transition: all .3s;
  box-shadow: 0 8px 40px rgba(232,160,69,0.38); letter-spacing: .3px;
}
.hf-btn-primary:hover { background: var(--hf-primary2); transform: translateY(-3px); box-shadow: 0 16px 60px rgba(232,160,69,0.55); }
.hf-btn-secondary {
  display: flex; align-items: center; gap: 10px;
  background: transparent; color: var(--hf-text);
  padding: 17px 40px; border-radius: 12px; font-weight: 500; font-size: 1rem;
  cursor: pointer; border: 1.5px solid var(--hf-border2); transition: all .3s;
}
.hf-btn-secondary:hover { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.hf-hero-stats {
  display: flex; margin-top: 72px; justify-content: center;
  animation: hf-fadeUp .9s .4s ease both;
  border: 1px solid var(--hf-border); border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(8px); background: rgba(255,255,255,0.02);
}
.hf-hero-stat { padding: 24px 36px; text-align: center; border-left: 1px solid var(--hf-border); }
.hf-hero-stat:first-child { border-left: none; }
.hf-hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 600; color: var(--hf-primary); line-height: 1; }
.hf-hero-stat-label { font-size: .75rem; color: var(--hf-text2); text-transform: uppercase; letter-spacing: 2px; margin-top: 6px; }

/* ── TICKER ── */
.hf-ticker-wrap { background: var(--hf-primary); overflow: hidden; padding: 13px 0; }
.hf-ticker { display: flex; white-space: nowrap; animation: hf-ticker 25s linear infinite; }
.hf-ticker-item { color: #09090b; font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0 32px; display: flex; align-items: center; gap: 16px; }
.hf-ticker-sep { opacity: .35; }

/* ── SECTION BASE ── */
.hf-section { padding: 120px 52px; max-width: 1280px; margin: 0 auto; }
.hf-section-eyebrow { font-size: .75rem; color: var(--hf-primary); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.hf-section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,5vw,4rem); font-weight: 300; line-height: 1.1; letter-spacing: -1px; max-width: 600px; color: var(--hf-text); }
.hf-section-title em { font-style: italic; color: var(--hf-primary); }
.hf-section-header { margin-bottom: 64px; }

/* ── CAUSES GRID ── */
.hf-causes-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.hf-cause-card {
  background: var(--hf-surface); border: 1px solid var(--hf-border);
  border-radius: var(--hf-r2); overflow: hidden; cursor: pointer;
  transition: all .4s cubic-bezier(.25,.8,.25,1); position: relative;
}
.hf-cause-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,var(--hf-primary3) 0%,transparent 60%); opacity: 0; transition: .4s; }
.hf-cause-card:hover { transform: translateY(-8px); border-color: rgba(232,160,69,0.35); box-shadow: var(--hf-glow); }
.hf-cause-card:hover::before { opacity: 1; }
.hf-cause-visual { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; overflow: hidden; }
.hf-cause-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 40%,var(--hf-surface) 100%); }
.hf-cv-water  { background: linear-gradient(135deg,#0a1628,#0d3b6e,#1565c0); }
.hf-cv-food   { background: linear-gradient(135deg,#071c07,#1b5e20,#388e3c); }
.hf-cv-edu    { background: linear-gradient(135deg,#1a0a2e,#4a148c,#7b1fa2); }
.hf-cv-health { background: linear-gradient(135deg,#1c0a0a,#b71c1c,#e53935); }
.hf-cause-body { padding: 24px 24px 28px; }
.hf-cause-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; color: var(--hf-text); }
.hf-cause-desc { color: var(--hf-text2); font-size: .88rem; line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.hf-cause-track { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.hf-cause-fill { height: 100%; background: linear-gradient(90deg,var(--hf-primary),var(--hf-primary2)); border-radius: 2px; }
.hf-cause-nums { display: flex; justify-content: space-between; font-size: .78rem; color: var(--hf-text2); margin-top: 8px; }
.hf-cause-nums span:first-child { color: var(--hf-primary); font-weight: 600; }
.hf-cause-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--hf-primary); font-size: .85rem; font-weight: 600; cursor: pointer; background: transparent; border: none; transition: .2s; }
.hf-cause-btn:hover { color: var(--hf-primary2); gap: 12px; }

/* ── IMPACT SECTION ── */
.hf-impact-section { background: var(--hf-ink2); border-top: 1px solid var(--hf-border); border-bottom: 1px solid var(--hf-border); padding: 100px 52px; }
.hf-impact-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hf-impact-visual { position: relative; height: 440px; display: flex; align-items: center; justify-content: center; }
.hf-impact-ring { width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(232,160,69,0.18); display: flex; align-items: center; justify-content: center; position: relative; animation: hf-slowSpin 30s linear infinite; }
.hf-impact-ring::before { content: ''; position: absolute; inset: -24px; border-radius: 50%; border: 1px dashed rgba(232,160,69,0.09); }
.hf-impact-center { position: absolute; text-align: center; animation: hf-slowSpin 30s linear infinite reverse; }
.hf-impact-center-num { font-family: 'Cormorant Garamond', serif; font-size: 4rem; font-weight: 300; color: var(--hf-primary); line-height: 1; }
.hf-impact-center-label { font-size: .75rem; color: var(--hf-text2); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
.hf-impact-float { position: absolute; background: var(--hf-surface); border: 1px solid var(--hf-border); border-radius: 12px; padding: 14px 18px; font-size: .8rem; box-shadow: var(--hf-shadow); white-space: nowrap; }
.hf-impact-float.f1 { top: 20px; right: 0; }
.hf-impact-float.f2 { bottom: 20px; left: 0; }
.hf-impact-float.f3 { top: 50%; right: -20px; transform: translateY(-50%); }
.hf-impact-float-val { color: var(--hf-primary); font-weight: 700; font-size: .95rem; margin-top: 2px; }
.hf-impact-float-sub { font-size: .72rem; color: var(--hf-text2); margin-top: 2px; }
.hf-impact-features { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.hf-impact-feat { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--hf-surface); border: 1px solid var(--hf-border); border-radius: 12px; transition: .3s; }
.hf-impact-feat:hover { border-color: rgba(232,160,69,0.25); }
.hf-impact-feat-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--hf-primary3); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.hf-impact-feat-title { font-weight: 600; font-size: .95rem; margin-bottom: 4px; color: var(--hf-text); }
.hf-impact-feat-desc { color: var(--hf-text2); font-size: .85rem; line-height: 1.6; font-weight: 300; }

/* ── TESTIMONIALS ── */
.hf-testi-section { padding: 100px 52px; background: var(--hf-ink); }
.hf-testi-inner { max-width: 1280px; margin: 0 auto; }
.hf-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.hf-testi-card { background: var(--hf-surface); border: 1px solid var(--hf-border); border-radius: 16px; padding: 28px; transition: .3s; }
.hf-testi-card:hover { border-color: rgba(232,160,69,0.25); transform: translateY(-4px); }
.hf-testi-stars { color: var(--hf-primary); font-size: .85rem; margin-bottom: 14px; letter-spacing: 2px; }
.hf-testi-text { color: var(--hf-text2); font-size: .9rem; line-height: 1.8; font-weight: 300; margin-bottom: 20px; font-style: italic; }
.hf-testi-author { display: flex; align-items: center; gap: 12px; }
.hf-testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--hf-primary),#c77b20); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: #09090b; }
.hf-testi-name { font-weight: 600; font-size: .88rem; color: var(--hf-text); }
.hf-testi-loc { font-size: .75rem; color: var(--hf-text2); }

/* ── NEWSLETTER ── */
.hf-newsletter-section { background: linear-gradient(135deg,rgba(232,160,69,0.08),rgba(78,204,163,0.04)); border-top: 1px solid var(--hf-border); border-bottom: 1px solid var(--hf-border); padding: 80px 52px; }
.hf-newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.hf-newsletter-title { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; margin-bottom: 12px; color: var(--hf-text); }
.hf-newsletter-sub { color: var(--hf-text2); font-size: .92rem; margin-bottom: 28px; font-weight: 300; }
.hf-newsletter-form { display: flex; gap: 10px; }
.hf-newsletter-input { flex: 1; background: var(--hf-ink4); border: 1.5px solid var(--hf-border); color: var(--hf-text); padding: 14px 18px; border-radius: 10px; font-family: 'Outfit',sans-serif; font-size: .92rem; outline: none; transition: .25s; }
.hf-newsletter-input:focus { border-color: rgba(232,160,69,0.55); }
.hf-newsletter-input::placeholder { color: var(--hf-text3); }
.hf-newsletter-btn { background: var(--hf-primary); color: #09090b; border: none; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: .88rem; cursor: pointer; white-space: nowrap; transition: .2s; }
.hf-newsletter-btn:hover { background: var(--hf-primary2); }

/* ── DONATE PAGE ── */
.hf-donate-page { padding: 100px 0 80px; background: radial-gradient(ellipse 60% 50% at 80% 20%,rgba(232,160,69,0.07) 0%,transparent 60%), var(--hf-ink); }
.hf-donate-layout { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.hf-donate-eyebrow { font-size: .75rem; color: var(--hf-primary); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.hf-donate-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 300; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; color: var(--hf-text); }
.hf-donate-title em { font-style: italic; color: var(--hf-primary); }
.hf-donate-desc { color: var(--hf-text2); line-height: 1.8; font-size: .95rem; font-weight: 300; margin-bottom: 40px; }

/* Campaign cards */
.hf-campaign-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.hf-campaign-mini { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--hf-surface); border: 1px solid var(--hf-border); border-radius: 12px; cursor: pointer; transition: .3s; }
.hf-campaign-mini:hover, .hf-campaign-mini.selected { border-color: rgba(232,160,69,0.4); background: var(--hf-primary4); }
.hf-camp-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.25); flex-shrink: 0; position: relative; transition: .2s; }
.hf-campaign-mini.selected .hf-camp-radio { border-color: var(--hf-primary); }
.hf-camp-radio::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); width: 10px; height: 10px; background: var(--hf-primary); border-radius: 50%; opacity: 0; transition: .2s; }
.hf-campaign-mini.selected .hf-camp-radio::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.hf-camp-icon { font-size: 1.4rem; width: 28px; text-align: center; }
.hf-camp-name { font-weight: 600; font-size: .92rem; margin-bottom: 2px; color: var(--hf-text); }
.hf-camp-raised { font-size: .78rem; color: var(--hf-text2); }
.hf-camp-raised strong { color: var(--hf-primary); }

/* Trust badges */
.hf-trust-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.hf-trust-badge { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--hf-surface); border: 1px solid var(--hf-border); border-radius: 10px; font-size: .78rem; color: var(--hf-text2); font-weight: 500; }
.hf-trust-badge-icon { color: var(--hf-jade); }

/* FAQ */
.hf-faq { margin-top: 48px; }
.hf-faq-title { font-size: .75rem; color: var(--hf-text2); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 16px; }
.hf-faq-item { border: 1px solid var(--hf-border); border-radius: 12px; overflow: hidden; margin-bottom: 8px; }
.hf-faq-q { padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: .88rem; font-weight: 600; color: var(--hf-text); transition: .2s; }
.hf-faq-q:hover { background: rgba(255,255,255,0.03); }
.hf-faq-arrow { color: var(--hf-primary); transition: .2s; font-size: .8rem; }
.hf-faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: .3s; color: var(--hf-text2); font-size: .85rem; line-height: 1.7; font-weight: 300; }
.hf-faq-item.open .hf-faq-a { max-height: 200px; padding: 0 20px 16px; }
.hf-faq-item.open .hf-faq-arrow { transform: rotate(180deg); }

/* Donation form card */
.hf-form-card { background: var(--hf-surface); border: 1px solid var(--hf-border); border-radius: 20px; padding: 32px; position: sticky; top: 90px; box-shadow: var(--hf-shadow); }
.hf-form-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 24px; color: var(--hf-text); }
.hf-recur-toggle { display: flex; gap: 8px; margin-bottom: 20px; background: var(--hf-ink4); padding: 4px; border-radius: 10px; }
.hf-recur-btn { flex: 1; padding: 9px 8px; text-align: center; border-radius: 7px; cursor: pointer; font-size: .8rem; font-weight: 600; color: var(--hf-text2); border: none; background: transparent; transition: .25s; }
.hf-recur-btn.active { background: var(--hf-surface); color: var(--hf-primary); box-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.hf-form-label { display: block; font-size: .73rem; color: var(--hf-text2); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.hf-amount-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 10px; }
.hf-amt-pill { padding: 13px 8px; text-align: center; background: var(--hf-ink4); border: 1px solid var(--hf-border); border-radius: 10px; cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--hf-text); transition: .25s; border: none; }
.hf-amt-pill:hover { border-color: rgba(232,160,69,0.35); }
.hf-amt-pill.active { background: var(--hf-primary3); border: 1px solid var(--hf-primary); color: var(--hf-primary); }
.hf-input-icon-wrap { position: relative; }
.hf-input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--hf-primary); font-weight: 700; pointer-events: none; }
.hf-form-input { width: 100%; background: var(--hf-ink4); border: 1.5px solid var(--hf-border); color: var(--hf-text); padding: 13px 16px; border-radius: 10px; font-family: 'Outfit',sans-serif; font-size: .92rem; outline: none; transition: .25s; -webkit-appearance: none; }
.hf-form-input:focus { border-color: rgba(232,160,69,0.55); background: var(--hf-ink3); }
.hf-form-input.padl { padding-left: 32px; }
.hf-form-input::placeholder { color: var(--hf-text3); }
.hf-form-group { margin-bottom: 16px; }
.hf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hf-pay-tabs { display: flex; gap: 6px; margin-bottom: 20px; background: var(--hf-ink4); padding: 4px; border-radius: 12px; }
.hf-pay-tab { flex: 1; padding: 10px 6px; text-align: center; border-radius: 8px; cursor: pointer; font-size: .82rem; font-weight: 600; color: var(--hf-text2); border: none; background: transparent; transition: .25s; }
.hf-pay-tab.active { background: var(--hf-surface); color: var(--hf-text); box-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.hf-pay-panel { display: none; }
.hf-pay-panel.active { display: block; animation: hf-fadeIn .3s ease both; }
.hf-wallet-list { display: flex; flex-direction: column; gap: 10px; }
.hf-wallet-card { display: flex; align-items: center; gap: 12px; background: var(--hf-ink4); border: 1.5px solid var(--hf-border); border-radius: 10px; padding: 14px 16px; transition: .2s; }
.hf-wallet-card:hover { border-color: var(--hf-border2); }
.hf-wallet-sym { font-size: 1.4rem; width: 32px; text-align: center; }
.hf-wallet-info { flex: 1; min-width: 0; }
.hf-wallet-name { font-size: .82rem; font-weight: 700; margin-bottom: 3px; color: var(--hf-text); }
.hf-wallet-addr { font-size: .68rem; color: var(--hf-text2); font-family: monospace; word-break: break-all; line-height: 1.4; }
.hf-btn-copy { background: rgba(232,160,69,0.1); border: 1px solid rgba(232,160,69,0.25); color: var(--hf-primary); padding: 7px 12px; border-radius: 7px; font-size: .75rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: .2s; }
.hf-btn-copy:hover { background: rgba(232,160,69,0.22); }
.hf-bank-box { background: var(--hf-ink4); border: 1.5px solid var(--hf-border); border-radius: 12px; padding: 20px; margin-bottom: 16px; }
.hf-bank-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--hf-border); font-size: .88rem; }
.hf-bank-row:last-child { border-bottom: none; padding-bottom: 0; }
.hf-bank-row-label { color: var(--hf-text2); font-weight: 500; }
.hf-bank-row-val { font-weight: 700; color: var(--hf-text); text-align: right; }
.hf-btn-donate-submit { width: 100%; padding: 17px; border-radius: 12px; background: linear-gradient(135deg,var(--hf-primary),#c9832a); color: #09090b; border: none; font-family: 'Outfit',sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; margin-top: 20px; transition: all .3s; letter-spacing: .3px; box-shadow: 0 6px 30px rgba(232,160,69,0.32); }
.hf-btn-donate-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,160,69,0.52); }
.hf-secure-strip { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: .75rem; color: var(--hf-text2); }
.hf-secure-strip-icon { color: var(--hf-jade); }
.hf-impact-preview { background: var(--hf-ink4); border: 1px solid var(--hf-border); border-radius: 10px; padding: 16px; margin-top: 16px; }
.hf-impact-preview-title { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--hf-text2); font-weight: 700; margin-bottom: 10px; }
.hf-impact-preview-line { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--hf-text2); margin-bottom: 6px; }

/* ── FOOTER ── */
.hf-footer { background: var(--hf-ink2); border-top: 1px solid var(--hf-border); padding: 80px 52px 40px; }
.hf-footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--hf-border); }
.hf-footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; margin-bottom: 12px; color: var(--hf-text); }
.hf-footer-tagline { color: var(--hf-text2); font-size: .88rem; line-height: 1.7; font-weight: 300; max-width: 280px; }
.hf-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.hf-footer-social-btn { width: 38px; height: 38px; border-radius: 10px; background: var(--hf-ink4); border: 1px solid var(--hf-border); display: flex; align-items: center; justify-content: center; font-size: .9rem; cursor: pointer; transition: .2s; }
.hf-footer-social-btn:hover { border-color: rgba(232,160,69,0.35); background: var(--hf-primary3); }
.hf-footer-col-title { font-size: .72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--hf-text2); font-weight: 700; margin-bottom: 16px; }
.hf-footer-links { display: flex; flex-direction: column; gap: 10px; }
.hf-footer-links a { color: var(--hf-text2); font-size: .875rem; transition: .2s; cursor: pointer; }
.hf-footer-links a:hover { color: var(--hf-primary); }
.hf-footer-bottom { max-width: 1280px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; }
.hf-footer-copy { color: var(--hf-text2); font-size: .8rem; }
.hf-footer-legal { display: flex; gap: 24px; }
.hf-footer-legal a { color: var(--hf-text2); font-size: .8rem; cursor: pointer; transition: .2s; }
.hf-footer-legal a:hover { color: var(--hf-text); }

/* ── TOAST ── */
#hf-toast { position: fixed; bottom: 36px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--hf-surface); border: 1px solid var(--hf-border); border-radius: 12px; padding: 14px 24px; font-size: .875rem; font-weight: 500; box-shadow: var(--hf-shadow); z-index: 99999; opacity: 0; pointer-events: none; transition: .35s cubic-bezier(.25,.8,.25,1); display: flex; align-items: center; gap: 10px; white-space: nowrap; color: var(--hf-text); }
#hf-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
#hf-toast.t-success { border-color: rgba(78,204,163,.35); }
#hf-toast.t-error   { border-color: rgba(224,92,92,.35); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hf-donate-layout { grid-template-columns: 1fr; }
  .hf-form-card { position: static; }
  .hf-impact-inner { grid-template-columns: 1fr; }
  .hf-impact-visual { display: none; }
  .hf-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hf-testi-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  #hf-nav { padding: 0 20px; }
  .hf-nav-links { display: none; }
  .hf-hero { padding: 100px 24px 60px; }
  .hf-hero-stats { flex-wrap: wrap; border-radius: 12px; }
  .hf-hero-stat { padding: 16px 20px; }
  .hf-section, .hf-impact-section, .hf-testi-section, .hf-newsletter-section { padding: 70px 24px; }
  .hf-footer-inner { grid-template-columns: 1fr; }
  .hf-footer { padding: 60px 24px 32px; }
  .hf-form-row { grid-template-columns: 1fr; }
  .hf-testi-grid { grid-template-columns: 1fr; }
  .hf-newsletter-form { flex-direction: column; }
}
