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

      :root {
        --green: #046a38;
        --green-light: #40916c;
        --blue: #1a5fb4;
        --gold: #ffb81c;
        --gold-light: #f3c84b;
        --dark: #1a1a1a;
        --gray: #4a4a4a;
        --light: #f8f6f1;
        --white: #ffffff;
        --font-head: Georgia, "Times New Roman", serif;
        --font-body: system-ui, -apple-system, sans-serif;
        --radius: 8px;
        --section-pad: clamp(3rem, 8vw, 6rem) 1.25rem;
        --focus-ring: 3px solid var(--gold);
        --focus-offset: 3px;
      }

      html { scroll-behavior: smooth; }

      body {
        font-family: var(--font-body);
        color: var(--dark);
        background: var(--white);
        line-height: 1.65;
      }

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

      a { color: var(--green); text-decoration: none; }
      a:hover { text-decoration: underline; }

      :focus { outline: none; }
      :focus-visible {
        outline: var(--focus-ring);
        outline-offset: var(--focus-offset);
        border-radius: 2px;
      }

      /* ── Skip navigation ──────────────────────────────────────── */
      .skip-nav {
        position: absolute;
        top: -100%;
        left: 1rem;
        z-index: 200;
        background: var(--gold);
        color: var(--dark);
        font-weight: 700;
        padding: 0.75rem 1.25rem;
        border-radius: 0 0 var(--radius) var(--radius);
        text-decoration: none;
        transition: top 0.2s;
      }
      .skip-nav:focus {
        top: 0;
        outline: var(--focus-ring);
        outline-offset: var(--focus-offset);
      }

      /* ── Nav ──────────────────────────────────────────────────── */
      header {
        position: sticky;
        top: 0;
        z-index: 100;
      }

      nav {
        background: var(--green);
        padding: 0 1.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        min-height: 3.5rem;
      }

      .nav-brand {
        font-family: var(--font-head);
        font-size: 1.1rem;
        font-weight: bold;
        color: var(--white);
        letter-spacing: 0.03em;
        white-space: nowrap;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 3.5rem;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        list-style: none;
        background: var(--green);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        z-index: 99;
      }
      .nav-links.open { display: flex; }

      .nav-links > li > a {
        display: block;
        padding: 0.9rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        color: var(--white);
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
      }
      .nav-links > li > a:hover {
        color: var(--gold-light);
        text-decoration: none;
      }

      /* ── Nav dropdown ─────────────────────────────────────────── */
      .nav-item-dropdown { position: relative; }

      .nav-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: -0.5rem;
        background: var(--green);
        min-width: 220px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        border-top: 2px solid var(--gold);
        z-index: 200;
        list-style: none;
        border-radius: 0 0 var(--radius) var(--radius);
        padding: 0.25rem 0;
      }

      /* Desktop dropdown not used with hamburger-only nav */

      /* ── Hamburger ────────────────────────────────────────────── */
      .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.4rem;
        z-index: 101;
      }

      .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: transform 0.25s, opacity 0.25s;
        transform-origin: center;
      }

      .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-toggle.open span:nth-child(2) { opacity: 0; }
      .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

      /* Sub-links for Issues always inline in hamburger */
      .nav-sub-mobile {
        display: flex;
        flex-direction: column;
        list-style: none;
      }
      .nav-sub-mobile a {
        display: block;
        padding: 0.7rem 1.5rem 0.7rem 2.75rem;
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.82);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-transform: none;
        letter-spacing: 0.02em;
      }
      .nav-sub-mobile a:hover { color: var(--gold-light); text-decoration: none; }

      /* On wider screens: pin the open menu to the right */
      @media (min-width: 601px) {
        .nav-links {
          left: auto;
          right: 1rem;
          min-width: 280px;
          border-top: 2px solid var(--gold);
          border-radius: 0 0 var(--radius) var(--radius);
        }
        .nav-links > li > a { font-size: 0.9rem; }
      }

      /* ── Hero ─────────────────────────────────────────────────── */
      #hero {
        background: linear-gradient(140deg, var(--green) 0%, #1a5fb4 55%, #2d9b6e 100%);
        color: var(--white);
        text-align: center;
        padding: clamp(4rem, 12vw, 8rem) 1.25rem clamp(4rem, 10vw, 7rem);
        position: relative;
        overflow: hidden;
        clip-path: ellipse(120% 100% at 50% 0%);
        margin-bottom: -1px;
      }

      #hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
      }

      .hero-inner { position: relative; max-width: 700px; margin: 0 auto; }

      .hero-badge {
        display: inline-block;
        background: var(--gold);
        color: var(--dark);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 0.3rem 0.9rem;
        border-radius: 99px;
        margin-bottom: 1.5rem;
      }

      #hero h1 {
        font-family: var(--font-head);
        font-size: clamp(2.4rem, 7vw, 4.5rem);
        line-height: 1.1;
        margin-bottom: 0.4rem;
        letter-spacing: -0.01em;
      }

      .hero-sub {
        font-size: clamp(1rem, 2.5vw, 1.35rem);
        margin-bottom: 2rem;
        font-style: italic;
        opacity: 0.9;
      }

      .hero-tagline {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
        font-weight: 600;
        margin-bottom: 2.5rem;
        line-height: 1.4;
      }

      .btn {
        display: inline-block;
        padding: 0.85rem 2rem;
        border-radius: var(--radius);
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: transform 0.15s, box-shadow 0.15s;
      }
      .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        text-decoration: none;
      }

      .btn-gold { background: var(--gold); color: var(--dark); }
      .btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }

      .hero-ctas {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* ── Section helpers ──────────────────────────────────────── */
      .section { padding: var(--section-pad); background: var(--white); }
      section[id], details[id] { scroll-margin-top: 3.5rem; }
      .section-light { background: var(--light); }
      .container { max-width: 900px; margin: 0 auto; }

      .section-label {
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--blue);
        margin-bottom: 0.5rem;
      }

      .section-title {
        font-family: var(--font-head);
        font-size: clamp(1.6rem, 4vw, 2.6rem);
        line-height: 1.2;
        margin-bottom: 1.25rem;
        color: var(--dark);
      }

      .divider {
        width: 3rem;
        height: 4px;
        background: var(--gold);
        border-radius: 2px;
        margin-bottom: 1.5rem;
      }

      /* ── About ────────────────────────────────────────────────── */
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
      @media (max-width: 640px) {
        .about-grid { grid-template-columns: 1fr; }
      }

      .about-img {
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        aspect-ratio: 4/5;
        object-fit: cover;
        width: 100%;
        outline: 6px solid var(--light);
        outline-offset: -6px;
      }

      .about-text p + p { margin-top: 1rem; }

      /* ── Issues Accordion ─────────────────────────────────────── */
      .accordion { margin-top: 2rem; }

      .accordion details {
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: var(--radius);
        margin-bottom: 0.75rem;
        overflow: hidden;
      }

      .accordion summary {
        display: flex;
        align-items: center;
        padding: 1.2rem 1.5rem;
        cursor: pointer;
        font-family: var(--font-head);
        font-size: 1.15rem;
        font-weight: bold;
        color: var(--green);
        background: var(--white);
        list-style: none;
        user-select: none;
      }
      .accordion summary::-webkit-details-marker { display: none; }
      .accordion summary::after {
        content: "";
        margin-left: auto;
        flex-shrink: 0;
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--green);
        border-bottom: 2px solid var(--green);
        transform: rotate(-45deg);
        transition: transform 0.2s;
        position: relative;
        top: -2px;
      }
      .accordion details[open] summary::after { transform: rotate(45deg); top: -4px; }
      .accordion details[open] summary {
        background: #f0f5f0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        color: var(--green);
      }
      .accordion summary:hover { background: #f0f5f0; }

      .accordion-body {
        padding: 1.5rem;
        background: var(--white);
      }

      .accordion-body h4 {
        font-family: var(--font-head);
        font-size: 1.05rem;
        color: var(--dark);
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
      }
      .accordion-body h4:first-child { margin-top: 0; }

      .accordion-body p {
        color: var(--gray);
        font-size: 0.95rem;
      }
      .accordion-body p + p { margin-top: 0.75rem; }

      .accordion-body ol {
        margin: 0.75rem 0 0 1.25rem;
        color: var(--gray);
        font-size: 0.95rem;
      }
      .accordion-body ol li + li { margin-top: 0.5rem; }

      /* ── Photo gallery ────────────────────────────────────────── */
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
      }
      @media (max-width: 500px) {
        .gallery-grid { grid-template-columns: 1fr 1fr; }
      }
      .gallery-grid img {
        width: 100%;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: var(--radius);
        transition: transform 0.25s, box-shadow 0.25s;
      }
      .gallery-grid img:hover {
        transform: scale(1.04);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        z-index: 1;
        position: relative;
      }

      /* ── District Section ─────────────────────────────────────── */
      .district-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: start;
        margin-top: 2rem;
      }
      @media (max-width: 768px) {
        .district-layout { grid-template-columns: 1fr; }
      }

      .district-map-img {
        width: 100%;
        height: auto;
        border-radius: var(--radius);
        border: 2px solid var(--green);
        display: block;
      }

      .map-credit { text-align: center; margin-top: 0.6rem; font-size: 0.8rem; }
      .map-credit a { color: var(--blue); }

      .neighborhoods-heading {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
        padding-bottom: 0.4rem;
        border-bottom: 2px solid var(--green);
      }

      .neighborhood-list {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem 1rem;
      }
      .neighborhood-list li {
        position: relative;
        padding-left: 1.1rem;
        color: var(--gray);
        font-size: 0.9rem;
        line-height: 1.4;
      }
      .neighborhood-list li::before {
        content: "▸";
        position: absolute;
        left: 0;
        color: var(--green);
        font-size: 0.75rem;
        top: 0.1em;
      }

      /* ── Volunteer / CTA ──────────────────────────────────────── */
      #volunteer {
        background: var(--green);
        color: var(--white);
        text-align: center;
      }
      #volunteer .section-title { color: var(--white); }
      #volunteer .section-label { color: var(--white); }
      #volunteer > .container > p {
        color: var(--white);
        max-width: 620px;
        margin: 0 auto 2rem;
        font-size: 1.05rem;
      }

      /* ── Volunteer cards (no icon) ────────────────────────────── */
      .issues-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .issue-card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 1.75rem 1.5rem;
        border-top: 4px solid var(--green);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
        transition: transform 0.2s, box-shadow 0.2s;
      }
      .issue-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
      }
      .issue-card h3 {
        font-family: var(--font-head);
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        color: var(--green);
      }
      .issue-card p { font-size: 0.95rem; color: var(--gray); }

      /* ── Form card ────────────────────────────────────────────── */
      .form-card {
        background: var(--white);
        border-radius: var(--radius);
        padding: 2rem 1.5rem;
        max-width: 560px;
        margin: 0 auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        color: var(--dark);
        text-align: left;
      }

      /* ── Donate ───────────────────────────────────────────────── */
      #donate {
        text-align: center;
        background: var(--light);
      }
      #donate > .container > p {
        max-width: 600px;
        margin: 0 auto 1.5rem;
        color: var(--gray);
      }

      .sdep-box {
        background: var(--white);
        border: 1px solid rgba(0,0,0,0.08);
        border-left: 4px solid var(--green);
        border-radius: var(--radius);
        padding: 1.5rem 1.75rem;
        max-width: 620px;
        margin: 0 auto 2rem;
        text-align: left;
        font-size: 0.95rem;
        color: var(--gray);
        line-height: 1.7;
      }
      .sdep-box strong { color: var(--dark); }
      .sdep-box p + p { margin-top: 0.75rem; }

      .donate-frequency {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 1.25rem;
      }
      .freq-btn {
        padding: 0.5rem 1.75rem;
        border: 2px solid var(--green);
        border-radius: 99px;
        background: transparent;
        color: var(--green);
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: background 0.15s, color 0.15s;
      }
      .freq-btn[aria-pressed="true"] { background: var(--green); color: var(--white); }

      .donate-amounts {
        display: flex;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
        border: none;
        padding: 0;
      }
      .amount-btn {
        padding: 0.65rem 1.4rem;
        border: 2px solid var(--green);
        border-radius: var(--radius);
        background: transparent;
        color: var(--green);
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.15s, color 0.15s;
      }
      .amount-btn:hover,
      .amount-btn[aria-pressed="true"] {
        background: var(--green);
        color: var(--white);
      }

      /* ── Contact ──────────────────────────────────────────────── */
      #contact { text-align: center; }
      #contact > .container > p {
        max-width: 560px;
        margin: 0 auto;
        color: var(--gray);
        font-size: 1.05rem;
      }

      /* ── Footer ───────────────────────────────────────────────── */
      footer {
        background: var(--dark);
        color: #b8b8b8;
        text-align: center;
        padding: 2rem 1.25rem;
        font-size: 0.85rem;
        line-height: 1.8;
      }
      footer strong { color: var(--white); }
      footer a { color: #b8b8b8; }
      footer a:hover { color: var(--white); }

      /* ── Utility ──────────────────────────────────────────────── */
      .text-center { text-align: center; }
      .mt-1 { margin-top: 1rem; }
      .mt-2 { margin-top: 2rem; }

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

      @media (prefers-reduced-motion: reduce) {
        html { scroll-behavior: auto; }
        *, *::before, *::after {
          transition-duration: 0.01ms !important;
          animation-duration: 0.01ms !important;
        }
      }
