/* ============================================================
   Hamilton is Home — Homepage (home.css)
   ============================================================ */

/* ── Scroll-reveal animation base ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Shared section layout ───────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--plum);
  margin-bottom: .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--merigold);
  flex-shrink: 0;
}
.section-label.dark { color: rgba(255,255,255,.6); }
.section-label.dark::before { background: rgba(255,255,255,.4); }
.section-label.on-merigold { color: var(--plum); }
.section-label.on-merigold::before { background: var(--plum); }

/* ── BTN system ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .8rem 1.75rem;
  border-radius: 50px;
  transition: background .18s, color .18s, transform .15s, box-shadow .18s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--merigold);
  color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(68,57,76,.3);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-plum {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}
.btn-outline-plum:hover {
  background: var(--plum);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm {
  font-size: .82rem;
  padding: .55rem 1.2rem;
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .2s;
}
.btn:hover svg { transform: translateX(3px); }

/* ── View all link ──────────────────────────────────────────── */
.view-all {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  color: var(--plum);
  transition: gap .2s, color .15s;
}
.view-all svg { width: 16px; height: 16px; transition: transform .2s; }
.view-all:hover { color: var(--plum-dk); gap: .65rem; }
.view-all:hover svg { transform: translateX(3px); }
.view-all.white { color: rgba(255,255,255,.75); }
.view-all.white:hover { color: var(--white); }

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────
   HERO — container-driven split
   hero-inner is a 55/45 grid. Content fills the left column
   (naturally bounded by the container). Photo fills the right
   column and bleeds to the viewport edge. Plum panel is a
   pseudo-element that fills left + diagonal.
───────────────────────────────────────────────────────────── */
#hero {
  min-height: calc(100svh - var(--nav-h));
  position: relative;
  overflow: hidden;
  background: var(--plum);
}

/* Merigold accent bar at very top */

/* ── Container grid ── */
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(100svh - var(--nav-h));
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Left column: text ── */
.hero-content {
  padding: 5.5rem 4rem 5.5rem 0;
  position: relative;
  z-index: 4;
}

/* ── Right column: spacer (photo is absolute behind) ── */
.hero-photo-spacer {
  align-self: stretch;
}

/* ── Diagonal divider — absolutely positioned on #hero, always full height ── */
.hero-diagonal {
  position: absolute;
  top: 0;
  bottom: 0;
  /* sits at the boundary of the left column */
  left: calc(50% + 72px - 2.5rem);
  width: 8rem;
  background: var(--plum);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  z-index: 3;
  pointer-events: none;
}

/* ── Photo — absolute on #hero, aligned to right column start ──
   Starts at 55% of the container width from the container's
   left edge, then runs to the viewport's right edge.
   Formula: left = (100vw - min(100vw,1450px))/2 + 1450px * 0.55
          = calc(50vw - 725px + 797.5px)
          = calc(50vw + 72.5px)
   We use a CSS custom property for the split so it's easy to tune.
── */
:root { --hero-split: calc(50vw + 72px); }

.hero-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--hero-split);
  right: 0;
  z-index: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Gradients: left edge blends into plum, bottom darkens slightly */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(68,57,76,.45) 0%, transparent 45%);
}

/* Subtle crosshatch on the plum background area */
#hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: calc(var(--hero-split) + 6vw);
  height: 100%;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 38px,
    rgba(255,255,255,.02) 38px,
    rgba(255,255,255,.02) 40px
  );
  pointer-events: none;
  z-index: 1;
}


.hero-kicker {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--teal);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  opacity: 0;
  animation: fadeUp .7s .1s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 3.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp .7s .2s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-h1 em {
  font-style: normal;
  color: var(--merigold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .7s .3s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s .4s cubic-bezier(.16,1,.3,1) forwards;
}

/* ── Caption badge ── */
.hero-photo-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
  background: rgba(68,57,76,.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .75rem 1.1rem;
  opacity: 0;
  animation: fadeUp .7s .6s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-photo-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .15rem;
}
.hero-photo-badge span {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 300;
  color: rgba(255,255,255,.55);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 980px) {
  :root { --hero-split: 57vw; }
  .hero-inner { grid-template-columns: 57fr 43fr; }
}

@media (max-width: 860px) {
  :root { --hero-split: 100vw; } /* photo goes behind */
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 4rem 0 18rem;
  }
  .hero-content::after { display: none; }
  .hero-photo-spacer::before { display: none; }
  .hero-diagonal { display: none; }
  #hero::after { width: 100%; }
  .hero-photo {
    left: 0;
    top: auto;
    height: 55%;
  }
  .hero-photo::after {
    background: linear-gradient(to bottom, var(--plum) 0%, transparent 40%),
                linear-gradient(to top, rgba(68,57,76,.5) 0%, transparent 50%);
  }
  .hero-photo-spacer { display: none; }
  .hero-photo-badge { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 540px) {
  .hero-content { padding: 3.5rem 0 15rem; }
  .hero-photo { height: 45%; }
  .hero-h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
}

/* ─────────────────────────────────────────────────────────────
   IMPACT STATS
───────────────────────────────────────────────────────────── */
#stats {
  background: var(--merigold);
  padding: 1.75rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: .85rem 1rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(68,57,76,.2);
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
  display: block;
  margin-bottom: .3rem;
}
.stat-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  color: var(--plum);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ─────────────────────────────────────────────────────────────
   MISSION
───────────────────────────────────────────────────────────── */
#mission {
  background: var(--white);
  padding: 4.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mission-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 3.5rem;
  align-items: center;
}

/* ── Left: big quote ── */
.mission-quote {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--plum);
  line-height: 1.45;
  letter-spacing: -.01em;
  position: relative;
  padding-top: 1.5rem;
  grid-column: 1;
}
.mission-quote::before {
  content: '\201C';
  position: absolute;
  top: -.75rem;
  left: -.25rem;
  font-family: var(--font-accent);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--merigold);
  opacity: .35;
  pointer-events: none;
}
.mission-quote .mission-label {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-dk);
  margin-bottom: .85rem;
}

/* ── Centre divider ── */
.mission-divider {
  grid-column: 2;
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, var(--merigold), transparent);
  opacity: .4;
}

/* ── Right: context + CTA ── */
.mission-right {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mission-sub {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .mission-inner {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
  .mission-quote  { grid-column: 1; padding-top: 1.75rem; }
  .mission-divider {
    grid-column: 1;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--merigold), var(--teal));
    border-radius: 2px;
    align-self: auto;
  }
  .mission-right { grid-column: 1; }
}


/* ─────────────────────────────────────────────────────────────
   PROJECTS
───────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────
   PROJECTS MAP
───────────────────────────────────────────────────────────── */
#projects {
  background: var(--cream);
  padding: 5.5rem 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: .5rem;
}
.section-desc {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   IN THE NEWS
───────────────────────────────────────────────────────────── */
#news {
  background: var(--cream);
  padding: 5.5rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1.5px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(68,57,76,.09);
  border-color: var(--merigold);
}

/* ── Cover image ── */
.news-card-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: var(--plum);
  flex-shrink: 0;
}
.news-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.news-card:hover .news-card-cover img {
  transform: scale(1.04);
}
/* Fallback when no image */
.news-card-cover-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-lt) 100%);
}
.news-card-cover-fallback span {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── Card body ── */
.news-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-card-date {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal-dk);
  margin-bottom: .6rem;
}
.news-card-outlet {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.news-card-outlet::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--merigold);
  flex-shrink: 0;
}
.news-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.35;
  flex: 1;
  margin-bottom: 1.25rem;
}
.news-card-link {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  color: var(--merigold);
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s, color .15s;
  margin-top: auto;
}
.news-card-link svg { width: 14px; height: 14px; transition: transform .2s; }
.news-card:hover .news-card-link { gap: .55rem; color: var(--monarch); }
.news-card:hover .news-card-link svg { transform: translateX(2px); }

