/* =========================================================
   Say No to the Gardner Data Center
   Mobile-first stylesheet
   Warm, down-to-earth, single sans-serif
   ========================================================= */

:root {
  /* Color — neutral + barn red. No brown, no tan, no amber. */
  --color-bg:           #ffffff;
  --color-bg-soft:      #f7f7f9;   /* very light cool gray */
  --color-bg-warm:      #f7f7f9;   /* legacy alias — same as soft */
  --color-bg-dark:      #1a1a1a;   /* charcoal — skip link, dark sections */
  --color-bg-dark-2:    #2a2a2e;
  --color-text:         #1a1a1a;
  --color-text-muted:   #6b7280;
  --color-text-on-dark: #f5f5f7;
  --color-text-on-dark-muted: #a1a1aa;
  --color-border:       #e5e5e7;
  --color-border-strong:#d1d5db;
  --color-border-dark:  #3a3a3e;

  --color-accent:       #c63a2a;   /* barn red — matches the M-1 logo */
  --color-accent-hover: #a82e1f;
  --color-accent-soft:  #fef2f0;   /* very soft blush */

  /* Legacy amber aliases — kept so existing rules still resolve, but
     remapped to red so nothing renders in amber/brown anywhere. */
  --color-amber:        var(--color-accent);
  --color-amber-soft:   var(--color-accent-soft);

  --color-myth-bg:      #fef2f0;   /* very soft blush */
  --color-fact-bg:      #f0f7ed;   /* very soft sage */
  --color-myth-tag:     #c63a2a;
  --color-fact-tag:     #4a6b1f;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container-max: 1180px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(60, 45, 25, 0.06);
  --shadow-md: 0 4px 14px rgba(60, 45, 25, 0.08);

  --header-h: 64px;
  /* Meeting banner is fixed; height pushed into layout via JS */
  --urgent-banner-offset: 0px;
  /* Sticky nav (meeting banner uses its own treatment below) */
  --color-header-cream: #faf6ed;
  --color-header-surface: rgba(250, 246, 237, 0.94);
  /* Meeting rail: flat orange-terracotta strip (warmer than accent, no gradient) */
  --color-meeting-rail: #c8522a;
}

/* Base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--urgent-banner-offset) + var(--header-h));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: var(--urgent-banner-offset);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 0.5rem;
  line-height: 1.2;
  color: var(--color-text);
  overflow-wrap: break-word;
}

h1 { font-size: clamp(1.85rem, 5.5vw, 3.1rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 4vw, 2.15rem); }
h3 { font-size: 1.15rem; line-height: 1.35; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Skip link ------------------------------------------------ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: 0.75rem 1rem;
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus {
  top: var(--urgent-banner-offset);
}

/* Header --------------------------------------------------- */
.site-header {
  position: sticky;
  top: var(--urgent-banner-offset);
  z-index: 50;
  background: var(--color-header-surface);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--color-text);
}

