/* ===================================================
   ONE HUMANITY — GLOBAL STYLES
   Warm earthy palette · Editorial typography
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  /* Brand Colors — matched to v2 design system */
  --orange:       #E8540A;
  --orange-dark:  #C4420A;
  --orange-light: #F97316;
  --green:        #2D6A1F;
  --green-dark:   #1A4010;
  --green-light:  #4A9132;
  --gold:         #D4920A;
  --cream:        #FDF8F0;
  --cream-dark:   #F3E9D8;
  --dark:         #1A1208;
  --text:         #2C1A0A;
  --text-muted:   #6B4C2A;
  --border:       #E8DCC8;
  --white:        #FFFFFF;

  /* Typography — matched to v2 */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  /* Spacing & Radius */
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow:    0 4px 24px rgba(0,0,0,.09);
  --shadow-md: 0 8px 40px rgba(0,0,0,.13);
  --shadow-lg: 0 16px 60px rgba(0,0,0,.16);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: #FFFDF9;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

.container { max-width: 1500px; margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: .8rem;
  display: block;
}

.accent-orange { color: var(--orange); }
.accent-green  { color: var(--green); }
.accent-gold   { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary   { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(216,92,54,.35); }
.btn-green     { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline   { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { background: var(--text); color: #fff; border-color: var(--text); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-ghost     { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-dark      { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: #333; }
.btn-white     { background: #fff; color: var(--dark); border-color: #fff; }
.btn-white:hover { background: var(--cream); }
.btn-lg        { padding: 17px 36px; font-size: 1rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,253,249,.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--orange);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.09); }
.nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.logo-one      { color: var(--green); }
.logo-humanity { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .15s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); padding: 4px; }

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: .8rem 0 1.2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li    { width: 100%; text-align: center; }
  .nav-links a     { display: block; padding: 11px; }
  .nav-links a::after { display: none; }
}

/* ===== HERO (v2 look & feel) ===== */
.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(160deg, #FDF3E0 0%, #FFF8EE 50%, #F0F9E8 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(216,92,54,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(42,92,63,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3rem 4rem 8%;
  position: relative; z-index: 2;
  animation: fadeUp .9s ease both;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(216,92,54,.1); border: 1px solid rgba(216,92,54,.3);
  color: var(--orange); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .45rem 1.1rem; border-radius: 50px;
  margin-bottom: 1.6rem; width: fit-content;
}
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700; line-height: 1.08;
  color: var(--dark); margin-bottom: 1.4rem;
  letter-spacing: -.01em;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-title .green { color: var(--green); }
.hero-sub {
  font-size: 1.08rem; color: var(--text-muted);
  line-height: 1.75; max-width: 500px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(90,40,5,.12);
}
.stat-item .num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: var(--orange); display: block; line-height: 1;
}
.stat-item .lbl { font-size: .74rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.hero-image {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 8% 4rem 2rem; position: relative; z-index: 2;
  animation: fadeIn 1.2s ease both;
}
.hero-img-wrap { position: relative; width: 100%; max-width: 480px; }
.hero-img-wrap::before {
  content: ''; position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(201,154,60,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-img-wrap img { width: 100%; height: auto; position: relative; filter: drop-shadow(0 20px 50px rgba(90,40,5,.2)); }
.floating-badge {
  position: absolute; background: #fff; border-radius: 16px;
  padding: .8rem 1.2rem; box-shadow: 0 8px 30px rgba(90,40,5,.15);
  display: flex; align-items: center; gap: 10px;
}
.badge-1 { bottom: 15%; left: -5%; animation: float 4s ease-in-out infinite; }
.badge-2 { top: 20%; right: -5%; animation: float 4s ease-in-out infinite 2s; }
.badge-icon { font-size: 1.6rem; }
.badge-text .b-num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--orange); display: block; line-height: 1; }
.badge-text .b-lbl { font-size: .72rem; color: var(--text-muted); white-space: nowrap; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-text  { padding: 3rem 6% 1rem; }
  .hero-image { padding: 1rem 6% 3.5rem; }
  .hero-img-wrap { max-width: 380px; }
}

/* ===== IMPACT STRIP ===== */
.impact-strip {
  background: var(--green-dark);
  padding: 5.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.impact-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.impact-strip .container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  position: relative;
}
.istat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.istat:last-child { border-right: none; }
.istat-num   { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--orange-light); line-height: 1; display: block; }
.istat-label { font-size: 14px; color: rgba(255,255,255,.7); margin-top: .5rem; font-weight: 500; }

