/* ============================================
   PCV - Parkinsons Coachella Valley
   Stylesheet
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---------- Variables ---------- */
:root {
  --teal: #6dbfa8;
  --teal-dark: #4fa589;
  --orange: #ed7d31;
  --orange-dark: #d66a20;
  --blue: #1f4e8c;
  --blue-dark: #163a6b;
  --gray-text: #4a4a4a;
  --gray-light: #f5f5f5;
  --gray-mid: #d4d4d4;
  --white: #ffffff;
  --bg-warm: #fdfaf6;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Lora', Georgia, serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 14px 40px rgba(0,0,0,0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --container: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: #2a2a2a; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 50px 0; } }

/* ============================================
   ANNOUNCEMENT BAR (top scrolling banner)
   ============================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal-dark) 50%, var(--orange) 100%);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 38s linear infinite;
}
.announcement-track:hover { animation-play-state: paused; }
.announcement-item {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.announcement-item::before {
  content: '✦';
  margin-right: 12px;
  color: rgba(255,255,255,0.7);
}
.announcement-item a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
  font-weight: 600;
}
.announcement-item a:hover { color: #ffe7d4; }

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

/* ============================================
   HEADER
   ============================================ */
.top-utility {
  background: var(--bg-warm);
  border-bottom: 1px solid #efe9e0;
  font-size: 13px;
  color: var(--gray-text);
}
.top-utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}
.top-utility a { color: var(--gray-text); }
.top-utility a:hover { color: var(--orange); }
.top-utility-left { display: flex; gap: 22px; flex-wrap: wrap; }
.top-utility-right { display: flex; gap: 14px; align-items: center; }
.acv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1;
}
.acv-link img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  flex-shrink: 0;
}
.acv-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.acv-link .acv-link-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.acv-link .acv-link-text small {
  font-size: 9.5px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.acv-link .acv-link-text strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: 0.2px;
}
.acv-link:hover .acv-link-text strong { color: var(--blue); }
.acv-link::after {
  content: '↗';
  font-size: 11px;
  color: #999;
  margin-left: 2px;
}
.acv-link:hover::after { color: var(--orange); }

@media (max-width: 600px) {
  .acv-link .acv-link-text small { display: none; }
  .acv-link { padding: 3px 10px 3px 3px; }
  .acv-link img { width: 22px; height: 22px; }
  .acv-link .acv-link-text strong { font-size: 11px; }
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  transition: all 0.2s;
}
.lang-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.lang-toggle::before {
  content: '🌐';
  font-size: 14px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-logo img {
  height: 78px;
  width: auto;
}
.site-logo-text {
  font-family: var(--font-display);
  line-height: 1.1;
}
.site-logo-text .top {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
}
.site-logo-text .bottom {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

/* ---------- Main Nav ---------- */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav > ul > li > a,
.main-nav > ul > li > .nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gray-text);
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > .nav-toggle:hover,
.main-nav > ul > li:hover > a,
.main-nav > ul > li:hover > .nav-toggle {
  color: var(--orange);
  background: rgba(237, 125, 49, 0.06);
}
.main-nav > ul > li.has-dropdown > .nav-toggle::after {
  content: '▾';
  font-size: 10px;
  margin-left: 2px;
  transition: transform 0.2s;
}
.main-nav > ul > li.has-dropdown:hover > .nav-toggle::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
  border-top: 3px solid var(--orange);
  z-index: 50;
}
.main-nav > ul > li.has-dropdown:hover > .dropdown,
.main-nav > ul > li.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s, transform 0.2s, visibility 0s;
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
  border-radius: 8px;
  transition: all 0.15s;
}
.dropdown li a:hover {
  background: var(--bg-warm);
  color: var(--blue);
  padding-left: 18px;
}