.brand-logo {
  width: auto;
  height: 42px;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-line-1 {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.brand-line-2 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Nav ------------------------------------------------------ */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.primary-nav.open { max-height: 80vh; box-shadow: var(--shadow-md); }
.primary-nav ul {
  list-style: none;
  padding: 0.5rem 1.25rem 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.primary-nav a {
  display: block;
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.primary-nav .nav-cta {
  margin-top: 0.75rem;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-sm);
  border-bottom: none;
  padding: 0.85rem 1rem;
  font-weight: 700;
}

/* Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn-ghost:hover { background: var(--color-text); color: var(--color-bg); }

/* Hero ----------------------------------------------------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
  color: var(--color-text);
  padding: 3rem 0 4rem;
  border-bottom: 1px solid var(--color-border);
}

.hero h1 {
  max-width: 28ch;
  letter-spacing: normal;
  text-decoration: none;
  border: 0;
  -webkit-font-smoothing: antialiased;
}
.hero .lede {
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 44ch;
  line-height: 1.55;
}
.hero .lede strong {
  color: var(--color-text);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.hero-meta { margin-top: 1.5rem; }
.petition-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text);
  font-weight: 600;
  border-bottom: 1px solid var(--color-border-dark);
  padding-bottom: 2px;
  font-size: 0.95rem;
}
.petition-link:hover { color: var(--color-accent); border-color: var(--color-accent); }
.petition-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
}
.arrow { transition: transform 0.2s ease; }
.petition-link:hover .arrow { transform: translateX(3px); }

/* Sections ------------------------------------------------- */
.section { padding: 3.5rem 0; }
.section-light { background: var(--color-bg); color: var(--color-text); }
.section-soft  { background: var(--color-bg-soft); color: var(--color-text); }
.section-dark  { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section-dark .section-label { color: var(--color-amber); }
.section-dark .section-intro { color: var(--color-text-on-dark-muted); }
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-accent {
  background: var(--color-accent-soft);
  color: var(--color-text);
  border-top: 1px solid #f0c8bf;
  border-bottom: 1px solid #f0c8bf;
}
/* Take Action teaser (home) */
.section-cta {
  background: var(--color-bg);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}
.section-cta .section-label { color: var(--color-accent); }
.section-cta h2 { color: var(--color-text); max-width: 26ch; }
.section-cta .section-intro { color: var(--color-text-muted); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.65rem;
}
.section-title { max-width: 24ch; margin-bottom: 0.5rem; }
.section-title-home-impact {
  max-width: min(36ch, 100%);
}
.section-intro {
  color: var(--color-text-muted);
  max-width: 60ch;
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

/* Grid utilities ------------------------------------------ */
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.grid-3, .grid-4 { grid-template-columns: 1fr; }

/* Cards ---------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-border-strong); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}
.card h3 { margin-bottom: 0.35rem; }
.card p { color: var(--color-text-muted); margin: 0; font-size: 0.97rem; }
.card p a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.card p a:hover { color: var(--color-accent-hover); }

/* Home — “Why it matters”: equal-height card rows */
.home-impact-grid {
  align-items: stretch;
}
.home-impact-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-impact-grid .card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.home-impact-grid .card-heading-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}
.home-impact-grid .card p {
  flex: 1 1 auto;
  line-height: 1.55;
}

.card-on-accent {
  background: #fff;
  border-color: #f0c8bf;
}
.card-on-accent .card-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Concern cards (dark warm brown) ------------------------- */
.concern-card {
  background: var(--color-bg-dark-2);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem 1.4rem;
  position: relative;
  overflow: hidden;
}
.concern-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--color-accent);
}
.concern-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-amber);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.concern-card h3 { color: #fff; margin-bottom: 0.4rem; }
.concern-card p { color: var(--color-text-on-dark-muted); margin: 0; font-size: 0.97rem; }

/* Callout -------------------------------------------------- */
.callout {
  margin-top: 2.25rem;
  padding: 1.4rem 1.5rem;
  background: #fff;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.callout p { margin: 0; font-size: 1rem; }

/* Myths — pull-quote style ------------------------------- */
.myth-list {
  display: grid;
  gap: 1.75rem;
}
.myth-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-sm);
}
.myth-side {
  padding: 1.5rem 1.5rem 1.65rem;
  position: relative;
}
.myth-side.myth {
  border-left: 3px solid var(--color-myth-tag);
  background: #fff;
}
.myth-side.fact {
  border-left: 3px solid var(--color-fact-tag);
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}
.myth-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0;
  margin-bottom: 0.85rem;
}
.myth-tag::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.myth-side.myth .myth-tag {
  color: var(--color-myth-tag);
  background: transparent;
}
.myth-side.myth .myth-tag::before { background: var(--color-myth-tag); }
.myth-side.fact .myth-tag {
  color: var(--color-fact-tag);
  background: transparent;
}
.myth-side.fact .myth-tag::before { background: var(--color-fact-tag); }
.myth-side.myth p {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.myth-side.fact p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--color-text);
}
.myth-side.fact p:last-child { margin-bottom: 0; }
.myth-side.fact strong { font-weight: 700; }

/* Two column ----------------------------------------------- */
.two-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.two-col p { color: var(--color-text-muted); font-size: 1.05rem; }
.two-col strong { color: var(--color-text); }

.map-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #eef3ec 0%, #dfe7dc 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 41, 59, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 59, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.map-highlight {
  position: absolute;
  top: 28%;
  left: 22%;
  width: 56%;
  height: 50%;
  background: rgba(198, 58, 42, 0.18);
  border: 2px dashed var(--color-accent);
  border-radius: 4px;
}
.map-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.8rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-sm);
  max-width: 70%;
}
.map-label-tag {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.map-label-text { color: var(--color-text-muted); }

/* Resource list -------------------------------------------- */
.resource-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.resource-card {
  display: block;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.resource-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-md);
}
.resource-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.resource-source {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-amber);
}
.resource-arrow {
  color: var(--color-amber);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.resource-card:hover .resource-arrow { transform: translateX(4px); }
.resource-card h3 { color: var(--color-text); margin-bottom: 0.5rem; }
.resource-card p { color: var(--color-text-muted); margin: 0; font-size: 0.95rem; }

/* Action grid ---------------------------------------------- */
.action-inner { position: relative; z-index: 1; }
.action-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 2.25rem;
}
.action-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}
.action-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
  border-top-color: var(--color-accent);
}
.action-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.action-card h3 { color: var(--color-text); margin-bottom: 0.45rem; }
.action-card p { color: var(--color-text-muted); margin: 0 0 1rem; font-size: 0.97rem; }
.action-link {
  margin-top: auto;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.95rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  align-self: flex-start;
}

