/* ==============================================
   INDEPENDENT NIGERIANS PROJECT — MAIN CSS
   Design system matching mockup exactly
   ============================================== */

/* Fonts are loaded via <link> in base.php — not here (CSS @import blocks rendering and can't carry SRI) */

/* ── CSS Variables ── */
:root {
  --green:       #1A6B3A;
  --green-dark:  #0D3D20;
  --green-light: #E8F5ED;
  --gold:        #C8A94A;
  --gold-light:  #F5EDD4;
  --white:       #FFFFFF;
  --off-white:   #F9F7F3;
  --charcoal:    #1C1C1C;
  --gray:        #4A4A4A;
  --gray-light:  #E5E5E5;
  --red:         #B03A2E;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── NAVIGATION ── */
.nav {
  background: var(--charcoal);
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
  transition: box-shadow 0.3s ease;
}


.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo span { color: var(--gold); }

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 160px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--charcoal) !important;
  padding: 0.65rem 1.2rem;
  min-height: unset;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(200,169,74,0.4);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s !important;
  text-decoration: none;
}

.nav-cta-mobile-li { display: none; }

.nav-cta:hover {
  background: #b8932e !important;
  box-shadow: 0 4px 16px rgba(200,169,74,0.55) !important;
  transform: translateY(-1px);
  opacity: 1 !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger.open .bar-top { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .bar-mid { opacity: 0; }
.nav-hamburger.open .bar-bot { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE LABELS ── */
.pg-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: var(--green-dark);
  display: inline-block;
  padding: 0.45rem 1.25rem;
  margin: 3rem 4rem 0;
}

/* ── SECTIONS ── */
.s           { padding: 5rem 4rem; }
.s-dark      { background: var(--charcoal); color: var(--white); }
.s-green     { background: var(--green-dark); color: var(--white); }
.s-gold      { background: var(--gold); color: var(--charcoal); }
.s-light     { background: var(--off-white); }
.s-white     { background: var(--white); }

/* ── TYPOGRAPHY ── */
.display-xl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

.display-md {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

.eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}

.eyebrow.on-light { color: var(--green); }

.lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray);
}

.lead.on-dark { color: rgba(255,255,255,0.68); }

/* ── LAYOUT GRIDS ── */
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.four-col  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 2rem;
}

.card-gold { border-left-color: var(--gold); }

.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin-bottom: 0.65rem;
}

.card p { font-size: 0.9rem; color: var(--gray); line-height: 1.75; }

/* ── PULL QUOTE ── */
.pq {
  border-left: 5px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--green-light);
  margin: 2rem 0;
}

.pq p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.65;
}

.pq cite {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  display: block;
  margin-top: 0.75rem;
}

/* ── STATS ── */
.stat {
  text-align: center;
  padding: 2rem;
  border-top: 3px solid var(--gold);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-lbl {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.45rem;
}

/* ── DIVIDERS ── */
.hr      { height: 1px; background: var(--gray-light); margin: 2.5rem 0; }
.hr-gold { height: 3px; background: var(--gold); width: 50px; margin: 1.25rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.9rem 2rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

/* Gold — primary CTA */
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(200, 169, 74, 0.35);
}
.btn-gold:hover {
  background: #b8932e;
  box-shadow: 0 6px 20px rgba(200, 169, 74, 0.5);
}

/* Green — secondary CTA */
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26, 107, 58, 0.3);
}
.btn-green:hover {
  background: #155a30;
  box-shadow: 0 6px 20px rgba(26, 107, 58, 0.45);
}

/* Outline white — on dark backgrounds */
.btn-outline-w {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  box-shadow: none;
}
.btn-outline-w:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  box-shadow: none;
}

/* Outline dark — on light backgrounds */
.btn-outline-d {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  box-shadow: none;
}
.btn-outline-d:hover {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: none;
}