/* Donate button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn-donate {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(237,125,49,0.35);
}
.btn-donate:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(237,125,49,0.45);
  color: var(--white);
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-2px); }

/* ---------- Mobile menu trigger ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    z-index: 200;
  }
  .main-nav.open { right: 0; }
  .main-nav > ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
  }
  .main-nav > ul > li { width: 100%; }
  .main-nav > ul > li > a,
  .main-nav > ul > li > .nav-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    border-radius: 0;
  }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    background: var(--bg-warm);
    border-radius: 0;
    padding: 4px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    transition: none;
  }
  .main-nav li.has-dropdown.mobile-open > .dropdown { display: block; }
  .main-nav li.has-dropdown.mobile-open > .nav-toggle::after { transform: rotate(180deg); }
  .dropdown li a { padding-left: 32px; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 150;
  }
  .nav-overlay.active { opacity: 1; visibility: visible; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background:
    radial-gradient(circle at 20% 30%, rgba(109,191,168,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31,78,140,0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: url('../images/PCV-LOGO.png') no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(237,125,49,0.1);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--blue);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--orange); }
.hero-subtitle {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--gray-text);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  text-align: center;
}
.hero-visual img {
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(31,78,140,0.18));
  animation: gentle-float 6s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-1deg); }
}

/* ============================================
   HERO SLIDESHOW (3 rotating slides)
   ============================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(109,191,168,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(31,78,140,0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
}
.hero-slider::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: url('../images/PCV-LOGO.png') no-repeat center / contain;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.hero-slides {
  position: relative;
  min-height: 540px;
}
@media (max-width: 900px) { .hero-slides { min-height: 720px; } }

.hero-slide {
  position: absolute;
  inset: 0;
  padding: 90px 0 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0s linear 0.7s;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.7s ease, visibility 0s linear 0s;
  z-index: 1;
}
.hero-slide .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 100%;
}
@media (max-width: 900px) {
  .hero-slide .container { grid-template-columns: 1fr; gap: 40px; }
}

/* Slide-in animation for active slide content */
.hero-slide.active .hero-eyebrow,
.hero-slide.active h1,
.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-actions,
.hero-slide.active .hero-visual {
  animation: slide-in-up 0.8s ease-out backwards;
}
.hero-slide.active .hero-eyebrow   { animation-delay: 0.1s; }
.hero-slide.active h1              { animation-delay: 0.2s; }
.hero-slide.active .hero-subtitle  { animation-delay: 0.35s; }
.hero-slide.active .hero-actions   { animation-delay: 0.5s; }
.hero-slide.active .hero-visual    { animation-delay: 0.15s; }

@keyframes slide-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slide variants - colored eyebrow accents */
.hero-slide[data-slide="2"] .hero-eyebrow { color: var(--teal-dark); background: rgba(109,191,168,0.15); }
.hero-slide[data-slide="3"] .hero-eyebrow { color: var(--white); background: rgba(255,255,255,0.18); }

