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

:root {
  --coral:   #FF6A5B;
  --mauve:   #FF7DAE;
  --purple:  #B87DFF;
  --teal:    #00B4A6;
  --dark:    #111111;
  --mid:     #444444;
  --light:   #F7F6F4;
  --white:   #FFFFFF;
  --grad: linear-gradient(135deg, var(--coral), var(--mauve), var(--purple), var(--teal));
  --grad-h:  linear-gradient(90deg, var(--coral), var(--mauve), var(--purple), var(--teal));
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── NAVBAR ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }

.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--mid); font-weight: 500; font-size: .95rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--dark); }

.nav-cta {
  padding: .55rem 1.4rem; border-radius: 100px;
  background: var(--dark); color: var(--white);
  font-weight: 600; font-size: .9rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; z-index: 200; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  flex-direction: column; padding: 1.5rem 5%;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--dark); font-weight: 600; font-size: 1.1rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,.06);
  transition: color .2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--mauve); }
.mobile-menu .mobile-cta {
  margin-top: 1rem; padding: .85rem; border-radius: 100px;
  background: var(--dark); color: var(--white) !important;
  text-align: center; border-bottom: none !important;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #FFF5F3 0%, #FDF0F7 35%, #F5F0FF 65%, #EFFAF9 100%);
}

/* animated gradient blobs */
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35;
  animation: drift 12s ease-in-out infinite alternate;
}
.blob-1 { width: 520px; height: 520px; background: var(--coral); top: -100px; left: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: var(--mauve); top: 30%; right: -80px; animation-delay: -4s; }
.blob-3 { width: 350px; height: 350px; background: var(--teal); bottom: -60px; left: 30%; animation-delay: -8s; }

@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.08); }
}

.hero-inner { position: relative; z-index: 1; max-width: 860px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .4rem 1rem; border-radius: 100px;
  background: rgba(255,255,255,.7); border: 1px solid rgba(0,0,0,.08);
  font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 1.8rem;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad); /* fallback */
  background: var(--coral); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 1.4rem;
}
.hero h1 .grad-text {
  background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--mid); font-weight: 400;
  max-width: 600px; margin: 0 auto 2.4rem; line-height: 1.6;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  padding: .85rem 2rem; border-radius: 100px;
  background: var(--dark); color: var(--white);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }

.btn-outline {
  padding: .85rem 2rem; border-radius: 100px;
  background: transparent; color: var(--dark);
  border: 2px solid rgba(0,0,0,.15);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--dark); background: rgba(0,0,0,.04); }

.hero-social {
  display: flex; gap: 1rem; justify-content: center; margin-top: 3rem;
}
.hero-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); text-decoration: none;
  transition: transform .2s, box-shadow .2s, color .2s;
  font-size: .9rem;
}
.hero-social a:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.12); color: var(--dark); }

/* ── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--dark); color: var(--white);
  padding: 2.5rem 5%;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1px;
  background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: .3rem; line-height: 1.4; }

/* ── SECTION SHARED ──────────────────────────────────── */
section { padding: 100px 5%; }

.section-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: .8rem; display: block;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem; color: var(--mid); line-height: 1.7; max-width: 640px;
}

/* ── MISSION ────────────────────────────────────────── */
.mission-section {
  padding: 90px 5%; text-align: center;
}
.mission-section .section-label { margin-bottom: 1.4rem; }
.mission-headline {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; letter-spacing: -.5px; line-height: 1.2;
  margin-bottom: 1.4rem;
}
.mission-body {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--mid); line-height: 1.75;
  max-width: 680px; margin: 0 auto;
}

/* ── VALUES ─────────────────────────────────────────── */
.values { background: var(--light); }
.values-header { max-width: 560px; margin-bottom: 3.5rem; }

.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}

.value-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-h);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.1); }

.value-icon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.value-icon.coral  { background: rgba(224,123,106,.12); }
.value-icon.mauve  { background: rgba(196,127,160,.12); }
.value-icon.purple { background: rgba(155,126,200,.12); }
.value-icon.teal   { background: rgba(125,188,184,.12); }

.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.value-card p  { font-size: .9rem; color: var(--mid); line-height: 1.6; }

