/* =========================================
   Creek Team OC — Bold Activist Theme
   ========================================= */

:root {
  --navy: #0a0e2a;
  --navy-mid: #141938;
  --navy-light: #1e2650;
  --orange: #ff6b1a;
  --orange-hot: #ff4500;
  --gold: #ffaa00;
  --red: #e63318;
  --white: #ffffff;
  --off-white: #f5f0eb;
  --light-gray: #e8e4de;
  --text-dark: #0a0e2a;
  --text-mid: #3a3a4a;

  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

@media (max-width: 700px) {
  [id] {
    scroll-margin-top: 70px;
  }
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover {
  color: var(--orange-hot);
}

/* ---- Full-width wrapper ---- */
.full-bleed {
  width: 100%;
}

.contain {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contain--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Header ---- */
.site-header {
  background: var(--navy);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .contain {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-creek { color: var(--white); }
.logo-team { color: var(--orange); }
.logo-oc { color: var(--gold); }

.site-nav {
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.15s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

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

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

/* ==========================================
   HERO — Full viewport, massive statement
   ========================================== */
.hero {
  background: var(--navy);
  color: var(--white);
  min-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--orange-hot), transparent);
  opacity: 0.08;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.hero h1 .line-break { display: block; }

.hero h1 .highlight {
  color: var(--orange);
}

.hero-stat {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.hero-stat strong {
  color: var(--white);
  font-size: 1.2em;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: transform 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-hot);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-mid);
  color: var(--white);
}

/* ==========================================
   IMPACT BLOCKS — Bold alternating sections
   ========================================== */
.block {
  padding: 6rem 2rem;
}

.block--dark {
  background: var(--navy);
  color: var(--white);
}

.block--orange {
  background: var(--orange);
  color: var(--white);
}

.block--light {
  background: var(--off-white);
  color: var(--text-dark);
}

.block--white {
  background: var(--white);
  color: var(--text-dark);
}

.block--red {
  background: var(--red);
  color: var(--white);
}

.block-header {
  margin-bottom: 3rem;
}

.block-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.5px;
}

.block--dark .block-header h2,
.block--orange .block-header h2,
.block--red .block-header h2 {
  color: var(--white);
}

.block-header .kicker {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}

.block--orange .block-header .kicker,
.block--red .block-header .kicker {
  color: var(--navy);
}

/* ---- Big Statement Text ---- */
.big-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  text-transform: uppercase;
  max-width: 800px;
}

.big-statement .emphasis {
  color: var(--orange);
}

.block--dark .big-statement .emphasis {
  color: var(--gold);
}

.block--orange .big-statement .emphasis {
  color: var(--navy);
}

/* ---- Facts Grid ---- */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.fact {
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.fact-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 1;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.fact h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.fact p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ---- Zombie Permit Explainer ---- */
.zombie-explainer p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.zombie-explainer p:last-child {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--light-gray);
}

/* ---- Steelhead Explainer ---- */
.steelhead-explainer p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}

.steelhead-explainer p:last-child {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.steelhead-explainer em {
  color: var(--gold);
  font-style: normal;
}

/* ---- Story Sections ---- */
.story-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}

.story-number {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.3;
}

.story-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.story-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.story-block + .story-block {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 2px solid var(--light-gray);
}

.story-cta {
  margin-top: 4rem;
  text-align: center;
}

.story-cta a {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
}

.story-cta a:hover {
  color: var(--orange-hot);
}

/* ---- Divider ---- */
.divider {
  height: 6px;
  background: var(--orange);
  border: none;
}

/* ==========================================
   TAKE ACTION
   ========================================== */
.take-action {
  padding: 6rem 2rem;
  background: var(--navy);
  color: var(--white);
}

.take-action .block-header h2 {
  color: var(--white);
}

.action-intro {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.8);
}

.volunteer-cta {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(255,255,255,0.12);
}

.volunteer-cta .btn {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}

.volunteer-cta h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.volunteer-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.social-cta {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: none;
}

.icon-ig {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.2em;
  margin-right: 0.3em;
}

.social-cta a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
}

.social-cta a:hover {
  color: var(--gold);
}

.social-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.contact-block {
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.2s;
}

.contact-block:hover {
  background: rgba(255,255,255,0.04);
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.contact-block .contact-email {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
  word-break: break-all;
}

.contact-block .contact-email:hover {
  color: var(--gold);
}

.contact-block p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ==========================================
   TIMELINE
   ========================================== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 8rem 2rem 4rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}

.timeline-page {
  padding: 4rem 0;
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem 0 5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 3rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--navy);
}

