/* =========================================================
   Stop The Squeeze — design system
   Bold / campaign / community
   Palette: Navy · Orange · White
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600&display=swap');

:root {
  /* Palette — Conservative Tory blue dominant + orange (urgency only) + white */
  --blue:          #0087DC;   /* Tory bright blue — accents, decoration, brand identity */
  --blue-deep:     #00569B;   /* deeper bright blue — hover states, secondary accents */
  --blue-text:     #00528F;   /* small blue text on white — passes AA */
  --navy:          #102E5E;   /* recognisably Conservative deep blue */
  --navy-deep:     #081A3D;   /* deepest navy — hero overlays */
  --navy-mid:      #1A3D75;
  --navy-light:    #244B8A;
  /* Urgency accent — deep campaign red. Token names are historical; semantic = "urgency". */
  --orange:        #B91C1C;   /* urgency only — alerts, audit CTAs */
  --orange-text:   #991B1B;   /* small text on light bg — passes AAA (7.6:1 on white) */
  --orange-deep:   #7F1D1D;   /* hover state */
  --orange-light:  #DC2626;   /* slightly brighter accent */
  --orange-glow:   rgba(185, 28, 28, 0.10);
  --blue-glow:     rgba(0, 135, 220, 0.15);
  --white:         #FFFFFF;
  --off-white:     #F7FAFD;   /* slight blue tint on the off-white */
  --warm:          #FDF6F6;  /* very subtle warm cream, neutral enough to pair with red or blue */
  --warm-deep:     #FAE4D4;
  --cool:          #EAF3FB;   /* light blue tint surface */
  --cool-deep:     #D6E7F5;
  --ink:           #1A1A1A;
  --ink-soft:      #2C2C2C;
  --grey:          #555555;   /* darker — passes AA on cream/white */
  --grey-soft:     #6B6B6B;
  --grey-line:     #DBE3EC;   /* slight blue tint */
  --grey-line-soft:#E8EEF5;

  /* Typography */
  --display:  'Barlow Condensed', 'Impact', 'Arial Black', sans-serif;
  --sans:     'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --serif:    'Source Serif 4', 'Source Serif Pro', Georgia, serif;

  /* Layout */
  --maxw:        1180px;
  --maxw-narrow: 720px;
  --maxw-prose:  680px;

  /* Radii */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  /* Easing */
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; }
hr { border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Containers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: var(--maxw-narrow); }
.container--prose   { max-width: var(--maxw-prose); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.08;
}

.display-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}

h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 3.8vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--navy);
}

h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--navy);
}

h4 {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--grey);
  margin-bottom: 1rem;
  font-weight: 700;
}

p { margin: 0 0 1em; max-width: 65ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--orange-text);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section__head {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section__lede {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--grey);
  margin-top: .9rem;
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--r-md);
  transition: background .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .15s var(--ease);
  border: 2px solid transparent;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: .78rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; letter-spacing: .1em; }

/* Button variant rules use double-class (.btn.btn--X) to beat any context link rules
   like .nav__links a, .prose a, etc. (specificity 0,2,0 > 0,1,1) */
.btn.btn--orange,
a.btn.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-weight: 800;  /* bolder — "report" / "tell us" CTAs always use --orange and need to shout */
}
.btn.btn--orange:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: var(--white); transform: translateY(-1px); }

.btn.btn--blue,
a.btn.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn.btn--blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: var(--white); transform: translateY(-1px); }

/* White solid button — for dark/navy backgrounds where blue/navy buttons would clash */
.btn.btn--white,
a.btn.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn.btn--white:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-1px); }

.btn.btn--navy,
a.btn.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn.btn--navy:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

.btn.btn--ghost-white,
a.btn.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn.btn--ghost-white:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

.btn.btn--ghost-orange,
a.btn.btn--ghost-orange,
.btn--ghost-orange {
  background: transparent;
  color: var(--orange-text);
  border-color: var(--orange-text);
}
.btn--ghost-orange:hover { background: var(--orange-text); color: var(--white); }

.btn.btn--ghost-navy,
a.btn.btn--ghost-navy,
.btn--ghost-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost-navy:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

.btn.btn--ghost-blue,
a.btn.btn--ghost-blue,
.btn--ghost-blue {
  background: transparent;
  color: var(--blue-text);
  border-color: var(--blue);
}
.btn--ghost-blue:hover { background: var(--blue); color: var(--white); }

.readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: .6rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-text);
  text-decoration: none;
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.readmore:hover { color: var(--navy); gap: 10px; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 26, 61, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 2px solid var(--blue);
  transition: box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.wordmark__main {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.wordmark__sub {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-top: 4px;
}

.brand-stop { color: var(--orange); }
.hero__accent {
  color: var(--orange-light);
  font-style: italic;
  font-weight: 900;
  display: inline-block;
  padding: 0 0.05em;
  text-shadow: 0 4px 40px rgba(220, 38, 38, 0.35), 0 2px 12px rgba(0,0,0,.4);
}
.nowrap { white-space: nowrap; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,.8);
  position: relative;
  padding: 6px 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:not(.btn)[aria-current="page"] {
  color: var(--white);
  border-bottom: 2px solid var(--blue);
}
.nav__links a.btn {
  margin-left: 8px;
  padding: 8px 18px;
}
.nav__links a.btn[aria-current="page"] {
  box-shadow: 0 0 0 2px var(--blue);
}

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: var(--navy-deep);
}
.nav__mobile a {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile a:hover { color: var(--blue); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: clamp(600px, 90vh, 900px);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-deep);
  display: flex;
  align-items: flex-end;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image:
    url('hero-countryside.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: saturate(.7) contrast(.9) brightness(.85);
  z-index: -2;
  transform: scale(1.04);
  animation: heroSettle 2s var(--ease) forwards;
}
@keyframes heroSettle { to { transform: scale(1); } }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8,15,29,0.3) 0%,
      rgba(8,15,29,0.1) 20%,
      rgba(8,15,29,0.05) 40%,
      rgba(8,15,29,0.7) 75%,
      rgba(8,15,29,0.92) 100%
    ),
    linear-gradient(90deg, rgba(8,15,29,0.5) 0%, rgba(8,15,29,0) 60%);
  z-index: -1;
}

.hero__content {
  position: relative;
  width: 100%;
  padding-bottom: clamp(56px, 9vh, 110px);
  padding-top: clamp(80px, 12vh, 160px);
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 135, 220, 0.12);
  border: 1px solid rgba(0, 135, 220, 0.4);
  border-radius: 2px;
}

.hero__headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 16px;
  text-shadow: 0 4px 40px rgba(0,0,0,.4);
}

.hero__sub-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue);
  margin: 0 0 6px;
}

.hero__communities {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin: 0 0 32px;
}

.hero__taglines {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.hero__tagline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1.1;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 12px 0;
}
.hero__tagline:last-child { border-bottom: 0; }

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   CAMPAIGN STRIP (communities list under hero)
   ========================================================= */
.campaign-strip {
  background: var(--navy);
  padding: 22px 0;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.campaign-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.campaign-strip__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin: 0;
}
.campaign-strip__communities {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* =========================================================
   HOOK SECTION (Squeezed...)
   ========================================================= */
.hook {
  background: var(--off-white);
  padding: clamp(70px, 10vh, 110px) 0;
  text-align: center;
  border-bottom: 4px solid var(--navy);
}
.hook__lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.hook__line {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
  color: var(--navy);
  padding: 10px 0;
  width: 100%;
  border-bottom: 2px solid var(--grey-line);
  position: relative;
}
.hook__line:last-child { border-bottom: 0; }
.hook__line em {
  font-style: normal;
  color: var(--orange);
}
.hook__body {
  max-width: 62ch;
  margin: 0 auto 36px;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: left;
}
.hook__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   COUNTERS
   ========================================================= */
.counters {
  background: var(--navy);
  padding: clamp(56px, 8vh, 90px) 0;
  border-top: 4px solid var(--blue);
  border-bottom: 4px solid var(--orange);
}
.counters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-left: 1px solid rgba(255,255,255,.12);
}
.counter {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.counter::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--blue);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.counter:hover::after { opacity: 1; }
.counter__value {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.counter__label {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
}
.counter__note {
  font-family: var(--sans);
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  margin-top: 6px;
  letter-spacing: .04em;
}

/* =========================================================
   GREEN BELT SECTION
   ========================================================= */
.green-belt {
  background: var(--white);
  padding: clamp(80px, 11vh, 130px) 0;
  position: relative;
}
.green-belt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 70%, var(--orange) 70%, var(--orange) 100%);
}
.green-belt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.green-belt__image {
  aspect-ratio: 4/3;
  background-color: var(--warm-deep);
  background-image:
    linear-gradient(rgba(8,15,29,0.08), rgba(8,15,29,0.08)),
    url('communities-map.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.green-belt__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 8px 16px;
}
.green-belt__copy .eyebrow { margin-bottom: 12px; }
.green-belt__copy h2 { margin-bottom: 1.2rem; max-width: 16ch; }
.green-belt__copy p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.green-belt__pillars {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--navy);
}
.pillar {
  padding: 22px 0 22px 20px;
  border-bottom: 1px solid var(--grey-line);
  position: relative;
}
.pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 24px;
  width: 6px; height: 32px;
  background: var(--blue);
}
.pillar h3 {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: 6px;
}
.pillar p {
  font-family: var(--serif);
  font-size: .98rem;
  color: var(--grey);
  margin: 0;
  max-width: 50ch;
}

