:root {
  --bg: #f5f4ef;
  --panel: #ffffff;
  --ink: #182029;
  --muted: #5e6973;
  --line: #d7ddd2;
  --accent: #194d43;
  --accent-2: #e6efe9;
  --accent-3: #eef4f1;
  --sand: #f0ece3;
  --shadow: 0 12px 34px rgba(24, 32, 42, 0.08);
  --shadow-soft: 0 8px 22px rgba(24, 32, 42, 0.05);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(820px, 100%); }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,244,239,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215,221,210,0.9);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; gap: 1rem; }
.brand {
  font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.65rem;
}
.brand-mark {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #2f7063 100%);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.82rem; box-shadow: var(--shadow-soft);
}
nav { display: flex; gap: 1rem; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 500; }
nav a.active, nav a:hover { color: var(--ink); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background:
    radial-gradient(circle at top right, rgba(25,77,67,0.12), transparent 26%),
    linear-gradient(180deg, #f7f6f2 0%, #f4f2eb 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}
.hero::before {
  right: -80px; top: 40px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(25,77,67,0.05);
}
.hero::after {
  left: -120px; bottom: -100px; width: 360px; height: 360px;
  border-radius: 50%; background: rgba(180, 146, 94, 0.08);
}
.hero-grid, .split, .grid-2, .grid-3, .grid-4, .footer-grid, .stats-grid, .cta-band, .contact-grid, .news-grid, .issue-grid {
  display: grid; gap: 1.25rem;
}
.hero-grid { grid-template-columns: 1.35fr 1fr; align-items: stretch; }

.hero-grid { grid-template-columns: 1.15fr 1fr; }
.media-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-image { min-height: 460px; }
.hero-image img { min-height: 460px; }
.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}
.image-caption {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.55rem;
}
.section-heading {
  max-width: 50rem;
  margin-bottom: 1.4rem;
}
.section-heading h2 { margin-bottom: 0.55rem; }
.news-item a { color: var(--accent); font-weight: 800; }
.hero-note {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(25,77,67,0.12);
  font-size: 0.92rem;
  color: var(--muted);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.issue-grid { grid-template-columns: repeat(2, 1fr); }
.split { grid-template-columns: 1.25fr 1fr; align-items: start; }
.footer-grid { grid-template-columns: 1fr auto; align-items: start; }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.news-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
.contact-grid { grid-template-columns: 1.1fr 0.9fr; }
.section { padding: 4rem 0; }
.section.alt { background: #eef2ed; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.soft { background: #faf8f2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem;
  color: var(--accent); font-weight: 800; margin-bottom: 0.6rem;
}
h1, h2, h3 { line-height: 1.14; margin: 0 0 0.85rem; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); max-width: 11ch; }
h2 { font-size: clamp(1.45rem, 2.2vw, 2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}
.card.soft { background: rgba(255,255,255,0.75); box-shadow: none; }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(242,247,244,0.98) 100%);
  position: relative; overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute; right: -30px; bottom: -30px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(25,77,67,0.06);
}
.hero-figure {
  min-height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.district-graphic {
  height: 220px; border-radius: 18px; border: 1px solid rgba(25,77,67,0.14);
  background:
    linear-gradient(90deg, rgba(25,77,67,0.05) 0 24%, transparent 24% 26%, rgba(25,77,67,0.04) 26% 49%, transparent 49% 51%, rgba(25,77,67,0.06) 51% 74%, transparent 74% 76%, rgba(25,77,67,0.05) 76% 100%),
    linear-gradient(180deg, transparent 0 14%, rgba(25,77,67,0.07) 14% 16%, transparent 16% 31%, rgba(25,77,67,0.06) 31% 33%, transparent 33% 49%, rgba(25,77,67,0.07) 49% 51%, transparent 51% 67%, rgba(25,77,67,0.06) 67% 69%, transparent 69% 84%, rgba(25,77,67,0.07) 84% 86%, transparent 86% 100%),
    linear-gradient(135deg, rgba(25,77,67,0.08), rgba(180,146,94,0.1));
  position: relative; overflow: hidden;
}
.district-graphic::before {
  content: "34th Street – 42nd Street\AWest of Eighth Avenue";
  white-space: pre;
  position: absolute; left: 1rem; bottom: 1rem;
  font-size: 0.86rem; font-weight: 700; color: var(--accent);
  background: rgba(255,255,255,0.88); padding: 0.65rem 0.8rem; border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.district-graphic::after {
  content: "";
  position: absolute; right: 1.2rem; top: 1.1rem;
  width: 92px; height: 150px; border-radius: 18px;
  border: 2px solid rgba(25,77,67,0.45);
  background: rgba(25,77,67,0.14);
}
.actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 1.2rem; border-radius: 999px; font-weight: 700;
  border: 1px solid var(--line); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-secondary { background: #fff; }
.btn-tertiary { background: transparent; }
.text-link { color: var(--accent); font-weight: 800; }
.kicker { font-size: 0.92rem; color: var(--muted); }
.checklist, .stack, .timeline, .resource-list, .note-list { display: grid; gap: 1rem; }
.checklist { padding-left: 1.15rem; }
.stat {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}
.stat strong {
  display: block; font-size: 1.6rem; line-height: 1; margin-bottom: 0.45rem;
}
.pill-row { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-top: 1rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.45rem 0.7rem;
  border-radius: 999px; background: var(--accent-2); color: var(--accent); font-size: 0.88rem; font-weight: 700;
}
.prose p:last-child, .prose ul:last-child, .prose ol:last-child { margin-bottom: 0; }
.top-gap { margin-top: 1.25rem; }
.resource-list a { color: var(--accent); font-weight: 700; }
.resource-item h3, .news-item h3 { margin-bottom: 0.45rem; }
.news-item time, .resource-item .meta { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.45rem; }
.notice {
  border-left: 4px solid var(--accent);
  padding: 1rem 1rem 1rem 1.1rem;
  background: #f6faf7;
  border-radius: 14px;
}
.form-shell {
  display: grid; gap: 0.9rem;
}
label { font-weight: 700; font-size: 0.95rem; }
input, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 0.95rem 1rem;
  font: inherit; background: #fff;
}
textarea { min-height: 180px; resize: vertical; }
.small { font-size: 0.9rem; color: var(--muted); }
.site-footer { padding: 2.2rem 0; border-top: 1px solid var(--line); background: #f0f1eb; }
.site-footer a { display: block; color: var(--muted); margin-bottom: 0.35rem; }
.site-footer p { color: var(--muted); }
.inline-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.list-plain { list-style: none; padding: 0; margin: 0; }
.list-plain li + li { margin-top: 0.8rem; }
@media (max-width: 960px) {
  .hero-grid, .split, .grid-2, .grid-3, .grid-4, .footer-grid, .stats-grid, .cta-band, .contact-grid, .news-grid, .issue-grid, .image-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 4.2rem; }
  h1 { max-width: 100%; }
}