.timeline-event {
  position: relative;
  margin-bottom: 4rem;
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: -2.65rem;
  top: 0.4rem;
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.timeline-event h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.timeline-event p {
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.timeline-docs {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.timeline-docs li {
  margin-bottom: 0.25rem;
}

.timeline-docs a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
}

.timeline-docs a:hover {
  color: var(--orange-hot);
}

.timeline-docs a::before {
  content: '-> ';
}

/* ==========================================
   DOCUMENTS
   ========================================== */
.documents-page {
  padding: 4rem 0;
  background: var(--white);
}

.drive-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.drive-btn {
  display: inline-block;
  margin-bottom: 5rem;
}

.doc-ref-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.doc-ref-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.doc-ref-list li:last-child {
  border-bottom: none;
}

.doc-note {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.doc-drive-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
}

.doc-drive-link:hover {
  color: var(--orange-hot);
}

.doc-category {
  margin-bottom: 4rem;
}

.doc-category h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--navy);
}

.doc-list {
  list-style: none;
  padding: 0;
}

.doc-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.doc-list li:last-child {
  border-bottom: none;
}

.doc-list a {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  transition: color 0.15s;
}

.doc-list a:hover {
  color: var(--orange);
}

.doc-list .doc-icon {
  display: none;
}

.doc-list .doc-desc {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 0.25rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0;
  border-top: 4px solid var(--orange);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-link:hover {
  color: var(--white);
}

.footer-sponsor {
  font-size: 0.8rem;
  text-align: right;
}

.footer-sponsor a {
  color: var(--gold);
}

.footer-sponsor-logo {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 0.4rem;
}

.footer-analytics {
  font-size: 0.75rem;
}

.footer-analytics a {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  text-align: center;
}

/* ==========================================
   VOLUNTEER PAGE
   ========================================== */
.volunteer-page {
  padding: 4rem 2rem 6rem;
  background: var(--off-white);
}

.volunteer-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 2.5rem;
  text-align: center;
}

.form-wrapper {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.form-wrapper iframe {
  width: 100%;
  min-height: 800px;
  display: block;
}

/* ==========================================
   SPRAY MAP PAGE
   ========================================== */
.leaflet-attribution-flag { display: none !important; }
#spray-map,
#location-map { position: relative; z-index: 0; }

.map-page {
  padding: 3rem 2rem;
  background: var(--off-white);
}

.map-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.map-legend {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
}

.map-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.map-toggle input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.map-toggles {
  display: flex;
  gap: 1.25rem;
}

.map-toggle__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-mid);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-item::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.legend-verified::before { background: #2196F3; }
.legend-community::before { background: var(--orange); }

.map-buttons {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.map-recenter {
  display: block;
  margin: 0.5rem auto 0;
  padding: 0.4rem 1rem;
  background: none;
  border: 1px solid var(--text-mid);
  border-radius: 4px;
  color: var(--text-mid);
  font-size: 0.8rem;
  cursor: pointer;
}
.map-recenter:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.report-log {
  margin-top: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}
.report-log__heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  padding: 0.9rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  list-style: none;
}
.report-log__heading::-webkit-details-marker {
  display: none;
}
.report-log__heading::after {
  content: '\25BC';
  float: right;
  font-size: 0.7rem;
  transition: transform 0.2s;
  margin-top: 0.2rem;
}
.report-log[open] > .report-log__heading::after {
  transform: rotate(180deg);
}
.report-log__scroll {
  max-height: 420px;
  overflow-y: auto;
}
.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  line-height: 1.5;
}
.report-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.report-table th,
.report-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  vertical-align: top;
}
.report-table th {
  font-weight: 600;
  color: var(--navy);
  background: var(--off-white);
  white-space: nowrap;
  border-bottom: 2px solid var(--light-gray);
}
.report-table td {
  border-bottom: 1px solid var(--light-gray);
}
.report-table tr:last-child td {
  border-bottom: none;
}
.report-table tbody tr:hover {
  background: var(--off-white);
}
.report-table td:first-child {
  white-space: nowrap;
  color: var(--text-mid);
  font-weight: 600;
}
.report-table td:nth-child(2) {
  font-weight: 600;
  color: var(--navy);
}
.report-table__empty {
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: center;
  padding: 1.5rem;
}

#spray-map {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  border: 3px solid var(--navy);
  border-radius: 4px;
}

