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

:root {
  --navy: #1C2E44;
  --navy-light: #2A4466;
  --navy-dark: #0F1D2E;
  --grey-100: #F7F8FA;
  --grey-200: #E8ECF0;
  --grey-300: #D1D7DF;
  --grey-400: #9BA5B1;
  --grey-500: #6B7785;
  --grey-600: #4A5568;
  --white: #FFFFFF;
  --green-accent: #3DAA6D;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--grey-600);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img { height: 60px; width: auto; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-accent); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 20px;
  position: relative;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 28px; height: 2px;
  background: var(--navy);
  position: absolute; left: 0;
  transition: 0.3s;
}
.nav-toggle::before, .nav-toggle::after { content: ''; }
.nav-toggle span { top: 9px; }
.nav-toggle::before { top: 0; }
.nav-toggle::after { top: 18px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/hero-sunset.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,46,68,0.82) 0%, rgba(28,46,68,0.5) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
}
.btn-primary:hover { background: var(--grey-200); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ─── SECTIONS ─── */
section { padding: 100px 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-text {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 680px;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── MISSION ─── */
.mission {
  background: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-image {
  border-radius: 8px;
  overflow: hidden;
}
.mission-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ─── PILLARS ─── */
.pillars {
  background: var(--grey-100);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pillar-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  border: 1px solid var(--grey-200);
  transition: box-shadow 0.3s, transform 0.3s;
}
.pillar-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.pillar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.pillar-card p {
  font-size: 0.93rem;
  color: var(--grey-500);
  line-height: 1.7;
  font-weight: 300;
}

.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--grey-100);
}

.pillar-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.8; }

/* ─── ABOUT ─── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.objectives-list {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}
.objectives-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.93rem;
  color: var(--grey-500);
  font-weight: 300;
  line-height: 1.7;
}
.objectives-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
}

/* ─── INITIATIVES ─── */
.initiatives {
  background: var(--navy);
  color: var(--white);
}
.initiatives .section-label { color: rgba(255,255,255,0.5); }
.initiatives .section-heading { color: var(--white); }
.initiatives .section-text { color: rgba(255,255,255,0.65); }

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.initiative-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.initiative-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.initiative-card:hover img { transform: scale(1.05); }

.initiative-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,46,68,0.9) 0%, rgba(28,46,68,0.2) 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
}

.initiative-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.initiative-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── PROJECT SPOTLIGHT ─── */
.project { background: var(--white); }

.project-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.project-hero-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.project-hero-img img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.project-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 6px;
}

.project-inline-img {
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
}
.project-inline-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

@media (max-width: 640px) {
  .project-gallery { grid-template-columns: 1fr 1fr; }
}

.project-meta {
  font-size: 0.82rem;
  color: var(--grey-400);
  font-weight: 500;
  margin-bottom: 16px;
}

.project-quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--green-accent);
  background: var(--grey-100);
  border-radius: 0 6px 6px 0;
}

.project-quote p {
  font-size: 0.95rem;
  color: var(--grey-600);
  font-style: italic;
  line-height: 1.7;
  font-weight: 300;
}

.project-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

.project-body p {
  font-size: 0.95rem;
  color: var(--grey-500);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

@media (max-width: 960px) {
  .project-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── GRANTS ─── */
.grants { background: var(--grey-100); }

.grants-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.grants-tags span {
  display: inline-block;
  padding: 10px 22px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}
.grants-tags span:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ─── NEWS ─── */
.news { background: var(--white); }

.news-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--grey-100);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}

.news-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.news-card-content { padding: 40px 40px 40px 0; }

.news-meta {
  font-size: 0.82rem;
  color: var(--grey-400);
  font-weight: 500;
  margin-bottom: 14px;
}

.news-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 16px;
}

.news-card-content p {
  font-size: 0.93rem;
  color: var(--grey-500);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.read-more:hover { color: var(--green-accent); }

/* ─── MANIFESTO ─── */
.manifesto {
  position: relative;
  padding: 120px 0;
  background: url('../img/windfarm-hills.jpg') center/cover no-repeat;
  color: var(--white);
}
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,46,68,0.88) 0%, rgba(28,46,68,0.7) 100%);
}
.manifesto .container { position: relative; z-index: 2; }
.manifesto .section-label { color: rgba(255,255,255,0.5); }
.manifesto .section-heading { color: var(--white); max-width: 700px; }
.manifesto .section-text { color: rgba(255,255,255,0.7); max-width: 700px; }

/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--navy);
  padding: 80px 0;
}
.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter .section-heading { color: var(--white); }
.newsletter p {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 32px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.5); }

.newsletter-form button {
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--grey-200); }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo img { height: 36px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  max-width: 300px;
  line-height: 1.6;
}

.footer-nav h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-social { display: flex; gap: 16px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}
.footer-social img { width: 16px; height: 16px; filter: brightness(0) invert(1); opacity: 0.7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .mission-grid,
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid .about-image { order: -1; }

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

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

  .news-card { grid-template-columns: 1fr; }
  .news-card-content { padding: 28px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--grey-200);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--grey-200); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-toggle { display: block; }

  .hero { min-height: 80vh; }
  .hero-content { padding: 100px 24px 60px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .initiatives-grid { grid-template-columns: 1fr; }
  .initiative-card { aspect-ratio: 16/9; }

  .newsletter-form { flex-direction: column; }

  .footer-top { flex-direction: column; }
}

/* ============================================
   ADDITIONS FOR SUBPAGES
   ============================================ */

/* ─── PAGE HERO (compact) ─── */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--navy-dark);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,46,68,0.88) 0%, rgba(28,46,68,0.65) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
}
.page-hero .section-label { color: rgba(255,255,255,0.6); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 780px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 640px;
  line-height: 1.7;
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; }

/* ─── ARTICLE / DOC LAYOUT ─── */
.article {
  background: var(--white);
  padding: 80px 0 100px;
}
.article-inner {
  max-width: 75ch;
  margin: 0 auto;
  padding: 0 24px;
}
.article-meta {
  font-size: 0.82rem;
  color: var(--grey-400);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.article-inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.article-inner h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
  line-height: 1.3;
}
.article-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 30px 0 10px;
}
.article-inner p {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 18px;
}
.article-inner strong { color: var(--navy); font-weight: 600; }
.article-inner em { font-style: italic; color: var(--grey-600); }
.article-inner ul, .article-inner ol {
  margin: 0 0 20px 0;
  padding-left: 22px;
}
.article-inner li {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.8;
  margin-bottom: 8px;
}
.article-inner blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--green-accent);
  background: var(--grey-100);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--grey-600);
}
.article-inner blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}
.article-hero-img {
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 40px;
  max-width: 1140px;
  padding: 0 24px;
}
.article-hero-img img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 8px;
}
.article-inline-img {
  margin: 32px 0;
  border-radius: 6px;
  overflow: hidden;
}

/* Legal-style numbered sections */
.legal .article-inner h2 {
  font-size: 1.2rem;
  border-bottom: 1px solid var(--grey-200);
  padding-bottom: 10px;
}

/* ─── ACCORDION ─── */
.accordion { margin-top: 32px; }
.accordion-item {
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s;
}
.accordion-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}
.accordion-btn:hover { background: var(--grey-100); }
.accordion-btn .plus {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-btn .plus::before,
.accordion-btn .plus::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--green-accent);
  transform: translate(-50%, -50%);
}
.accordion-btn .plus::before { width: 14px; height: 2px; }
.accordion-btn .plus::after { width: 2px; height: 14px; transition: transform 0.3s; }
.accordion-item.open .accordion-btn .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-content-inner {
  padding: 0 24px 22px;
  color: var(--grey-500);
  font-weight: 300;
  line-height: 1.75;
  font-size: 0.95rem;
}
.accordion-content-inner p { margin-bottom: 12px; }
.accordion-content-inner p:last-child { margin-bottom: 0; }

/* ─── TRUSTEES / TEAM ─── */
.trustees { background: var(--grey-100); }
.trustees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.trustee-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--grey-200);
  transition: box-shadow 0.3s, transform 0.3s;
}
.trustee-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.trustee-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.trustee-card .role {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-accent);
  margin-bottom: 14px;
}
.trustee-card p {
  font-size: 0.9rem;
  color: var(--grey-500);
  font-weight: 300;
  line-height: 1.7;
}
.trustee-card .read-toggle {
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.trustee-card .read-toggle:hover { color: var(--green-accent); }
.trustee-bio {
  max-height: 4.5em;
  overflow: hidden;
  transition: max-height 0.35s ease;
  position: relative;
}
.trustee-bio::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.4em;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--white));
  pointer-events: none;
  transition: opacity 0.2s;
}
.trustee-card.expanded .trustee-bio { max-height: 100em; }
.trustee-card.expanded .trustee-bio::after { opacity: 0; }
@media (max-width: 720px) {
  .trustees-grid { grid-template-columns: 1fr; }
}

/* ─── NEWS ARCHIVE ─── */
.news-archive { background: var(--grey-100); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.news-card-simple {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--grey-200);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card-simple:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.news-card-simple .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card-simple .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-card-simple:hover .thumb img { transform: scale(1.05); }
.news-card-simple .body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-simple .meta {
  font-size: 0.75rem;
  color: var(--grey-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.news-card-simple h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
}
.news-card-simple .read-more {
  font-size: 0.78rem;
  margin-top: auto;
}
@media (max-width: 960px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ─── OBJECTIVES CARDS (about) ─── */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.objective-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  padding: 32px 28px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.objective-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.objective-card .num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-accent);
  margin-bottom: 10px;
}
.objective-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}
.objective-card p {
  font-size: 0.9rem;
  color: var(--grey-500);
  font-weight: 300;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .objectives-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .objectives-grid { grid-template-columns: 1fr; }
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-strip p {
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 24px;
}

/* Back-to-top for long docs */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.back-top:hover { background: var(--green-accent); }
.back-top.show { display: flex; }
.back-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Legal pages — align article content to same left edge as page-hero */
.legal .article-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal .article-inner > * {
  max-width: 75ch;
  margin-left: 0;
  margin-right: auto;
}

/* Article without a hero — clear the fixed nav plus 50px breathing room */
.article.no-hero { padding-top: 130px; }


/* News CTA — ghost button in nav */
.nav-links a.nav-cta {
  border: 1px solid var(--navy);
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-links a.nav-cta:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
@media (max-width: 640px) {
  .nav-links a.nav-cta {
    border: none;
    padding: 0;
    border-radius: 0;
  }
}


/* Footer legal links */
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }
