/*!
Theme Name: Adavu
Theme URI: https://adavu.org.uk
Author: Adavu
Author URI: https://adavu.org.uk
Description: Bespoke theme for Adavu — supporting adult survivors of modern slavery to rebuild their lives. Serif/sans editorial layout with hero, mission pillars, survivor voices carousel and news grid.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adavu
*/

/* ─── RESET & TOKENS ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue:       #56B7E6;
  --green:      #86D295;
  --blue-dark:  #006BA6;
  --green-dark: #046A38;
  --off:        #f5f8f5;
  --border:     #dce8e0;
  --text:       #181c18;
  --muted:      #5c6b60;
  --serif: 'Lora', Georgia, serif;
  --sans:  'Inter Tight', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a, button, input, textarea, select, summary, [tabindex] { outline: none; }

/* ─── LOGO SVG inline ─────────────────────────────── */
/* The logo is rendered inline as SVG — see HTML below */

/* ─── NAV ─────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 68px;
  background: transparent;
  border-bottom: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 202;
  pointer-events: none;
  transition: background 0.28s ease, box-shadow 0.28s ease, height 0.28s ease, margin-top 0.28s ease;
}
nav.scrolled { pointer-events: auto; }
nav .nav-logo, nav .nav-burger, nav .btn-donate { pointer-events: auto; }
nav.scrolled {
  margin-top: 0 !important;
  height: 64px;
  background: #fff;
  box-shadow: 0 1px 14px rgba(0,0,0,0.09);
}
nav.scrolled .nav-logo img {
  filter: brightness(0) saturate(100%) invert(28%) sepia(46%) saturate(1300%) hue-rotate(112deg) brightness(94%) contrast(96%);
}
nav.scrolled:not(.menu-open) .nav-burger span { background: var(--green-dark); }
nav.scrolled ~ .nav-menu .nav-menu-inner { padding-top: 84px; }
.nav-logo { display: flex; align-items: center; height: 32px; }
.nav-logo svg { height: 28px; width: auto; }
.nav-right { display: flex; gap: 10px; align-items: center; }
.btn-donate {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px; color: #fff;
  background: transparent; padding: 9px 22px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  border: 1.5px solid rgba(255,255,255,0.75); border-radius: 12px;
  opacity: 0.92; transition: opacity 0.15s, background 0.15s;
  margin-right: 0;
}
.btn-donate:hover { opacity: 1; background: rgba(255,255,255,0.14); font-weight: 600; }
.btn-donate:active { background: rgba(255,255,255,0.24); }
.nav-burger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 7px; width: 56px; height: 40px; padding: 8px 0;
  background: none; border: none; cursor: pointer;
  border-radius: 0; transition: opacity 0.2s;
}
.nav-burger:hover { opacity: 0.6; }
.nav-burger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
nav.menu-open { position: fixed; }
nav.menu-open .nav-burger span { background: var(--green-dark); }
.nav-menu {
  position: fixed;
  top: 0; right: 0;
  width: 444px;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -4px 0 32px rgba(0,0,0,0.1);
  z-index: 201;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav-menu.is-open { opacity: 1; transform: translateX(0); pointer-events: all; }
.nav-menu-inner { padding: 40px 0 32px; display: flex; flex-direction: column; height: 100%; }
.nav-menu a {
  display: block; padding: 13px 76px;
  font-size: 14px; color: var(--text);
  transition: color 0.15s, background 0.15s;
  border-left: 2px solid transparent;
}
.nav-menu a:hover { color: var(--green-dark); background: var(--off); border-left-color: var(--green); }
.nav-menu-divider { height: 0; background: none; margin: 12px 76px; }
.nav-menu .menu-refer {
  display: block; margin: 0 76px 8px; padding: 18px 24px;
  font-size: 16px; font-weight: 600; letter-spacing: 0.4px; text-align: center;
  color: var(--text); border: 1.5px solid var(--text); border-radius: 0;
  transition: background 0.15s, transform 0.2s;
}
.nav-menu .menu-refer:hover { background: var(--off); transform: translateY(-2px); }
.nav-menu .menu-donate {
  display: block; margin: 0 76px; padding: 18px 24px;
  font-size: 16px; font-weight: 600; letter-spacing: 0.4px; text-align: center;
  color: var(--text); background: transparent; border: 1.5px solid var(--text); border-radius: 0;
  transition: background 0.15s, transform 0.2s;
}
.nav-menu .menu-donate:hover { background: var(--off); transform: translateY(-2px); }
.menu-close { position: absolute; top: 20px; right: 22px; width: 40px; height: 40px; padding: 0; background: none; border: none; cursor: pointer; border-radius: 0; transition: opacity 0.2s; }
.menu-close:hover { opacity: 0.6; }
.menu-close span { position: absolute; top: 50%; left: 50%; width: 26px; height: 2px; background: var(--green-dark); border-radius: 0; }
.menu-close span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.menu-close span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; z-index: 198; }
.nav-overlay.is-open { display: block; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/hero.jpg');
  background-size: cover;
  background-position: center top;
}
.hero-text {
  background: var(--green);
  padding: 68px 56px 56px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
/* Swallow pattern watermark on the text side */
.hero-swallow-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-swallow-bg svg { position: absolute; right: -40px; bottom: -40px; opacity: 0.07; width: 420px; }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 86px);
  line-height: 1.1;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  position: relative; z-index: 1;
}
.hero-h1 em { font-style: italic; font-weight: 600; color: #fff; display: inline; }
.hero-text .hero-h1 { font-size: 90px; }
/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 56px;
  font-size: 10px; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; color: #fff; opacity: 0.4;
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
}
.hero-scroll::before {
  content: '';
  display: block; width: 24px; height: 1px; background: #fff; opacity: 0.6;
}

