/* ============================================================
   SEW — Sustainably Empowering Women
   Style sheet: Bold & Impact-First
   Fonts: Syne (display) + DM Sans (body)
   Brand green: #108136
   ============================================================ */

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

:root {
  --green:        #108136;
  --green-dark:   #0b5f28;
  --green-mid:    #1a9944;
  --green-light:  #e6f4eb;
  --black:        #0d0d0d;
  --dark:         #141414;
  --dark-2:       #1e1e1e;
  --mid:          #2c2c2c;
  --cream:        #f5f2ed;
  --off-white:    #fafaf8;
  --white:        #ffffff;
  --text-dark:    #0d0d0d;
  --text-muted:   #5a5a5a;
  --text-faint:   #9a9a9a;
  --text-light:   #e4e4e0;
  --text-lighter: #b0b0a8;
  --border-light: #e8e8e2;
  --border-dark:  rgba(255,255,255,0.1);

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --max-width:    1160px;
  --section-v:    7rem;
  --section-h:    2rem;
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    16px;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-h);
}

.section {
  padding: var(--section-v) var(--section-h);
}

.text--green { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
}

.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--mid);
  border-color: var(--mid);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: rgba(0,0,0,0.3);
}
.btn--outline-dark:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.05);
}

.btn--large {
  padding: 18px 36px;
  font-size: 15px;
}

/* Section headers */
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.section__eyebrow--light { color: rgba(255,255,255,0.5); }
.section__eyebrow--green { color: var(--green-mid); }

.section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.section__heading--light { color: var(--white); }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  flex-shrink: 0;
  /* White bg so JPG logo looks transparent */
  background: var(--white);
  border-radius: 50%;
  overflow: hidden;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s var(--ease-out);
}
.nav__link:hover { color: var(--green); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

/* Burger / mobile */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--border-light);
}
.nav__mobile.open { display: block; }
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav__mobile .nav__link--cta {
  display: inline-block;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 2rem 0;
  overflow: hidden;
}

/* Real photo background */
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero__photo.loaded { transform: scale(1); }

/* Dark gradient overlay — keeps text legible over the photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.35) 100%
  );
}

/* Green left accent bar */
.hero__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  z-index: 2;
}

/* Large background "SEW" text */
.hero__bg-text {
  position: absolute;
  bottom: -0.15em;
  right: -0.05em;
  font-family: var(--font-display);
  font-size: clamp(18rem, 35vw, 42rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(16, 129, 54, 0.15);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Subtle green line accent top-left */
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--green);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 5rem auto 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 0;
}

.hero__stat {
  flex: 1;
  padding: 0 2rem;
}
.hero__stat:first-child { padding-left: 0; }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.hero__stat-num--label { color: var(--green); }

.hero__stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 0;
}

/* ── About ───────────────────────────────────────────────── */
.about {
  background: var(--white);
  padding: var(--section-v) var(--section-h);
}

.about__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Photo column */
.about__image-col {
  position: sticky;
  top: 100px;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

.about__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.about__image-wrap:hover .about__image { transform: scale(1.03); }

.about__image-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.about__quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  border-left: 4px solid var(--green);
  padding-left: 1.5rem;
  margin-top: 2.5rem;
  font-style: normal;
}

.about__body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 0.5rem;
}
.about__location svg { color: var(--green); flex-shrink: 0; }

/* ── Problems ─────────────────────────────────────────────── */
.problems {
  background: var(--dark);
  padding: var(--section-v) var(--section-h);
}

.problems__intro {
  max-width: var(--max-width);
  margin: 1.5rem auto 4rem;
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  font-weight: 300;
  max-width: 640px;
}

.problems__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.problems__card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.problems__card:hover { background: var(--dark-2); }

.problems__card-icon {
  color: var(--green);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.problems__card-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.problems__card-body {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Programme ───────────────────────────────────────────── */
.programme {
  background: var(--off-white);
  padding: var(--section-v) var(--section-h);
}

.programme__intro {
  max-width: 600px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 1.5rem 0 4rem;
}

.programme__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 6rem;
  margin-bottom: 5rem;
}

.programme__step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.programme__step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  width: 70px;
  transition: color 0.2s;
}
.programme__step:hover .programme__step-num { color: var(--green); }

