:root {
  --navy: #0A2540;
  --navy-700: #103458;
  --red: #E14434;
  --red-600: #C8342A;
  --cream: #F7F3EC;
  --cream-200: #EFE8DB;
  --blue: #2E86DE;
  --yellow: #F2B705;
  --ink: #11202E;
  --muted: #4C5C6B;
  --line: #E2D9C9;
  --white: #ffffff;
  --display: "Fraunces", Georgia, serif;
  --body: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
  --r: 14px;
  --shadow: 0 18px 40px -22px rgba(10, 37, 64, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }
.eyebrow {
  font-family: var(--body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.78rem; color: var(--red);
}
.eyebrow.on-dark { color: var(--yellow); }

/* Skip link */
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  padding: 0.95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  min-height: 48px;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-600); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost.on-dark:hover { background: #fff; color: var(--navy); border-color:#fff; }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

/* Brand logo (three-squares mark) */
.brand-logo { width: auto; height: 30px; flex: none; display: block; }
footer .brand-logo { height: 34px; }

/* NAV */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; border: 0;
  padding: 0.9rem 0 0;
}
.nav-inner {
  position: relative;
  width: fit-content; max-width: 100%; margin-left: auto;
  display: flex; align-items: center; justify-content: flex-end; gap: 2.4rem;
  padding: 0.55rem 0.6rem 0.55rem 1.2rem;
  background: rgba(247, 243, 236, 0.6);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 14px 34px -14px rgba(10, 37, 64, 0.30);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand b { font-family: var(--display); font-weight: 700; font-size: 1.15rem; color: var(--navy); letter-spacing: -0.01em; }
.brand small { display: block; font-family: var(--body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { text-decoration: none; font-weight: 600; color: var(--navy); font-size: 0.96rem; transition: color .2s; }
.nav-links a:hover { color: var(--red); }
.nav-links a.vote-pill, .vote-pill {
  display: inline-flex; align-items: center; gap: 0.45rem; background: var(--navy); color: #fff;
  padding: 0.6rem 1.15rem; border-radius: 999px; font-weight: 700; font-size: 0.85rem; text-decoration: none;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-links a.vote-pill:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.vote-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }

/* HERO */
.hero { position: relative; background: var(--navy); color: var(--cream); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(46,134,222,0.20), transparent 60%),
    radial-gradient(700px 500px at -5% 110%, rgba(225,68,52,0.16), transparent 60%);
}
.hero-video-frame { position: relative; width: 100%; background: #000; line-height: 0; }
.hero-video-frame video { width: 100%; height: auto; display: block; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; padding: 1.8rem 0 2.6rem; }

/* VALUES STRIP */
.values { background: var(--cream-200); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem; padding: 1.4rem 0; }
.values-inner div { display: flex; align-items: center; gap: 0.6rem; font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--navy); }
.values-inner .mk { width: 10px; height: 10px; transform: rotate(45deg); border-radius: 2px; }

/* SECTION SHELL */
section.block { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.head { max-width: 60ch; margin-bottom: 2.6rem; }
.head h2 { font-size: clamp(2rem, 3.8vw, 3rem); color: var(--navy); margin-top: 0.6rem; }
.head p { color: var(--muted); font-size: 1.1rem; margin-top: 0.9rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.2rem; align-items: center; }
.about-photo { position: relative; max-width: 470px; margin-inline: auto; display: flex; justify-content: center; align-items: flex-end; }
.about-photo img { position: relative; z-index: 1; width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 26px rgba(10,37,64,0.24));
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 99%); mask-image: linear-gradient(to bottom, #000 84%, transparent 99%); }
.about-photo .frame { position: absolute; inset: -3% -8% -3% -8%; background: radial-gradient(56% 52% at 50% 42%, rgba(46,134,222,0.18), rgba(46,134,222,0) 72%); z-index: 0; }
.about-photo .frame::after { content: ""; position: absolute; right: 4%; top: 6%; width: 18px; height: 18px; transform: rotate(45deg); border-radius: 3px; background: var(--red); z-index: 0; }
.about-body p + p { margin-top: 1.1rem; }
.pullquote {
  font-family: var(--display); font-style: italic; font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  color: var(--navy); line-height: 1.35; border-left: 4px solid var(--red);
  padding: 0.4rem 0 0.4rem 1.4rem; margin: 1.8rem 0;
}

/* PLATFORM */
.platform { background: var(--navy); color: var(--cream); }
.platform .head h2 { color: #fff; }
.platform .head p { color: #C5D1DC; }
/* The platform heading + sub are long; lay them side by side so the wide
   section doesn't leave a big empty column on the right. */
@media (min-width: 860px) {
  .platform .head {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    column-gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
  }
  .platform .head .eyebrow { grid-column: 1 / -1; }
  .platform .head h2 { grid-column: 1; margin-top: 0.6rem; }
  .platform .head p { grid-column: 2; align-self: end; margin-top: 0; }
}
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.pillar {
  background: var(--navy-700); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r);
  padding: 1.6rem; transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(242,183,5,0.5); background:#15406b; }
.pillar .ico { width: 46px; height: 46px; border-radius: 11px; background: rgba(46,134,222,0.18); display: grid; place-items: center; margin-bottom: 1rem; color: var(--yellow); }
.pillar h3 { font-size: 1.28rem; color: #fff; margin-bottom: 0.45rem; }
.pillar p { color: #C5D1DC; font-size: 0.98rem; }
.pillar .n { font-family: var(--display); font-size: 0.85rem; color: var(--yellow); font-weight: 700; letter-spacing: .1em; }

/* PLATFORM: guiding philosophy + governance commitments (dark section) */
.philosophy { margin: 0 0 2.3rem; padding: 1.7rem 1.9rem; border-radius: var(--r); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-left: 3px solid var(--yellow); }
.philosophy h3 { color: #fff; font-size: 1.26rem; margin: 0 0 0.35rem; }
.philosophy .lead { color: #C5D1DC; font-size: 1.02rem; margin: 0 0 1rem; max-width: 70ch; }
.philosophy ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.3rem 1.8rem; }
.philosophy li { position: relative; padding: 0.35rem 0 0.35rem 1.5rem; color: #C5D1DC; font-size: 1rem; }
.philosophy li::before { content: ""; position: absolute; left: 2px; top: 0.95rem; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.gov { margin-top: 2.4rem; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.2rem; align-items: start; }
.gov-card { background: var(--navy-700); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); padding: 1.6rem 1.7rem; }
.gov-card h3 { color: #fff; font-size: 1.24rem; margin: 0 0 0.9rem; }
.gov-card ul { list-style: none; margin: 0; padding: 0; }
.gov-card li { position: relative; padding: 0.42rem 0 0.42rem 1.5rem; color: #C5D1DC; font-size: 1rem; }
.gov-card li::before { content: ""; position: absolute; left: 2px; top: 0.95rem; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.gov-card .sub { font-family: var(--body); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; color: var(--yellow); font-weight: 700; margin: 1.2rem 0 0.4rem; }
.gov-card .sub.first { margin-top: 0; }
.gov-card .goal { color: #C5D1DC; font-size: 1rem; margin: 0; }

/* ACTION PROGRAMS */
.programs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1rem; }
.program { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.program:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.program .ico { color: var(--red); margin-bottom: 0.7rem; }
.program h3 { font-size: 1.08rem; color: var(--navy); }

/* ISSUES / NEIGHBOURHOODS */
.hoods { display: grid; gap: 0.9rem; margin-top: 0.5rem; }
.hood { border: 1px solid var(--line); border-radius: var(--r); background: var(--cream); overflow: hidden; transition: box-shadow .25s var(--ease), border-color .25s var(--ease); }
.hood[open] { box-shadow: var(--shadow); border-color: rgba(46,134,222,0.4); }
.hood summary { list-style: none; cursor: pointer; padding: 1.25rem 1.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hood summary::-webkit-details-marker { display: none; }
.hood summary:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; }
.hood .hood-name { font-family: var(--display); font-weight: 700; font-size: 1.32rem; color: var(--navy); letter-spacing: -0.01em; margin-right: auto; }
.hood .chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.hood .chip { font-family: var(--body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.02em; text-transform: capitalize; color: var(--navy); background: rgba(46,134,222,0.12); border: 1px solid rgba(46,134,222,0.22); padding: 0.28rem 0.6rem; border-radius: 999px; }
.hood .plus { position: relative; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--red); transition: transform .3s var(--ease), background .25s var(--ease); }
.hood .plus::before { content: ""; width: 12px; height: 1.5px; background: currentColor; position: absolute; }
.hood .plus::after { content: ""; width: 1.5px; height: 12px; background: currentColor; position: absolute; transition: transform .3s var(--ease); }
.hood[open] .plus { background: var(--red); color: #fff; transform: rotate(180deg); }
.hood[open] .plus::after { transform: scaleY(0); }
.hood .hood-body { padding: 0 1.4rem 1.4rem; }
.hood .hood-body ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.hood .hood-body li { position: relative; padding: 0.62rem 0 0.62rem 1.5rem; color: var(--muted); font-size: 1.02rem; border-bottom: 1px solid rgba(226,217,201,0.5); }
.hood .hood-body li:last-child { border-bottom: none; padding-bottom: 0; }
.hood .hood-body li::before { content: ""; position: absolute; left: 2px; top: 1.02rem; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.wardwide { margin-top: 2.6rem; background: var(--navy); border-radius: var(--r); padding: 2.1rem 2.2rem; }
.wardwide h3 { font-family: var(--display); color: #fff; font-size: 1.4rem; margin: 0 0 0.4rem; }
.wardwide p { color: #C5D1DC; margin: 0 0 1.2rem; font-size: 1rem; }
.wardwide .thrive-list, .wardwide-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.wardwide-list span { color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: 0.5rem 0.9rem; border-radius: 999px; font-weight: 600; font-size: 0.92rem; }

/* THRIVE BAND */
.thrive { background: var(--red); color: #fff; }
.thrive .wrap { text-align: center; }
.thrive h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: #fff; max-width: 20ch; margin-inline: auto; }
.thrive-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-top: 1.8rem; }
.thrive-list span { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); padding: 0.55rem 1.1rem; border-radius: 999px; font-weight: 600; }

/* GET INVOLVED */
.involve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.involve form { display: grid; gap: 0.9rem; max-width: 440px; }
.field { display: grid; gap: 0.3rem; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.field input {
  font-family: var(--body); font-size: 1rem; padding: 0.85rem 1rem; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; min-height: 48px;
}
.field input:focus-visible { outline: 3px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.form-note { font-size: 0.82rem; color: var(--muted); }
.involve .photo { position: relative; max-width: 440px; margin-inline: auto; display: flex; justify-content: center; align-items: flex-end; }
.involve .photo::before { content: ""; position: absolute; inset: -3% -8% -3% -8%; background: radial-gradient(56% 52% at 50% 42%, rgba(225,68,52,0.14), rgba(225,68,52,0) 72%); z-index: 0; }
.involve .photo::after { content: ""; position: absolute; left: 4%; top: 8%; width: 16px; height: 16px; transform: rotate(45deg); border-radius: 3px; background: var(--blue); z-index: 0; }
.involve .photo img { position: relative; z-index: 1; width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 24px rgba(10,37,64,0.26));
  -webkit-mask-image: linear-gradient(to bottom, #000 86%, transparent 99%); mask-image: linear-gradient(to bottom, #000 86%, transparent 99%); }

/* FOOTER */
footer { background: var(--navy); color: #C5D1DC; padding: 3.2rem 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
footer .brand b { color: #fff; }
footer h4 { font-family: var(--body); text-transform: uppercase; letter-spacing: .14em; font-size: 0.78rem; color: var(--yellow); margin: 0 0 0.9rem; }
footer a { color: #C5D1DC; text-decoration: none; display: block; margin-bottom: 0.5rem; transition: color .2s; }
footer a:hover { color: #fff; }
.disclaimer { font-size: 0.82rem; color: #8FA1B2; margin-top: 1.6rem; line-height: 1.5; }
.needs { color: var(--yellow); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* staggered cascade within grids */
.pillars .reveal:nth-child(2), .programs .reveal:nth-child(2) { transition-delay: .07s; }
.pillars .reveal:nth-child(3), .programs .reveal:nth-child(3) { transition-delay: .14s; }
.pillars .reveal:nth-child(4), .programs .reveal:nth-child(4) { transition-delay: .21s; }
.pillars .reveal:nth-child(5) { transition-delay: .28s; }

/* cursor-reactive glow for dark sections */
.cursor-glow {
  position: absolute; left: 50%; top: 35%; width: 480px; height: 480px; border-radius: 50%;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 0; opacity: 0;
  background: radial-gradient(circle, rgba(242,183,5,0.10), rgba(46,134,222,0.10) 42%, transparent 70%);
  transition: opacity .5s var(--ease), left .3s var(--ease), top .3s var(--ease);
  mix-blend-mode: screen;
}
.hero, .platform { overflow: hidden; }
.platform { position: relative; }
.hero .wrap, .platform .wrap { position: relative; z-index: 1; }
.hero-video-frame, .hero-cta { position: relative; z-index: 1; }

/* button lift */
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 12px 24px -10px rgba(225,68,52,0.7); }

/* nav island gains presence once scrolled */
header.nav.scrolled .nav-inner { background: rgba(247,243,236,0.78); box-shadow: 0 16px 38px -14px rgba(10,37,64,0.42); }

/* nav donate button */
.nav-links a.nav-donate {
  background: var(--red); color: #fff; padding: 0.5rem 1.1rem; border-radius: 999px; font-weight: 700;
}
.nav-links a.nav-donate:hover { background: var(--red-600); color: #fff; }
/* nav volunteer button: sits beside Donate, outlined so Donate stays the primary CTA */
.nav-links a.nav-volunteer {
  border: 2px solid var(--red); color: var(--red); padding: calc(0.5rem - 2px) calc(1.1rem - 2px);
  border-radius: 999px; font-weight: 700;
}
.nav-links a.nav-volunteer:hover { background: var(--red); color: #fff; }

/* BIO */
.bio-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.2rem; align-items: center; }
.bio-photo { position: relative; max-width: 440px; margin-inline: auto; }
.bio-photo img { width: 100%; height: auto; border-radius: var(--r); box-shadow: var(--shadow); }
.bio-body h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); color: var(--navy); }
.bio-body p + p { margin-top: 1.1rem; }
.bio-body p { color: var(--muted); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.6rem; }
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r); aspect-ratio: 4 / 3; box-shadow: var(--shadow); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }

/* DONATE BAND */
.donate-band { background: var(--navy); color: #fff; text-align: center; }
.donate-band h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 22ch; margin: 0 auto 0.8rem; }
.donate-band p { color: #C5D1DC; max-width: 52ch; margin: 0 auto 1.8rem; font-size: 1.08rem; }
.donate-amounts { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-bottom: 1.6rem; }
.donate-amounts a {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.28); color: #fff;
  padding: 0.6rem 1.3rem; border-radius: 999px; font-weight: 700; text-decoration: none; transition: background .2s var(--ease);
}
.donate-amounts a:hover { background: var(--red); border-color: var(--red); }
.donate-soon { display: inline-block; padding: 0.7rem 1.6rem; border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; color: #fff; font-weight: 600; letter-spacing: 0.02em; }

/* CONTRIBUTE (Municipal Elections Act compliance) */
.contribute .head p { max-width: 62ch; }
.elig { background: var(--navy); border-radius: var(--r); padding: 1.8rem 2rem; margin-bottom: 2.2rem; }
.elig h3 { font-family: var(--display); color: #fff; font-size: 1.3rem; margin: 0 0 0.9rem; }
.elig ul { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.elig li { position: relative; padding: 0.4rem 0 0.4rem 1.6rem; color: #C5D1DC; font-size: 1.02rem; }
.elig li::before { content: ""; position: absolute; left: 2px; top: 0.85rem; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.elig .cap { display: inline-block; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #fff; font-weight: 600; padding: 0.55rem 1rem; border-radius: 999px; font-size: 0.98rem; }
.steps { display: grid; gap: 1.1rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem 1.8rem; display: grid; grid-template-columns: auto 1fr; gap: 0 1.2rem; align-items: start; }
.step-n { grid-row: 1 / span 2; width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.15rem; display: grid; place-items: center; }
.step h3 { font-family: var(--display); color: var(--navy); font-size: 1.28rem; margin: 0.3rem 0 0; }
.step .step-body { grid-column: 2; }
.step .step-body > p { color: var(--muted); font-size: 1.02rem; margin: 0.7rem 0 0; }
.step .req { list-style: none; margin: 0.9rem 0 0; padding: 0.9rem 0 0; border-top: 1px solid var(--line); }
.step .req li { position: relative; padding: 0.4rem 0 0.4rem 1.5rem; color: var(--muted); font-size: 1rem; }
.step .req li::before { content: ""; position: absolute; left: 2px; top: 0.85rem; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.step .note { font-style: italic; color: var(--navy); opacity: 0.75; font-size: 0.98rem; margin-top: 0.9rem; }
.step .btn { margin-top: 1.2rem; }
.opts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.1rem; }
.opt { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem 1.3rem; }
.opt h4 { font-family: var(--body); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.76rem; color: var(--red); font-weight: 700; margin: 0 0 0.6rem; }
.opt p { color: var(--muted); font-size: 0.99rem; margin: 0 0 0.5rem; }
.opt .kv { display: block; color: var(--navy); font-weight: 700; word-break: break-word; }
.opt a.kv { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(46,134,222,0.35); }
.opt a.kv:hover { border-bottom-color: var(--blue); }
.compliance { margin-top: 2.2rem; background: var(--cream); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: var(--r); padding: 1.7rem 1.9rem; }
.compliance h3 { font-family: var(--display); color: var(--navy); font-size: 1.24rem; margin: 0 0 0.9rem; }
.compliance ul { list-style: none; margin: 0; padding: 0; }
.compliance li { position: relative; padding: 0.45rem 0 0.45rem 1.6rem; color: var(--muted); font-size: 1.01rem; }
.compliance li::before { content: ""; position: absolute; left: 0; top: 0.78rem; width: 9px; height: 9px; border: 2px solid var(--red); border-radius: 2px; }
.contrib-thanks { text-align: center; max-width: 58ch; margin: 2.2rem auto 0; color: var(--muted); font-size: 1.05rem; }

/* BOOKING / INVITE */
.invite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.invite form { display: grid; gap: 0.9rem; }
.field select, .field textarea {
  font-family: var(--body); font-size: 1rem; padding: 0.85rem 1rem; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; min-height: 48px; width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--blue); outline-offset: 1px; border-color: var(--blue); }
.invite-aside { background: var(--cream-200); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem; }
.invite-aside h3 { color: var(--navy); margin-bottom: 0.8rem; }
.invite-aside ul { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: 0.6rem; }
.invite-aside li { color: var(--muted); padding-left: 1.4rem; position: relative; }
.invite-aside li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px; transform: rotate(45deg); border-radius: 2px; background: var(--red); }
.invite-aside .contact-line { font-weight: 600; color: var(--navy); }

/* EVENT / CAMPAIGN LAUNCH */
.event { background: var(--cream-200); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 4.5vw, 3.4rem); align-items: center; }
.event-flyer { position: relative; max-width: 480px; margin-inline: auto; }
.event-flyer img { width: 100%; height: auto; border-radius: var(--r); box-shadow: var(--shadow); }
.event-flyer .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--red); color: #fff; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.42rem 0.9rem; border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(225,68,52,0.7);
}
.event-body h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); color: var(--navy); margin-top: 0.5rem; }
.event-body .lede { color: var(--muted); font-size: 1.08rem; margin: 0.9rem 0 1.7rem; max-width: 46ch; }
.event-details { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.9rem; }
.event-details li { display: flex; gap: 0.9rem; align-items: flex-start; }
.event-details .ico {
  flex: none; width: 42px; height: 42px; border-radius: 11px; background: #fff;
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--red);
}
.event-details .lbl { font-weight: 700; color: var(--navy); display: block; line-height: 1.35; }
.event-details .val { color: var(--muted); }
.event-note {
  font-size: 0.92rem; color: var(--muted); border-left: 3px solid var(--yellow);
  padding: 0.1rem 0 0.1rem 1rem; margin: 0 0 1.7rem; max-width: 48ch;
}
.event-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* UPCOMING EVENTS (agenda) */
.events .head { margin-bottom: 1.7rem; }
.events-list { display: grid; gap: 1rem; }
.ev-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1rem, 2.4vw, 1.7rem); align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.15rem 1.45rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.ev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
/* Cards carrying a flyer get an extra column for the thumbnail. */
.ev-card.has-thumb { grid-template-columns: auto auto 1fr auto; }
.ev-thumb { display: block; flex: none; width: 86px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); line-height: 0; transition: transform .25s var(--ease), border-color .25s var(--ease); }
.ev-thumb img { width: 100%; aspect-ratio: 7 / 10; object-fit: cover; }
.ev-thumb:hover { transform: scale(1.04); border-color: var(--red); }
.ev-thumb:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.ev-card.featured { border-color: rgba(225,68,52,0.5); box-shadow: 0 12px 30px -20px rgba(225,68,52,0.55); }
.ev-date {
  flex: none; width: 76px; text-align: center; background: var(--navy); color: var(--cream);
  border-radius: 12px; padding: 0.6rem 0.4rem 0.72rem;
}
.ev-date .m { font-family: var(--body); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; color: var(--yellow); }
.ev-date .d { font-family: var(--display); font-weight: 700; font-size: 1.9rem; line-height: 1; margin-top: 0.28rem; }
.ev-main h3 { font-size: 1.22rem; color: var(--navy); margin: 0 0 0.4rem; }
.ev-tag { display: inline-block; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--red); margin-bottom: 0.35rem; }
.ev-presenter {
  font-family: var(--body); font-weight: 700; font-size: 0.9rem;
  color: var(--navy); opacity: 0.78; margin: -0.15rem 0 0.45rem;
}
.ev-meta { display: flex; flex-wrap: wrap; gap: 0.35rem 1.2rem; color: var(--muted); font-size: 0.96rem; }
.ev-meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.ev-meta svg { color: var(--red); flex: none; }
.ev-actions { display: flex; flex-direction: column; gap: 0.5rem; align-items: stretch; }
.ev-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-family: var(--body); font-weight: 700; font-size: 0.85rem; white-space: nowrap;
  padding: 0.55rem 1.05rem; border-radius: 999px; text-decoration: none;
  border: 1.5px solid var(--navy); color: var(--navy);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.ev-btn:hover { background: var(--navy); color: #fff; }
.ev-btn.primary { background: var(--red); border-color: var(--red); color: #fff; }
.ev-btn.primary:hover { background: var(--red-600); border-color: var(--red-600); }
.ev-btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.events-empty { color: var(--muted); font-size: 1.02rem; }
@media (max-width: 720px) {
  .ev-card { grid-template-columns: auto 1fr; row-gap: 0.9rem; }
  .ev-actions { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  /* Narrow screens: stack the flyer under the date badge, text beside both. */
  .ev-card.has-thumb { grid-template-columns: auto 1fr; align-items: start; }
  .ev-card.has-thumb .ev-date { grid-column: 1; grid-row: 1; }
  .ev-card.has-thumb .ev-thumb { grid-column: 1; grid-row: 2; width: 76px; }
  .ev-card.has-thumb .ev-main { grid-column: 2; grid-row: 1 / span 2; }
  .ev-btn { flex: 1 1 auto; }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .about-grid, .involve-grid, .event-grid { grid-template-columns: 1fr; }
  .event-flyer { max-width: 420px; }
  .hero-billboard { padding: 4.5rem 0 2.5rem; }
  .about-photo { max-width: 380px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .programs { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .bio-grid, .invite-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Nav collapses to the hamburger well before it can overflow. The full bar needs about
   1150px to lay out 9 links plus the Volunteer, Donate and Vote buttons; below that the
   brand used to collide with the links and the Vote pill wrapped to three lines. These
   rules used to sit in the 680px block, which was far too narrow to catch it. */
@media (max-width: 1150px) {
  .nav-inner { width: auto; margin-left: 0; justify-content: space-between; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem;
    position: absolute; left: 0; right: 0; top: calc(100% + 10px);
    background: rgba(247, 243, 236, 0.92);
    backdrop-filter: blur(18px) saturate(150%); -webkit-backdrop-filter: blur(18px) saturate(150%);
    padding: 1.3rem 1.5rem; border: 1px solid rgba(255,255,255,0.55);
    border-radius: 22px; box-shadow: 0 18px 40px -18px rgba(10,37,64,0.4);
  }
  .nav-toggle { display: block; }
}
@media (max-width: 680px) {
  .pillars, .programs { grid-template-columns: 1fr; }
  .philosophy { padding: 1.4rem 1.3rem; }
  .philosophy ul { grid-template-columns: 1fr; }
  .gov { grid-template-columns: 1fr; }
  .gov-card { padding: 1.4rem 1.3rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { left: 8px; }
  .hood summary { padding: 1.05rem 1.1rem; gap: 0.7rem; }
  .hood .hood-name { flex: 1 1 100%; font-size: 1.18rem; margin-right: 0; order: -1; }
  .hood .plus { position: absolute; top: 1.05rem; right: 1.1rem; }
  .hood { position: relative; }
  .hood .chips { flex: 1 1 100%; }
  .hood .hood-body { padding: 0 1.1rem 1.2rem; }
  .wardwide { padding: 1.6rem 1.4rem; }
  .opts { grid-template-columns: 1fr; }
  .step { padding: 1.4rem 1.3rem; gap: 0 0.9rem; }
  .step-n { width: 34px; height: 34px; font-size: 1.02rem; }
  .elig { padding: 1.5rem 1.4rem; }
  .compliance { padding: 1.4rem 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-video-frame video { animation: none; }
  .cursor-glow { display: none; }
  .btn:hover { transform: none; }
}