/* =========================================================
   OUR COMMUNITIES (community tabs)
   ========================================================= */
.the-six {
  background: var(--navy);
  padding: clamp(80px, 11vh, 130px) 0;
  color: var(--white);
}
.the-six h2 { color: var(--white); }
.the-six .eyebrow { color: var(--white); background: transparent; border: 0; border-left: 3px solid var(--orange); padding: 0 0 0 12px; border-radius: 0; }
.signup .eyebrow { color: var(--white); background: transparent; border: 0; border-left: 3px solid var(--orange); padding: 0 0 0 12px; border-radius: 0; }
.audit .eyebrow { color: var(--white); background: transparent; border: 0; border-left: 3px solid var(--orange); padding: 0 0 0 12px; border-radius: 0; }
.the-six .section__head {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.six-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 48px;
}
.six-tabs {
  background: rgba(0,0,0,.25);
  border-right: 1px solid rgba(255,255,255,.1);
}
.six-tab {
  display: block;
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.06);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
  position: relative;
}
.six-tab:last-child { border-bottom: 0; }
.six-tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform .2s var(--ease);
}
.six-tab:hover { color: rgba(255,255,255,.85); background: rgba(255,255,255,.04); }
.six-tab.is-active {
  color: var(--white);
  background: rgba(0, 135, 220, 0.14);
}
.six-tab.is-active::before { transform: scaleY(1); }

.six-panels { padding: 0; }
.six-panel { display: none; padding: 40px 44px; }
.six-panel.is-active { display: block; }
.six-panel h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 16px;
}
.six-panel p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
  max-width: 50ch;
}
.six-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.six-tag {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  border-radius: 2px;
}

/* Community label strip */
.six-communities-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
}
.six-communities-strip__item {
  flex: 1 1 0;
  min-width: 130px;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.six-communities-strip__item:last-child { border-right: 0; }
.six-communities-strip__item:hover { color: var(--blue); background: rgba(0,135,220,.08); }

/* =========================================================
   THE SQUEEZE (6 categories)
   ========================================================= */
.the-squeeze {
  background: var(--off-white);
  padding: clamp(80px, 11vh, 130px) 0;
}
.squeeze-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--grey-line);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 48px;
}
.squeeze-card {
  background: var(--white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s var(--ease);
  text-decoration: none;
  color: var(--ink);
  position: relative;
}
.squeeze-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.squeeze-card:hover { background: var(--off-white); }
.squeeze-card:hover::before { transform: scaleX(1); }

.squeeze-card__icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.squeeze-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.squeeze-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
}
.squeeze-card p {
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}
.squeeze-card .readmore { margin-top: auto; }

/* =========================================================
   SQUEEZE AUDIT / REPORT FORM
   ========================================================= */
.audit {
  background: var(--navy);
  padding: clamp(80px, 11vh, 130px) 0;
  color: var(--white);
}
.audit__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.audit__copy h2 { color: var(--white); }
.audit__copy .eyebrow { color: var(--white); background: transparent; border: 0; border-left: 3px solid var(--orange); padding: 0 0 0 12px; border-radius: 0; }
.audit__copy p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  max-width: 46ch;
}
.audit__copy blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  background: rgba(255,255,255,.05);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.audit__copy blockquote p {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.form-shell {
  background: var(--white);
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 44px);
  color: var(--ink);
}
.form-shell h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--blue);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-bottom: 16px;
}
.form-grid__full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.field label .req { color: var(--orange-text); margin-left: 3px; }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: .98rem;
  padding: 11px 14px;
  border: 2px solid var(--grey-line);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}
.field--checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
}
.field--checkbox label {
  font-family: var(--serif);
  font-weight: 400;
  font-size: .94rem;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
}
.form-submit { margin-top: 20px; width: 100%; text-align: center; padding: 16px; }

