/* ===== CAEEF Foundation - Shared Styles ===== */

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

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

/* CSS Variables (Design Tokens) */
:root {
  --background: #ffffff;
  --foreground: #1e2a3a;
  --primary: hsl(220, 60%, 22%);
  --primary-foreground: #ffffff;
  --secondary: hsl(220, 20%, 96%);
  --secondary-foreground: #1e2a3a;
  --muted-foreground: hsl(220, 10%, 45%);
  --accent: hsl(5, 70%, 48%);
  --accent-foreground: #ffffff;
  --border: hsl(220, 15%, 90%);
  --gold: hsl(38, 85%, 50%);
  --font-sans: 'Inter', Arial, Helvetica, sans-serif;
  --font-heading: 'Lora', Georgia, serif;
  --radius: 0.75rem;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-balance {
  text-wrap: balance;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.8125rem;
}
.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.top-bar a {
  color: var(--primary-foreground);
  transition: opacity 0.2s;
}
.top-bar a:hover { opacity: 0.8; }
.top-bar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.top-bar .icon-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar .icon-text svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-link img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.logo-text .logo-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
.logo-text .logo-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  background: var(--secondary);
  color: var(--primary);
}
.nav-links a.btn-donate {
  margin-left: 8px;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 8px 16px;
  border-radius: 6px;
}
.nav-links a.btn-donate:hover {
  opacity: 0.9;
}

/* Navbar search */
.nav-search {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
}
.nav-search input {
  width: 160px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--foreground);
}
.nav-search button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
  color: var(--muted-foreground);
}
.nav-search button svg { width: 18px; height: 18px; }
.nav-search:focus-within {
  border-color: rgba(0,0,0,0.25);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

.mobile-search {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--secondary);
}
.mobile-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  font-family: var(--font-sans);
}
.mobile-search button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-search button svg { width: 20px; height: 20px; }

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--foreground);
}
.mobile-toggle svg { width: 24px; height: 24px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 8px 16px 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: var(--secondary); }
.mobile-nav a.btn-donate {
  margin-top: 8px;
  background: var(--accent);
  color: var(--accent-foreground);
  text-align: center;
}

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .logo-text { display: none; }
}
@media (min-width: 640px) {
  .logo-text { display: block; }
}

/* ===== HERO SECTION (Home) ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(220,60%,22%,0.95), hsla(220,60%,22%,0.80), hsla(220,60%,22%,0.40));
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  padding: 80px 0;
}
.hero .label-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero .label-line .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero .label-line span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary-foreground);
  margin-bottom: 24px;
}
.hero h1 .highlight {
  font-style: italic;
  color: var(--gold);
}
.hero .hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero { min-height: 720px; }
  .hero h1 { font-size: 3.75rem; }
}

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  background: var(--primary);
  padding: 64px 0 64px;
  text-align: center;
}
.page-hero .label-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.page-hero .label-line .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.page-hero .label-line span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 16px;
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
}
@media (min-width: 768px) {
  .page-hero h1 { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
  .page-hero { padding: 80px 0; }
  .page-hero h1 { font-size: 3rem; }
}

/* ===== IMPACT STATS BAR ===== */
.stats-bar {
  background: var(--primary);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-grid .stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.stats-grid .stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) {
  .stats-grid .stat-value { font-size: 3rem; }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 40px 0;
}
.section-alt {
  background: var(--secondary);
}
.section-dark {
  background: var(--primary);
  color: var(--primary-foreground);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .label-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-header .label-line .line { width: 40px; height: 1px; background: var(--accent); }
.section-header .label-line span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
}
.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .section-header h2 { font-size: 2.25rem; }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

/* ===== TWO-COL GRID ===== */
.grid-2 {
  display: grid;
  gap: 64px;
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-2-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
}
.grid-2-img img {
  width: 83%;
  height: 100%;
  object-fit: cover;
}
.grid-3-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.grid-2-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== CARD GRIDS ===== */
.card-grid-3 {
  display: grid;
  gap: 32px;
}
@media (min-width: 768px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card-grid-4 {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.card .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary);
  margin-bottom: 16px;
}
.card .card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-foreground);
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 12px;
}
.card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Image card (activities preview) */
.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--background);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
  display: block;
}
.image-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.image-card .image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.image-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.image-card:hover .image-wrap img {
  transform: scale(1.05);
}
.image-card .image-card-body {
  padding: 20px;
}
.image-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}
.image-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}
.image-card .learn-more {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== VALUE / FEATURE ITEMS ===== */
.value-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
.value-item {
  display: flex;
  gap: 16px;
}
.value-item .value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--secondary);
}
.value-item .value-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}
.value-item h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
}
.value-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Mission floating card */
.floating-card {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.floating-card .big-num {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
}
.floating-card .small-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
}
.cta-banner-inner {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--primary);
  padding: 64px 24px;
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.cta-banner-body {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-logo-circle img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.cta-banner h2 {
  max-width: 768px;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
}
.cta-banner .cta-desc {
  max-width: 576px;
  color: rgba(255,255,255,0.75);
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .cta-banner h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .cta-banner-inner { padding: 80px 64px; }
}

/* Full-width CTA section (biography, donate bottom) */
.cta-section {
  background: var(--primary);
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 16px;
}
.cta-section p {
  max-width: 576px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.75);
}
@media (min-width: 768px) {
  .cta-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .cta-section { padding: 80px 0; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--primary);
}
.btn-gold:hover { background: hsl(38, 85%, 45%); }
.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn-accent:hover { opacity: 0.9; }
.btn-outline {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,1);
  background: rgba(255,255,255,0.1);
}

/* Arrow icon in buttons */
.btn svg {
  width: 16px;
  height: 16px;
}

/* ===== FEATURE LIST ITEMS (About what we do) ===== */
.feature-list {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) {
  .feature-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .feature-list { grid-template-columns: repeat(3, 1fr); }
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.feature-item .fi-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--secondary);
}
.feature-item .fi-icon svg { width: 20px; height: 20px; color: var(--primary); }
.feature-item p { font-size: 0.875rem; line-height: 1.7; color: var(--foreground); }

/* ===== BULLET LIST ===== */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bullet-list li {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--foreground);
}
.bullet-list li .dot {
  margin-top: 8px;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
}
.bullet-list.dot-primary li .dot {
  background: var(--primary);
}

/* ===== BIOGRAPHY ===== */
.bio-grid {
  display: grid;
  gap: 64px;
}
@media (min-width: 1024px) {
  .bio-grid { grid-template-columns: 380px 1fr; align-items: start; }
}
.bio-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bio-portrait-img {
  width: 288px;
  height: 288px;
  overflow: hidden;
  border-radius: 1rem;
  border: 4px solid var(--secondary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  margin-bottom: 24px;
}
.bio-portrait-img img { width: 100%; height: 100%; object-fit: cover; }
.bio-portrait h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 4px;
}
.bio-portrait .bio-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  text-align: center;
  margin-bottom: 4px;
}
.bio-portrait .bio-dates {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}
@media (min-width: 640px) {
  .bio-portrait-img { width: 320px; height: 320px; }
}
@media (min-width: 1024px) {
  .bio-portrait { position: sticky; top: 128px; }
}

.bio-text .bio-intro {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 24px;
}
.bio-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 40px;
  margin-bottom: 16px;
}
.bio-text p {
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  height: 100%;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 32px;
}
.timeline-item .timeline-dot {
  position: absolute;
  left: 18px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--secondary);
  z-index: 1;
}
.timeline-item .timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.timeline-item .timeline-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--foreground);
}

/* ===== TRUSTEE CARDS ===== */
.trustee-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  padding: 24px;
  transition: box-shadow 0.2s;
}
.trustee-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.trustee-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.trustee-avatar span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.trustee-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
}
.trustee-card .trustee-role {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 12px;
}
.trustee-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ===== PROGRAMMES (alternating) ===== */
.programme-item {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .programme-item { grid-template-columns: 1fr 1fr; }
  .programme-item.reverse .prog-img { order: 2; }
  .programme-item.reverse .prog-text { order: 1; }
}
.prog-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
}
.prog-img img { width: 100%; height: 100%; object-fit: cover; }
.prog-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.prog-label .line { width: 32px; height: 1px; background: var(--accent); }
.prog-label span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.prog-text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .prog-text h2 { font-size: 1.875rem; }
}
.prog-text > p {
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: var(--primary-foreground);
}
.footer-top {
  padding: 64px 0;
}
.footer-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-brand .logo-link { margin-bottom: 16px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
}
.footer-contact a, .footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--primary-foreground); }
.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary-foreground); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 640px) {
  .footer-bottom .container { flex-direction: row; }
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--primary-foreground); }

/* ===== SECTION TEXT CENTER ===== */
.text-center-section {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.text-center-section h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 24px;
}
.text-center-section p {
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .text-center-section h2 { font-size: 2.25rem; }
}

/* ===== DONATE SPECIFIC ===== */
.donate-card-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 640px) {
  .donate-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .donate-card-grid { grid-template-columns: repeat(4, 1fr); }
}
.donate-card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.donate-card .donate-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.donate-card .donate-icon svg { width: 28px; height: 28px; color: var(--primary-foreground); }
.donate-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 8px;
}
.donate-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}


/* ===== TRUSTEE IMAGE STYLES ===== */
.trustee-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: var(--muted);
}

.trustee-placeholder {
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d1d5db;
}

.trustee-placeholder svg {
  width: 80px;
  height: 80px;
  color: #9ca3af;
}

.trustee-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--foreground);
}

.trustee-card .trustee-role {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin: 0;
}