/* Red */
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(176, 58, 46, 0.3);
}
.btn-red:hover {
  background: #962f25;
  box-shadow: 0 6px 20px rgba(176, 58, 46, 0.45);
}

/* ── Join button animation ── */
.btn-join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  overflow: hidden;
  animation: joinPulse 2.8s ease-in-out infinite;
}

.btn-join-text {
  transition: transform 0.3s ease;
}

.btn-join-arrow {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
  animation: arrowBounce 2.8s ease-in-out infinite;
}

.btn-join:hover .btn-join-text {
  transform: translateX(-4px);
}

.btn-join:hover .btn-join-arrow {
  transform: translateX(5px);
  opacity: 1;
  animation: none;
}

/* Gentle breathing glow on the button */
@keyframes joinPulse {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(200,169,74,0.35);
  }
  50% {
    box-shadow: 0 6px 28px rgba(200,169,74,0.65), 0 0 0 4px rgba(200,169,74,0.12);
  }
}

/* Arrow nudges right repeatedly to invite interaction */
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0);  opacity: 0.7; }
  40%       { transform: translateX(6px); opacity: 1;   }
  60%       { transform: translateX(3px); opacity: 1;   }
}

/* ── HERO ── */
.hero {
  background: var(--green-dark);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 58px,
    rgba(255,255,255,0.012) 58px,
    rgba(255,255,255,0.012) 59px
  );
  pointer-events: none;
}

.hero-l {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

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

.hero-r {
  background: var(--green);
  background-image: url('/public/images/hero.person.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 4rem 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-r::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 61, 32, 0.72);
  z-index: 1;
}

.hero-r::after {
  content: 'NGR';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.hero-manifesto {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-bottom: 3rem;
}

.hero-manifesto p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 360px;
}

.hero-manifesto .cite {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 1.25rem;
  display: block;
}

/* ── TICKER ── */
.ticker {
  background: linear-gradient(135deg, #c8a94a 0%, #e2c46a 40%, #b8932e 100%);
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  height: 46px;
  position: relative;
  box-shadow: 0 2px 12px rgba(180,130,30,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Edge fade — blends into the gold gradient */
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, #c8a94a, transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, #b8932e, transparent);
}

.ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: tick 38s linear infinite;
  will-change: transform;
}

.ticker-inner:hover { animation-play-state: paused; }

.ticker span {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-dark);
  padding: 0 2.25rem;
}

/* Separator — small dark green vertical line */
.ticker span::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--green-dark);
  opacity: 0.25;
  margin-left: 2.25rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

@keyframes tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── MISSION STRIP ── */
.mission-strip {
  background: var(--charcoal);
  padding: 4rem;
  text-align: center;
}

.mission-strip p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-style: italic;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.mission-strip .acc { color: var(--gold); font-style: normal; font-weight: 900; }

/* ── 10-POINT AGENDA GRID (teaser) ── */
.agenda-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.ag-item {
  padding: 1.75rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  cursor: default;
  transition: background 0.2s;
}

.ag-item:hover { background: rgba(255,255,255,0.04); }
.ag-item:nth-child(5n) { border-right: none; }
.ag-item:nth-child(n+6) { border-bottom: none; }

.ag-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.ag-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.ag-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── DIRECTOR'S DESK ── */
.desk {
  background: var(--white);
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 580px;
}

.desk-l {
  background: var(--green-dark);
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.desk-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--green);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
  overflow: hidden;
}

.desk-photo img { width: 100%; height: 100%; object-fit: cover; }

.desk-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.desk-role {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.desk-r {
  padding: 5rem 4rem;
  background: var(--off-white);
}

.desk-hdr {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.desk-hdr::before { content: ''; display: block; width: 28px; height: 2px; background: var(--green); }

.desk-r h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.desk-r p { font-size: 0.97rem; color: var(--gray); line-height: 1.9; margin-bottom: 1.4rem; }

.sig {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-style: italic;
  color: var(--green-dark);
  margin-top: 2rem;
}

/* ── SLOGANS GRID ── */
.slogans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.slogan {
  padding: 2.25rem 2.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.slogan:nth-child(even) { border-right: none; }
.slogan:nth-last-child(-n+2) { border-bottom: none; }

.sl-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.55;
  padding-top: 0.15rem;
}

.sl-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

/* ── AGENDA DETAIL ── */
.ag-detail {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 3rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--gray-light);
  align-items: start;
}

.ag-big-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
}

