  :root {
    --navy: #16324A;
    --navy-light: #1F415E;
    --green: #4C7A3F;
    --green-dark: #3B5F31;
    --green-light: #6FA25B;
    --cream: #F7F6F1;
    --white: #FFFFFF;
    --ink: #1C1C1C;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  section[id], header[id] { scroll-margin-top: 68px; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
  }
  h1, h2, h3, .serif { font-family: 'Playfair Display', Georgia, serif; }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }
  .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 88px 0; }
  .section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px;
  }
  .section h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--navy);
    margin-bottom: 24px;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    border-bottom: 3px solid var(--green);
  }
  .nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.5px;
  }
  .brand span { color: var(--green-light); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-links a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s;
    position: relative;
  }
  .nav-links a:hover { opacity: 1; }
  .nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: var(--green-light);
    transition: width 0.2s;
  }
  .nav-links a:not(.btn):hover::after,
  .nav-links a:not(.btn).active::after { width: 100%; }
  .nav-links a:not(.btn).active { opacity: 1; }
  .social-icons { display: flex; align-items: center; gap: 12px; }
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    transition: background 0.2s, color 0.2s;
  }
  .social-icons a:hover { background: var(--green); color: var(--white); }
  .btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  }
  .btn-green {
    background: var(--green);
    color: var(--white);
  }
  .btn-green:hover { background: var(--green-light); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(76,122,63,0.35); }
  .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
  }
  .btn-outline:hover { background: var(--white); color: var(--navy); }
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .menu-toggle span { width: 24px; height: 2px; background: var(--white); display: block; }

  /* HERO */
  .hero {
    position: relative;
    background:
      linear-gradient(180deg, rgba(22,50,74,0.68) 0%, rgba(22,50,74,0.60) 55%, rgba(31,65,94,0.74) 100%),
      url('hero-brentwood.jpg');
    background-size: cover;
    background-position: center 35%;
    padding: 84px 0 76px;
    text-align: center;
    overflow: hidden;
  }
  .hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76,122,63,0.20) 0%, transparent 70%);
  }
  .hero::before { width: 520px; height: 520px; top: -220px; left: -160px; }
  .hero::after { width: 620px; height: 620px; bottom: -280px; right: -200px; background: radial-gradient(circle, rgba(111,162,91,0.18) 0%, transparent 70%); }
  .hero-inner { position: relative; z-index: 2; }
  .hero-stars {
    color: var(--green-light);
    letter-spacing: 10px;
    font-size: 18px;
    margin-bottom: 18px;
  }
  .hero-name {
    font-size: clamp(48px, 9vw, 96px);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.5);
  }
  .hero-name .green { color: var(--green-light); }
  .hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 18px auto 14px;
    max-width: 320px;
  }
  .hero-divider span:not(.divider-word) {
    height: 2px;
    flex: 1;
    background: var(--green);
  }
  .divider-word {
    color: var(--green-light);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
  }
  .hero-office {
    color: var(--white);
    font-size: clamp(22px, 3.4vw, 32px);
    margin-bottom: 18px;
    text-shadow:
      -1.5px -1.5px 3px rgba(0,0,0,0.75), 1.5px -1.5px 3px rgba(0,0,0,0.75),
      -1.5px 1.5px 3px rgba(0,0,0,0.75), 1.5px 1.5px 3px rgba(0,0,0,0.75),
      0 4px 16px rgba(0,0,0,0.6);
  }
  .hero-district {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 10px 34px;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0% 100%);
    margin-bottom: 34px;
  }
  .hero-pillars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--white);
    font-weight: 700;
    font-size: clamp(16px, 2.4vw, 22px);
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.55);
  }
  .hero-pillars .sep { color: var(--green-light); font-weight: 400; }
  .hero-tagline {
    color: var(--white);
    font-size: clamp(20px, 3.2vw, 30px);
    max-width: 680px;
    margin: 30px auto 0;
    line-height: 1.3;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.55);
  }
  .hero-tagline .green { color: var(--green-light); font-style: italic; font-family: 'Playfair Display', serif; }
  .hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-cta .btn { padding: 16px 34px; font-size: 16px; }

  /* MOTTO STRIP */
  .motto-strip {
    background: var(--green);
    color: var(--white);
    padding: 14px 0;
    font-weight: 600;
    letter-spacing: 0.4px;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
  }
  .motto-track {
    display: inline-block;
    padding-left: 100%;
    animation: motto-scroll 11s linear infinite;
  }
  .motto-strip:hover .motto-track { animation-play-state: paused; }
  .motto-strip .navy-hl { color: var(--navy); background: var(--white); padding: 2px 8px; border-radius: 4px; }
  @keyframes motto-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
  }

  /* ABOUT */
  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
  }
  .about-card {
    background: var(--white);
    border: 1px solid #e5e2d8;
    border-left: 6px solid var(--navy);
    border-radius: 10px;
    padding: 32px;
  }
  .about-card .headshot {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 20px;
    background: #e5e2d8;
  }
  .about-card h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 10px;
  }
  .about-card p { color: #444; font-size: 15px; }
  .about-text p { margin-bottom: 18px; color: #333; font-size: 16.5px; }
  .about-text p.callout {
    font-weight: 700;
    color: var(--navy);
    font-size: 18px;
    border-left: 4px solid var(--green);
    padding-left: 16px;
  }
  .stars {
    color: var(--green);
    letter-spacing: 8px;
    font-size: 18px;
    margin-bottom: 18px;
  }

  /* PAGE HEADER (sub-pages) */
  .page-header {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 56px 0 44px;
    text-align: center;
  }
  .page-header .section-label { color: var(--green-light); justify-content: center; display: flex; }
  .page-header h1 { color: var(--white); font-size: clamp(30px, 5vw, 46px); margin-bottom: 10px; }
  .page-header p { color: #c9d3dd; max-width: 620px; margin: 0 auto; font-size: 16px; }
  .breadcrumb { margin-top: 20px; }
  .breadcrumb a { color: var(--green-light); font-size: 14px; font-weight: 600; }
  .breadcrumb a:hover { text-decoration: underline; }
  .page-header-image {
    background: none;
    padding: 0;
  }
  .page-header-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* PROSE (long-form issue content) */
  .prose { max-width: 780px; }
  .prose h2 { color: var(--navy); font-size: 26px; margin: 48px 0 16px; }
  .prose h2:first-child { margin-top: 0; }
  .prose h3 { color: var(--green-dark); font-size: 19px; margin: 30px 0 12px; font-family: 'Inter', sans-serif; font-weight: 700; }
  .prose p { color: #333; font-size: 16px; margin-bottom: 16px; }
  .prose ul { margin: 0 0 18px 0; padding-left: 22px; }
  .prose li { color: #333; font-size: 16px; margin-bottom: 8px; }
  .prose .callout {
    font-weight: 700;
    color: var(--navy);
    font-size: 17px;
    border-left: 4px solid var(--green);
    padding: 4px 0 4px 16px;
    margin: 24px 0;
  }
  .prose .divider {
    border: none;
    border-top: 1px solid #e5e2d8;
    margin: 44px 0;
  }
  .cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 15px;
  }
  .cost-table th, .cost-table td {
    text-align: left;
    padding: 10px 14px;
    border-bottom: 1px solid #e5e2d8;
  }
  .cost-table th { color: var(--navy); font-weight: 700; background: var(--cream); }
  .cost-table td { color: #333; }
  .issue-select-wrap {
    position: relative;
    max-width: 420px;
    margin-bottom: 40px;
  }
  .issue-select-wrap::after {
    content: '▾';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 16px;
    pointer-events: none;
  }
  .issue-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: var(--white);
    border: 2px solid var(--navy);
    border-radius: 8px;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15.5px;
    padding: 14px 44px 14px 18px;
    cursor: pointer;
  }
  .issue-select:hover, .issue-select:focus { border-color: var(--green); outline: none; }
  .tab-panel { display: none; }
  .tab-panel.active { display: block; animation: tab-fade-in 0.25s ease; }
  @keyframes tab-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .stat-box {
    background: var(--cream);
    border-radius: 8px;
    padding: 18px 14px;
    text-align: center;
  }
  .stat-box .num {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 28px;
    color: var(--green);
    display: block;
  }
  .stat-box .label {
    font-size: 12.5px;
    color: #555;
    font-weight: 600;
  }

  /* PRIORITIES */
  .priorities-section { background: var(--navy); }
  .priorities-section .section-label { color: var(--green-light); }
  .priorities-section h2 { color: var(--white); }
  .priorities-section .lede { color: #c9d3dd; max-width: 640px; margin-bottom: 48px; font-size: 16.5px; }
  .priority-accordion {
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .acc-item { border-bottom: 1px solid rgba(255,255,255,0.14); }
  .acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 26px 4px;
    text-align: left;
    transition: opacity 0.2s;
  }
  .acc-header:hover { opacity: 0.85; }
  .priority-icon {
    flex: none;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .acc-heading { flex: 1; min-width: 0; }
  .acc-heading .tag {
    display: block;
    color: var(--green-light);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .acc-heading h3 { color: var(--white); font-size: clamp(18px, 2.4vw, 22px); font-family: 'Playfair Display', serif; }
  .acc-chevron {
    flex: none;
    color: var(--green-light);
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  .acc-item.open .acc-chevron { transform: rotate(180deg); }
  .acc-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
  }
  .acc-item.open .acc-panel { grid-template-rows: 1fr; }
  .acc-panel-inner { overflow: hidden; }
  .acc-panel-inner p {
    color: #b9c4d1;
    font-size: 15.5px;
    padding: 0 4px 28px 66px;
    max-width: 620px;
  }

  /* INLINE VIDEO */
  .inline-video-section { background: var(--navy); text-align: center; }
  .inline-video-section .section-label { color: var(--green-light); }
  .inline-video-wrap {
    max-width: 640px;
    margin: 0 auto;
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 12px;
    background: var(--navy-light);
  }
  .inline-video-wrap video {
    width: 100%;
    display: block;
    border-radius: 6px;
    background: #000;
  }

  /* QUOTE */
  .quote-section { background: var(--cream); text-align: center; }
  .quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.2vw, 32px);
    color: var(--navy);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.4;
    font-style: italic;
  }
  .quote-section .sig { margin-top: 24px; font-weight: 700; color: var(--green-dark); font-size: 15px; letter-spacing: 0.5px; }

  /* DONATE */
  .donate-section {
    background: var(--white);
    text-align: center;
  }
  .donate-box {
    background: var(--cream);
    border: 2px dashed var(--green);
    border-radius: 14px;
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 36px;
  }
  .donate-box h2 { margin-bottom: 14px; }
  .donate-box p { color: #444; margin-bottom: 28px; font-size: 15.5px; }
  .donate-note {
    margin-top: 20px;
    font-size: 13.5px;
    color: #4a5f3f;
    background: #eaf1e6;
    border-radius: 6px;
    padding: 10px 16px;
    display: inline-block;
  }

  /* CONTACT */
  .contact-section { background: var(--navy-light); color: var(--white); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 32px;
  }
  .contact-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--green-light); font-family: 'Playfair Display', serif;}
  .contact-card a.email { font-size: 18px; font-weight: 600; color: var(--white); border-bottom: 2px solid var(--green); }
  .contact-card p { color: #c9d3dd; font-size: 14.5px; margin-top: 10px; }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: #b7c3d3;
    text-align: center;
    padding: 32px 20px;
    font-size: 12.5px;
    border-top: 3px solid var(--green);
  }
  footer p { margin-bottom: 6px; }

  @media (max-width: 820px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-card { max-width: 360px; }
  }
  @media (max-width: 700px) {
    .nav-links {
      position: absolute;
      top: 100%; left: 0; right: 0;
      background: var(--navy);
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 24px 28px;
      gap: 18px;
      display: none;
      border-bottom: 3px solid var(--green);
    }
    .nav-links.open { display: flex; }
    .menu-toggle { display: flex; }
    .nav-links .btn { width: 100%; }
  }

  /* VIDEO POPUP */
  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .video-modal.open { display: flex; }
  .video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 30, 0.82);
  }
  .video-modal-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    max-width: 640px;
    background: var(--navy);
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .video-modal-inner video {
    width: 100%;
    max-height: 78vh;
    display: block;
    border-radius: 6px;
    background: #000;
  }
  .video-wrap { position: relative; }
  .tap-for-sound {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(10,20,30,0.28);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    transition: background 0.2s;
  }
  .tap-for-sound:hover { background: rgba(10,20,30,0.4); }
  .tap-for-sound.hidden { display: none; }
  .video-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--white);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .video-modal-close:hover { background: var(--green-light); }
  @media (max-width: 700px) {
    .video-modal-close { top: -14px; right: 4px; }
  }