/* ── WHY IT WORKS ────────────────────────────────────── */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.why-visual {
  position: relative; border-radius: 28px; overflow: hidden;
  background: var(--grad); padding: 4px;
}
.why-inner {
  background: var(--white); border-radius: 26px; padding: 3rem;
}
.why-inner blockquote {
  font-size: 1.4rem; font-weight: 700; line-height: 1.5; margin-bottom: 1.2rem;
}
.why-inner cite { font-size: .9rem; color: var(--mid); font-style: normal; }

.why-points { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.why-points li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .95rem; color: var(--mid); line-height: 1.5;
}
.why-points li .check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: white; margin-top: 1px;
}

/* ── SERVICES ────────────────────────────────────────── */
.services { background: var(--light); }
.services-header { max-width: 620px; margin-bottom: 3.5rem; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.service-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.1); }
.service-card.featured {
  background: var(--dark); color: var(--white);
  grid-column: span 2;
}
.service-card.featured p,
.service-card.featured ul li { color: rgba(255,255,255,.7); }

.service-emoji { font-size: 1.8rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.service-card p  { font-size: .9rem; color: var(--mid); line-height: 1.6; margin-bottom: 1rem; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-top: auto; }
.service-list li {
  font-size: .85rem; color: var(--mid); padding-left: 1.1rem; position: relative;
}
.service-list li::before {
  content: '→'; position: absolute; left: 0; font-weight: 700;
  background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.service-card.featured .service-list li { color: rgba(255,255,255,.65); }
.service-card.featured .service-list li::before { color: var(--teal); -webkit-text-fill-color: var(--teal); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(0,0,0,.06);
  position: relative; transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }

.quote-mark {
  font-size: 4rem; line-height: .8; font-family: Georgia, serif; font-weight: 900;
  background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: .5rem; display: block;
}

.testimonial-card blockquote {
  font-size: .97rem; line-height: 1.65; color: var(--dark);
  margin-bottom: 1.4rem; font-style: italic;
}

.testimonial-cite {
  display: flex; align-items: center; gap: .75rem;
}
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700; color: white; flex-shrink: 0;
}
.av-coral  { background: var(--coral); }
.av-mauve  { background: var(--mauve); }
.av-purple { background: var(--purple); }

.testimonial-cite-info strong { font-size: .88rem; display: block; }
.testimonial-cite-info span   { font-size: .8rem; color: var(--mid); }

/* ── CTA ─────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  text-align: center; padding: 120px 5%;
  position: relative; overflow: hidden;
}
.cta-section .blob { opacity: .15; }
.cta-section .blob-1 { background: var(--mauve); }
.cta-section .blob-2 { background: var(--teal); }

.cta-inner { position: relative; z-index: 1; }
.cta-section .section-label { color: rgba(255,255,255,.5); -webkit-text-fill-color: rgba(255,255,255,.5); background: none; }
.cta-section h2 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.6); font-size: 1.1rem; max-width: 480px; margin: 0 auto 2.4rem; line-height: 1.6; }

.btn-grad {
  padding: 1rem 2.4rem; border-radius: 100px;
  background: var(--grad-h); color: var(--white);
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  display: inline-block; transition: transform .2s, box-shadow .2s;
}
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(224,123,106,.4); }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: #0A0A0A; color: rgba(255,255,255,.5);
  padding: 3rem 5% 2rem;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
footer .footer-brand { color: var(--white); font-weight: 800; font-size: .95rem; }
footer .footer-brand span { background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
footer p { font-size: .82rem; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.9;
}

.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none; font-size: .8rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.contact-form {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-field input,
.form-field textarea {
  padding: .85rem 1rem; border-radius: 12px;
  border: 1.5px solid rgba(0,0,0,.12); font-family: 'Inter', sans-serif;
  font-size: .95rem; color: var(--dark); background: var(--light);
  transition: border-color .2s, box-shadow .2s; outline: none;
  resize: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--mauve); box-shadow: 0 0 0 3px rgba(196,127,160,.15);
}
.form-field textarea { min-height: 120px; }
.form-submit {
  padding: .95rem 2rem; border-radius: 100px;
  background: var(--dark); color: var(--white);
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s; align-self: flex-start;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.form-success {
  display: none; padding: 1rem 1.4rem; border-radius: 12px;
  background: rgba(125,188,184,.15); border: 1.5px solid var(--teal);
  color: var(--dark); font-size: .95rem; font-weight: 500;
}
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── DONATE ──────────────────────────────────────────── */
.donate-section { background: var(--light); text-align: center; }
.donate-inner { max-width: 600px; margin: 0 auto; }
.donate-inner .section-sub { margin: 0 auto 2rem; }
#paypal-donate-button-container { display: flex; justify-content: center; margin-top: 1.5rem; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-top { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr !important; }
  .form-field input, .form-field textarea { width: 100%; box-sizing: border-box; }
  section { padding: 60px 5%; }
  .contact-wrap { gap: 2rem; }
  .hero h1 { letter-spacing: -1px; }
}