@media (max-width: 700px) {
  .impact-strip .container { grid-template-columns: 1fr 1fr; }
  .istat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .istat:nth-child(2n) { border-right: none; }
  .istat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ===== PROGRAMS ===== */
.programs {
  background: #fff;
  padding: 6rem 0;
}
.programs-header { margin-bottom: 3.5rem; }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.program-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid transparent;
}
.program-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--border); }
.program-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.program-body strong  { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .4rem; font-weight: 600; }
.program-body p       { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

@media (max-width: 700px) { .programs-grid { grid-template-columns: 1fr; } }

/* ===== HOW WE WORK ===== */
.how-work { background: var(--cream); padding: 6rem 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--border);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--cream);
}
.step strong { display: block; font-size: 1rem; margin-bottom: .5rem; font-weight: 700; }
.step p { font-size: .88rem; color: var(--text-muted); }

@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #fff; padding: 6rem 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  border: 1px solid var(--border);
}
.testi-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  opacity: .25;
  line-height: 1;
  position: absolute;
  top: 1rem; left: 1.5rem;
}
.testi-quote {
  font-style: italic;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.75;
  flex: 1;
  padding-top: 1rem;
}
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.testi-author strong { display: block; font-size: .9rem; }
.testi-author span   { font-size: .8rem; color: var(--text-muted); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ===== GET INVOLVED ===== */
.get-involved { background: var(--cream); padding: 6rem 0; }
.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.involve-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.involve-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.involve-card.featured { background: var(--green); color: #fff; border-color: var(--green); }
.involve-card.featured p { color: rgba(255,255,255,.78); }
.involve-icon { font-size: 2.4rem; }
.involve-card strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.involve-card p      { font-size: .9rem; color: var(--text-muted); flex: 1; }

@media (max-width: 900px) { .involve-grid { grid-template-columns: 1fr; } }

/* ===== WHERE WE WORK ===== */
.where-work { background: #fff; padding: 6rem 0; }
.where-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.ghana-map {
  position: relative;
  width: 300px;
  height: 380px;
  margin: 0 auto;
}
.ghana-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 55% 45% 48% 52% / 45% 48% 52% 55%;
  position: relative;
  box-shadow: var(--shadow-md);
}
.map-dot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.map-dot::before {
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 2px solid #fff;
  flex-shrink: 0;
  transition: transform .2s;
}
.map-dot.active::before { background: var(--orange); width: 16px; height: 16px; box-shadow: 0 0 0 5px rgba(216,92,54,.3); }
.map-dot span {
  background: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: var(--text);
  white-space: nowrap;
}
.dot-tamale { top: 15%; left: 58%; }
.dot-kumasi { top: 45%; left: 32%; }
.dot-accra  { top: 65%; left: 44%; }

.program-list   { display: flex; flex-direction: column; gap: 1rem; }
.prog-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  transition: transform .2s;
}
.prog-item:hover { transform: translateX(4px); }
.prog-icon  { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.prog-item strong { display: block; margin-bottom: .2rem; font-weight: 700; font-size: .95rem; }
.prog-item p      { font-size: .87rem; color: var(--text-muted); margin: 0; }

@media (max-width: 900px) {
  .where-inner { grid-template-columns: 1fr; }
  .ghana-map   { display: none; }
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, var(--orange) 0%, #E8901A 100%);
  padding: 4rem 1.5rem;
}
.newsletter-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.newsletter h3 { font-family: var(--font-display); font-size: 1.9rem; color: #fff; margin-bottom: .3rem; font-weight: 700; }
.newsletter p  { color: rgba(255,255,255,.85); margin: 0; font-size: .95rem; }
.newsletter-form { display: flex; gap: .8rem; flex: 1; min-width: 280px; }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: .95rem;
  font-family: var(--font-body);
  outline: none;
  color: var(--text);
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,.75); padding: 5rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
.footer-brand .nav-logo { font-size: 1.6rem; display: inline-flex; }
.footer-brand p         { margin-top: .5rem; font-size: .9rem; color: rgba(255,255,255,.45); }
.footer-legal           { font-size: .8rem !important; margin-top: 1.2rem !important; line-height: 1.6; }
.footer-links           { display: flex; flex-direction: column; gap: .55rem; }
.footer-links strong    { color: rgba(255,255,255,.9); font-size: .88rem; margin-bottom: .3rem; font-weight: 700; display: block; }
.footer-links a         { font-size: .83rem; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-links a:hover   { color: var(--orange); }
.footer-bottom {
  text-align: center;
  padding: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .45rem;
  color: var(--text);
  letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .94rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  line-height: 1.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(216,92,54,.12);
}
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .8rem; color: var(--text-muted); margin-top: .3rem; }

@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--cream);
  padding: 5rem 1.5rem 3rem;
  text-align: center;
}
.page-hero h1       { margin-bottom: .7rem; }
.page-hero .sub-txt { max-width: 560px; margin: 0 auto; color: var(--text-muted); font-size: 1.05rem; }