/* Slide 3 (Donate) - distinct dramatic background */
.hero-slide[data-slide="3"] {
  background: linear-gradient(135deg, var(--orange) 0%, #f5a063 50%, var(--orange-dark) 100%);
  color: var(--white);
}
.hero-slide[data-slide="3"] h1 { color: var(--white); }
.hero-slide[data-slide="3"] h1 .accent { color: #fff5e6; text-shadow: 2px 2px 0 rgba(0,0,0,0.1); }
.hero-slide[data-slide="3"] .hero-subtitle { color: rgba(255,255,255,0.95); }
.hero-slide[data-slide="3"] .btn-primary {
  background: var(--white);
  color: var(--orange);
}
.hero-slide[data-slide="3"] .btn-primary:hover { background: var(--blue); color: var(--white); }
.hero-slide[data-slide="3"] .btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.hero-slide[data-slide="3"] .btn-outline:hover { background: var(--white); color: var(--orange); }

/* Slide 2 (Support Group) - teal-tinted bg */
.hero-slide[data-slide="2"] {
  background:
    radial-gradient(circle at 80% 30%, rgba(109,191,168,0.22) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(31,78,140,0.10) 0%, transparent 50%),
    linear-gradient(180deg, #f3faf7 0%, var(--white) 100%);
}

/* Decorative icon for support group slide */
.hero-slide-icon {
  font-size: 8rem;
  display: block;
  text-align: center;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.12));
  animation: gentle-float 5s ease-in-out infinite;
}

/* ----- Navigation Controls ----- */
.hero-nav {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 5;
}
.hero-dots { display: flex; gap: 10px; }
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(74,74,74,0.25);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.hero-dot:hover { background: rgba(74,74,74,0.5); }
.hero-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}
/* On the orange Donate slide, dots invert */
.hero-slider.dark-slide-active .hero-dot { background: rgba(255,255,255,0.4); }
.hero-slider.dark-slide-active .hero-dot.active { background: var(--white); }
.hero-slider.dark-slide-active .hero-arrow { background: rgba(255,255,255,0.95); color: var(--orange); }
.hero-slider.dark-slide-active .hero-arrow:hover { color: var(--blue); }
.hero-slider.dark-slide-active .hero-progress { background: var(--white); }

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 18px;
  color: var(--blue);
  border: none;
}
.hero-arrow:hover {
  background: var(--white);
  transform: scale(1.08);
  color: var(--orange);
}
.hero-arrow.prev { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); z-index: 5; }
.hero-arrow.next { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); z-index: 5; }
.hero-arrow.prev:hover { transform: translateY(-50%) scale(1.08); }
.hero-arrow.next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 700px) {
  .hero-arrow { width: 38px; height: 38px; font-size: 14px; }
  .hero-arrow.prev { left: 8px; }
  .hero-arrow.next { right: 8px; }
}

/* Progress bar at bottom of slider */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--orange);
  width: 0%;
  transition: width 0.1s linear;
  z-index: 4;
}

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-header {
  background:
    radial-gradient(circle at 30% 30%, rgba(237,125,49,0.10) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.page-header .eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue);
}
.page-header .lead {
  margin-top: 14px;
  font-size: 1.15rem;
  color: var(--gray-text);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SECTIONS / TYPOGRAPHY
   ============================================ */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--blue);
  margin-bottom: 18px;
}
.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: var(--gray-text);
}

.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.8;
}
.prose h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-size: 1.7rem;
  color: var(--blue);
  position: relative;
  padding-left: 20px;
}
.prose h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 28px;
  background: var(--orange);
  border-radius: 3px;
}
.prose h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--teal-dark);
}
.prose p { margin-bottom: 18px; }
.prose ul {
  list-style: none;
  margin-bottom: 22px;
}
.prose ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  background: var(--teal);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.prose strong { color: #222; font-weight: 700; }
.prose a { color: var(--orange); font-weight: 600; border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--orange-dark); }

/* ============================================
   IMPACT GRID
   ============================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
@media (max-width: 800px) { .impact-grid { grid-template-columns: 1fr; } }
.impact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #f0e8d8;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.impact-card .puzzle-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.impact-card:nth-child(1) .puzzle-icon { color: var(--teal); }
.impact-card:nth-child(2) .puzzle-icon { color: var(--orange); }
.impact-card:nth-child(3) .puzzle-icon { color: var(--blue); }
.impact-card h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.impact-card .impact-stat {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  display: block;
}
.impact-card p {
  font-size: 0.96rem;
  color: var(--gray-text);
  line-height: 1.55;
}

/* ============================================
   HOW WE HELP / FEATURE GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 30px;
}
@media (max-width: 800px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--teal);
  background: var(--bg-warm);
  transition: all 0.3s;
}
.feature-card:nth-child(2) { border-left-color: var(--orange); }
.feature-card:nth-child(3) { border-left-color: var(--blue); }
.feature-card:nth-child(4) { border-left-color: var(--teal-dark); }
.feature-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.feature-card h3 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 1rem;
  color: var(--gray-text);
}

/* ============================================
   RESOURCES LIST (Parkinson's resources)
   ============================================ */