/* ─── WELCOME ───────────────────────────────────── */
.welcome { padding: 0 64px 100px; background: #fff; }
.welcome-inner { max-width: 1280px; margin: 0 auto; }
.welcome-top { display: grid; grid-template-columns: 1fr; gap: 80px; align-items: end; justify-content: center; padding-bottom: 90px; padding-top: 150px; text-align: center; }
.welcome-label { font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 28px; display: block; text-align: center; }
.welcome-h { font-family: var(--serif); font-size: 84px; font-weight: 600; color: var(--text); line-height: 1.08; margin-bottom: 0; max-width: 1000px; margin-left: auto; margin-right: auto; }
.welcome-h em { font-style: italic; font-weight: 600; color: var(--green-dark); }
.welcome-intro { font-size: 18px; color: var(--muted); line-height: 1.85; margin-bottom: 40px; }
.welcome-cta { font-size: 13px; font-weight: 500; color: var(--green-dark); letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid var(--green); padding-bottom: 2px; transition: gap 0.2s; }
.welcome-cta:hover { gap: 14px; font-weight: 600; }
.welcome-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.welcome-card { padding: 0 40px 0 0; border-top: 0; background: #fff; }
.welcome-card-label { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--blue-dark); opacity: 0.6; margin-bottom: 16px; display: block; }
.welcome-card-h { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 14px; line-height: 1.25; }
.welcome-card-b { font-size: 15.5px; color: var(--muted); line-height: 1.8; }
.welcome-card.blue { border-top-color: var(--blue-dark); }
.welcome-card.blue .welcome-card-label { color: var(--blue-dark); }


.audience { display: grid; grid-template-columns: 1fr 1fr; background: #fff; position: relative; overflow: hidden; }
.audience-header { grid-column: 1 / -1; padding: 0 64px 12px; border-bottom: none; }
.audience-header .eyebrow { margin-bottom: 16px; color: var(--blue-dark) !important; }
.audience-header .sec-h { margin-bottom: 0; color: var(--text); }
.audience-header .sec-h em { color: var(--blue-dark) !important; font-style: italic; }
.aud-card {
  padding: 56px 64px 48px;
  display: flex; flex-direction: column;
  margin-top: 56px;
  cursor: default;
}
.aud-title { color: var(--text) !important; }
.aud-body { color: var(--muted) !important; margin-bottom: 0; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease; }
.aud-card:hover .aud-body, .aud-card:focus-within .aud-body { max-height: 260px; opacity: 1; margin-top: 16px; }
.aud-card:hover .aud-title, .aud-card:focus-within .aud-title { color: var(--blue-dark) !important; }
.aud-cta-band {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 44px 64px;
  background: var(--blue);
  flex-wrap: wrap;
}
.aud-cta-text { font-family: var(--serif); font-size: 55px; font-weight: 600; color: #fff; line-height: 1.2; }
.aud-cta-band .aud-cta-text em { font-style: normal; }
.aud-cta-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 20px 40px;
  background: var(--green-dark); color: #fff;
  font-size: 16px; font-weight: 600; letter-spacing: 0.5px;
  border: 1.5px solid var(--green-dark); border-radius: 0;
  transition: background 0.15s, transform 0.2s;
}
.aud-cta-btn:hover { background: #0a7c45; transform: translateY(-2px); }
.aud-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: 32px; flex-shrink: 0; }
.aud-dot-g { background: var(--green-dark); }
.aud-dot-b { background: var(--blue-dark); }
.audience .aud-title { font-size: 34px; }
.audience .aud-cta-btn { background: var(--blue); color: #fff; border-color: #fff; border-width: 2px; }
.callout .aud-cta-btn { background: #fff; color: var(--blue-dark); border-color: #fff; }
.aud-title { font-family: var(--serif); font-size: clamp(22px, 2vw, 30px); font-weight: 600; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.aud-body  { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; max-width: 380px; }
.aud-link  { font-size: 13px; font-weight: 500; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid; padding-bottom: 2px; transition: gap 0.2s; align-self: flex-start; }
.aud-link:hover { gap: 14px; font-weight: 600; }
.aud-link-g { color: var(--green-dark); border-bottom-color: var(--green); }
.aud-link-b { color: var(--blue-dark); border-bottom-color: var(--blue); }

/* Bottom-of-section link row (arrow link under a heading block) */
.cta-link-row { display: flex; justify-content: flex-start; margin-top: 56px; }
.pillars-section .cta-link-row { padding: 0 64px; }
.news .cta-link-row { margin-top: 20px; }
.welcome .welcome-cta, .news .welcome-cta { color: var(--blue-dark); border-bottom-color: var(--blue); }
.pillars-section .welcome-cta { border-bottom-color: var(--green); }
.welcome .welcome-cta, .pillars-section .welcome-cta { padding-bottom: 0; gap: 14px; }

/* Section sub-heading size variants (replace one-off inline font-size on .sec-h) */
.sec-h-44 { font-size: 44px; }
.sec-h-40 { font-size: 40px; }
.sec-h-36 { font-size: 36px; }

/* Stats strip with only 2 cards (one stat hidden because its value is empty) */
.stats-strip.cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Small generic layout utilities (replace one-off inline spacing) */
.mt40 { margin-top: 40px; }
.mt56 { margin-top: 56px; }
.mt16 { margin-top: 16px; }
.mt48 { margin-top: 48px; }
.mb32 { margin-bottom: 32px; }
.max-w-760 { max-width: 760px; }
.jc-center { justify-content: center; }
.sec-h-32 { font-size: 32px; }
.callout-sub { display: block; font-size: 16px; font-family: var(--sans); font-weight: 400; color: rgba(255,255,255,0.85); }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 20px; display: block; }
.sec-h { font-family: var(--serif); font-size: clamp(36px, 3.5vw, 52px); font-weight: 600; color: var(--text); line-height: 1.08; margin-bottom: 20px; }
.sec-h em { font-style: italic; color: var(--green-dark); }
.sec-h-blue-em em { color: var(--blue-dark) !important; }
.sec-p { font-size: 18px; color: var(--muted); line-height: 1.85; max-width: 560px; }

/* ─── PILLARS ───────────────────────────────────── */
.pillars-section { padding: 0 0 100px; }
.pillars-header { margin-bottom: 64px; max-width: none; padding: 0 64px; display: flex; align-items: end; justify-content: center; gap: 64px; text-align: center; }
.pillars-header .sec-h { font-size: 55px; margin-bottom: 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-left: 1px solid var(--border); margin-bottom: 2px; }
.pillar { padding: 0 64px; border-right: none; }
.pillar:nth-child(2) { padding-bottom: 5px; }
.pillar-n { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 32px; display: block; }
.pillar-t { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 0; line-height: 1.2; cursor: default; }
.pillar-b { font-size: 16px; color: var(--muted); line-height: 1.85; max-height: 0; opacity: 0; overflow: hidden; margin-top: 0; transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease; }
.pillar:hover .pillar-b, .pillar:focus-within .pillar-b { max-height: 240px; opacity: 1; margin-top: 16px; }
.pillar:hover .pillar-t, .pillar:focus-within .pillar-t { color: var(--green-dark); }
.stats-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 150px; }
.stat-card {
  background: #fff;
  padding: 64px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 380px;
  border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }
.stat-card.blue { background-color: var(--blue); }
.stat-card.blue .stat-label, .stat-card.blue .stat-n, .stat-card.blue .stat-l { color: var(--blue-dark); }
.stat-card.green { background-color: var(--green); }
.stat-card.green .stat-label, .stat-card.green .stat-n, .stat-card.green .stat-l { color: var(--green-dark); }
.stat-card.green .stat-l, .stat-card.blue .stat-l { font-weight: 500; }
.pillars-section .stats-strip { margin-top: 150px; }
.pillars-section .stat-card { padding: 80px 64px; border-right: none; }
.pillars-section .stat-label { font-size: 15px; }
.pillars-section .stat-n { font-size: 150px; margin: 20px 0 30px; }
.pillars-section .stat-card:first-child .stat-n { margin-bottom: 0; }
.pillars-section .stat-l { font-size: 18px; }
.stat-card .stat-n { transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); transform-origin: center; }
.stat-card:hover .stat-n { transform: scale(1.07); }
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-dark);
}
.stat-n {
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 0.9;
  letter-spacing: -3px;
  margin: 32px 0 28px;
}
.stat-l {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 260px;
  font-weight: 300;
}

/* ─── FEATURE ───────────────────────────────────── */
.feature { display: grid; grid-template-columns: 3fr 2fr; min-height: 620px; }
.feature-photo {
  position: relative; overflow: hidden; background: var(--green-dark);
}
.feature-photo-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--green) 0%, #5aaa6e 100%);
}
.feature-photo-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0.15; pointer-events: none;
}
.feature-photo-placeholder img { width: 88px; height: 88px; filter: brightness(0) invert(1); }
.feature-photo-cap { position: absolute; bottom: 40px; left: 52px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); z-index: 2; }
.feature-text { background: #fff; padding: 80px 72px; display: flex; flex-direction: column; justify-content: center; }
.feature-rule { width: 40px; height: 3px; background: var(--green); margin-bottom: 44px; }
.feature-q { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px); font-style: italic; color: var(--text); line-height: 1.5; font-weight: 400; margin-bottom: 28px; }
.feature-q strong { font-style: normal; color: var(--green-dark); font-weight: 600; }
.feature-cite { font-size: 16px; color: var(--muted); margin-bottom: 0; letter-spacing: 0.3px; line-height: 1.8; }
.feature .feature-q { font-style: normal; font-size: 26px; }
.feature-link { font-size: 13px; font-weight: 500; color: var(--green-dark); letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid var(--green); padding-bottom: 2px; transition: gap 0.2s; }
.feature-link:hover { gap: 14px; font-weight: 600; }