.form-feedback {
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: .92rem;
  line-height: 1.5;
}
.form-feedback[data-kind="success"] { background: #e6f4e6; color: #1c4625; border: 1px solid #a8c4ad; }
.form-feedback[data-kind="error"]   { background: #fbe7df; color: #a83220; border: 1px solid #f1bfa7; }

/* =========================================================
   LIVE DASHBOARD
   ========================================================= */
.dashboard {
  background: var(--off-white);
  padding: clamp(80px, 11vh, 130px) 0;
}
.dashboard__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}
.filter-tabs {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 10px 20px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  cursor: pointer;
  border-right: 1px solid var(--grey-line);
  background: var(--white);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.filter-tab:last-child { border-right: 0; }
.filter-tab:hover { background: var(--off-white); }
.filter-tab.is-active { background: var(--navy); color: var(--white); }

.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.map-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--grey-line);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
}
.map-cell {
  background: var(--white);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: background .2s var(--ease);
}
.map-cell:hover { background: var(--warm); }
.map-cell--active { background: var(--orange-glow); }
.map-cell__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
}
.map-cell__tag {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange-text);
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--grey);
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot--green   { background: #2D6A4F; }
.legend-dot--asphalt { background: #3F4145; }
.legend-dot--bus     { background: #B91C1C; }
.legend-dot--service { background: #0F766E; }
.legend-dot--plan    { background: #D97706; }
.legend-dot--voice   { background: #0087DC; }

/* =========================================================
   INTERACTIVE MAP (Leaflet)
   ========================================================= */
.map-shell {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
}
.map-shell__head {
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 2px solid var(--blue);
}
.map-shell__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.map-shell__sub {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.map-report-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 500;
  background: var(--orange);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,.25);
  transition: background .15s, transform .1s;
  white-space: nowrap;
}
.map-report-btn:hover {
  background: var(--orange-text);
  transform: translateY(-1px);
}
#squeezeMap {
  height: 460px;
  width: 100%;
  z-index: 1;
}

/* Custom map pin */
.squeeze-pin {
  position: relative;
  width: 22px;
  height: 22px;
}
.squeeze-pin__inner {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.35);
  z-index: 2;
}
.squeeze-pin__pulse {
  display: none;
}

/* Map popup styling */
.leaflet-popup-content-wrapper {
  border-radius: var(--r-md);
  box-shadow: 0 6px 24px rgba(8,26,61,.18);
  border: 2px solid var(--navy);
  padding: 0;
}
.leaflet-popup-content {
  margin: 0;
  font-family: var(--sans);
  min-width: 220px;
}
.leaflet-popup-tip { box-shadow: 0 4px 10px rgba(8,26,61,.2); }
.squeeze-popup { padding: 14px 16px 12px; }
.squeeze-popup__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.squeeze-popup__cat {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.squeeze-popup__note {
  font-family: var(--serif);
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin-bottom: 10px;
}
.squeeze-popup__cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-text);
  text-decoration: none;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}
.squeeze-popup__cta:hover { color: var(--orange-text); border-bottom-color: var(--orange); }

/* Hide default leaflet styles we don't want */
.leaflet-container { font-family: var(--sans); }
.leaflet-container a.leaflet-popup-close-button { color: var(--navy); padding: 4px 6px; }

/* Ward polygons + labels */
.squeeze-ward {
  cursor: pointer;
  transition: fill-opacity .2s ease;
}

.leaflet-tooltip.squeeze-ward-label {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid var(--blue);
  border-radius: 2px;
  padding: 5px 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 3px 10px rgba(0,0,0,.25);
  white-space: nowrap;
  pointer-events: none;
}
.leaflet-tooltip.squeeze-ward-label::before { display: none; }

@media (max-width: 760px) {
  #squeezeMap { height: 380px; }
  .leaflet-tooltip.squeeze-ward-label { font-size: 10px; padding: 4px 8px; }
}

/* Right column wrapper */
.audit-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Lib-Lab coalition damage panel */
.coalition-damage {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.coalition-damage::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--orange);
}
.coalition-damage__head {
  padding: 22px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.coalition-damage__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--white);
  margin-bottom: 8px;
  border-left: 3px solid var(--orange);
  padding-left: 10px;
}
.coalition-damage__title {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--white);
}
.coalition-damage__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.coalition-damage__list li {
  position: relative;
  padding: 12px 20px 12px 44px;
  font-family: var(--sans);
  font-size: .85rem;
  line-height: 1.45;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.coalition-damage__list li:last-child { border-bottom: 0; }
.coalition-damage__list li::before {
  content: "✕";
  position: absolute;
  left: 18px;
  top: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.coalition-damage__list li strong {
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

/* Recent reports — compact scrollable */
.recent-reports {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
}
.recent-reports__head {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.recent-reports__count {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: rgba(255,255,255,.65);
}
.recent-reports__scroll {
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) transparent;
}
.recent-reports__scroll::-webkit-scrollbar { width: 6px; }
.recent-reports__scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
.report-item {
  padding: 12px 18px;
  border-bottom: 1px solid var(--grey-line-soft);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.report-item:last-child { border-bottom: 0; }
.report-item__title {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.report-item__meta {
  font-family: var(--sans);
  font-size: .65rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.report-item__dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}
.report-item__dot--green   { background: #2D6A4F; }
.report-item__dot--asphalt { background: #3F4145; }
.report-item__dot--bus     { background: #B91C1C; }
.report-item__dot--service { background: #0F766E; }
.report-item__dot--plan    { background: #D97706; }

/* =========================================================
   PLANNING WATCH
   ========================================================= */
.planning-watch {
  background: var(--white);
  padding: clamp(80px, 11vh, 130px) 0;
  border-top: 6px solid var(--blue);
}
.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.planning-card {
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.planning-card__status {
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.planning-card__status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}
.planning-card__body {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.planning-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
}
.planning-card p {
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}
.planning-card__homes {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--grey);
  margin-top: 8px;
}
.planning-card__cta {
  padding: 16px 24px;
  border-top: 1px solid var(--grey-line);
}

/* =========================================================
   30-DAY CYCLE
   ========================================================= */
.cycle {
  background: var(--warm);
  padding: clamp(80px, 11vh, 130px) 0;
}
.cycle__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.cycle__copy h2 { max-width: 14ch; }
.cycle__copy p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.cycle__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--navy);
  padding-left: 0;
}
.cycle__step {
  display: flex;
  gap: 0;
  position: relative;
}
.cycle__step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  margin-left: -14px;
}
.cycle__step-dot {
  width: 26px; height: 26px;
  background: var(--navy);
  border-radius: 50%;
  border: 3px solid var(--warm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cycle__step-dot--active { background: var(--blue); }
.cycle__step-line {
  width: 3px;
  flex-grow: 1;
  background: rgba(13,31,60,.15);
  min-height: 20px;
}
.cycle__step-content {
  padding: 0 0 28px 24px;
}
.cycle__step:last-child .cycle__step-content { padding-bottom: 0; }
.cycle__step-day {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange-text);
  margin-bottom: 4px;
}
.cycle__step-title {
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
}

.cycle__report-box {
  background: var(--navy);
  color: var(--white);
  padding: 32px;
  border-radius: var(--r-md);
  margin-top: 40px;
}
.cycle__report-box h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--blue);
  margin-bottom: 16px;
}
.cycle__report-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-family: var(--sans);
  font-size: .88rem;
  color: rgba(255,255,255,.75);
}
.cycle__report-item:last-child { border-bottom: 0; }
.cycle__report-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* =========================================================
   COMMUNITY CARDS
   ========================================================= */
.communities {
  background: var(--white);
  padding: clamp(80px, 11vh, 130px) 0;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.community-card {
  background: var(--off-white);
  border: 2px solid var(--grey-line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s var(--ease), transform .25s var(--ease);
}
.community-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}
.community-card__bar {
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 70%, var(--orange) 70%, var(--orange) 100%);
}
.community-card__body {
  padding: 28px 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.community-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1;
}
.community-card p {
  font-family: var(--serif);
  font-size: .98rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}
.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.community-tag {
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 5px 10px;
  border: 1px solid var(--navy);
  color: var(--navy);
  border-radius: var(--r-sm);
}

.communities-footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid var(--grey-line);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey);
}

/* =========================================================
   SIGN UP
   ========================================================= */
.signup {
  background: var(--navy);
  padding: clamp(80px, 11vh, 130px) 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--blue);
  border-bottom: 4px solid var(--orange);
}
.signup::before {
  content: 'STOP THE SQUEEZE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-weight: 900;
  font-size: 15vw;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgba(0,135,220,.08);
  pointer-events: none;
  white-space: nowrap;
}
.signup__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.signup__copy h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.signup__copy p {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  max-width: 46ch;
}
.signup__form {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 40px;
}
.signup__form h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 24px;
}
.signup__form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.signup__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.signup__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}
.signup__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.signup__checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--orange);
}
.signup__small {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--grey);
  line-height: 1.5;
  margin: 0;
}
.signup__small a { color: var(--navy); }

/* =========================================================
   CLOSING STATEMENT
   ========================================================= */
.closing {
  background: var(--navy-deep);
  padding: clamp(80px, 11vh, 130px) 0;
  text-align: center;
}
.closing__lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}
.closing__line {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(255,255,255,.25);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  line-height: 1.05;
}
.closing__line--highlight { color: var(--white); }
.closing__line:last-child { border-bottom: 0; }
.closing__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 28px;
  font-size: .92rem;
  border-top: 4px solid var(--blue);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 18px;
  opacity: .6;
  font-weight: 700;
}
.footer__col p {
  opacity: .75;
  line-height: 1.6;
  max-width: 34ch;
  font-family: var(--serif);
  font-size: .95rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: var(--white);
  text-decoration: none;
  opacity: .72;
  font-family: var(--sans);
  font-size: .92rem;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.footer__col a:hover { opacity: 1; color: var(--blue); }
.wordmark--footer {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.wordmark--footer-sub {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}
.footer__col--imprint p {
  font-size: .8rem;
  opacity: .55;
  line-height: 1.65;
}
.footer__col--partner {
  font-family: var(--sans);
  font-size: .8rem;
  opacity: .55;
  line-height: 1.65;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .75rem;
  opacity: .6;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: var(--white); text-decoration: none; }
.footer__bottom a:hover { opacity: 1; text-decoration: underline; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__mobile { display: flex; }

  .green-belt__grid { grid-template-columns: 1fr; gap: 44px; }
  .green-belt__image { max-height: 320px; }
  .six-layout { grid-template-columns: 1fr; }
  .six-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-right: 0; }
  .six-tab { border-right: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
  .audit__grid { grid-template-columns: 1fr; gap: 44px; }
  .cycle__grid { grid-template-columns: 1fr; gap: 48px; }
  .signup__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .planning-grid { grid-template-columns: 1fr 1fr; }
  .counters__grid { grid-template-columns: repeat(2, 1fr); }
  .squeeze-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-layout { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav__inner { height: 64px; }
  .six-tabs { grid-template-columns: repeat(2, 1fr); }
  .squeeze-grid { grid-template-columns: 1fr; }
  .planning-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: repeat(2, 1fr); }
  .six-communities-strip { flex-wrap: wrap; }
  .six-communities-strip__item { flex: 1 1 50%; }
  .hook__line { font-size: clamp(2rem, 8vw, 4rem); }
  .signup__row { grid-template-columns: 1fr; }
  .campaign-strip__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .container { padding: 0 20px; }
  .hero__headline { font-size: clamp(4rem, 18vw, 6rem); }
  .hero__tagline { font-size: clamp(1.4rem, 6vw, 2.4rem); }
  .counters__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .six-layout { margin-top: 28px; }
  .six-tabs { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hook__line { font-size: clamp(1.8rem, 8vw, 3.5rem); }
  .closing__line { font-size: clamp(1.5rem, 6vw, 2.8rem); }
  .signup__form { padding: 28px 22px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; }
}

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

/* ---------- Print ---------- */
@media print {
  .nav, .footer, .hero__overlay, .next-page, .sticky-cta { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
}

/* =========================================================
   SKIP LINK (a11y)
   ========================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1000;
  border-radius: var(--r-md);
  text-decoration: none;
}
.skip-link:focus { left: 16px; }

/* =========================================================
   PAGE HERO (interior pages)
   ========================================================= */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(80px, 12vh, 140px) 0 clamp(56px, 8vh, 90px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 70%, var(--orange) 70%, var(--orange) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 0%, rgba(0, 135, 220, 0.18), transparent 60%);
  z-index: -1;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb-sep { color: rgba(255,255,255,.5); }

.page-hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
  max-width: 18ch;
}
.page-hero__lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,.78);
  max-width: 56ch;
  margin: 0;
  line-height: 1.55;
}
.page-hero__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.page-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.page-hero__meta-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--blue);
  letter-spacing: -0.01em;
  line-height: 1;
}
.page-hero__meta-label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* =========================================================
   PROSE BLOCK
   ========================================================= */
.prose-block {
  background: var(--white);
  padding: clamp(60px, 9vh, 100px) 0;
}
.prose-block--warm { background: var(--off-white); }
.prose-block--navy { background: var(--navy); color: var(--white); }
.prose-block--navy h2,
.prose-block--navy h3 { color: var(--white); }
.prose-block--navy .eyebrow { color: var(--white); background: transparent; border: 0; border-left: 3px solid var(--orange); padding: 0 0 0 12px; border-radius: 0; }
.prose-block--navy p,
.prose-block--navy .prose p { color: var(--white); }

.prose {
  max-width: var(--maxw-prose);
}
.prose p {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a:not(.btn) {
  color: var(--blue-text);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 600;
}
.prose a:not(.btn):hover { color: var(--orange-text); }
.prose ul, .prose ol {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
  padding-left: 1.4rem;
  margin: 0 0 1.4rem;
  list-style: none;
}
.prose ul li, .prose ol li {
  margin-bottom: .7rem;
  position: relative;
  padding-left: 12px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: .8rem;
  width: 12px;
  height: 2px;
  background: var(--blue);
}

/* =========================================================
   CALLOUT (inline highlight)
   ========================================================= */
.callout {
  border-left: 4px solid var(--blue);
  background: var(--cool);
  padding: 24px 28px;
  margin: 28px 0;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.callout__label {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-text);
  margin-bottom: 8px;
  display: block;
}
.callout p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
.callout p strong { color: var(--navy); }

.callout--navy {
  background: var(--navy);
  border-left-color: var(--blue);
  color: var(--white);
}
.callout--navy .callout__label { color: var(--blue); background: transparent; border: 0; padding: 0; }
.callout--navy p { color: rgba(255,255,255,.85); }
.callout--navy p strong { color: var(--white); }

/* =========================================================
   STAT INLINE (drop-in stat for prose)
   ========================================================= */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  margin: 32px 0;
  overflow: hidden;
  background: var(--white);
}
.stat-row__cell {
  padding: 26px 24px;
  border-right: 1px solid var(--grey-line);
}
.stat-row__cell:last-child { border-right: 0; }
.stat-row__value {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.stat-row__label {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.4;
}
.stat-row__note {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--grey);
  margin-top: 4px;
}

