@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --teal-950: #082f2c;
  --teal-850: #0e3b38;
  --teal-700: #1d5f5a;
  --teal-500: #3d827c;
  --water: #8fcdc4;
  --cream: #fbf8f1;
  --paper: #ffffff;
  --sand: #ead9bd;
  --sand-light: #f7f1e4;
  --clay: #b86645;
  --gold: #d9a441;
  --ink: #22312f;
  --muted: #51625f;
  --line: rgba(14, 59, 56, .16);
  --shadow: 0 12px 30px rgba(14, 59, 56, .10);
  --radius: 8px;
  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--display); line-height: 1.08; margin: 0; color: var(--teal-950); }
p { margin: 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--gold);
  color: var(--teal-950);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 47, 44, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 650;
  white-space: nowrap;
}
.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(143, 205, 196, .18);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 650;
}
.nav-links a:hover { color: #fff; }
.nav-links .pill {
  color: var(--teal-950);
  background: var(--gold);
  padding: 8px 13px;
  border-radius: 999px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
.hero {
  background:
    linear-gradient(120deg, rgba(8, 47, 44, .96), rgba(14, 59, 56, .88)),
    url('/og-image.jpg') center/cover;
  color: #fff;
  padding: 86px 0 78px;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  max-width: 860px;
}
.hero .lede {
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 720px;
  margin-top: 20px;
}
.hero-panel {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-panel b { color: #fff; }
.hero-panel p { color: rgba(255, 255, 255, .80); margin-top: 8px; }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.button.primary { background: var(--gold); color: var(--teal-950); }
.button.secondary { border-color: rgba(255, 255, 255, .45); color: #fff; }
.button.light { background: var(--teal-700); color: #fff; }
.button.line { border-color: var(--line); color: var(--teal-850); background: #fff; }

section { padding: 66px 0; }
.section-head { max-width: 780px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3 { font-size: 1.32rem; margin-bottom: 8px; }
.card p { color: var(--muted); }
.card a { color: var(--teal-700); font-weight: 800; text-decoration: none; }
.card a:hover { text-decoration: underline; }
.card .meta { color: var(--clay); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal-950);
  margin: 16px 0;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.district-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.district-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  text-decoration: none;
}
.district-card .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal-700);
  font-family: var(--display);
  font-weight: 650;
}
.district-card:nth-child(3n+1) .num { background: var(--clay); }
.district-card:nth-child(3n+2) .num { background: var(--teal-500); }
.district-card small { display: block; color: var(--muted); font-weight: 500; margin-top: 3px; }

.band { background: var(--sand-light); border-block: 1px solid var(--line); }
.issue-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.issue-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px 16px 46px;
  position: relative;
}
.issue-list li::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 20px;
  top: 24px;
}
.media-card {
  border-left: 4px solid var(--teal-500);
}
.media-card:nth-child(2) { border-left-color: var(--clay); }
.media-card .label {
  color: var(--clay);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.media-card h3 { margin-bottom: 10px; }
.media-card p + p { margin-top: 10px; }
.link-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.source-table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.source-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.source-table th,
.source-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.source-table th {
  color: var(--teal-950);
  background: var(--sand-light);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.source-table td {
  color: var(--muted);
  font-size: .94rem;
}
.source-table tr:last-child td { border-bottom: 0; }
.source-table a { color: var(--teal-700); font-weight: 800; text-decoration: none; }
.source-table a:hover { text-decoration: underline; }
.source-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--sand-light);
  color: var(--teal-850);
  font-size: .76rem;
  font-weight: 800;
  white-space: nowrap;
}

.district-action-panel {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.district-action-panel .section-head { margin-bottom: 20px; }
.district-action-panel .card {
  box-shadow: none;
  border-color: rgba(14, 59, 56, .18);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 22px;
}
.breadcrumbs a { color: var(--teal-700); font-weight: 800; text-decoration: none; }
.breadcrumbs span::before { content: '/'; margin-right: 8px; color: rgba(81, 98, 95, .55); }

.footer {
  background: var(--teal-950);
  color: rgba(255, 255, 255, .74);
  padding: 42px 0;
}
.footer a { color: #fff; text-decoration: none; font-weight: 700; }
.footer .foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer .links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; padding-block: 14px; }
  .nav-links { justify-content: flex-start; }
  .hero-inner, .grid.two, .grid.three, .district-grid { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
}

@media (max-width: 560px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: .84rem; }
  .hero { padding: 58px 0; }
  .hero-panel { padding: 18px; }
  .card { padding: 20px; }
}