/* ─────────────────────────────────────────────────────────────
   EVENTS
───────────────────────────────────────────────────────────── */
#events {
  background: var(--plum);
  padding: 5.5rem 0;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.event-card {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background .2s, border-color .2s, transform .2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--merigold);
  transform: translateY(-3px);
}
.event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--merigold);
  color: var(--plum);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  width: fit-content;
  letter-spacing: .02em;
}
.event-date-badge.past {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
}
.event-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: .65rem;
  flex: 1;
}
.event-time {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.event-time svg { width: 13px; height: 13px; flex-shrink: 0; opacity: .6; }
.event-recording {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: .65rem;
}
.event-recording svg { width: 13px; height: 13px; }

/* ─────────────────────────────────────────────────────────────
   ADVOCACY CTA
───────────────────────────────────────────────────────────── */
#advocacy {
  background: var(--merigold);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(68,57,76,.08);
}
.advocacy-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1px 280px;
  gap: 0 3.5rem;
  align-items: center;
}
.advocacy-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--plum);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: .65rem;
}
.advocacy-copy p:not(.section-label) {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 400;
  color: var(--plum);
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}
.advocacy-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(68,57,76,.25), transparent);
}
.advocacy-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
/* Plum bg + white text — passes WCAG AA (~9:1) */
.btn-plum-solid {
  background: var(--plum);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-size: .88rem;
  text-decoration: none;
  transition: background .15s, transform .15s, box-shadow .15s;
  border: none;
  cursor: pointer;
}
.btn-plum-solid:hover {
  background: var(--plum-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(68,57,76,.3);
}
/* Plum text on merigold — passes WCAG AA (4.81:1) */
.advocacy-link {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--plum);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: opacity .15s, gap .15s;
  opacity: .7;
}
.advocacy-link svg { width: 13px; height: 13px; }
.advocacy-link:hover { opacity: 1; gap: .6rem; }
@media (max-width: 860px) {
  .advocacy-inner {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
  .advocacy-divider {
    width: 60px;
    height: 1px;
    background: rgba(68,57,76,.2);
    align-self: auto;
  }
  .advocacy-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 540px) {
  .advocacy-actions { flex-direction: column; }
}

/* ─────────────────────────────────────────────────────────────
   MEMBERS STRIP
───────────────────────────────────────────────────────────── */
#members {
  background: var(--white);
  padding: 5rem 0;
}
.members-intro {
  text-align: center;
  margin-bottom: 3rem;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.member-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .85rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
}
.member-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(68,57,76,.07);
  transform: translateY(-3px);
}
.member-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.member-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum), var(--plum-lt));
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
}
.member-name {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1.3;
}


/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-kicker,
  .hero-h1,
  .hero-sub,
  .hero-actions,
  .hero-photo-badge {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-scroll-line { animation: none; }
  .btn, .project-card, .news-card, .event-card, .member-card,
  .view-all, .nav-cta, .footer-social a {
    transition: none;
  }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .projects-grid,
  .news-grid,
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .members-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid   { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  #hero { padding: 3.5rem 0 5rem; min-height: auto; }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .projects-grid,
  .news-grid,
  .events-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .advocacy-actions { flex-direction: column; }
  #projects, #news, #events, #members, #advocacy { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── Focus styles (WCAG 2.4.7 / 2.4.11) ────────────────────── */
/* Remove default, apply consistent visible ring */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--merigold);
  outline-offset: 3px;
  border-radius: 3px;
}
/* On dark backgrounds use white ring */
#hero :focus-visible,
#events :focus-visible,
#footer :focus-visible {
  outline-color: var(--white);
}
/* Nav CTA and pill buttons */
.btn:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--merigold);
  outline-offset: 3px;
}
#events .btn:focus-visible {
  outline-color: var(--white);
}