/* ── ACTIVE NAV LINK ─────────────────────────────────── */
.nav-links a.active { color: var(--dark); font-weight: 700; }

/* ── PAGE HERO (INNER PAGES) ─────────────────────────── */
.page-hero {
  padding: 140px 5% 80px;
  background: linear-gradient(160deg, #FFF5F3 0%, #FDF0F7 35%, #F5F0FF 65%, #EFFAF9 100%);
  position: relative; overflow: hidden;
}
.page-hero-inner { max-width: 760px; position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero h1 .grad-text {
  background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero p {
  font-size: 1.15rem; color: var(--mid); line-height: 1.7; max-width: 560px;
}

/* ── CONTACT INFO ITEMS ──────────────────────────────── */
.contact-info-item {
  display: flex; align-items: flex-start; gap: .85rem;
}
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--light); border: 1px solid rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.contact-info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mid); margin-bottom: .2rem; }
.contact-info-value { font-size: .95rem; font-weight: 500; color: var(--dark); text-decoration: none; }
.contact-info-value:hover { color: var(--coral); }

/* ── LEADERSHIP / TEAM ───────────────────────────────── */
.team-section { background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--light); border-radius: 20px; padding: 2rem;
  text-align: center; border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; color: var(--white);
  background: var(--grad);
}
.team-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; }
.team-card .team-title {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  background: var(--grad-h); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: .75rem; display: block;
}
.team-card p { font-size: .88rem; color: var(--mid); line-height: 1.6; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

/* ── NONPROFIT TRUST BAR ─────────────────────────────── */
.nonprofit-bar {
  background: var(--light);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 1.4rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap; text-align: center;
}
.nonprofit-bar-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; color: var(--mid);
}
.nonprofit-bar-item strong { color: var(--dark); font-weight: 700; }
.nonprofit-bar-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1rem; border-radius: 100px;
  background: rgba(0,180,166,.1); border: 1px solid rgba(0,180,166,.3);
  font-size: .78rem; font-weight: 700; color: var(--teal);
  letter-spacing: .05em; text-transform: uppercase;
}

/* ── ORG DETAILS SECTION ─────────────────────────────── */
.org-details-section { background: var(--dark); padding: 80px 5%; }
.org-details-inner { max-width: 1100px; margin: 0 auto; }
.org-details-header { margin-bottom: 3rem; }
.org-details-header .section-label {
  color: rgba(255,255,255,.45); -webkit-text-fill-color: rgba(255,255,255,.45); background: none;
}
.org-details-header h2 { color: var(--white); }
.org-details-header p { color: rgba(255,255,255,.5); font-size: 1rem; margin-top: .6rem; line-height: 1.6; }
.org-details-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.org-detail-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.6rem;
}
.org-detail-card.highlight {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.detail-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .45rem;
}
.detail-value {
  font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.5;
}
.detail-value a { color: var(--teal); text-decoration: none; }
.detail-value a:hover { text-decoration: underline; }
.detail-value.large { font-size: 1.2rem; }

@media (max-width: 900px) {
  .org-details-grid { grid-template-columns: repeat(2, 1fr); }
  .nonprofit-bar { gap: 1.5rem; }
}
@media (max-width: 640px) {
  .org-details-grid { grid-template-columns: 1fr; }
}