/* Footer --------------------------------------------------- */
.site-footer {
  background: var(--color-header-surface);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  color: var(--color-text-muted);
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  display: grid;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-logo-footer {
  height: 48px;
  width: auto;
  background: var(--color-bg);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.footer-title {
  margin: 0;
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.05rem;
}
.footer-sub { margin: 2px 0 0; font-size: 0.9rem; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}
.footer-nav a {
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}
.footer-nav a:hover { color: var(--color-accent); border-color: var(--color-accent); }

/* =========================================================
   Responsive: tablet & up
   ========================================================= */

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .myth-side { padding: 1.75rem 2rem 1.85rem; }
  .resource-list { grid-template-columns: repeat(2, 1fr); }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 4.5rem 0; }
  .brand-logo { height: 48px; }
}

@media (max-width: 899px) {
  /* Sharp 1px border under sticky header: text scrolling beneath looks like a strikethrough. */
  .site-header {
    border-bottom: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (min-width: 900px) {
  :root { --header-h: 76px; }
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    background: transparent;
    border: none;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    z-index: auto;
  }
  .primary-nav ul {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.25rem;
  }
  .primary-nav a {
    padding: 0.5rem 0.85rem;
    font-size: 0.95rem;
    border-bottom: none;
    border-radius: var(--radius-sm);
  }
  .primary-nav a:hover { background: var(--color-bg-soft); }
  .primary-nav .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0.55rem 1rem;
  }
  .primary-nav .nav-cta:hover { background: var(--color-accent-hover); }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .two-col { grid-template-columns: 1.1fr 1fr; gap: 3rem; }
  .resource-list { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .action-grid { grid-template-columns: repeat(4, 1fr); }
  .hero { padding: 5rem 0 6rem; }
  .section { padding: 5.5rem 0; }
  .brand-logo { height: 52px; }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas: "brand nav";
    gap: 2rem 3rem;
  }
  .footer-brand { grid-area: brand; }
  .footer-nav { grid-area: nav; justify-content: flex-end; align-items: center; }
}

/* =========================================================
   New components (expansion)
   ========================================================= */

/* Screen-reader only ---------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Featured single photo (replaces the photo-grid on the home) */
.photo-feature {
  margin: 0.5rem 0 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.photo-feature img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1024 / 537;
  object-fit: cover;
}
.photo-feature figcaption {
  padding: 1rem 1.25rem 1.15rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}