/* =========================================================
   METHODOLOGY GRID
   ========================================================= */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 2px solid var(--navy);
  border-left: 2px solid var(--navy);
}
.method-step {
  padding: 28px 24px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  background: var(--white);
  position: relative;
}
.method-step__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.method-step h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  margin-bottom: 8px;
}
.method-step p {
  font-family: var(--sans);
  font-size: .88rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   FAQ (accordion)
   ========================================================= */
.faq {
  border-top: 2px solid var(--navy);
  margin-top: 32px;
}
.faq__item {
  border-bottom: 1px solid var(--grey-line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 50px 22px 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  position: relative;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 2rem;
  color: var(--blue);
  font-weight: 700;
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { content: '–'; }
.faq__item summary:hover { color: var(--blue); }
.faq__body {
  padding: 0 0 22px;
}
.faq__body p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 64ch;
}
.faq__body p:last-child { margin-bottom: 0; }

/* =========================================================
   COMMUNITY DETAIL (the-six page)
   ========================================================= */
.community-detail {
  padding: clamp(70px, 10vh, 110px) 0;
  border-bottom: 1px solid var(--grey-line);
  scroll-margin-top: 100px;
}
.community-detail--alt { background: var(--off-white); }
.community-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.community-detail__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 0.95;
}
.community-detail__pop {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 24px;
}
.community-detail__copy p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.community-detail__issues {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--navy);
}
.issue-line {
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-line);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
}
.issue-line__tag {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-text);
}
.issue-line__text {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.issue-line__text strong { color: var(--navy); font-weight: 600; }

/* =========================================================
   LOCATION CARDS (greenbelt sites)
   ========================================================= */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.location-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.location-card__head {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.location-card__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.threat-level {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.threat-level::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.threat-level--high {
  background: var(--orange);
  color: var(--white);
}
.threat-level--medium {
  background: var(--orange-light);
  color: var(--white);
  border: 1px solid var(--orange-light);
}
.threat-level--watch {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
}

.location-card__body {
  padding: 20px 22px;
  flex-grow: 1;
}
.location-card__body p {
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 12px;
}
.location-card__between {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  padding-top: 12px;
  border-top: 1px solid var(--grey-line);
}
.location-card__between strong { color: var(--navy); }

/* =========================================================
   QUESTION BLOCK (planning watch — "what we ask")
   ========================================================= */
.question-block {
  background: var(--navy);
  color: var(--white);
  padding: clamp(56px, 8vh, 90px) 0;
  position: relative;
  overflow: hidden;
}
.question-block::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: -120px;
  width: 360px;
  background: radial-gradient(circle, rgba(0, 135, 220, .28), transparent 70%);
  pointer-events: none;
}
.question-block__lead {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.question-block__quote {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 24px;
  max-width: 18ch;
}
.question-block__quote em {
  font-style: normal;
  color: var(--blue);
}
.question-block__sub {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 56ch;
}

/* =========================================================
   PLEDGE / CHECKLIST
   ========================================================= */
.pledge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 32px 0;
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--grey-line);
}
.pledge-item {
  background: var(--white);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pledge-item__check {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pledge-item__check svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pledge-item__copy h4 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.2;
}
.pledge-item__copy p {
  font-family: var(--sans);
  font-size: .92rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   NEXT-PAGE BLOCK (where to go from here)
   ========================================================= */
.next-page {
  background: var(--off-white);
  padding: clamp(56px, 8vh, 90px) 0;
  border-top: 6px solid var(--blue);
}
.next-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.next-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  padding: 28px 28px 24px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s var(--ease), background .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.next-card::after {
  content: '→';
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--blue);
  transition: transform .25s var(--ease);
  font-weight: 800;
}
.next-card:hover { transform: translateY(-3px); background: var(--navy); color: var(--white); }
.next-card:hover::after { color: var(--white); transform: translate(4px, 0); }
.next-card:hover .next-card__label { color: rgba(255,255,255,.6); }
.next-card:hover .next-card__sub { color: rgba(255,255,255,.7); }
.next-card__label {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 10px;
  transition: color .25s var(--ease);
}
.next-card__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
  margin: 0 0 10px;
  max-width: 16ch;
}
.next-card__sub {
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
  transition: color .25s var(--ease);
}

/* =========================================================
   STICKY CTA (mobile-friendly bottom action)
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--orange);
  padding: 12px 20px;
  z-index: 90;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.sticky-cta__label {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}
.sticky-cta__sub {
  display: block;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 2px;
}

@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body.has-sticky { padding-bottom: 80px; }
}

/* =========================================================
   PAGE-SPECIFIC TIDY
   ========================================================= */
.community-detail__inner > * { min-width: 0; }

@media (max-width: 1100px) {
  .community-detail__inner { grid-template-columns: 1fr; gap: 40px; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: 1fr; }
  .stat-row__cell { border-right: 0; border-bottom: 1px solid var(--grey-line); }
  .stat-row__cell:last-child { border-bottom: 0; }
  .pledge-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .next-page__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .method-grid { grid-template-columns: 1fr; }
  .issue-line { grid-template-columns: 1fr; gap: 4px; }
  .page-hero__title { font-size: clamp(2.4rem, 12vw, 4rem); }
  .community-detail__title { font-size: clamp(2.4rem, 12vw, 4rem); }
}

/* =========================================================
   REPORT-BACK PAGE — cycle output rows + status pills
   ========================================================= */
.report-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.report-list__empty {
  margin: 0;
  padding: 44px 28px;
  text-align: center;
  background: var(--off-white);
  border: 2px dashed var(--grey-line);
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: .95rem;
  line-height: 1.6;
  color: var(--grey);
}
.report-row {
  background: var(--white);
  border: 2px solid var(--grey-line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  transition: border-color .2s var(--ease), transform .15s var(--ease);
}
.report-row:hover { border-color: var(--navy); transform: translateY(-2px); }
.report-row[data-status="resolved"] { border-left: 5px solid #2D6A4F; }
.report-row[data-status="progress"] { border-left: 5px solid #D97706; }
.report-row[data-status="outstanding"] { border-left: 5px solid var(--orange); }
.report-row__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.report-row__meta {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
}
.report-row__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .01em;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.25;
}
.report-row__body {
  font-family: var(--sans);
  font-size: .95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.report-row__action {
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--grey);
  padding-top: 10px;
  border-top: 1px solid var(--grey-line-soft);
}
.report-row__action strong { color: var(--navy); font-weight: 700; }

/* Status pills */
.status-pill {
  display: inline-block;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
  color: var(--white);
}
.status-pill--resolved    { background: #2D6A4F; }
.status-pill--progress    { background: #D97706; }
.status-pill--outstanding { background: var(--orange); }
.status-pill--escalated   { background: var(--blue); }

@media (max-width: 760px) {
  .report-row { padding: 18px 18px; }
  .report-row__title { font-size: 1.02rem; }
}
