:root {
    --forest:    #0e1f0e;
    --forest-mid: #1c3318;
    --forest-light: #2d5228;
    --moss:      #4a7c3f;
    --sage:      #8aad6e;
    --stone:     #c9b99a;
    --amber:     #d4892a;
    --amber-light: #f0b45a;
    --cream:     #f4efe6;
    --white:     #fdfaf5;
    --warning:   #c0392b;
    --warning-light: #e74c3c;
    --text-dark: #1a1a12;
    --text-mid:  #3d3d2e;
    --text-mute: #6e6e5a;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(14,31,14,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(138,173,110,0.2);
    transition: padding .3s;
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: .04em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--sage); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: rgba(249,239,230,0.75);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--amber-light); }
  .nav-cta {
    background: var(--amber);
    color: var(--forest) !important;
    padding: .45rem 1.1rem;
    border-radius: 3px;
    font-weight: 600 !important;
    transition: background .2s !important;
  }
  .nav-cta:hover { background: var(--amber-light) !important; color: var(--forest) !important; }

  /* Hamburger button — hidden on desktop */
  .nav-hamburger {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: .4rem; border-radius: 3px;
    transition: background .2s;
  }
  .nav-hamburger:hover { background: rgba(255,255,255,.08); }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--cream); border-radius: 2px;
    transition: transform .3s, opacity .3s;
    transform-origin: center;
  }
  /* Animated X when open */
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile dropdown */
  .nav-mobile-menu {
    display: none;
    position: fixed; top: 56px; left: 0; right: 0; z-index: 99;
    background: rgba(10,20,10,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(138,173,110,.2);
    padding: 1rem 1.25rem 1.5rem;
    flex-direction: column; gap: 0;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu li { list-style: none; }
  .nav-mobile-menu a {
    display: block;
    padding: .85rem .5rem;
    color: rgba(249,239,230,.75);
    text-decoration: none;
    font-size: .9rem; font-weight: 500;
    letter-spacing: .06em; text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .2s;
  }
  .nav-mobile-menu a:hover { color: var(--amber-light); }
  .nav-mobile-menu .nav-cta {
    display: block; margin-top: 1rem;
    text-align: center; padding: .85rem;
    border-radius: 4px; border-bottom: none;
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    nav { padding: .8rem 1.25rem; }
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--forest);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background-image: url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    /* Strong dark overlay — left column for text, base darkening overall */
    background:
      linear-gradient(to right,
        rgba(4,10,4,.82) 0%,
        rgba(4,10,4,.65) 35%,
        rgba(4,10,4,.30) 65%,
        rgba(4,10,4,.45) 100%),
      linear-gradient(to bottom,
        rgba(4,10,4,.60) 0%,
        rgba(4,10,4,.15) 35%,
        rgba(4,10,4,.25) 70%,
        rgba(4,10,4,.80) 100%);
  }
  .hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4; pointer-events: none;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 860px;
    padding: 0 2.5rem 7rem;
    animation: fadeUp .9s ease both;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: 'DM Mono', monospace;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #9fd67e;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px rgba(0,0,0,.9);
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 30px; height: 1px;
    background: var(--sage);
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.9), 0 1px 4px rgba(0,0,0,.8);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--sage);
  }
  .hero-subtitle {
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    color: rgba(249,239,230,.95);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 1px 12px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.7);
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.8rem;
    border-radius: 3px;
    font-weight: 600; font-size: .9rem;
    text-decoration: none; cursor: pointer;
    transition: all .2s; border: none;
    letter-spacing: .03em;
  }
  .btn-primary { background: var(--amber); color: var(--forest); }
  .btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(201,185,154,.4);
  }
  .btn-outline:hover { border-color: var(--sage); color: var(--sage); }
  .hero-stats {
    position: absolute; right: 2.5rem; bottom: 7rem;
    z-index: 2; display: flex; flex-direction: column; gap: 1.5rem;
    animation: fadeUp 1.2s ease both;
  }
  .stat-card {
    background: rgba(4,10,4,.72);
    border: 1px solid rgba(138,173,110,.45);
    border-radius: 4px;
    padding: .8rem 1.2rem;
    text-align: right;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0,0,0,.5);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--amber-light);
    display: block; line-height: 1;
    text-shadow: 0 1px 8px rgba(0,0,0,.6);
  }
  .stat-label { font-size: .72rem; color: rgba(249,239,230,.90); letter-spacing: .06em; text-transform: uppercase; }
  @media (max-width: 768px) {
    .hero-stats { display: none; }
    .hero-content { padding: 0 1.25rem 5rem; }
  }

  /* ── SECTION COMMON ── */
  section { padding: 5rem 2.5rem; }
  @media (max-width: 768px) { section { padding: 3.5rem 1.25rem; } }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: .7rem; letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: .75rem;
    display: flex; align-items: center; gap: .6rem;
  }
  .section-label::before { content:''; display:block; width:24px; height:1px; background:var(--moss); }
  h2.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700; line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }
  .section-lead {
    font-size: 1.05rem; color: var(--text-mid);
    max-width: 640px; line-height: 1.75;
    margin-bottom: 3rem;
  }

  /* ── PROPOSAL SUMMARY ── */
  .proposal { background: var(--cream); }
  .proposal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
    margin-top: 3rem;
  }
  @media (max-width: 768px) { .proposal-grid { grid-template-columns: 1fr; gap: 2rem; } }
  .proposal-fact {
    border-left: 3px solid var(--amber);
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .proposal-fact strong {
    display: block; font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; color: var(--amber);
    line-height: 1.1; margin-bottom: .2rem;
  }
  .proposal-fact span { font-size: .9rem; color: var(--text-mid); }
  .proposal-desc { font-size: .97rem; color: var(--text-mid); line-height: 1.75; }
  .proposal-desc p { margin-bottom: 1rem; }
  .alert-box {
    background: rgba(192,57,43,.08);
    border: 1px solid rgba(192,57,43,.3);
    border-left: 4px solid var(--warning);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
  }
  .alert-box strong { color: var(--warning); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: .4rem; }
  .alert-box p { font-size: .9rem; color: var(--text-mid); margin: 0; }

  /* ── CONCERNS GRID ── */
  .concerns { background: var(--forest); }
  .concerns .section-title { color: var(--cream); }
  .concerns .section-label { color: var(--sage); }
  .concerns .section-label::before { background: var(--sage); }
  .concerns .section-lead { color: rgba(201,185,154,.8); }
  .concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5px;
    margin-top: 3rem;
    background: rgba(138,173,110,.15);
    border: 1.5px solid rgba(138,173,110,.15);
    border-radius: 6px;
    overflow: hidden;
  }
  .concern-card {
    background: var(--forest-mid);
    padding: 2rem;
    transition: background .25s;
    position: relative;
    overflow: hidden;
  }
  .concern-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--moss); opacity: 0;
    transition: opacity .25s;
  }
  .concern-card:hover { background: rgba(45,82,40,.6); }
  .concern-card:hover::after { opacity: 1; }
  .concern-icon {
    font-size: 1.5rem; margin-bottom: .75rem;
    display: block;
  }
  .concern-num {
    font-family: 'DM Mono', monospace;
    font-size: .65rem; color: var(--moss);
    letter-spacing: .1em; margin-bottom: .4rem;
  }
  .concern-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600;
    color: var(--cream); margin-bottom: .6rem;
  }
  .concern-text { font-size: .85rem; color: rgba(201,185,154,.75); line-height: 1.65; }
  .concern-tag {
    display: inline-block; margin-top: .8rem;
    background: rgba(192,57,43,.2);
    border: 1px solid rgba(192,57,43,.4);
    color: #f1948a; font-size: .7rem;
    letter-spacing: .06em; text-transform: uppercase;
    padding: .2rem .6rem; border-radius: 2px;
  }
  .concern-tag.warning { background: rgba(212,137,42,.15); border-color: rgba(212,137,42,.35); color: var(--amber-light); }

  /* ── REBUTTAL ── */
  .rebuttal { background: var(--white); }
  .rebuttal-intro { font-size: .97rem; color: var(--text-mid); max-width: 680px; line-height: 1.75; margin-bottom: 3rem; }
  .rebuttal-item {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;
    margin-bottom: 1.25rem;
    overflow: hidden;
  }
  .rebuttal-header {
    width: 100%; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: #f7f4ee;
    text-align: left;
    transition: background .2s;
  }
  .rebuttal-header:hover { background: #f0ebe0; }
  .rebuttal-question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 600;
    color: var(--text-dark);
    flex: 1; padding-right: 1rem;
  }
  .rebuttal-toggle {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--forest); color: var(--sage);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
    transition: transform .3s, background .2s;
  }
  .rebuttal-item.open .rebuttal-toggle { transform: rotate(45deg); background: var(--moss); }
  .rebuttal-body { display: none; }
  .rebuttal-item.open .rebuttal-body { display: grid; grid-template-columns: 1fr 1fr; }
  @media (max-width: 700px) { .rebuttal-item.open .rebuttal-body { grid-template-columns: 1fr; } }
  .rebuttal-col {
    padding: 1.5rem;
    font-size: .9rem; line-height: 1.7;
  }
  .rebuttal-col-label {
    font-family: 'DM Mono', monospace;
    font-size: .65rem; letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: .75rem;
    display: flex; align-items: center; gap: .4rem;
  }
  .col-theirs {
    background: rgba(212,137,42,.05);
    border-right: 1px solid rgba(0,0,0,.07);
  }
  .col-theirs .rebuttal-col-label { color: var(--amber); }
  .col-ours { background: rgba(14,31,14,.02); }
  .col-ours .rebuttal-col-label { color: var(--moss); }
  .col-theirs p, .col-ours p { color: var(--text-mid); }
  .col-theirs ul { color: var(--text-mid); margin: .5rem 0 .75rem 1.1rem; padding: 0; }
  .col-theirs ul li { margin-bottom: .25rem; }
  .rebuttal-source {
    margin-top: 1rem;
    padding-top: .75rem;
    border-top: 1px dashed rgba(0,0,0,.12);
    font-family: 'DM Mono', monospace;
    font-size: .7rem;
    color: var(--text-mid);
    letter-spacing: .02em;
  }
  .rebuttal-source a { color: var(--moss); text-decoration: underline; }
  .cite {
    display: inline-flex; align-items: center; gap: .3rem;
    font-size: .78rem; color: var(--moss);
    border-bottom: 1px dotted var(--moss);
    font-style: italic;
  }

  /* ── TIMELINE / PROCESS ── */
  .process { background: var(--white); }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem; margin-top: 3rem;
  }
  .process-step { position: relative; padding-left: 1.25rem; }
  .process-step::before {
    content: '';
    position: absolute; left: 0; top: 4px; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--moss), transparent);
  }
  .step-num {
    font-family: 'DM Mono', monospace;
    font-size: .68rem; color: var(--moss);
    letter-spacing: .1em; margin-bottom: .3rem;
  }
  .step-title { font-weight: 600; font-size: .97rem; color: var(--text-dark); margin-bottom: .4rem; }
  .step-text { font-size: .85rem; color: var(--text-mute); line-height: 1.65; }
  .step-status {
    display: inline-block; margin-top: .5rem;
    font-size: .68rem; letter-spacing: .08em;
    text-transform: uppercase; padding: .2rem .55rem; border-radius: 2px;
    font-weight: 600;
  }
  .status-done { background: rgba(74,124,63,.15); color: var(--moss); }
  .status-now { background: rgba(212,137,42,.2); color: var(--amber); }
  .status-next { background: rgba(0,0,0,.07); color: var(--text-mute); }

  /* ── TAKE ACTION ── */
  .action { background: var(--forest); }
  .action .section-title { color: var(--cream); }
  .action .section-label { color: var(--sage); }
  .action .section-label::before { background: var(--sage); }
  .action-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
  @media (max-width: 700px) { .action-grid { grid-template-columns: 1fr; } }
  .action-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(138,173,110,.2);
    border-radius: 6px;
    padding: 2rem;
    transition: border-color .25s, background .25s;
  }
  .action-card:hover { border-color: var(--sage); background: rgba(255,255,255,.08); }
  .action-card-num {
    font-family: 'DM Mono', monospace;
    font-size: .65rem; color: var(--sage);
    letter-spacing: .1em; margin-bottom: .5rem;
  }
  .action-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--cream);
    margin-bottom: .6rem;
  }
  .action-card p { font-size: .88rem; color: rgba(201,185,154,.75); line-height: 1.65; margin-bottom: 1.25rem; }
  .action-card .btn-primary { font-size: .85rem; padding: .7rem 1.4rem; }
  .action-card .contact-list { list-style: none; }
  .action-card .contact-list li {
    font-size: .85rem; color: rgba(201,185,154,.8);
    padding: .5rem 0; border-bottom: 1px solid rgba(138,173,110,.15);
    display: flex; flex-direction: column; gap: .1rem;
  }
  .contact-list li strong { color: var(--cream); font-size: .82rem; }
  .contact-list li a { color: var(--sage); text-decoration: none; font-size: .82rem; }
  .contact-list li a:hover { color: var(--amber-light); }
  .petition-counter {
    background: rgba(212,137,42,.1);
    border: 1px solid rgba(212,137,42,.25);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .counter-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 700; color: var(--amber-light);
    line-height: 1; white-space: nowrap;
  }
  .counter-desc { font-size: .8rem; color: rgba(201,185,154,.7); line-height: 1.4; }

  /* ── FOOTER ── */
  footer {
    background: #070f07;
    padding: 3rem 2.5rem;
    border-top: 1px solid rgba(138,173,110,.15);
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600; color: var(--stone);
  }
  .footer-logo span { color: var(--sage); }
  .footer-note { font-size: .78rem; color: rgba(201,185,154,.4); max-width: 480px; line-height: 1.6; }
  .footer-note a { color: var(--sage); text-decoration: none; }

  /* ── DIVIDER ── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--moss), transparent);
    max-width: 1100px; margin: 0 auto;
    opacity: .3;
  }

  /* ── ANIMATION ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-in {
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s ease, transform .4s ease;
    will-change: opacity, transform;
  }
  .fade-in.visible { opacity: 1; transform: none; }

  /* ── STICKY BAR ── */
  .sticky-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
    background: rgba(14,31,14,0.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(138,173,110,.25);
    padding: .75rem 2.5rem;
    padding-bottom: calc(.75rem + env(safe-area-inset-bottom));
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
  }
  .sticky-bar.visible { transform: translateY(0); } /* fallback — overridden by JS */
  .sticky-bar-text {
    font-size: .85rem; color: rgba(201,185,154,.8);
    flex: 1;
  }
  .sticky-bar-text strong { color: var(--cream); }
  .sticky-bar-actions { display: flex; gap: .75rem; flex-shrink: 0; }
  .sticky-bar .btn { padding: .55rem 1.2rem; font-size: .82rem; }
  @media (max-width: 600px) {
    .sticky-bar { padding: .75rem 1rem; flex-wrap: wrap; }
    .sticky-bar-text { display: none; }
  }

  /* ── UPDATES SECTION ── */
  .updates-section { background: var(--white); }

  .updates-feed {
    margin-top: 2.5rem;
    display: flex; flex-direction: column; gap: 0;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px; overflow: hidden;
  }

  .update-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    padding: 1.4rem 1.6rem;
    border-bottom: 1px solid rgba(0,0,0,.07);
    background: var(--white);
    transition: background .2s;
    align-items: start;
  }
  .update-item:last-child { border-bottom: none; }
  .update-item:hover { background: #faf8f4; }
  .update-item-latest { background: rgba(212,137,42,.04); }
  .update-item-latest:hover { background: rgba(212,137,42,.07); }

  @media (max-width: 640px) {
    .update-item { grid-template-columns: 1fr; gap: .6rem; }
  }

  .update-left {
    display: flex; flex-direction: column; gap: .45rem; padding-top: 2px;
  }
  .update-date {
    font-family: 'DM Mono', monospace;
    font-size: .7rem; letter-spacing: .06em;
    color: var(--text-mute); white-space: nowrap;
  }
  .update-tag {
    display: inline-block; align-self: flex-start;
    font-size: .65rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    padding: .2rem .55rem; border-radius: 2px;
    border: 1px solid transparent;
    white-space: nowrap;
  }

  .update-right { display: flex; flex-direction: column; gap: .4rem; }
  .update-new-badge {
    display: inline-block; align-self: flex-start;
    background: var(--amber); color: var(--forest);
    font-size: .62rem; font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase;
    padding: .15rem .55rem; border-radius: 2px;
    margin-bottom: .1rem;
  }
  .update-title {
    font-weight: 600; font-size: .97rem;
    color: var(--text-dark); line-height: 1.35;
  }
  .update-body {
    font-size: .86rem; color: var(--text-mid);
    line-height: 1.7;
  }
  .update-link {
    display: inline-flex; align-items: center;
    font-size: .78rem; font-weight: 600;
    color: var(--moss); text-decoration: none;
    margin-top: .25rem;
    transition: color .2s;
  }
  .update-link:hover { color: var(--amber); }

  /* ── EMAIL TEMPLATE SECTION ── */
  .email-section { background: var(--cream); }
  .email-tabs { display: flex; gap: 0; margin-bottom: 0; border-bottom: 2px solid rgba(0,0,0,.1); }
  .email-tab {
    padding: .7rem 1.5rem; cursor: pointer; border: none; background: none;
    font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 500;
    color: var(--text-mute); border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: color .2s, border-color .2s;
  }
  .email-tab.active { color: var(--forest); border-bottom-color: var(--moss); font-weight: 600; }
  .email-tab:hover { color: var(--text-dark); }
  .email-panel { display: none; }
  .email-panel.active { display: block; }
  .email-box {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.1);
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
  }
  .email-meta {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,.08);
    background: #f7f4ee;
  }
  .email-field {
    display: flex; gap: .75rem; align-items: baseline;
    font-size: .82rem; margin-bottom: .3rem;
  }
  .email-field:last-child { margin-bottom: 0; }
  .email-field label { color: var(--text-mute); font-weight: 600; min-width: 50px; text-transform: uppercase; font-size: .72rem; letter-spacing: .06em; }
  .email-field span { color: var(--text-dark); }
  .email-body {
    padding: 1.5rem;
    font-size: .88rem; color: var(--text-mid);
    line-height: 1.75;
    white-space: pre-wrap;
    font-family: 'DM Sans', sans-serif;
    min-height: 280px;
  }
  .email-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,.08);
    background: #f7f4ee;
    display: flex; gap: .75rem; align-items: center; flex-wrap: wrap;
  }
  .email-actions .btn { font-size: .82rem; padding: .6rem 1.2rem; }
  .email-actions .btn-outline-dark {
    background: none; border: 1.5px solid rgba(0,0,0,.2);
    color: var(--text-mid); border-radius: 3px;
    font-weight: 600; font-size: .82rem; padding: .6rem 1.2rem;
    cursor: pointer; transition: all .2s;
    display: inline-flex; align-items: center; gap: .4rem;
  }
  .email-actions .btn-outline-dark:hover { border-color: var(--moss); color: var(--moss); }
  .copy-flash {
    font-size: .78rem; color: var(--moss); font-weight: 600;
    opacity: 0; transition: opacity .3s;
  }
  .copy-flash.show { opacity: 1; }
  .email-tip {
    margin-top: 1rem;
    background: rgba(74,124,63,.07);
    border: 1px solid rgba(74,124,63,.2);
    border-radius: 4px; padding: .85rem 1.1rem;
    font-size: .82rem; color: var(--text-mid); line-height: 1.6;
  }
  .email-tip strong { color: var(--moss); }

  /* ── SOURCES SECTION ── */
  .sources { background: var(--white); border-top: 1px solid rgba(0,0,0,.07); }
  .sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem; margin-top: 2.5rem;
  }
  .source-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 5px; padding: 1.1rem 1.25rem;
    transition: border-color .2s, box-shadow .2s;
    display: flex; flex-direction: column; gap: .35rem;
  }
  .source-card:hover { border-color: var(--moss); box-shadow: 0 2px 12px rgba(74,124,63,.08); }
  .source-type {
    font-family: 'DM Mono', monospace;
    font-size: .62rem; color: var(--moss);
    letter-spacing: .1em; text-transform: uppercase;
  }
  .source-title { font-size: .92rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
  .source-desc { font-size: .8rem; color: var(--text-mute); line-height: 1.55; }
  .source-link {
    font-size: .78rem; color: var(--moss);
    text-decoration: none; margin-top: .2rem;
    display: inline-flex; align-items: center; gap: .3rem;
  }
  .source-link:hover { color: var(--amber); }

  /* ── PROPOSAL MAP ── */
  .proposal-map-wrapper {
    margin-top: 3rem;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    overflow: hidden;
    background: var(--white);
  }
  .proposal-map-header {
    background: var(--forest);
    padding: .75rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  }
  .proposal-map-header-label {
    font-family: 'DM Mono', monospace;
    font-size: .68rem; letter-spacing: .12em;
    text-transform: uppercase; color: var(--sage);
    display: flex; align-items: center; gap: .5rem;
  }
  .proposal-map-header-label::before { content: '📍'; font-size: .9rem; }
  .proposal-map-header-link {
    font-size: .75rem; color: rgba(201,185,154,.6);
    text-decoration: none; transition: color .2s;
  }
  .proposal-map-header-link:hover { color: var(--amber-light); }
  .proposal-map-pins {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0,0,0,.08);
  }
  @media (max-width: 900px) {
    .proposal-map-pins { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 580px) {
    .proposal-map-pins { grid-template-columns: 1fr 1fr; }
  }
  .map-pin-card {
    padding: .9rem 1.1rem;
    border-right: 1px solid rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: var(--white);
    transition: background .2s;
  }
  .map-pin-card:hover { background: #f7f4ee; }
  .map-pin-card:last-child { border-right: none; }
  .map-pin-icon { font-size: 1.1rem; margin-bottom: .3rem; display: block; }
  .map-pin-name { font-size: .88rem; font-weight: 600; color: var(--text-dark); margin-bottom: .2rem; }
  .map-pin-note { font-size: .78rem; color: var(--text-mute); line-height: 1.5; }
  .map-pin-card.pin-danger .map-pin-name { color: var(--warning); }
  .map-pin-card.pin-warning .map-pin-name { color: var(--amber); }
  .map-pin-card.pin-nature .map-pin-name { color: var(--moss); }

  /* ── WILDLIFE GALLERY ── */
  .gallery-section { background: var(--cream); }
  .gallery-section .section-title { color: var(--text-dark); }
  .gallery-section .section-label { color: var(--moss); }
  .gallery-section .section-label::before { background: var(--moss); }
  .gallery-section .section-lead { color: var(--text-mid); }

  .gallery-grid {
    columns: 3 280px;
    column-gap: 1rem;
    margin-top: 2.5rem;
  }
  .gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
  }
  .gallery-item img {
    width: 100%; display: block;
    transition: transform .4s ease;
  }
  .gallery-item:hover img { transform: scale(1.04); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,18,10,.75) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: .85rem 1rem;
  }
  .gallery-item:hover .gallery-overlay,
  .gallery-item:focus .gallery-overlay { opacity: 1; }
  .gallery-caption-text {
    color: var(--cream); font-size: .8rem;
    line-height: 1.4; font-style: italic;
  }
  .gallery-item:focus { outline: 2px solid var(--sage); outline-offset: 2px; }

  /* ── LIGHTBOX ── */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(5,10,5,.93);
    backdrop-filter: blur(10px);
    align-items: center; justify-content: center;
    flex-direction: column;
  }
  .lightbox.active { display: flex; }
  .lightbox-inner {
    display: flex; flex-direction: column; align-items: center;
    max-width: min(92vw, 1100px); width: 100%;
    padding: 0 3.5rem;
  }
  .lightbox-img {
    max-height: 75vh; max-width: 100%;
    object-fit: contain; border-radius: 3px;
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
  }
  .lightbox-caption {
    color: var(--cream); font-size: .95rem; font-style: italic;
    margin-top: 1.1rem; text-align: center; line-height: 1.5;
  }
  .lightbox-counter {
    color: rgba(201,185,154,.45); font-family: 'DM Mono', monospace;
    font-size: .7rem; letter-spacing: .1em; margin-top: .4rem;
  }
  .lightbox-close {
    position: fixed; top: 1.25rem; right: 1.5rem;
    background: none; border: none; color: rgba(201,185,154,.6);
    font-size: 1.5rem; cursor: pointer; line-height: 1;
    transition: color .2s; padding: .25rem;
  }
  .lightbox-close:hover { color: var(--cream); }
  .lightbox-nav {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    color: var(--cream); font-size: 1.4rem;
    width: 46px; height: 46px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s; backdrop-filter: blur(4px);
  }
  .lightbox-nav:hover { background: rgba(255,255,255,.18); }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  @media (max-width: 600px) {
    .lightbox-inner { padding: 0 1rem; }
    .lightbox-nav { width: 36px; height: 36px; font-size: 1rem; }
  }

  /* ── VISION SECTION ── */
  .vision-section { background: var(--cream); }

  .vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
  }
  @media (max-width: 768px) { .vision-grid { grid-template-columns: 1fr; } }

  .vision-card {
    border-radius: 6px;
    padding: 2rem;
    border: 1px solid transparent;
  }
  .vision-card-ideal {
    background: var(--forest);
    border-color: rgba(138,173,110,.25);
  }
  .vision-card-header {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.25rem;
  }
  .vision-card-icon { font-size: 1.75rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }
  .vision-card-label {
    font-family: 'DM Mono', monospace;
    font-size: .65rem; letter-spacing: .12em;
    text-transform: uppercase; margin-bottom: .3rem;
  }
  .vision-card-ideal .vision-card-label { color: var(--sage); }

  .vision-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 700; line-height: 1.25;
  }
  .vision-card-ideal .vision-card-title { color: var(--cream); }

  .vision-card-body {
    font-size: .9rem; line-height: 1.75; margin-bottom: .85rem;
  }
  .vision-card-ideal .vision-card-body { color: rgba(201,185,154,.82); }
  .vision-card-ideal .vision-card-body strong { color: var(--cream); }

  /* ── HISTORY SECTION ── */
  .history { background: var(--white); }
  .history-timeline { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 0; }

  .history-era {
    position: relative;
    padding: 2.5rem 0 2.5rem 2.5rem;
    border-left: 2px solid rgba(74,124,63,.2);
  }
  .history-era::before {
    content: '';
    position: absolute; left: -6px; top: 2.75rem;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--moss);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--moss);
  }
  .history-era:last-child { border-left-color: transparent; }
  .history-era.era-present { border-left-color: var(--amber); }
  .history-era.era-present::before { background: var(--amber); box-shadow: 0 0 0 2px var(--amber); }

  .history-era-header { margin-bottom: 1.25rem; }
  .history-era-badge {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    font-size: .7rem; letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(74,124,63,.1);
    color: var(--moss);
    padding: .25rem .7rem; border-radius: 2px;
    margin-bottom: .6rem;
  }
  .history-era-badge.present { background: rgba(212,137,42,.12); color: var(--amber); }
  .history-era-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--text-dark); line-height: 1.25;
  }
  .history-era-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    align-items: start;
  }
  @media (max-width: 800px) {
    .history-era-body { grid-template-columns: 1fr; }
    .history-era { padding-left: 1.5rem; }
  }
  .history-era-text p {
    font-size: .93rem; color: var(--text-mid);
    line-height: 1.78; margin-bottom: .9rem;
  }
  .history-era-text p:last-child { margin-bottom: 0; }
  .history-link {
    color: var(--moss); text-decoration: none;
    border-bottom: 1px dotted var(--moss);
    transition: color .2s, border-color .2s;
  }
  .history-link:hover { color: var(--amber); border-color: var(--amber); }

  .history-era-callout {
    background: var(--cream);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 5px;
    padding: 1.1rem 1.25rem;
    display: flex; flex-direction: column; gap: .5rem;
    align-self: start;
  }
  .history-era-callout.present-callout {
    background: rgba(212,137,42,.07);
    border-color: rgba(212,137,42,.25);
  }
  .history-callout-icon { font-size: 1.25rem; }
  .history-era-callout p {
    font-size: .83rem; color: var(--text-mid); line-height: 1.65;
  }
  .history-era-callout strong { color: var(--text-dark); }

  .history-illustration {
    margin: 2rem 0 0 0;
    border-radius: 5px; overflow: hidden;
    border: 1px solid rgba(0,0,0,.1);
  }
  .history-illustration img {
    width: 100%; display: block;
    height: auto;
  }
  .history-illustration figcaption {
    padding: .9rem 1.25rem;
    background: #f0ebe0;
    font-size: .8rem; color: var(--text-mute);
    line-height: 1.6; border-top: 1px solid rgba(0,0,0,.08);
  }
  .history-illustration figcaption strong { color: var(--text-dark); }

  .history-sources {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,.07);
  }
  .history-sources-label {
    font-family: 'DM Mono', monospace;
    font-size: .67rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--text-mute);
    margin-bottom: .85rem;
  }
  .history-sources-links {
    display: flex; flex-wrap: wrap; gap: .5rem .75rem;
  }
  .history-sources-links a {
    font-size: .78rem; color: var(--moss);
    text-decoration: none; border-bottom: 1px dotted rgba(74,124,63,.4);
    transition: color .2s;
    white-space: nowrap;
  }
  .history-sources-links a:hover { color: var(--amber); border-color: var(--amber); }

  /* ── BLOCKQUOTE CALLOUT ── */
  .callout {
    border-left: 4px solid var(--moss);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: rgba(74,124,63,.07);
    border-radius: 0 4px 4px 0;
  }
  .callout p { font-size: .95rem; color: var(--cream); font-style: italic; line-height: 1.7; }
  .callout cite { display: block; margin-top: .5rem; font-size: .78rem; color: var(--amber-light); font-style: normal; font-weight: 600; }