/* Photo grid ----------------------------------------------- */
.photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
.photo-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.photo-card figcaption {
  padding: 1rem 1.25rem 1.15rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.photo-card figcaption strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.photo-credit {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.photo-credit a {
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
}

/* M-1 zoning steps ----------------------------------------- */
.zoning-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
.zoning-step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}
.zoning-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.zoning-step h3 { margin-bottom: 0.4rem; }
.zoning-step p { color: var(--color-text-muted); margin: 0; font-size: 0.97rem; }

/* Deep-dive topic blocks ---------------------------------- */
.topic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}
.topic:first-of-type { border-top: none; padding-top: 0.5rem; }
.topic-text h3 {
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.topic-text p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.65;
}
.topic-text p:last-child { margin-bottom: 0; }
.topic-text strong { color: var(--color-text); font-weight: 700; }
.topic-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.topic-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}
.topic-stat {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.big-num {
  font-size: clamp(2.25rem, 7vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.big-label {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* Map with houses ----------------------------------------- */
.map-frame {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.map-canvas {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #eef3ec 0%, #dfe7dc 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-canvas .map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 41, 59, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 59, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-road {
  position: absolute;
  background: rgba(60, 45, 25, 0.18);
}
.map-road-h { left: 0; right: 0; height: 6px; }
.map-road-v { top: 0; bottom: 0; width: 6px; }

.map-canvas .map-highlight {
  position: absolute;
  top: 36%; left: 32%;
  width: 36%; height: 30%;
  background: rgba(198, 58, 42, 0.22);
  border: 2px dashed var(--color-accent);
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0.4rem 0.55rem;
  z-index: 2;
}
.map-highlight-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  white-space: nowrap;
}
.map-houses { position: absolute; inset: 0; pointer-events: none; }
.house {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-bg-dark);
  border-radius: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.house.school {
  background: #2563eb;
  border-color: #1e40af;
  width: 18px; height: 18px;
}
.house.farm {
  background: #4a6b1f;
  border-color: #2e4313;
  width: 16px; height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
}
.legend-swatch {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 2px;
}
.legend-swatch.legend-site {
  background: rgba(198, 58, 42, 0.22);
  border: 2px dashed var(--color-accent);
}
.legend-swatch.legend-house {
  background: var(--color-bg-dark);
  transform: rotate(45deg);
}
.legend-swatch.legend-school {
  background: #2563eb;
}
.legend-swatch.legend-farm {
  background: #4a6b1f;
  border-radius: 50%;
}
.map-disclaimer {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
  font-style: italic;
}

/* ============================================================
   Sub-page (representatives.html)
   ============================================================ */

.page-hero {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
  padding: 3rem 0 3.5rem;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  margin-bottom: 1rem;
}
.page-hero .lede {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 0 0 1.75rem;
}
.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.back-link {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid transparent;
}
.back-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.contact-callouts {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.contact-callout {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.contact-callout-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.contact-callout p { margin: 0; line-height: 1.6; }
.contact-callout a { color: var(--color-text); border-bottom: 1px solid var(--color-border-dark); }
.contact-callout a:hover { color: var(--color-accent); border-color: var(--color-accent); }

.officials-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.official {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.official-role {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}
.official-name {
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}
.official-term {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}
.official-contact {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
.official-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.6rem 0.85rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-text);
  word-break: break-word;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.official-link:hover {
  border-color: var(--color-accent);
  background: #fff;
}
.official-link-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.official-link.compact {
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  background: var(--color-bg-soft);
}
.official-compact { padding: 1.25rem; }
.official-compact .official-name { font-size: 1.05rem; }

.bulk-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  transition: background 0.15s ease;
}
.bulk-email-link:hover { background: var(--color-accent-hover); }
.bulk-email-link .arrow { transition: transform 0.15s ease; }
.bulk-email-link:hover .arrow { transform: translateX(3px); }

.page-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 1.25rem 0 0;
}

/* Email template -------------------------------------------- */
.template {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.template-meta {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.template-meta p { margin: 0.2rem 0; color: var(--color-text-muted); }
.template-meta strong { color: var(--color-text); }
.template-body {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.4rem;
  font-family: inherit;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--color-text);
  white-space: pre-wrap;
  overflow-x: auto;
  margin: 0 0 1rem;
}
.template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.template-tip {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
  font-style: italic;
}

/* Meetings -------------------------------------------------- */
.meetings-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
.meeting {
  background: var(--color-bg-dark-2);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.meeting h3 { color: #fff; margin-bottom: 0.5rem; }
.meeting-when {
  color: var(--color-amber);
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}
.meeting-where {
  color: var(--color-text-on-dark-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.meeting-link {
  display: inline-block;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1px;
  font-size: 0.95rem;
}
.meeting-link:hover { color: var(--color-amber); border-color: var(--color-amber); }

/* Tablet & up ---------------------------------------------- */
@media (min-width: 640px) {
  .photo-grid {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
  }
  .photo-card-tall { grid-row: span 2; }
  .photo-card img { height: 240px; }
  .photo-card-tall img { height: 100%; min-height: 360px; }

  .zoning-grid { grid-template-columns: repeat(2, 1fr); }
  .topic { grid-template-columns: 2fr 1fr; gap: 2rem; padding: 2.5rem 0; }
  .topic-reverse { grid-template-columns: 1fr 2fr; }
  .topic-reverse .topic-text { order: 2; }
  .topic-reverse .topic-stat { order: 1; }

  .contact-callouts { grid-template-columns: repeat(3, 1fr); }
  .official-contact { grid-template-columns: 1fr 1fr; }
  .officials-grid { grid-template-columns: repeat(2, 1fr); }
  .meetings-grid { grid-template-columns: repeat(2, 1fr); }
  .map-canvas { aspect-ratio: 16 / 9; }
}

@media (min-width: 900px) {
  .photo-card img { height: 300px; }
  .photo-card-tall img { min-height: 460px; }
  .zoning-grid { grid-template-columns: repeat(4, 1fr); }
  .officials-grid { grid-template-columns: repeat(3, 1fr); }
  .official-contact { grid-template-columns: 2fr 1fr; }
  .map-canvas { aspect-ratio: 21 / 10; }
}

/* =========================================================
   Multi-page chrome (banner, sticky CTA, sub-page hero)
   ========================================================= */

/* Top banner — “meeting rail”: fixed above sticky nav */
.urgent-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background: var(--color-meeting-rail);
  color: #fff;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 14px rgba(200, 82, 42, 0.18);
}
.urgent-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.25rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.urgent-banner-text {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.urgent-banner-text::-webkit-scrollbar {
  display: none;
}
.urgent-banner-label {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.urgent-banner-message {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.28;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
  flex: 0 1 auto;
  min-width: 0;
}
.urgent-banner-message strong { font-weight: 700; }
.urgent-banner-sep {
  flex-shrink: 0;
  opacity: 0.85;
  font-weight: 500;
  user-select: none;
}
.urgent-banner-link {
  flex-shrink: 0;
  font-weight: 600;
  font-size: inherit;
  line-height: 1.28;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.urgent-banner-link:hover {
  color: #fff;
  text-decoration-thickness: 2px;
}
.urgent-banner-link:visited {
  color: rgba(255, 255, 255, 0.92);
}
.urgent-banner-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 2px;
}

@media (min-width: 640px) {
  .urgent-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.45rem 1.25rem;
  }
  .urgent-banner-text {
    flex: 0 1 auto;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.4rem;
    min-width: 0;
  }
  .urgent-banner-message {
    flex: 0 1 auto;
    min-width: 0;
  }
}

/* Sub-page hero (already partially defined; add variants) - */
.page-hero h1 .hero-no { color: var(--color-accent); }

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}
.page-hero-meta strong { color: var(--color-text); }

/* "What this means" / "Take action" / "Learn more" callout boxes */
.box {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.box-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.box p { margin: 0 0 0.75rem; }
.box p:last-child { margin-bottom: 0; }
.box ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.box li { margin-bottom: 0.4rem; }
.box-amber { border-left-color: var(--color-amber); }
.box-amber .box-tag { color: var(--color-amber); }
.box-soft { background: var(--color-bg-soft); }

/* Citation links --------------------------------------------*/
sup.cite { font-size: 0.72em; line-height: 0; }
sup.cite a {
  color: var(--color-accent);
  font-weight: 700;
  padding: 0 0.1em;
  border-bottom: 1px solid transparent;
}
sup.cite a:hover { border-color: currentColor; }

.footnotes {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.footnotes h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.footnotes ol {
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.footnotes li { margin-bottom: 0.6rem; }
.footnotes a {
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
  word-break: break-word;
}

/* "Next step" footer on every content page ---------------- */
.next-step {
  margin-top: 3rem;
  padding: 1.5rem 1.5rem 1.4rem;
  background: var(--color-bg-soft);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.next-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}
.next-step h3 {
  color: var(--color-text);
  font-size: 1.2rem;
  margin: 0;
}
.next-step p { margin: 0; color: var(--color-text-muted); font-size: 0.97rem; }
.next-step a.next-step-link {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: background 0.15s ease;
}
.next-step a.next-step-link:hover { background: var(--color-accent-hover); }
@media (min-width: 640px) {
  .next-step {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .next-step h3 { flex-shrink: 1; }
  .next-step a.next-step-link { margin-top: 0; flex-shrink: 0; }
}

/* Annotated images ----------------------------------------- */
.annotated-image {
  margin: 1.5rem 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.annotated-image img {
  display: block;
  width: 100%;
  height: auto;
}
.annotated-image figcaption {
  padding: 0.85rem 1.25rem 1rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
}
.annotated-image figcaption strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.image-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #eef3ec 0%, #dfe7dc 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  position: relative;
  padding: 1.5rem;
  text-align: center;
}
.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60, 45, 25, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 45, 25, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.image-placeholder-tag {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
}
.image-placeholder-text {
  position: relative;
  font-size: 0.95rem;
  max-width: 38ch;
}

/* Long-form text with sub-headings -------------------------- */
.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  scroll-margin-top: calc(var(--urgent-banner-offset) + var(--header-h) + 60px);
}
.prose h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  scroll-margin-top: calc(var(--urgent-banner-offset) + var(--header-h) + 60px);
}
.prose h2:first-child,
.prose h3:first-child { margin-top: 0; }
.prose p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.prose ul,
.prose ol {
  margin: 0.5rem 0 1.25rem;
  padding-left: 1.4rem;
  line-height: 1.7;
}
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--color-text); font-weight: 700; }
.prose blockquote {
  margin: 1.5rem 0;
  padding: 0.5rem 0 0.5rem 1.25rem;
  border-left: 3px solid var(--color-amber);
  color: var(--color-text-muted);
  font-style: italic;
}

/* Meetings page -------------------------------------------- */
.meetings-schedule .section-title {
  margin-bottom: 1.75rem;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 2px;
  background: var(--color-border);
}
.timeline-item {
  position: relative;
  padding: 0 0 1.75rem 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  background: var(--color-bg);
  border: 3px solid var(--color-border);
  border-radius: 50%;
  z-index: 1;
}
.timeline-item.is-past .timeline-marker { background: var(--color-text-muted); border-color: var(--color-text-muted); }
.timeline-item.is-upcoming .timeline-marker {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(198, 58, 42, 0.18);
}
.timeline-date {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}
.timeline-item.is-upcoming .timeline-date { color: var(--color-accent); }
.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--color-text);
  line-height: 1.35;
}
.timeline-body { color: var(--color-text-muted); margin: 0 0 0.5rem; font-size: 0.95rem; }
.timeline-body p { margin: 0 0 0.5rem; }
.timeline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.timeline-actions a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
}

/* Concern detail blocks (long form) ------------------------ */
.concern-detail {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}
.concern-detail:first-of-type { border-top: none; padding-top: 0.5rem; }
.concern-detail-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.concern-detail h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  scroll-margin-top: calc(var(--urgent-banner-offset) + var(--header-h) + 60px);
}
.concern-detail p { line-height: 1.7; }
.concern-detail .topic-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Resource categories -------------------------------------- */
.resource-cat-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 2rem 0 0.85rem;
  display: block;
}
.resource-cat-label:first-of-type { margin-top: 0; }



/* =========================================================
   Take Action — action blocks, meeting callout, rep cards
   ========================================================= */

.action-block { max-width: 920px; }
.action-step {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.action-block h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  margin-bottom: 0.5rem;
}
.action-summary {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-bottom: 1.5rem;
}
.action-after {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.action-after a { color: var(--color-accent); border-bottom: 1px solid currentColor; }

.btn-large {
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}

/* Featured "next meeting" callout ------------------------- */
.meeting-callout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.meeting-callout-date {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.meeting-callout-day {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}
.meeting-callout-num {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.01em;
  line-height: 1;
}
.meeting-callout-time {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}
.meeting-callout-body { display: flex; flex-direction: column; gap: 0.4rem; }
.meeting-callout-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}
.meeting-callout-body h3 { margin: 0; font-size: 1.25rem; }
.meeting-callout-where { margin: 0.1rem 0 0; color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.5; }
.meeting-callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

@media (min-width: 640px) {
  .meeting-callout {
    flex-direction: row;
    align-items: stretch;
    gap: 1.75rem;
    padding: 1.75rem;
  }
  .meeting-callout-date {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    border-right: 1px solid var(--color-border);
    padding-right: 1.75rem;
    min-width: 130px;
  }
  .meeting-callout-num { font-size: 2.4rem; }
}

/* Rep cards ----------------------------------------------- */
.rep-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
.rep-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.4rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.rep-card .rep-role {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}
.rep-card .rep-name {
  font-size: 1.2rem;
  margin: 0;
}
.rep-card .rep-note {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.93rem;
  line-height: 1.5;
}
.rep-contact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.15rem;
}
.rep-direct {
  font-size: 0.92rem;
  color: var(--color-text);
  word-break: break-word;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1px;
  width: fit-content;
}
.rep-direct:hover { color: var(--color-accent); border-color: var(--color-accent); }
.rep-card .btn {
  margin-top: auto;
  width: 100%;
  align-self: stretch;
  text-align: center;
}

@media (min-width: 700px) {
  .rep-grid { grid-template-columns: repeat(2, 1fr); }
  .rep-card .btn { width: auto; align-self: flex-start; }
}
@media (min-width: 1000px) {
  .rep-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Secondary actions list ---------------------------------- */
.section-secondary { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.secondary-actions {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.secondary-actions li {
  padding: 0.95rem 1.1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 0.97rem;
  line-height: 1.5;
}
.secondary-actions a { color: var(--color-accent); border-bottom: 1px solid currentColor; }
.secondary-actions a:hover { color: var(--color-accent-hover); }

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