/* ===== DONATE PAGE ===== */
.donate-hero {
  background: linear-gradient(165deg, #1a1208 0%, var(--green-dark) 50%, #1e1408 100%);
  padding: 5rem 0 6rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.donate-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(216,92,54,.15) 0%, transparent 60%);
}
.donate-box {
  max-width: 580px;
  margin: 2.5rem auto 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  backdrop-filter: blur(12px);
  position: relative;
}
.amount-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; }
.amount-btn {
  padding: 13px;
  border: 2px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.8);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .18s;
}
.amount-btn:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.amount-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.donate-freq { display: flex; gap: .8rem; margin-top: 1.5rem; }
.freq-btn {
  flex: 1;
  padding: 13px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.6);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  font-size: .88rem;
}
.freq-btn.active { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.45); }

.donate-impact {
  margin-top: 1.2rem;
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  padding: 1rem;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  line-height: 1.5;
}
.donate-impact strong { color: var(--orange-light); }

.custom-input {
  width: 100%;
  padding: 13px 18px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  font-size: .95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .15s;
}
.custom-input::placeholder { color: rgba(255,255,255,.35); }
.custom-input:focus { border-color: var(--orange); }

.donate-legal { font-size: 11px; color: rgba(255,255,255,.35); text-align: center; margin-top: 1rem; line-height: 1.5; }

/* ===== PAYMENT FORM ===== */
.payment-section {
  background: var(--cream);
  padding: 5rem 0;
}
.payment-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3.5rem;
  max-width: 980px;
  margin: 0 auto;
}
.payment-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.payment-form-box h2 { margin-bottom: 1.8rem; font-size: 1.5rem; }
.payment-summary {
  position: sticky;
  top: 90px;
}
.summary-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
}
.summary-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: .3rem;
}
.summary-freq    { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }
.summary-impact  { font-size: .9rem; color: rgba(255,255,255,.8); padding: 1rem; background: rgba(255,255,255,.08); border-radius: var(--radius); margin-bottom: 1.5rem; line-height: 1.6; }
.summary-items   { display: flex; flex-direction: column; gap: .5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 1rem; }
.sitem           { display: flex; justify-content: space-between; font-size: .85rem; color: rgba(255,255,255,.7); }
.sitem.total     { font-weight: 700; color: #fff; font-size: .95rem; }
.trust-badges    { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.trust-badge {
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  background: rgba(255,255,255,.08);
  border-radius: 50px;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.12);
}

/* Card input styles */
.card-field-wrap {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  cursor: text;
  min-height: 47px;
}
.card-field-wrap:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(216,92,54,.12); }
.stripe-placeholder {
  font-size: .94rem;
  color: #aaa;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .5rem;
}

@media (max-width: 860px) {
  .payment-layout { grid-template-columns: 1fr; }
  .payment-summary { position: static; order: -1; }
}

/* ===== WHY DONATE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform .2s;
}
.why-card:hover { transform: translateY(-3px); }
.why-icon  { font-size: 2.2rem; margin-bottom: 1rem; }
.why-card strong { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .5rem; font-weight: 600; }
.why-card p      { font-size: .88rem; color: var(--text-muted); margin: 0; }

@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }

/* ===== SCHOLARSHIP ===== */
.scholar-hero { background: var(--cream); padding: 5rem 0; }
.scholar-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: flex-start;
}
.scholar-checks      { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.scholar-checks li   { font-size: .95rem; display: flex; align-items: flex-start; gap: 8px; }
.scholar-actions     { display: flex; gap: 1rem; flex-wrap: wrap; }

.award-list  { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.2rem; }
.award-card  {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.award-icon   { font-size: 1.4rem; flex-shrink: 0; }
.award-info   { flex: 1; }
.award-info strong { display: block; font-size: .93rem; font-weight: 700; }
.award-info span   { font-size: .78rem; color: var(--text-muted); }
.award-amount { font-family: var(--font-display); font-weight: 700; color: var(--orange); font-size: 1.05rem; white-space: nowrap; }

.apply-open-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
  color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.apply-open-card strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.apply-open-card span   { font-size: .85rem; color: rgba(255,255,255,.7); }

@media (max-width: 900px) { .scholar-hero-inner { grid-template-columns: 1fr; } }

/* ===== APPLY PAGE ===== */
.apply-container {
  max-width: 700px;
  margin: 3rem auto;
  padding: 0 1.5rem 5rem;
}
.apply-form-box {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid var(--border);
}
.apply-form-box h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 2rem 0 1.2rem; padding-top: 2rem; border-top: 1px solid var(--border); color: var(--green-dark); }
.apply-form-box h3:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 2rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  transition: width .4s ease;
}

/* ===== VOLUNTEER / PARTNER PAGES ===== */
.vol-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 700px) { .vol-grid { grid-template-columns: 1fr; } }

.form-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.form-box h2 { margin-bottom: 1.8rem; }

/* ===== SUCCESS STATES ===== */
.success-box {
  text-align: center;
  padding: 3rem;
}
.success-box .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-box h2 { margin-bottom: .8rem; }
.success-box p  { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--green);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  transform: translateY(120px);
  opacity: 0;
  transition: all .3s cubic-bezier(.175,.885,.32,1.1);
  z-index: 9999;
  max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #c0392b; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse  { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(.8); } }
.fade-up { animation: fadeUp .6s ease forwards; }
.fade-up-1 { animation-delay: .1s; opacity: 0; }
.fade-up-2 { animation-delay: .2s; opacity: 0; }
.fade-up-3 { animation-delay: .3s; opacity: 0; }

/* Intersection Observer targets */
.anim { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ===== DB ADMIN ===== */
.admin-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.admin-table th, .admin-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.admin-table th { background: var(--cream); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.admin-table tr:hover td { background: #fafaf8; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
}
.badge-green  { background: #e8f5ec; color: var(--green); }
.badge-orange { background: #fef0eb; color: var(--orange); }
.badge-gold   { background: #fef7e6; color: var(--gold); }