/* Leaflet marker overrides */
.marker-verified {
  background: #AB47BC;
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Marker cluster — use default green/yellow/red from MarkerCluster.Default.css */
.marker-cluster div {
  font-weight: 600;
  font-family: var(--font-body);
}

.marker-community {
  background: var(--orange);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.spray-popup {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 250px;
}

.spray-popup strong {
  display: block;
  margin-bottom: 0.25rem;
}

.popup-desc {
  color: var(--text-mid);
  font-size: 0.85rem;
}

.popup-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 2px;
}

.popup-badge--verified { background: #AB47BC; color: var(--white); }
.popup-badge--community { background: var(--orange); color: var(--white); }

.map-error {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-mid);
  font-size: 1rem;
}

/* ---- Report Form ---- */
.map-report {
  padding: 4rem 2rem 6rem;
  background: var(--white);
}

.report-header {
  text-align: center;
  margin-bottom: 3rem;
}

.report-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.report-header p {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 550px;
  margin: 0 auto;
}

.report-header__warning {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #fff3e0;
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5;
  text-align: center;
}
.report-header__warning .warning-icon {
  flex-shrink: 0;
  color: var(--orange);
}
.report-header__warning p {
  margin: 0;
}

.report-form {
  max-width: 900px;
  margin: 0 auto;
}

.report-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.report-form__field {
  margin-bottom: 1.5rem;
}

.report-form__field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.report-form__field .required {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
}

.report-form__field .optional {
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: none;
  letter-spacing: 0;
}

.field-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-mid);
}
.field-hint a { color: var(--orange); }
.field-hint--bold { font-weight: 700; color: var(--navy); }

.report-form__field input[type="text"],
.report-form__field input[type="email"],
.report-form__field input[type="date"],
.report-form__field select,
.report-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  background: var(--off-white);
  color: var(--text-dark);
  transition: border-color 0.15s;
}

.report-form__field input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%233a3a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.report-form__field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.report-form__field input:focus,
.report-form__field select:focus,
.report-form__field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.report-form__field textarea {
  resize: vertical;
}

/* ---- Waterway Accordion Picker ---- */
.waterway-picker {
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  background: var(--off-white);
  max-height: 280px;
  overflow-y: auto;
}

.waterway-group {
  border-bottom: 1px solid var(--light-gray);
}

.waterway-group:last-child {
  border-bottom: none;
}

.waterway-group__header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  text-align: left;
  transition: background 0.15s;
  gap: 0.5rem;
}

.waterway-group__header:hover {
  background: rgba(0,0,0,0.04);
}

.waterway-group.open > .waterway-group__header {
  background: var(--navy);
  color: var(--white);
}


.waterway-group__count {
  margin-left: auto;
  background: var(--light-gray);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  letter-spacing: 0;
  text-transform: none;
  min-width: 1.5rem;
  text-align: center;
}

.waterway-group.open > .waterway-group__header .waterway-group__count {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

.waterway-group__arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.waterway-group.open > .waterway-group__header .waterway-group__arrow {
  transform: rotate(90deg);
}

.waterway-group__items {
  display: none;
  padding: 0;
}

.waterway-group.open > .waterway-group__items {
  display: block;
}

.waterway-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2rem;
  background: none;
  border: none;
  border-top: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: left;
  transition: background 0.1s, color 0.1s;
}

.waterway-item:hover {
  background: rgba(255, 107, 26, 0.08);
  color: var(--text-dark);
}

.waterway-item.selected {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
}

.report-form__source {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
  line-height: 1.4;
  font-style: italic;
}

.report-form__source a {
  color: var(--orange);
}

.report-form__help {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

#location-map {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
}

.report-form__submit {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 1rem;
}

.report-form__disclaimer {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem 0.75rem 0.75rem;
  background: #e3f2fd;
  border-left: 4px solid #1976d2;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.report-form__disclaimer .disclaimer-icon {
  flex-shrink: 0;
  color: #1976d2;
  margin-top: 0.1rem;
}
.report-form__disclaimer p {
  margin: 0;
}

.report-form__footer-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
  opacity: 0.8;
}

.report-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 1rem;
  padding: 0;
  text-align: center;
  font-size: 0.95rem;
  min-height: 1.5rem;
}

.form-message--success {
  color: #2e7d32;
  padding: 1rem;
  background: #e8f5e9;
  border-radius: 4px;
}

.form-message--error {
  color: var(--red);
  padding: 1rem;
  background: #ffeaea;
  border-radius: 4px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 700px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 80vh;
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .block {
    padding: 4rem 1.5rem;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    padding: 2rem;
  }

  .story-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-number {
    font-size: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .volunteer-cta .btn,
  .social-cta .btn {
    display: block;
    width: 100%;
    padding: 1rem 1rem;
    font-size: 0.9rem;
    box-sizing: border-box;
  }

  .timeline {
    padding-left: 3rem;
  }

  .timeline::before {
    left: 1rem;
  }

  .timeline-event::before {
    left: -2.6rem;
  }

  .page-hero {
    padding: 7rem 1.5rem 2rem;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .volunteer-page {
    padding: 1.5rem 0 0;
  }

  .volunteer-intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .volunteer-page .contain--narrow {
    padding: 0;
  }

  .form-wrapper {
    border-radius: 0;
    box-shadow: none;
  }

  .form-wrapper iframe {
    min-height: 100vh;
  }

  #spray-map { height: 350px; }
  #location-map { height: 250px; }
  .map-page { padding: 2rem 1rem; }
  .map-legend { flex-wrap: wrap; }
  .map-report { padding: 3rem 1rem 4rem; }

  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-sponsor {
    text-align: center;
  }
}