.programme__step-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.programme__step-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Cycle 3 CTA */
.programme__cta {
  background: var(--green);
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* Agricultural image feature */
.programme__agri {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0 3rem;
  padding: 3rem;
  background: var(--green-light);
  border-radius: var(--radius-lg);
}

.programme__agri-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.programme__agri-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.programme__agri-img-wrap--seeds {
  margin-top: 2rem;
}

.programme__agri-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.programme__agri-img-wrap:hover .programme__agri-img { transform: scale(1.04); }

.programme__agri-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.programme__agri-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.programme__agri-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.programme__steps--bottom {
  margin-top: 0;
}

.programme__cta-badge {
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.programme__cta-text {
  flex: 1;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  min-width: 200px;
}

/* ── Support ─────────────────────────────────────────────── */
.support {
  background: var(--dark);
  padding: var(--section-v) var(--section-h);
}

.support__intro {
  max-width: 600px;
  margin: 1.5rem 0 4rem;
  font-size: 17px;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  font-weight: 300;
}

.support__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.support__card {
  background: var(--dark);
  padding: 2rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.support__card:hover { background: var(--dark-2); }

.support__card-icon {
  color: var(--green);
  margin-bottom: 1rem;
}

.support__card-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.support__card-body {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  font-weight: 300;
}

/* Support photo accent strip */
.support__photo-accent {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  max-height: 340px;
}

.support__accent-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.75);
  transition: filter 0.4s, transform 0.6s var(--ease-out);
}
.support__photo-accent:hover .support__accent-img {
  filter: brightness(0.85);
  transform: scale(1.02);
}

.support__accent-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
}

/* ── Gallery / Polaroids ─────────────────────────────────── */
.gallery {
  background: var(--cream);
  padding: var(--section-v) var(--section-h);
  overflow: hidden;
}

.gallery .container { margin-bottom: 3rem; }

.gallery__intro {
  max-width: 540px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 1.5rem 0 0;
  font-weight: 300;
}

/* Scrolling strip of polaroids */
.gallery__strip {
  display: flex;
  gap: 2rem;
  padding: 2rem max(2rem, calc((100vw - var(--max-width)) / 2 + 2rem));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: flex-start;
  padding-bottom: 4rem;
}
.gallery__strip::-webkit-scrollbar { display: none; }

/* Polaroid card */
.polaroid {
  flex-shrink: 0;
  background: var(--white);
  padding: 12px 12px 44px;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.1),
    0 1px 3px rgba(0,0,0,0.06);
  transform: rotate(var(--rot, 0deg)) translateY(var(--ty, 0px));
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  scroll-snap-align: start;
  width: 220px;
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.15),
    0 4px 12px rgba(0,0,0,0.1);
  z-index: 2;
}

.polaroid__img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #c8d8c4;
}

.polaroid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.polaroid:hover .polaroid__img img { transform: scale(1.06); }

.polaroid__caption {
  margin-top: 12px;
  font-family: 'DM Sans', cursive;
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.gallery__social-cta {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.gallery__social-cta p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ── Donate ──────────────────────────────────────────────── */
.donate {
  background: var(--black);
  padding: var(--section-v) var(--section-h);
}

.donate__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.donate__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 1rem 0 1.75rem;
}

.donate__body {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.donate__btn {
  margin-top: 0.75rem;
}

.donate__small {
  margin-top: 0.75rem;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* Seeds / hero photo in donate section */
.donate__photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.donate__photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.4s, transform 0.6s var(--ease-out);
}
.donate__photo-wrap:hover .donate__photo {
  filter: brightness(1);
  transform: scale(1.03);
}

.donate__photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
}

/* Right side follow + contact */
.donate__follow {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.donate__follow-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.donate__follow-body {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Social links */
.social__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.social__link:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateX(4px);
}

.social__icon {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.social__link span:nth-child(2) {
  flex: 1;
}

.social__platform {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.donate__contact {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.donate__email {
  display: block;
  font-size: 14px;
  color: var(--green-mid);
  margin-top: 0.5rem;
  transition: color 0.2s;
  word-break: break-all;
}
.donate__email:hover { color: var(--green); }

.donate__phone {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 0.35rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* White background wrapper for logo in footer */
.footer__logo-wrap {
  background: var(--white);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer__logo-wrap img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  gap: 4rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ── Animations / Reveal ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .support__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__image-col {
    position: static;
  }
  .about__image {
    height: 380px;
  }
  .programme__steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .programme__agri {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-v: 4.5rem;
    --section-h: 1.25rem;
  }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero {
    padding: 100px 1.25rem 0;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
  }

  .hero__stat { padding: 0; }
  .hero__stat-divider { width: 100%; height: 1px; }

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

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

  .donate__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .programme__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 2rem;
  }
  .footer__nav { flex-direction: column; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .gallery__strip {
    gap: 1rem;
  }

  .polaroid { width: 180px; }
  .polaroid__img { height: 160px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
}

/* ── Skip link for accessibility ─────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }
