/* =========================================================
   PWCDC Design System
   Source of truth: /plan.md — update plan.md alongside any
   change made here (colors, spacing, components, etc).
   ========================================================= */

/* ---------- Root variables ---------- */
:root {
  /* Brand colors */
  --pwcdc-navy: #061A3A;
  --pwcdc-navy-light: #0F2C5C;
  --pwcdc-green: #3F7D20;
  --pwcdc-green-light: #E9F2E3;
  --pwcdc-teal: #007C89;
  --pwcdc-teal-light: #E3F1F2;
  --pwcdc-gold: #E5B400;
  --pwcdc-gold-light: #FDF4DA;
  --pwcdc-purple: #4B2484;
  --pwcdc-purple-light: #EFE7F5;
  --pwcdc-light-bg: #F7FAF8;
  --pwcdc-white: #FFFFFF;
  --pwcdc-text: #1E293B;
  --pwcdc-muted-text: #64748B;
  --pwcdc-border: #DDE5E2;

  /* Typography */
  --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-width: 1200px;
  --space-section: 80px;
  --space-section-mobile: 48px;
  --radius-card: 20px;
  --radius-pill: 999px;
  --radius-btn: 12px;

  /* Shadows (soft only) */
  --shadow-sm: 0 2px 10px rgba(6, 26, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(6, 26, 58, 0.10);
  --shadow-lg: 0 20px 50px rgba(6, 26, 58, 0.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--pwcdc-text);
  background: var(--pwcdc-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--pwcdc-navy);
  line-height: 1.25;
  margin: 0 0 16px;
}
p { margin: 0 0 16px; color: var(--pwcdc-text); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* Visible focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--pwcdc-teal);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pwcdc-navy);
  color: var(--pwcdc-white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--space-section-mobile) 0;
}
@media (min-width: 900px) {
  section { padding: var(--space-section) 0; }
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--pwcdc-green);
  margin-bottom: 12px;
}
.section-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.section-intro p {
  color: var(--pwcdc-muted-text);
  font-size: 1.1rem;
}
.section-intro.on-dark h2 { color: var(--pwcdc-white); }
.section-intro.on-dark p { color: rgba(255,255,255,0.78); }
.section-intro.on-dark .eyebrow { color: var(--pwcdc-gold); }

.bg-light { background: var(--pwcdc-light-bg); }
.bg-white { background: var(--pwcdc-white); }
.bg-navy {
  background: linear-gradient(160deg, var(--pwcdc-navy) 0%, var(--pwcdc-navy-light) 100%);
  color: var(--pwcdc-white);
}
.bg-navy h2, .bg-navy h3 { color: var(--pwcdc-white); }
.bg-navy p { color: rgba(255,255,255,0.82); }
.bg-navy.has-photo-bg {
  background-image:
    linear-gradient(160deg, rgba(6,26,58,0.93) 0%, rgba(15,44,92,0.90) 100%),
    url('../images/photos/impact-bg.jpg');
  background-size: cover;
  background-position: center 15%;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

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

.btn-primary-green {
  background: var(--pwcdc-green);
  color: var(--pwcdc-white);
}
.btn-primary-green:hover { background: #356b1a; }

.btn-secondary {
  background: transparent;
  border-color: var(--pwcdc-navy);
  color: var(--pwcdc-navy);
}
.btn-secondary:hover { background: var(--pwcdc-navy); color: var(--pwcdc-white); }

.btn-secondary-light {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--pwcdc-white);
}
.btn-secondary-light:hover { background: rgba(255,255,255,0.12); border-color: var(--pwcdc-white); }

.btn-donate {
  background: var(--pwcdc-gold);
  color: var(--pwcdc-navy);
}
.btn-donate:hover { background: #cf9f00; }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--pwcdc-border);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pwcdc-navy);
}
.brand img { height: 52px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text .brand-short { font-size: 1.15rem; letter-spacing: 0.02em; }
.brand-text .brand-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--pwcdc-purple);
  text-transform: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--pwcdc-text);
  padding: 8px 2px;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--pwcdc-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--pwcdc-navy); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--pwcdc-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: auto;
    height: calc(100vh - 76px);
    width: min(320px, 85vw);
    background: var(--pwcdc-white);
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 4px;
    border-bottom: 1px solid var(--pwcdc-border);
  }
  .header-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
    width: 100%;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(155deg, rgba(6,26,58,0.92) 10%, rgba(15,44,92,0.85) 55%, rgba(0,124,137,0.75) 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="20" cy="20" r="1.4" fill="white" opacity="0.15"/></svg>');
  color: var(--pwcdc-white);
  overflow: hidden;
  padding: 72px 0 96px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,180,0,0.18), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-inner > * { min-width: 0; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--pwcdc-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--pwcdc-white);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-bottom: 20px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 56ch;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.hero-visual-card {
  background: var(--pwcdc-white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-md);
  max-width: 420px;
  min-width: 0;
  width: 100%;
}
.hero-visual-card img {
  border-radius: 14px;
  width: 100%;
}
.hero-visual-caption {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--pwcdc-muted-text);
  text-align: center;
}

/* ---------- Who We Are ---------- */
.who-we-are {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.who-we-are > * { min-width: 0; }
@media (max-width: 900px) {
  .who-we-are { grid-template-columns: 1fr; }
}
.who-we-are h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.who-we-are-visual {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pwcdc-border);
}
.who-we-are-visual .placeholder-photo {
  aspect-ratio: 4 / 3;
}
.who-we-are-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.stat-strip {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat-strip div {
  flex: 1 1 140px;
  border-left: 3px solid var(--pwcdc-green);
  padding-left: 14px;
}
.stat-strip strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--pwcdc-navy);
  font-size: 1.05rem;
}
.stat-strip span {
  font-size: 0.88rem;
  color: var(--pwcdc-muted-text);
}

/* Placeholder photo blocks (used until real photography is supplied) */
.placeholder-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pwcdc-teal-light), var(--pwcdc-green-light));
  color: var(--pwcdc-navy);
  text-align: center;
  padding: 20px;
}
.placeholder-photo .ph-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  opacity: 0.75;
}
.placeholder-photo span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pwcdc-navy);
  opacity: 0.75;
}

/* ---------- Mission / Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 760px) {
  .mv-grid { grid-template-columns: 1fr; }
}
.mv-card {
  background: var(--pwcdc-white);
  border: 1px solid var(--pwcdc-border);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--pwcdc-green);
}
.mv-card.vision { border-top-color: var(--pwcdc-teal); }
.mv-card .mv-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.mv-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.mv-card p { font-size: 1.05rem; color: var(--pwcdc-text); margin-bottom: 0; }

/* ---------- Program cards ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.program-card {
  background: var(--pwcdc-white);
  border: 1px solid var(--pwcdc-border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent, var(--pwcdc-green));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.program-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light, var(--pwcdc-green-light));
  color: var(--accent, var(--pwcdc-green));
  margin-bottom: 18px;
}
.program-icon svg { width: 28px; height: 28px; }
.program-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.program-card p.desc { color: var(--pwcdc-muted-text); margin-bottom: 16px; }
.program-card ul { margin-bottom: 20px; }
.program-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.94rem;
  color: var(--pwcdc-text);
}
.program-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, var(--pwcdc-green));
}
.program-card .learn-more {
  margin-top: auto;
  font-weight: 600;
  color: var(--accent, var(--pwcdc-green));
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.program-card .learn-more svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.program-card .learn-more:hover svg { transform: translateX(4px); }

.program-card.c-green   { --accent: var(--pwcdc-green);  --accent-light: var(--pwcdc-green-light); }
.program-card.c-teal    { --accent: var(--pwcdc-teal);   --accent-light: var(--pwcdc-teal-light); }
.program-card.c-gold    { --accent: #B8860B;             --accent-light: var(--pwcdc-gold-light); }
.program-card.c-purple  { --accent: var(--pwcdc-purple); --accent-light: var(--pwcdc-purple-light); }

.programs-grid-main { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }

.coming-soon-intro {
  text-align: center;
  margin: 56px 0 28px;
}
.coming-soon-intro h3 { font-size: 1.4rem; margin-top: 6px; }

.programs-grid-soon { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.program-card-soon {
  position: relative;
  background: var(--pwcdc-off-white, #f7f7f5);
  border: 1px dashed var(--pwcdc-border);
  border-radius: var(--radius-card);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0.85;
}
.program-card-soon .program-icon {
  background: var(--pwcdc-border);
  color: var(--pwcdc-muted-text);
}
.program-card-soon h3 {
  font-size: 1.05rem;
  color: var(--pwcdc-muted-text);
  margin-bottom: 0;
}
.soon-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pwcdc-muted-text);
  background: var(--pwcdc-white);
  border: 1px solid var(--pwcdc-border);
  border-radius: 999px;
  padding: 4px 10px;
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-card);
  background: var(--pwcdc-white);
  border: 1px solid var(--pwcdc-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pwcdc-green-light);
  color: var(--pwcdc-green);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; color: var(--pwcdc-muted-text); margin-bottom: 0; }

/* ---------- Impact / Trust ---------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.impact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
}
.impact-card .impact-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  color: var(--pwcdc-gold);
}
.impact-card p {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  margin-bottom: 0;
}

/* ---------- Community in Action (photo gallery) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.gallery-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(0deg, rgba(6,26,58,0.85) 0%, rgba(6,26,58,0) 100%);
  color: var(--pwcdc-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---------- Events ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.event-card {
  background: var(--pwcdc-white);
  border: 1px solid var(--pwcdc-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-date-block {
  background: linear-gradient(135deg, var(--pwcdc-navy), var(--pwcdc-navy-light));
  color: var(--pwcdc-white);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.event-date-block svg { width: 30px; height: 30px; color: var(--pwcdc-gold); flex-shrink: 0; }
.event-body { padding: 24px; }
.event-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.event-status {
  display: inline-block;
  margin-top: 6px;
  background: var(--pwcdc-gold-light);
  color: #8a6a00;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ---------- Get Involved ---------- */
.involved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.involved-card {
  background: var(--pwcdc-white);
  border: 1px solid var(--pwcdc-border);
  border-radius: var(--radius-card);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.involved-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.involved-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--pwcdc-green-light);
  color: var(--pwcdc-green);
}
.involved-card.partner .involved-icon { background: var(--pwcdc-teal-light); color: var(--pwcdc-teal); }
.involved-card.donate .involved-icon { background: var(--pwcdc-gold-light); color: #8a6a00; }
.involved-icon svg { width: 30px; height: 30px; }
.involved-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.involved-card p { color: var(--pwcdc-muted-text); margin-bottom: 22px; }
.involved-card .btn { margin-top: auto; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact-grid > * { min-width: 0; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form {
  background: var(--pwcdc-white);
  border: 1px solid var(--pwcdc-border);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pwcdc-navy);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--pwcdc-border);
  border-radius: var(--radius-btn);
  background: var(--pwcdc-light-bg);
  color: var(--pwcdc-text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pwcdc-teal);
  background: var(--pwcdc-white);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: 0.85rem;
  color: var(--pwcdc-muted-text);
  margin-top: 10px;
}

.contact-info-card {
  background: var(--pwcdc-light-bg);
  border: 1px solid var(--pwcdc-border);
  border-radius: var(--radius-card);
  padding: 32px;
  margin-bottom: 24px;
}
.contact-info-card h3 { font-size: 1.15rem; margin-bottom: 18px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-info-item svg {
  width: 22px;
  height: 22px;
  color: var(--pwcdc-teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item strong { display: block; color: var(--pwcdc-navy); font-size: 0.92rem; }
.contact-info-item span, .contact-info-item a { font-size: 0.92rem; color: var(--pwcdc-muted-text); }

.map-placeholder {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--pwcdc-border);
  aspect-ratio: 16/10;
}

.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--pwcdc-border);
  aspect-ratio: 16/10;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--pwcdc-green), var(--pwcdc-teal));
  color: var(--pwcdc-white);
  border-radius: var(--radius-card);
  padding: 48px;
  text-align: center;
}
.cta-band h2 { color: var(--pwcdc-white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 60ch; margin: 0 auto 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pwcdc-navy);
  color: rgba(255,255,255,0.85);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid > * { min-width: 0; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.footer-brand img { height: 72px; width: auto; align-self: flex-start; }
.footer-brand .tagline { color: var(--pwcdc-gold); font-weight: 600; font-size: 0.95rem; }
.footer-brand p { color: rgba(255,255,255,0.68); font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  color: var(--pwcdc-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.93rem; }
.footer-col a:hover { color: var(--pwcdc-white); }
.footer-col .btn { margin-top: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0 32px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.footer-social svg { width: 16px; height: 16px; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
