/* ===== Design tokens ===== */
:root {
  --navy: #0F2350;
  --navy-eyebrow: #14356E;
  --gold: #F2A900;
  --white: #FFFFFF;
  --text-body: #2B3A55;
  --text-secondary: #445069;
  --text-muted: #6A7690;
  --text-on-navy: #C9D3E8;
  --text-on-navy-2: #DCE3F0;
  --bg-gray: #F4F6FA;
  --hairline: #E5E9F1;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Public Sans', sans-serif;
  background: var(--white);
  color: #16233F;
  overflow-x: hidden;
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
::selection { background: var(--gold); color: var(--navy); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

.headline {
  font-family: 'Anton', sans-serif;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.05;
}
.eyebrow {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--navy-eyebrow);
  margin-bottom: 14px;
}
.section {
  padding: 90px 32px;
  max-width: 900px;
  margin: 0 auto;
}
.section--wide { max-width: 1080px; }
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 30px;
}
.band-gray { background: var(--bg-gray); }

/* ===== Nav ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.logo {
  font-family: 'Anton', sans-serif;
  color: var(--white);
  font-size: 20px;
  letter-spacing: 0.5px;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 26px;
}
.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 2px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 34px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 1px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 6px 32px 18px;
}
.mobile-menu a {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.is-open { display: flex; }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  background: var(--white);
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--gold);
}
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(52px, 9vw, 104px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.hero-title--gold {
  color: var(--gold);
  -webkit-text-stroke: 1px var(--navy);
  margin-bottom: 32px;
}
.hero-divider {
  width: 90px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.hero-sub {
  font-family: 'Anton', sans-serif;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-tagline {
  font-weight: 600;
  font-size: 19px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.hero-tagline .pipe { color: var(--gold); }
@media (max-width: 480px) {
  .hero-tagline {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .hero-tagline .pipe { display: none; }
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  font-weight: 800;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: 2px;
  display: inline-block;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-secondary {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
}

/* ===== Situation ===== */
.notice-box {
  background: var(--gold);
  border-radius: 4px;
  padding: 18px 26px;
  margin-bottom: 34px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.body-text {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 780px;
  margin-bottom: 40px;
}
.subhead {
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.subhead-note {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}
.dot-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.dot-list li:last-child { border-bottom: none; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}
.dot-list .item-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== Updates ===== */
.updates-list { display: flex; flex-direction: column; }
.update-row {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.update-date {
  font-weight: 700;
  color: var(--navy-eyebrow);
  font-size: 13px;
  text-transform: uppercase;
  width: 100px;
  flex-shrink: 0;
  padding-top: 3px;
}
.update-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.updates-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 24px;
  font-style: italic;
}

/* ===== Core position ===== */
.core-position { text-align: center; padding: 70px 32px; }
.core-position-inner { max-width: 780px; margin: 0 auto; }
.core-quote {
  font-size: 20px;
  line-height: 1.7;
  color: #1B2942;
  font-weight: 500;
  margin-bottom: 24px;
}
.core-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
}
.core-badge span { color: var(--gold); }

/* ===== Site map ===== */
.site-map-section { text-align: center; padding: 60px 32px; }
.site-map-inner { max-width: 1080px; margin: 0 auto; }
.site-map-img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(15,35,80,0.15);
}
.site-map-caption {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ===== Why it matters ===== */
.why-list { display: flex; flex-direction: column; }
.why-row {
  display: flex;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--hairline);
}
.why-row:last-child { border-bottom: none; }
.why-number {
  font-family: 'Anton', sans-serif;
  color: var(--gold);
  font-size: 34px;
  width: 54px;
  flex-shrink: 0;
  line-height: 1;
}
.why-heading {
  font-weight: 800;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.why-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Zoning ===== */
.zoning-intro {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 44px;
}
.step-list { display: flex; flex-direction: column; }
.step-row {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.step-row:last-child { border-bottom: none; }
.step-number {
  font-family: 'Anton', sans-serif;
  color: var(--navy-eyebrow);
  font-size: 28px;
  width: 46px;
  flex-shrink: 0;
}
.step-heading {
  font-weight: 800;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 6px;
}
.step-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.dates-callout {
  background: var(--bg-gray);
  border-radius: 4px;
  padding: 30px 34px;
  margin-top: 40px;
  margin-bottom: 70px;
}
.dates-callout-heading {
  font-weight: 800;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.dates-callout-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.dates-callout-body strong { color: var(--navy-eyebrow); }
.section-title--sm { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 20px; }
.who-decides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.who-decides-heading {
  font-weight: 800;
  color: var(--navy);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
}
.who-decides-list {
  font-size: 15px;
  color: var(--text-body);
  line-height: 2.1;
}

/* ===== Take action ===== */
.action-section { padding: 90px 32px; }
.action-section-inner { max-width: 1080px; margin: 0 auto; }
.text-center { text-align: center; }
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.action-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--gold);
}
.card-number {
  font-family: 'Anton', sans-serif;
  color: var(--navy-eyebrow);
  font-size: 32px;
  margin-bottom: 12px;
}
.card-heading {
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.card-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}
.card-email {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.card-cta {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 2px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.card-cta + .card-cta {
  margin-top: 10px;
}
.sample-message-box {
  background: var(--white);
  border: 2px solid var(--hairline);
  border-radius: 4px;
  padding: 34px;
  margin-top: 40px;
}
.sample-message-heading {
  font-weight: 800;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sample-message-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
}
.signup-banner {
  background: var(--navy);
  border-radius: 4px;
  padding: 40px 48px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.signup-heading {
  font-family: 'Anton', sans-serif;
  color: var(--white);
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.signup-body {
  font-size: 15px;
  color: var(--text-on-navy);
  line-height: 1.6;
}
.signup-banner .btn-primary { flex-shrink: 0; white-space: nowrap; }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 26px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 10px;
}
.faq-answer {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  padding: 50px 32px;
  text-align: center;
}
.footer-title {
  font-family: 'Anton', sans-serif;
  color: var(--white);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-title span { color: var(--gold); }
.footer-url {
  font-size: 14px;
  color: #9AA8C7;
}