/* ─── TESTIMONIALS ──────────────────────────────── */
.voices { background: #fff; padding: 100px 64px; }
.voices-label { font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--green-dark); opacity: 0.85; margin-bottom: 56px; display: block; padding-top: 0; }
.voices-hero { border-bottom: 1px solid rgba(0,107,166,0.2); padding-bottom: 64px; margin-bottom: 56px; }
.voices-hero-q { font-family: var(--serif); font-size: clamp(34px, 4vw, 60px); font-style: italic; color: var(--muted); line-height: 1.22; font-weight: 400; max-width: 1100px; }
.voices-hero-q em { color: var(--blue-dark); font-style: italic; }
.voices-hero-right { }
.voices-hero-cite { font-size: 13px; color: var(--muted); letter-spacing: 0.5px; margin-top: 32px; }
.voices-link { font-size: 13px; font-weight: 500; color: var(--blue-dark); letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid var(--blue-dark); padding-bottom: 2px; transition: gap 0.2s; }
.voices-link:hover { gap: 14px; font-weight: 600; }
.voices-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; }
.voices-card { padding: 48px 40px; border: 1px solid rgba(0,107,166,0.18); background: rgba(255,255,255,0.12); }
.voices-q { font-family: var(--serif); font-size: clamp(18px, 1.6vw, 22px); font-style: italic; color: #fff; line-height: 1.65; margin-bottom: 28px; font-weight: 400; }
.voices-cite { font-size: 12px; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; }
.voices-carousel { position: relative; }
.voices-viewport { overflow: hidden; transition: height 0.35s ease; }
.voices-track { display: flex; align-items: flex-start; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.voices-slide { flex: 0 0 100%; min-width: 100%; box-sizing: border-box; padding: 0; opacity: 0; transition: opacity 0.5s ease; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; }
.voices-slide.is-active { opacity: 1; }
.voices-slide .voices-q { font-family: var(--serif); font-size: clamp(34px, 4vw, 60px); font-style: italic; line-height: 1.22; font-weight: 400; max-width: 1100px; margin: 0 auto 32px; }
.voices-slide .voices-cite { font-size: 13px; letter-spacing: 0.5px; text-transform: none; font-weight: 400; }
.voices-hero .voices-cite { font-size: 13px; letter-spacing: 0.5px; text-transform: none; font-weight: 400; margin-top: 32px; color: rgba(255,255,255,0.85); }
.voices-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: auto; height: auto; border: none; background: transparent; color: var(--green-dark, #046a38); line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease; padding: 0; }
.voices-arrow svg { display: block; width: 40px; height: 16px; }
.voices-arrow-prev { left: -36px; }
.voices-arrow-next { right: -36px; }
.voices-arrow:hover { transform: translateY(-50%) translateX(4px); }
.voices-arrow-prev:hover { transform: translateY(-50%) translateX(-4px); }

/* ─── NEWS ──────────────────────────────────────── */
.news { padding: 0 64px 100px; background: #fff; }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; padding-top: 0; }
.news-header .eyebrow { color: var(--blue-dark); }
.news-header .sec-h { margin-bottom: 0; font-size: 55px; }
.news-all { font-size: 13px; font-weight: 500; color: var(--green-dark); letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; }
.news-all:hover { text-decoration: underline; font-weight: 600; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.news-card { background: #fafbfb; display: flex; flex-direction: column; overflow: hidden; color: inherit; text-decoration: none; transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.news-card:hover { background: #eef2f0; transform: translateY(-4px); box-shadow: 0 6px 16px rgba(4,106,56,0.07); }
.news-card .news-img { transition: transform 0.4s ease; }
.news-card:hover .news-img { transform: scale(1.04); }
.news-img {
  width: 100%; background: var(--green); flex-shrink: 0; position: relative; overflow: hidden;
}
.news-img-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.news-img-swallow { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.12; }
.news-img-swallow svg { width: 60%; }
.news-card:first-child .news-img { aspect-ratio: 4/3; background-image: url('assets/images/news-1.jpg'); background-size: cover; background-position: center; }
.news-card:first-child .news-img-placeholder, .news-card:first-child .news-img-swallow { display: none; }
.news-card:nth-child(2) .news-img { aspect-ratio: 4/3; background: var(--blue); background-image: url('assets/images/news-2.jpg'); background-size: cover; background-position: center; }
.news-card:nth-child(2) .news-img-placeholder, .news-card:nth-child(2) .news-img-swallow { display: none; }
.news-card:nth-child(3) .news-img { aspect-ratio: 4/3; background: var(--blue-dark); background-image: url('assets/images/news-3.jpg'); background-size: cover; background-position: center; }
.news-card:nth-child(3) .news-img-placeholder, .news-card:nth-child(3) .news-img-swallow { display: none; }
.news-body { padding: 36px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-dark); opacity: 0.6; margin-bottom: 14px; }
.news-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 14px; }
.news-exc { font-size: 16px; color: var(--muted); line-height: 1.8; flex: 1; margin-bottom: 28px; }
.news-link { font-size: 13px; font-weight: 500; color: var(--green-dark); margin-top: auto; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid var(--green); padding-bottom: 2px; transition: gap 0.2s; align-self: flex-start; }
.news-link:hover { gap: 14px; font-weight: 600; }

/* ─── CTA ───────────────────────────────────────── */
.cta { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.cta-text { background: var(--green); padding: 100px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
/* Swallow watermark on CTA */
.cta-swallow { position: absolute; right: -60px; bottom: -60px; opacity: 0.08; pointer-events: none; }
.cta-swallow svg { width: 380px; }
.cta-text h2 { font-family: var(--serif); font-size: clamp(34px, 3.2vw, 50px); font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 22px; position: relative; z-index: 1; }
.cta-text h2 em { font-style: italic; font-weight: 600; }
.home .cta-text h2 em { font-style: normal; font-weight: 600; }
.cta-text p { font-size: 20px; font-weight: 500; color: #fff; opacity: 0.72; line-height: 1.85; max-width: 400px; margin-bottom: 52px; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-btn-p { background: transparent; color: #fff; padding: 20px 40px; border-radius: 0; font-size: 16px; font-weight: 600; white-space: nowrap; border: 2px solid #fff; transition: background 0.15s, transform 0.2s; letter-spacing: 0.5px; }
.cta-btn-p:hover { background: rgba(4,106,56,0.06); transform: translateY(-2px); }
.cta-btn-p:active { transform: translateY(0); background: rgba(4,106,56,0.12); }
.cta-btn-s { background: transparent; color: #fff; padding: 20px 40px; border-radius: 0; font-size: 16px; font-weight: 600; border: 2px solid #fff; white-space: nowrap; transition: background 0.15s, transform 0.2s; letter-spacing: 0.5px; }
.cta-btn-s:hover { background: rgba(4,106,56,0.06); transform: translateY(-2px); }
.cta-btn-s:active { transform: translateY(0); background: rgba(4,106,56,0.12); }
.cta-photo { position: relative; overflow: hidden; background: var(--green-dark); }
.page-template-page-support-us-php .cta { min-height: 560px; }
.cta-photo-bg { position: absolute; inset: 0; background-image: url('assets/images/cta.jpg'); background-size: cover; background-position: center; }
.cta-photo-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.15; pointer-events: none; }
.cta-photo-placeholder img { width: 88px; height: 88px; filter: brightness(0) invert(1); }

/* ─── FOOTER ────────────────────────────────────── */
footer { background: var(--blue); padding: 80px 64px 64px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { margin-bottom: 40px; }
.footer-logo svg { height: 24px; width: auto; }
.footer-desc { font-size: 15px; font-weight: 550; color: rgba(255,255,255,0.85); line-height: 1.85; max-width: 280px; margin-bottom: 24px; }
.footer-addr { font-size: 13px; font-weight: 550; color: rgba(255,255,255,0.78); line-height: 2.2; font-style: normal; }
.footer-addr a { color: inherit; }
.footer-col-h { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-list a { font-size: 15px; font-weight: 550; color: rgba(255,255,255,0.92); transition: color 0.15s; }
.footer-list a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; }
.footer-legal-text { font-size: 12px; font-weight: 550; color: rgba(255,255,255,0.75); line-height: 1.8; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 12px; font-weight: 550; color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-legal-links a:hover { color: var(--green); }


/* ═══════════════════════════════════════════════════
   WORDPRESS INTEGRATION — menu, interior pages, news
   ═══════════════════════════════════════════════════ */

/* Primary slide-out menu (wp_nav_menu) */
.nav-menu-list { list-style: none; margin: auto 0 0; padding: 0; }
.nav-menu-list a { font-size: 16px; font-weight: 600; }
.nav-menu .custom-logo-link { display: block; }

/* News grid robustness (dynamic + fallback) */
.news-img { aspect-ratio: 4 / 3; }
.news-card.has-thumb .news-img-swallow { display: none; }
.news-card.has-thumb .news-img { background-color: transparent; }

/* ─── Interior pages (page.php / single.php / index.php) ─── */
.site-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 150px 64px 120px;
  min-height: 60vh;
}
.page-header { margin-bottom: 44px; }
.page-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.06;
  margin: 0;
}
.entry-meta {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green-dark);
  opacity: 0.6; margin-bottom: 18px;
}
.entry-thumb { margin-bottom: 44px; }
.entry-thumb img { width: 100%; height: auto; display: block; }
.entry-content { font-size: 18px; color: var(--muted); line-height: 1.85; }
.entry-content p { margin-bottom: 26px; }
.entry-content h2 { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--text); line-height: 1.15; margin: 48px 0 18px; }
.entry-content h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--text); margin: 36px 0 14px; }
.entry-content a { color: var(--green-dark); border-bottom: 1.5px solid var(--green); }
.entry-content a:hover { font-weight: 600; }
.entry-content ul, .entry-content ol { margin: 0 0 26px 24px; }
.entry-content li { margin-bottom: 10px; }
.entry-content img { max-width: 100%; height: auto; }
.entry-content blockquote {
  font-family: var(--serif); font-style: italic; font-size: 24px;
  color: var(--text); border-left: 3px solid var(--green);
  padding-left: 28px; margin: 36px 0;
}

.pagination { margin-top: 56px; }
.pagination .nav-links { display: flex; gap: 12px; flex-wrap: wrap; }
.pagination a, .pagination .current {
  padding: 10px 18px; border: 1px solid var(--border);
  color: var(--green-dark); font-size: 14px; font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}
.pagination a:hover { background: var(--off); border-color: var(--green); }
.pagination .current { background: var(--off); }

.post-nav { display: flex; justify-content: space-between; gap: 24px; margin-top: 72px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.post-nav a { font-size: 14px; font-weight: 500; color: var(--green-dark); max-width: 45%; }
.post-nav a:hover { font-weight: 600; }
.post-nav-next { margin-left: auto; text-align: right; }

.entry-footer { margin-top: 40px; }
.entry-tags { font-size: 13px; color: var(--muted); }

@media (max-width: 720px) {
  .site-main { padding: 120px 24px 80px; }
  .post-list, .news-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE — tablet & mobile
   Uses !important where the templates carry inline styles.
   Desktop (≥1025px) is unchanged.
   ═══════════════════════════════════════════════════ */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; overflow: visible; clip: auto;
  z-index: 9999; background: var(--green-dark); color: #fff; padding: 12px 20px; border-radius: 4px;
  font-size: 14px; font-weight: 600; text-decoration: none;
}

/* ─── Page transition (curtain reveal) ───────────── */
.page-transition {
  position: fixed; inset: 0; z-index: 10000;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  transform: scaleY(1); transform-origin: top;
  transition: transform 0.55s cubic-bezier(0.65,0,0.35,1);
  pointer-events: none;
}
.page-transition.is-active { pointer-events: all; }
.page-transition.is-leaving { transform-origin: bottom; transform: scaleY(0); }
.page-transition .pt-logo {
  height: 56px; width: auto;
  opacity: 0; transform: translateY(-16px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
  filter: brightness(0) saturate(100%) invert(28%) sepia(46%) saturate(1300%) hue-rotate(112deg) brightness(94%) contrast(96%);
}
.page-transition.is-active .pt-logo { opacity: 1; transform: translateY(0); }
.page-transition.is-leaving .pt-logo { opacity: 0; transform: translateY(16px); transition: opacity 0.3s ease, transform 0.3s ease; }
@media (prefers-reduced-motion: reduce) {
  .page-transition { transition: none; }
  .page-transition .pt-logo { transition: none; }
}
html, body { overflow-x: hidden; }
img, svg { max-width: 100%; height: auto; }
*, *::before, *::after { overflow-wrap: break-word; }
table { max-width: 100%; display: block; overflow-x: auto; }
button, .form-submit, .cta-btn-p, .cta-btn-s, .aud-cta-btn, .btn, .voices-arrow, .nav-burger, .menu-close { min-height: 44px; }
input, textarea, select { font-size: 16px; }

/* ─────────── TABLET  (≤ 1024px) ─────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px !important; }

  .welcome, .voices, .news { padding-left: 40px !important; padding-right: 40px !important; }
  .pillars-header { padding-left: 40px !important; padding-right: 40px !important; }
  .audience-header { padding-left: 40px !important; padding-right: 40px !important; }

  /* Welcome mission/vision/values */
  .welcome-top { grid-template-columns: 1fr; gap: 32px; }
  .welcome-cards { grid-template-columns: 1fr 1fr; gap: 24px; }
  .welcome-h { font-size: 44px !important; }

  /* Pillars → 2 columns with tidy borders + real padding */
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid .pillar { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 40px !important; }
  .pillars-grid .pillar:nth-child(2n) { border-right: none; }

  /* Stats */
  .stats-strip { grid-template-columns: 1fr; margin-top: 72px; gap: 24px; }
  .stat-card { min-height: 0; padding: 56px 40px !important; }
  .stat-n { font-size: 96px !important; margin: 20px 0 !important; }

  /* Audience */
  .aud-card { padding: 44px 40px !important; }

  /* News → 2 columns */
  .news-grid { grid-template-columns: 1fr 1fr; }

  /* Interior content grids: ease from 3/4 columns to 2 before the phone tier */
  .content-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .donate-tiers { grid-template-columns: 1fr 1fr; }
  .steps { gap: 3px; }
  .step { padding: 40px 32px 44px !important; }

  /* Section headings */
  .sec-h { font-size: 42px !important; }
  .hero-h1 { font-size: 66px !important; }

  /* CTA + footer padding */
  .cta-text { padding: 72px 48px !important; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-left: 48px !important; padding-right: 48px !important; }
  footer { padding-left: 48px; padding-right: 48px; }
  .footer-bottom { padding-left: 0 !important; padding-right: 0 !important; }
}

/* ─────────── TABLET PORTRAIT / LARGE PHONE (≤ 768px) ─────────── */
@media (max-width: 768px) {
  /* Menu panel fits the screen */
  .nav-menu { width: min(100%, 420px); min-height: 0; max-height: none; }

  /* HERO stacks: photo band on top, green text block below */
  .hero { grid-template-columns: 1fr; height: auto; min-height: 0; max-height: none; }
  .hero-photo { height: 44vh; min-height: 280px; }
  .hero-text { padding: 52px 32px 60px !important; }
  .hero-h1 { font-size: 48px !important; }

  /* Everything to a single column */
  .welcome-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillars-grid .pillar { border-right: none !important; }
  .news-grid { grid-template-columns: 1fr; }

  /* Audience stacks */
  .audience { grid-template-columns: 1fr; }
  .aud-card { border-right: none; border-top: 1px solid var(--border); margin-top: 0; }
  .aud-cta-band { flex-direction: column; align-items: flex-start; gap: 24px; padding: 36px 40px !important; }
  .aud-cta-btn { width: 100%; justify-content: center; }

  /* Voices — arrows stack below the quote on narrow screens */
  .voices-slide { padding: 0 !important; }
  .voices-arrow { position: static !important; transform: none !important; margin-top: 24px; }
  .voices-arrow:hover { transform: translateX(4px) !important; }
  .voices { padding-top: 72px !important; padding-bottom: 80px !important; }

  /* CTA stacks: text then photo */
  .cta { grid-template-columns: 1fr; min-height: 0; }
  .cta-text { padding: 64px 40px !important; }
  .cta-photo { min-height: 320px; order: 2; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Type scale */
  .sec-h { font-size: 36px !important; }
  .welcome-h { font-size: 36px !important; }
  .aud-title { font-size: 27px !important; }
  .aud-cta-text { font-size: 42px !important; }
  .stat-n { font-size: 88px !important; }

  /* Interior pages */
  .site-main { padding: 120px 32px 80px !important; }
}

/* ─────────── PHONE (≤ 480px) ─────────── */
@media (max-width: 480px) {
  nav { padding: 0 20px !important; }
  .btn-donate { padding: 8px 14px; font-size: 12px; }
  .nav-menu { width: 100%; }
  .nav-menu a { padding-left: 40px !important; padding-right: 40px !important; }
  .nav-menu-divider { margin-left: 40px !important; margin-right: 40px !important; }
  .nav-menu .menu-refer, .nav-menu .menu-donate { margin-left: 40px !important; margin-right: 40px !important; }

  .welcome, .voices, .news { padding-left: 24px !important; padding-right: 24px !important; }
  .pillars-header, .audience-header { padding-left: 24px !important; padding-right: 24px !important; }
  .pillars-grid .pillar { padding: 32px 24px !important; }
  .stat-card { padding: 48px 24px !important; }
  .aud-card { padding: 40px 24px !important; }
  .aud-cta-band { padding: 32px 24px !important; }

  .hero-text { padding: 44px 24px 52px !important; }
  .hero-h1 { font-size: 40px !important; }

  .cta-text { padding: 56px 24px !important; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-left: 28px !important; padding-right: 28px !important; }
  footer { padding-left: 28px; padding-right: 28px; }

  .sec-h { font-size: 31px !important; }
  .welcome-h { font-size: 31px !important; }
  .stat-n { font-size: 76px !important; }
  .aud-cta-text { font-size: 31px !important; }

  .site-main { padding: 108px 24px 72px !important; }
  .page-title { font-size: 32px; }
  .post-nav { flex-direction: column; }
  .post-nav a { max-width: 100%; }
  .post-nav-next { margin-left: 0; text-align: left; }
}


/* ═══════════════════════════════════════════════════
   INTERIOR PAGE SYSTEM — heroes, sections, cards, forms
   ═══════════════════════════════════════════════════ */
.page-hero { position: relative; overflow: hidden; padding: 156px 64px 76px; background: var(--green); }
.page-hero-inner { max-width: 1180px; margin: 0 auto; }
.page-template-page-about-php .page-hero h1 { margin-bottom: 40px; }
.page-template-page-about-php .page-wrap { max-width: none; margin: 0; }
.page-template-page-about-php .page-hero-inner { max-width: none; margin: 0; }
.page-template-page-about-php .prose-split { max-width: none; }
@media (min-width: 1025px) {
  .page-template-page-about-php .page-hero h1 { white-space: nowrap; }
}
.page-template-page-about-php .page-hero h1 em { font-style: normal; font-weight: 600; }
.page-hero.blue { background: var(--blue); }
.page-hero.off  { background: var(--off); }
.page-hero .eyebrow { color: rgba(255,255,255,0.78); margin-bottom: 20px; }
.page-hero.off .eyebrow { color: var(--green-dark); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(44px, 5.4vw, 80px); font-weight: 600; color: #fff; line-height: 1.06; max-width: 1000px; margin-bottom: 24px; }
.page-hero.off h1 { color: var(--text); }
.page-hero h1 em { font-style: italic; font-weight: 600; }
.page-hero .page-lead { font-size: 20px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.92); max-width: 660px; }
.page-hero.off .page-lead { color: var(--muted); }
.page-hero .swallow-wm { position: absolute; right: -70px; bottom: -70px; width: 380px; opacity: 0.09; pointer-events: none; }

.page-section { padding: 96px 64px; }
.page-section.off { background: var(--off); }
.page-wrap { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 680px; margin-bottom: 56px; }

.prose { max-width: 760px; }
.prose-split { max-width: 1180px; }
.prose-split h2 { font-size: 44px !important; margin-bottom: 40px !important; }
.prose-split-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.prose-split-cols p { font-size: 18px; line-height: 1.85; color: var(--muted); margin-bottom: 0 !important; }
@media (max-width: 768px) {
  .prose-split-cols { grid-template-columns: 1fr; gap: 26px; }
}
.prose > p { font-size: 18px; line-height: 1.85; color: var(--muted); margin-bottom: 26px; }
.prose > p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }
.prose h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 600; color: var(--text); line-height: 1.12; margin: 10px 0 26px; }
.prose h2 em { font-style: italic; color: var(--green-dark); }
.prose h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--text); margin: 40px 0 14px; }
.prose a { color: var(--green-dark); border-bottom: 1.5px solid var(--green); }
.prose ul { list-style: none; margin: 0 0 26px; padding: 0; }
.prose ul li { position: relative; padding-left: 28px; font-size: 18px; line-height: 1.7; color: var(--muted); margin-bottom: 14px; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 10px; height: 10px; background: var(--green); border-radius: 50%; }

/* Content card grids */
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; margin-left: -40px; margin-right: -40px; }
.content-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.info-card { padding: 46px 40px 50px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: none; }
.info-card .num { display: block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 20px; }
.info-card.blue .num { color: var(--blue-dark); }
.info-card h3 { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--text); margin-bottom: 14px; line-height: 1.25; }
.info-card p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.info-card p:last-child { margin-bottom: 0; }
.info-card.reveal-card { cursor: default; outline: none; }
.info-card.reveal-card h3 { margin-bottom: 0; }
.info-card.reveal-card p { max-height: 0; opacity: 0; overflow: hidden; margin: 0; transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease; }
.info-card.reveal-card:hover p, .info-card.reveal-card:focus-visible p { max-height: 260px; opacity: 1; margin-top: 14px; }
.info-card.reveal-card:hover h3, .info-card.reveal-card:focus-visible h3 { color: var(--green-dark); }
.info-card.reveal-card.blue:hover h3, .info-card.reveal-card.blue:focus-visible h3 { color: var(--blue-dark); }
.info-card .card-link { font-size: 13px; font-weight: 500; letter-spacing: 0.5px; color: var(--green-dark); display: inline-flex; align-items: center; gap: 8px; border-bottom: 1.5px solid var(--green); padding-bottom: 2px; transition: gap 0.2s; }
.info-card .card-link:hover { gap: 14px; font-weight: 600; }
.info-card.is-clickable, .path-card.is-clickable { cursor: pointer; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.contact-detail { margin-bottom: 34px; }
.contact-detail .lab { display: block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 10px; }
.contact-detail .val { font-size: 19px; color: var(--text); line-height: 1.6; }
.contact-detail .val a { color: var(--green-dark); }

/* Forms */
.adavu-form .form-field { margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.adavu-form label { font-size: 13px; font-weight: 600; letter-spacing: 0.3px; color: var(--text); }
.adavu-form input, .adavu-form textarea, .adavu-form select {
  font-family: var(--sans); font-size: 16px; color: var(--text);
  padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 0; background: #fff; width: 100%;
}
.adavu-form textarea { min-height: 150px; resize: vertical; }
.adavu-form input:focus, .adavu-form textarea:focus, .adavu-form select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(4,106,56,0.14); }
.form-submit { display: inline-flex; align-items: center; gap: 12px; padding: 18px 40px; background: var(--green-dark); color: #fff; font-size: 15px; font-weight: 600; letter-spacing: 0.5px; border: none; cursor: pointer; transition: background 0.15s, transform 0.2s; }
.form-submit:hover { background: #0a7c45; transform: translateY(-2px); }
.form-submit:active { background: #075c33; transform: translateY(0); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

/* Donation tiers */
.donate-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-bottom: 44px; }
.donate-tier { padding: 40px 26px 44px; background: var(--off); text-align: center; border-top: 3px solid var(--green); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.donate-tier:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(4,106,56,0.09); }
.donate-tier:nth-child(even) { border-top-color: var(--blue-dark); }
.donate-tier .amt { font-family: var(--serif); font-size: 46px; font-weight: 600; color: var(--green-dark); margin-bottom: 14px; letter-spacing: -1px; }
.donate-tier:nth-child(even) .amt { color: var(--blue-dark); }
.donate-tier p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Callout band */
.callout { display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap; padding: 46px 48px; background: var(--blue); }
.callout .co-t { font-family: var(--serif); font-size: 26px; font-weight: 600; color: #fff; line-height: 1.3; max-width: 560px; }
.callout .co-num { font-family: var(--serif); font-size: clamp(32px, 4vw, 46px); font-weight: 600; color: #fff; white-space: nowrap; }
.callout .co-num a { color: #fff; }

/* Numbered steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.step { padding: 44px 40px 48px; background: var(--off); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.step:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(4,106,56,0.09); }
.step .step-n { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--green); line-height: 1; margin-bottom: 22px; }
.step h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.step p { font-size: 16px; color: var(--muted); line-height: 1.8; }

/* Page CTA band */
.page-cta { position: relative; overflow: hidden; padding: 88px 64px; background: var(--green); text-align: center; }
.page-cta.blue { background: var(--blue); }
.page-cta h2 { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 46px); font-weight: 600; color: var(--green-dark); line-height: 1.1; max-width: 720px; margin: 0 auto 20px; }
.page-cta.blue h2 { color: var(--blue-dark); }
.page-cta h2 em { font-style: italic; font-weight: 600; }
.page-cta p { font-size: 18px; color: var(--green-dark); opacity: 0.82; max-width: 540px; margin: 0 auto 36px; line-height: 1.7; }
.page-cta.blue p { color: var(--blue-dark); }
.page-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.page-cta .btn { padding: 18px 38px; border: 1.5px solid var(--green-dark); color: var(--green-dark); font-size: 15px; font-weight: 600; letter-spacing: 0.5px; transition: background 0.15s, transform 0.2s; }
.page-cta.blue .btn { border-color: var(--blue-dark); color: var(--blue-dark); }
.page-cta .btn:hover { background: rgba(4,106,56,0.06); transform: translateY(-2px); }
.page-cta .btn:active { transform: translateY(0); }
.page-cta .btn.solid { background: var(--green-dark); color: #fff; }
.page-cta.blue .btn.solid { background: var(--blue-dark); color: #fff; }
.page-cta .btn.solid:hover { background: #0a7c45; }
.page-cta .btn.solid:active { background: #075c33; }
.page-cta .swallow-wm { position: absolute; right: -60px; bottom: -60px; width: 340px; opacity: 0.08; pointer-events: none; }

/* Interior page responsive */
@media (max-width: 1024px) {
  .page-hero, .page-section, .page-cta, .aud-cta-band { padding-left: 40px !important; padding-right: 40px !important; }
  .contact-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 128px 32px 56px !important; }
  .page-section { padding: 64px 32px !important; }
  .page-cta { padding: 64px 32px !important; }
  .aud-cta-band { padding-left: 32px !important; padding-right: 32px !important; }
  .content-grid, .content-grid.cols-3, .contact-grid, .steps { grid-template-columns: 1fr !important; }
  .donate-tiers { grid-template-columns: 1fr 1fr; }
  .callout { flex-direction: column; align-items: flex-start; gap: 18px; padding: 36px 32px !important; }
}
@media (max-width: 480px) {
  .page-hero { padding: 112px 24px 48px !important; }
  .page-section { padding: 52px 24px !important; }
  .page-cta { padding: 56px 24px !important; }
  .aud-cta-band { padding-left: 24px !important; padding-right: 24px !important; }
  .donate-tiers { grid-template-columns: 1fr; }
}

/* ─── FAQ accordion (native <details>) ─────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary { cursor: pointer; font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 400; color: var(--green-dark); flex-shrink: 0; transition: transform 0.2s ease; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 16px; font-size: 16px; color: var(--muted); line-height: 1.8; max-width: 700px; }

/* ─── News: sidebar layout, widgets, newsletter ────── */
.news-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; }
.news-aside { display: flex; flex-direction: column; gap: 3px; }
.widget { background: var(--off); padding: 32px; }
.widget-title { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 20px; }
.widget-search { display: flex; }
.widget-search input { flex: 1; min-width: 0; padding: 12px 14px; border: 1.5px solid var(--border); border-right: none; font-size: 15px; font-family: var(--sans); color: var(--text); background: #fff; }
.widget-search input:focus { outline: none; border-color: var(--green); }
.widget-search button { padding: 12px 18px; background: var(--green-dark); color: #fff; border: none; cursor: pointer; transition: background 0.15s; }
.widget-search button:hover { background: #0a7c45; }
.widget-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.widget-list li { display: flex; justify-content: space-between; gap: 12px; }
.widget-list a { font-size: 15px; color: var(--text); line-height: 1.4; }
.widget-list a:hover { color: var(--green-dark); }
.widget-list a.is-active { color: var(--green-dark); font-weight: 600; }
.widget-list .count { color: var(--muted); font-size: 13px; flex-shrink: 0; }
.news-cat { color: var(--blue-dark); font-weight: 600; }
.news-cat:hover { text-decoration: underline; }
.newsletter-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; max-width: 480px; margin: 0 auto; }
.newsletter-row input { flex: 1; min-width: 220px; padding: 18px 20px; border: none; font-size: 16px; font-family: var(--sans); color: var(--text); background: #fff; }
.newsletter-row input:focus { outline: 2px solid rgba(255,255,255,0.6); }

/* ─── Contact page: icon cards + spacious form ─────── */
.cc-card { display: flex; gap: 22px; align-items: flex-start; padding: 30px 0; border-bottom: 1px solid var(--border); }
.cc-card:first-child { padding-top: 0; }
.cc-card:last-child { border-bottom: none; padding-bottom: 0; }
.cc-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--off); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-dark); transition: background 0.2s, transform 0.2s; }
.cc-icon svg { width: 22px; height: 22px; }
.cc-card:hover .cc-icon { background: var(--green); color: var(--green-dark); transform: scale(1.06); }
.cc-title { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--text); margin-bottom: 6px; line-height: 1.2; }
.cc-desc { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.contact-form-panel .adavu-form { display: flex; flex-direction: column; gap: 4px; }
.contact-form-panel .adavu-form .form-field { margin-bottom: 26px; }
.contact-form-panel .adavu-form input, .contact-form-panel .adavu-form textarea { padding: 18px 20px; font-size: 17px; }
.contact-form-panel .adavu-form label { font-size: 14px; }
.contact-form-panel .form-submit { padding: 20px 48px; font-size: 16px; }
.contact-info-panel { background: var(--off); padding: 48px 44px; }
.contact-info-panel .cc-icon { background: #fff; }
.contact-form-panel { border-top: 3px solid var(--green); padding-top: 44px; }
@media (max-width: 768px) {
  .cc-card { padding: 24px 0; gap: 16px; }
  .cc-icon { width: 44px; height: 44px; }
  .contact-info-panel { padding: 32px 28px; }
  .contact-form-panel { padding-top: 32px; }
}

/* ─── Responsive tightening for newer components (phone) ─── */
@media (max-width: 768px) {
  .info-card.featured { padding: 40px 32px 44px; }
  .info-card.featured h3 { font-size: 25px; }
}
@media (max-width: 480px) {
  .opening-statement { padding: 48px 24px; }
  .pillar-band { padding: 32px 24px; }
  .campaign-band { padding: 44px 24px; }
  .campaign-cols { gap: 24px; }
  .info-card.featured { padding: 32px 24px 36px; }
  .info-card.featured h3 { font-size: 22px; }
  .path-card { padding: 40px 24px; }
  .path-card h3 { font-size: 24px; }
  .callout { padding: 32px 24px !important; }
  .callout .co-num { font-size: 24px !important; white-space: normal; }
  .cta-actions { gap: 10px; flex-direction: column; align-items: stretch; }
  .cta-btn-p, .cta-btn-s { padding: 16px 24px !important; font-size: 14px !important; width: 100%; justify-content: center; text-align: center; box-sizing: border-box; }
  .news-masthead { padding: 112px 24px 36px !important; }
  .widget { padding: 24px; }
}

/* ─── What We Do: opening statement + alternating feature + pillar bands ─── */
.opening-statement { padding: 96px 64px; max-width: 1000px; }
.opening-statement p { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-style: italic; color: var(--text); line-height: 1.4; }
.opening-statement p strong { font-style: normal; color: var(--green-dark); font-weight: 600; }
.feature.alt { grid-template-columns: 2fr 3fr; }
.feature.alt .feature-photo { order: 2; }
.pillar-band { display: grid; grid-template-columns: 100px 1fr; gap: 40px; padding: 64px; border-bottom: 1px solid var(--border); align-items: start; }
.pillar-band:last-child { border-bottom: none; }
.pillar-band:nth-child(even) { background: var(--off); }
.pillar-band .pb-num { font-family: var(--serif); font-size: 52px; font-weight: 600; color: var(--green); line-height: 1; }
.pillar-band h3 { font-family: var(--serif); font-size: 27px; font-weight: 600; color: var(--text); margin-bottom: 20px; line-height: 1.2; }
.pillar-band p { font-size: 17px; color: var(--muted); line-height: 1.85; max-width: 720px; }
@media (max-width: 768px) {
  .opening-statement { padding: 64px 32px; }
  .feature.alt, .feature { grid-template-columns: 1fr; }
  .feature.alt .feature-photo { order: 0; min-height: 260px; }
  .pillar-band { grid-template-columns: 1fr; gap: 16px; padding: 40px 32px; }
}

/* ─── Support Us: asymmetric help grid + campaign band ─────────────── */
.help-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3px; }
.help-side { display: flex; flex-direction: column; gap: 3px; }
.help-side .info-card { flex: 1; }
.info-card.featured { padding: 56px 48px 60px; }
.info-card.featured h3 { font-size: 30px; }
.info-card.featured p { font-size: 17px; }
.campaign-band { background: var(--blue); padding: 72px 64px; }
.campaign-band .cb-head { color: #fff; margin-bottom: 48px; max-width: 640px; }
.campaign-band .cb-head .eyebrow { color: rgba(255,255,255,0.75); }
.campaign-band .cb-head h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 600; color: #fff; line-height: 1.15; }
.campaign-band .cb-head h2 em { font-style: italic; font-weight: 600; }
.campaign-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.campaign-cols h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.campaign-cols p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.75; }
@media (max-width: 1024px) {
  .help-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .campaign-band { padding: 56px 32px; }
  .campaign-cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Join Us: path chooser + horizontal timeline ───────────────────── */
.path-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.path-card { padding: 56px 48px; background: #fff; border-right: 1px solid var(--border); transition: background 0.2s, transform 0.25s ease, box-shadow 0.25s ease; }
.path-card:last-child { border-right: none; }
.path-card:hover { background: var(--off); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(4,106,56,0.09); }
.path-card .pc-n { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 20px; display: block; }
.path-card h3 { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--text); margin-bottom: 16px; line-height: 1.15; }
.path-card p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.timeline { display: flex; position: relative; gap: 0; }
.timeline::before { content: ''; position: absolute; top: 8px; left: 0; right: 0; height: 1px; background: var(--border); }
.tl-step { flex: 1; padding: 0 28px; position: relative; }
.tl-step:first-child { padding-left: 0; }
.tl-step:last-child { padding-right: 0; }
.tl-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--green-dark); margin-bottom: 28px; position: relative; z-index: 1; }
.tl-step h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.tl-step p { font-size: 15px; color: var(--muted); line-height: 1.75; }
@media (max-width: 768px) {
  .path-choice { grid-template-columns: 1fr; }
  .path-card { border-right: none; border-bottom: 1px solid var(--border); }
  .path-card:last-child { border-bottom: none; }
  .timeline { flex-direction: column; gap: 32px; }
  .timeline::before { top: 0; bottom: 0; left: 8px; width: 1px; height: auto; right: auto; }
  .tl-step { padding: 0 0 0 32px; }
}

/* ─── News: editorial masthead + compact newsletter widget ──────────── */
.news-masthead { padding: 156px 64px 48px; border-bottom: 1px solid var(--border); }
.news-masthead .eyebrow { color: var(--green-dark); }
.news-masthead h1 { font-family: var(--serif); font-size: clamp(38px, 4.5vw, 60px); font-weight: 600; color: var(--text); line-height: 1.08; max-width: 820px; margin-bottom: 16px; }
.news-masthead h1 em { font-style: italic; color: var(--green-dark); }
.news-masthead .page-lead { font-size: 18px; color: var(--muted); max-width: 620px; }
.widget-newsletter p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.widget-newsletter .newsletter-row { flex-direction: column; max-width: none; }
.widget-newsletter input { background: #fff; border: 1.5px solid var(--border); color: var(--text); padding: 12px 14px; font-size: 14px; }
.widget-newsletter .form-submit { padding: 12px 20px; font-size: 14px; width: 100%; justify-content: center; }
@media (max-width: 768px) {
  .news-masthead { padding: 120px 32px 40px; }
}
@media (max-width: 1024px) {
  .news-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── News: featured post (spans full grid width) ──── */
.news-layout .news-grid { grid-template-columns: repeat(2, 1fr); }
.featured-post { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr 1fr; }
.featured-post .news-img { aspect-ratio: auto; height: 100%; min-height: 320px; }
.featured-post .news-title { font-size: 30px; }
.featured-post .news-exc { font-size: 17px; }
.featured-tag { background: var(--green-dark); color: #fff; padding: 3px 10px; border-radius: 2px; font-weight: 700; letter-spacing: 1px; font-size: 10px; }
@media (max-width: 768px) {
  .news-layout .news-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
}

/* ─────────── LARGE DESKTOP / WIDE MONITORS (≥ 1920px) ───────────
   Notebook and standard desktop (1025–1919px) already scale correctly via
   the clamp()-based type scale and fluid grids above — only very wide
   monitors need extra breathing room in the side gutters. ─────────── */
@media (min-width: 1920px) {
  nav { padding: 0 96px; }
  .welcome, .voices, .news { padding-left: 96px; padding-right: 96px; }
  .pillars-header, .audience-header { padding-left: 96px; padding-right: 96px; }
  .hero-text { padding-left: 140px; padding-right: 96px; }
  .cta-text { padding-left: 120px; padding-right: 120px; }
  footer { padding-left: 96px; padding-right: 96px; }
  .page-hero, .page-section, .page-cta, .aud-cta-band { padding-left: 96px; padding-right: 96px; }
  .page-wrap { max-width: 1320px; }
}