.ag-area {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.45rem;
}

.ag-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 0.85rem;
  line-height: 1.35;
  font-weight: 700;
}

.ag-body { font-size: 0.88rem; color: var(--gray); line-height: 1.8; }

.demands-box {
  background: var(--green-light);
  padding: 1.5rem;
  border-left: 3px solid var(--green);
}

.demands-lbl {
  font-family: 'Syne', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.7rem;
}

.demands-box ul { list-style: none; }

.demands-box li {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demands-box li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ── TEAM CARDS ── */
.team-card {
  background: var(--white);
  border-top: 4px solid var(--green);
  padding: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--green-light);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card:hover .team-name { color: var(--green); }

.team-name  { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.2rem; }
.team-role  { font-size: 0.78rem; color: var(--gold); font-weight: 500; margin-bottom: 0.65rem; }
.team-bio   { font-size: 0.83rem; color: var(--gray); line-height: 1.7; }

/* ── BLOG FEATURED POST ── */
.featured-post {
  background: var(--green-dark);
  padding: 3rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.featured-post-text .blog-cat { margin-bottom: 0.85rem; }

.featured-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.featured-post-excerpt {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-post-img {
  background: var(--green);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-post-img img { width: 100%; height: 100%; object-fit: cover; }

.featured-post-placeholder {
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
}

/* ── BLOG FILTER BAR ── */
.blog-filter-bar {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

.blog-filter-bar .btn {
  font-size: 0.68rem;
  padding: 0.48rem 1.1rem;
  min-height: 44px;
}

/* ── BLOG CARDS ── */
.blog-card { background: var(--white); border-bottom: 3px solid var(--green); transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  text-transform: uppercase;
  overflow: hidden;
}

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

.blog-meta    { padding: 1.5rem; }
.blog-cat     { font-family: 'Syne', sans-serif; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.45rem; }
.blog-title   { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--green-dark); line-height: 1.4; margin-bottom: 0.65rem; }
.blog-excerpt { font-size: 0.84rem; color: var(--gray); line-height: 1.7; }

/* ── EVENTS ── */
.ev-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-light);
}

.ev-day   { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--green); line-height: 1; }
.ev-month { font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); }
.ev-title  { font-family: 'Syne', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.25rem; }
.ev-detail { font-size: 0.83rem; color: var(--gray); }

/* ── PROJECT PHASES ── */
.phase-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }

.phase-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.phase-item:last-child { border-right: none; }

.phase-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.phase-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.phase-dur  { font-size: 0.78rem; color: var(--gold); margin-bottom: 0.5rem; opacity: 0.8; }
.phase-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── M&E TABLE ── */
.me-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-light);
}

.me-cell {
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--gray);
  border-right: 1px solid var(--gray-light);
}

.me-cell:last-child { border-right: none; }

.me-hdr {
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── GEO GRID ── */
.geo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }

.geo-item {
  padding: 1.75rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.geo-zone  { font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.35rem; }
.geo-state { font-size: 0.9rem; color: var(--white); font-weight: 500; }
.geo-note  { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }

/* ── CONTACT GRID ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.contact-l { background: var(--green-dark); padding: 5rem 4rem; }
.contact-r { background: var(--white); padding: 5rem 4rem; }

.ci         { margin-bottom: 2.25rem; }
.ci-lbl     { font-family: 'Syne', sans-serif; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.35rem; }
.ci-val     { font-size: 0.95rem; color: var(--white); font-weight: 300; }

/* ── FORMS ── */
.fg { margin-bottom: 1.4rem; }

.fg label {
  font-family: 'Syne', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  display: block;
  margin-bottom: 0.45rem;
}

.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--gray-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--green); }
.fg textarea { height: 110px; resize: vertical; }