.resources-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
@media (max-width: 800px) { .resources-list { grid-template-columns: 1fr; } }
.resource-item {
  background: var(--white);
  border: 1px solid #ece4d4;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.resource-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--teal);
  transition: width 0.25s;
}
.resource-item:nth-child(3n+2)::before { background: var(--orange); }
.resource-item:nth-child(3n+3)::before { background: var(--blue); }
.resource-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.resource-item:hover::before { width: 100%; opacity: 0.05; }
.resource-item h4 {
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.resource-item p {
  font-size: 0.94rem;
  color: var(--gray-text);
  line-height: 1.55;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.resource-item a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  position: relative;
  z-index: 1;
  word-break: break-word;
}
.resource-item a:hover { color: var(--orange-dark); }

/* ============================================
   SUPPORT GROUP CALLOUT
   ============================================ */
.callout-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}
.callout-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: url('../images/PCV-LOGO.png') no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
}
.callout-box * { position: relative; z-index: 1; }
.callout-box h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}
.callout-box .when {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd9bf;
  margin-bottom: 18px;
}
.callout-box p { color: rgba(255,255,255,0.92); margin-bottom: 14px; line-height: 1.65; }
.callout-box .contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.callout-box .contact-line a {
  color: var(--white);
  font-weight: 700;
  border-bottom: 2px solid rgba(255,255,255,0.4);
}
.callout-box .contact-line a:hover { border-bottom-color: var(--white); color: var(--white); }

/* ============================================
   VIDEO GRID
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-card .video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--gray-light);
  overflow: hidden;
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card .video-meta { padding: 16px 18px; }
.video-card h4 { font-size: 1.05rem; color: var(--blue); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.gallery-grid a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: var(--gray-light);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-grid a:hover img { transform: scale(1.06); }

/* ============================================
   WAYS TO GIVE / CTA SECTIONS
   ============================================ */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 1000px) { .ways-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .ways-grid { grid-template-columns: 1fr; } }
.way-card {
  background: var(--white);
  border: 1px solid #f0e8d8;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}
.way-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.way-card .icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.way-card:nth-child(1) .icon-circle { background: rgba(237,125,49,0.12); color: var(--orange); }
.way-card:nth-child(2) .icon-circle { background: rgba(109,191,168,0.18); color: var(--teal-dark); }
.way-card:nth-child(3) .icon-circle { background: rgba(31,78,140,0.12); color: var(--blue); }
.way-card:nth-child(4) .icon-circle { background: rgba(237,125,49,0.12); color: var(--orange); }
.way-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.way-card p {
  font-size: 0.94rem;
  color: var(--gray-text);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* ============================================
   NEWSLETTER STRIP
   ============================================ */
.newsletter-strip {
  background: linear-gradient(135deg, var(--orange) 0%, #f5a063 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
  border-radius: var(--radius-lg);
  margin: 60px auto;
  max-width: var(--container);
  position: relative;
  overflow: hidden;
}
.newsletter-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 100%, rgba(255,255,255,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.12) 0%, transparent 40%);
}
.newsletter-strip * { position: relative; }
.newsletter-strip h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 10px;
}
.newsletter-strip p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.95;
}
.newsletter-strip .btn {
  background: var(--white);
  color: var(--orange);
}
.newsletter-strip .btn:hover { background: var(--blue); color: var(--white); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-info h3 {
  color: var(--blue);
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.contact-info dl { display: grid; gap: 18px; }
.contact-info dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.contact-info dd { font-size: 1rem; color: var(--gray-text); }
.contact-info dd a { color: var(--blue); font-weight: 600; }

.contact-form {
  background: var(--white);
  border: 1px solid #f0e8d8;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--gray-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(237,125,49,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #2a2a2a;
  color: rgba(255,255,255,0.85);
  padding: 70px 0 30px;
  margin-top: 80px;
  position: relative;
}
.site-footer::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 50%, var(--blue) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img {
  width: 130px;
  margin-bottom: 18px;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius-md);
}
.footer-brand p { font-size: 0.94rem; line-height: 1.6; opacity: 0.85; }
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.78);
  font-size: 0.96rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.86rem;
  opacity: 0.7;
}
.footer-bottom .nonprofit-line {
  font-style: italic;
  max-width: 600px;
  font-size: 0.82rem;
  line-height: 1.5;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

[hidden] { display: none !important; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--blue);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }
