/* ============================================================
   WISH Foundation — style.css
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --coral:        #E8503A;
  --coral-hover:  #d03f2a;
  --coral-tint:   #FDF0EE;
  --coral-mid:    #f4a090;
  --charcoal:     #333333;
  --grey-mid:     #666666;
  --grey-light:   #999999;
  --grey-bg:      #F8F6F4;
  --white:        #FFFFFF;
  --green:        #4CAF82;
  --green-tint:   #eef8f3;

  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-height:      96px;
  --nav-height-sm:   76px;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.13);

  --transition:   0.25s ease;
  --max-width:    1160px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  color: var(--charcoal);
}

p + p { margin-top: 1rem; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--grey-mid);
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--grey {
  background: var(--grey-bg);
}

.section--coral-tint {
  background: var(--coral-tint);
}

.section--green-tint {
  background: var(--green-tint);
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-header {
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-hover);
  border-color: var(--coral-hover);
  box-shadow: 0 8px 24px rgba(232,80,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}
.btn-outline:hover {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232,80,58,0.25);
}

.btn-white {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: height var(--transition), box-shadow var(--transition),
              background var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  height: var(--nav-height-sm);
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(0,0,0,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 58px;
  width: auto;
  transition: height var(--transition);
}

.nav.scrolled .nav__logo img {
  height: 48px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--coral);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.nav__cta {
  margin-left: 8px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav__hamburger:hover { background: var(--grey-bg); }

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  padding: 20px 24px 28px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  border-top: 1px solid rgba(0,0,0,0.06);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__mobile.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.nav__mobile .nav__link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav__mobile .nav__cta {
  display: block;
  margin: 20px 0 0;
  text-align: center;
}

/* ── Page Header (inner pages) ────────────────────────────── */
.page-header {
  padding: calc(var(--nav-height) + 56px) 0 64px;
  background: var(--grey-bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  max-width: 620px;
  font-size: 1.125rem;
  color: var(--grey-mid);
}

/* ── Hero (Homepage) ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30,20,15,0.05) 0%,
    rgba(30,20,15,0.38) 48%,
    rgba(30,20,15,0.80) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
  animation: heroFadeIn 0.9s ease both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,80,58,0.2);
  color: #ffcec7;
  border: 1px solid rgba(232,80,58,0.4);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero__label .dot {
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.hero__scroll i {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--charcoal);
  padding: 36px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-item__number {
  font-family: var(--font-head);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__number .accent { color: var(--coral); }
.stat-item__number .green  { color: var(--green); }

.stat-item__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Card Grids ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  gap: 28px;
}

.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Service Cards */
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,80,58,0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--coral-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--coral);
  margin-bottom: 22px;
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--coral);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.1875rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--coral);
  transition: gap var(--transition);
}

.service-card__link:hover { gap: 10px; }

/* News Cards */
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card__img {
  transform: scale(1.04);
}

.news-card__img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

.news-card__body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.news-card__tag {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-tint);
  padding: 3px 10px;
  border-radius: 40px;
}

.news-card__date {
  font-size: 0.8125rem;
  color: var(--grey-light);
  font-family: var(--font-head);
}

.news-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}

.news-card:hover h3 { color: var(--coral); }

.news-card p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  line-height: 1.6;
  flex: 1;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--coral);
  transition: gap var(--transition);
}

.news-card__link:hover { gap: 10px; }

/* ── Pull Quote ───────────────────────────────────────────── */
.pull-quote {
  background: var(--charcoal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pull-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 5%;
  font-family: var(--font-head);
  font-size: 20rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.pull-quote blockquote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pull-quote blockquote p {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 28px;
}

.pull-quote blockquote cite {
  font-style: normal;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Impact / CTA Banner ──────────────────────────────────── */
.cta-banner {
  background: var(--coral);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  background: rgba(0,0,0,0.07);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative; z-index: 1;
}

.cta-banner__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── Dual CTA Section ─────────────────────────────────────── */
.dual-cta {
  padding: 80px 0;
  background: var(--grey-bg);
}

.dual-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.dual-cta__card {
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}

.dual-cta__card--parents {
  background: var(--coral);
  color: var(--white);
}

.dual-cta__card--donors {
  background: var(--charcoal);
  color: var(--white);
}

.dual-cta__card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.dual-cta__card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.dual-cta__card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  margin-bottom: 28px;
  max-width: 320px;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 0 0 0;
}

.footer__signup {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}

.footer__signup__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__signup__text h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__signup__text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.footer__signup__field {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.footer__signup__field input[type="email"] {
  padding: 11px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 260px;
  transition: border-color var(--transition), background var(--transition);
}

.footer__signup__field input[type="email"]::placeholder {
  color: rgba(255,255,255,0.35);
}

.footer__signup__field input[type="email"]:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(255,255,255,0.12);
}

.footer__grid {
  padding-top: 52px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
  /* invert logo for dark bg */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition);
}

.footer__social a:hover {
  background: var(--coral);
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__col ul li a:hover { color: var(--coral); }

.footer__col address {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.footer__col address a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col address a:hover { color: var(--coral); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--coral); }

/* ── About Page Specifics ─────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-grid__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.mission-grid__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.differentiators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
}

.diff-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.diff-card__num {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.25;
}

.diff-card h3 { font-size: 1rem; margin-bottom: 10px; }
.diff-card p  { font-size: 0.875rem; color: var(--grey-mid); }

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 720px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--coral), rgba(232,80,58,0.15));
}

.timeline__item {
  position: relative;
  margin-bottom: 44px;
  animation: fadeUp 0.5s ease both;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -33px; top: 4px;
  width: 14px; height: 14px;
  background: var(--coral);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(232,80,58,0.2);
}

.timeline__year {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}

.timeline__item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.timeline__item p  { font-size: 0.9rem; color: var(--grey-mid); }

/* ── Services Page Specifics ──────────────────────────────── */
.service-full {
  padding: 64px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.service-full:last-child { border-bottom: none; }

.service-full__grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

.service-full__grid--with-img {
  grid-template-columns: 80px 1fr 440px;
}

.service-full__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: start;
  aspect-ratio: 4/3;
}

.service-full__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-full__icon {
  width: 72px; height: 72px;
  background: var(--coral-tint);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--coral);
  flex-shrink: 0;
}

.service-full__body h2 {
  font-size: 1.625rem;
  margin-bottom: 10px;
}

.service-full__body .section-label {
  margin-bottom: 8px;
}

.service-full__body p {
  color: var(--grey-mid);
  margin-bottom: 16px;
  max-width: 680px;
}

.service-full__list {
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-full__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--charcoal);
}

.service-full__list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── News / Blog Pages ────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.post-hero {
  padding: calc(var(--nav-height) + 40px) 0 0;
}

.post-hero__inner {
  max-width: 820px;
}

.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-hero__tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-tint);
  padding: 4px 12px;
  border-radius: 40px;
}

.post-hero__date {
  font-size: 0.875rem;
  color: var(--grey-mid);
  font-family: var(--font-head);
}

.post-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-hero__sub {
  font-size: 1.125rem;
  color: var(--grey-mid);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 680px;
}

.post-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-top: 40px;
}

.post-body {
  max-width: 740px;
  padding: 56px 0 80px;
}

.post-body h2 {
  font-size: 1.5rem;
  margin: 44px 0 16px;
  padding-top: 8px;
}

.post-body h2:first-child { margin-top: 0; }

.post-body p {
  color: #444;
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.post-body ul, .post-body ol {
  margin: 16px 0 24px 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-body ul li, .post-body ol li {
  font-size: 1.0625rem;
  color: #444;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.post-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.post-body strong { font-weight: 700; color: var(--charcoal); }

.post-body .post-footer-note {
  margin-top: 48px;
  padding: 20px 24px;
  background: var(--grey-bg);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--grey-mid);
  font-style: italic;
  border-left: 3px solid var(--coral);
}

/* Post Gallery */
.post-gallery {
  padding: 64px 0;
  background: var(--grey-bg);
}

.post-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.post-gallery__grid img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.post-gallery__grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.post-gallery__grid img.large {
  grid-column: span 2;
  height: 280px;
}

/* ── Donate Page Specifics ────────────────────────────────── */
.donate-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.impact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 2px solid rgba(0,0,0,0.07);
  transition: border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}

.impact-card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.impact-card__amount {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 8px;
}

.impact-card__desc {
  font-size: 0.9375rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-head);
}

.impact-card p {
  font-size: 0.875rem;
  color: var(--grey-mid);
}

.bank-details {
  background: var(--grey-bg);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  max-width: 560px;
}

.bank-details h3 {
  margin-bottom: 28px;
  font-size: 1.25rem;
}

.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.9375rem;
}

.bank-row:last-child { border-bottom: none; }

.bank-row__label {
  color: var(--grey-mid);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bank-row__value {
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--charcoal);
}

.bank-row__value.mono {
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--coral);
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--coral-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__text h4 {
  font-size: 0.875rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 4px;
}

.contact-info__text p,
.contact-info__text a {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-info__text a:hover { color: var(--coral); }

/* Contact Form */
.contact-form {
  background: var(--grey-bg);
  border-radius: var(--radius-xl);
  padding: 44px 44px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,80,58,0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.map-placeholder {
  background: var(--grey-bg);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-mid);
  font-family: var(--font-head);
  font-size: 0.875rem;
  border: 1px dashed rgba(0,0,0,0.15);
  margin-top: 32px;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--grey-mid);
  margin-bottom: 24px;
  font-family: var(--font-head);
}

.breadcrumb a {
  color: var(--grey-mid);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--coral); }

.breadcrumb i { font-size: 0.6rem; color: var(--grey-light); }

/* ── Zero Overhead Banner ─────────────────────────────────── */
.zero-overhead {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-tint);
  border: 1px solid rgba(76,175,130,0.25);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  max-width: 640px;
}

.zero-overhead i {
  font-size: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
}

.zero-overhead p {
  font-size: 0.9375rem;
  color: var(--charcoal);
  line-height: 1.55;
  margin: 0;
}

.zero-overhead strong { color: var(--green); }

/* ── Two-Column Responsive Grid ───────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col--start  { align-items: start; }
.two-col--wide   { gap: 72px; }
.two-col--tight  { gap: 48px; }

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Screen-Reader Only ────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Utilities ────────────────────────────────────────────── */
.text-coral   { color: var(--coral) !important; }
.text-green   { color: var(--green) !important; }
.text-grey    { color: var(--grey-mid) !important; }
.text-white   { color: var(--white) !important; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ── Scroll Animation ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__signup__field input[type="email"] { width: 200px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 84px;
    --nav-height-sm: 68px;
  }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 60px 0; }

  .hero h1 { font-size: clamp(2rem, 7vw, 3rem); }

  .mission-grid,
  .contact-grid,
  .dual-cta__grid {
    grid-template-columns: 1fr;
  }

  .service-full__grid--with-img {
    grid-template-columns: 72px 1fr;
  }

  .service-full__img {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  .mission-grid__img { aspect-ratio: 16/9; }

  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }

  .differentiators { grid-template-columns: repeat(2, 1fr); }

  .donate-impact { grid-template-columns: repeat(2, 1fr); }

  .post-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .post-gallery__grid img.large { height: 200px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }

  .section { padding: 48px 0; }

  .cards-grid--3,
  .cards-grid--2 { grid-template-columns: 1fr; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .differentiators { grid-template-columns: 1fr; }

  .donate-impact { grid-template-columns: 1fr; }

  .news-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__signup__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__signup__field { width: 100%; }
  .footer__signup__field input[type="email"] { width: 100%; flex: 1; }

  .post-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .post-gallery__grid img.large { grid-column: span 1; height: 180px; }

  .bank-details { padding: 32px 24px; }

  .contact-form { padding: 28px 24px; }

  .dual-cta__card { padding: 36px 28px; }

  .service-full__grid { grid-template-columns: 1fr; }
  .service-full__grid--with-img { grid-template-columns: 1fr; }
  .service-full__img { aspect-ratio: 16/9; }
  .service-full__icon { width: 56px; height: 56px; font-size: 1.4rem; }

  .pull-quote blockquote p { font-size: 1.2rem; }

  .cta-banner { padding: 52px 0; }
}