/* Override browser default blue on checkboxes, radios, and selects */
.fg input[type="checkbox"],
.fg input[type="radio"] {
  accent-color: var(--green);
  width: auto;
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--green);
}

.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A4A4A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Custom select wrapper — hides native dropdown, shows themed one */
.select-wrap {
  position: relative;
}

.select-wrap select {
  display: none;
}

.custom-select {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--white);
  background: var(--charcoal);
  border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer;
  user-select: none;
}

.custom-select-trigger {
  padding: 0.8rem 2.5rem 0.8rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.custom-select-trigger::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23ffffff' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s;
}

.custom-select.open .custom-select-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.custom-select.open {
  border-color: var(--green);
}

.custom-options {
  display: none;
  position: absolute;
  top: 100%;
  left: -1.5px;
  right: -1.5px;
  background: var(--charcoal);
  border: 1.5px solid var(--green);
  border-top: none;
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
}

.custom-select.open .custom-options {
  display: block;
}

.custom-option {
  padding: 0.7rem 0.95rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.custom-option:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.custom-option.selected {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
}

.field-error {
  font-size: 0.75rem;
  color: var(--red);
  margin-top: 0.25rem;
  display: block;
}

.fg input.has-error, .fg textarea.has-error, .fg select.has-error {
  border-color: var(--red);
}

/* ── NEWSLETTER ── */
.newsletter { background: var(--green); padding: 4.5rem 4rem; text-align: center; }

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.newsletter p { font-size: 0.97rem; color: rgba(255,255,255,0.68); margin-bottom: 2rem; }

.nl-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }

.nl-form input {
  flex: 1;
  padding: 0.95rem 1.4rem;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  border-radius: 0;
}

.nl-form button {
  padding: 0.95rem 1.8rem;
  min-height: 44px;
  background: var(--gold);
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: var(--green-dark);
  transition: background 0.2s;
}

.nl-form button:hover { background: #b8932e; }

/* ── DONATE BAR ── */
.donate-bar {
  background: var(--red);
  padding: 2.75rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.donate-bar p {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--white);
  max-width: 580px;
  line-height: 1.55;
}

/* ── PAGE HEADER ── */
.ph {
  background: var(--green-dark);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.ph::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 55px solid rgba(200,169,74,0.07);
  pointer-events: none;
}

.ph h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  max-width: 680px;
  line-height: 1.1;
}

.ph p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.58);
  max-width: 540px;
  margin-top: 0.9rem;
  line-height: 1.8;
}

/* ── TOAST NOTIFICATIONS ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: toastIn 0.3s ease;
}

.toast-success { background: var(--green); color: var(--white); }
.toast-error   { background: var(--red); color: var(--white); }

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

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 5rem 4rem 2rem;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* ── Blog share bar ── */
.share-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 2rem;
}

.share-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  white-space: nowrap;
}

.share-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  border: 1.5px solid currentColor;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  white-space: nowrap;
}

.share-btn:hover { transform: translateY(-1px); }

.share-fb { color: #1877F2; }
.share-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }

.share-x { color: #000; }
.share-x:hover { background: #000; color: #fff; border-color: #000; }

.share-wa { color: #25D366; }
.share-wa:hover { background: #25D366; color: #fff; border-color: #25D366; }

.share-li { color: #0A66C2; }
.share-li:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; }

.share-copy { color: var(--green); background: none; border: 1.5px solid var(--green); font-family: 'DM Sans', sans-serif; }
.share-copy:hover { background: var(--green-light); }

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  margin-top: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }

.footer-col a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

.f-tags { display: flex; gap: 0.85rem; }

.f-tags span {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.55;
}
