/* Central District — community advocacy site
   Static, no build step. Hosted on Cloudflare Pages. */

:root {
  --ink: #16201f;
  --ink-soft: #3c4a48;
  --cream: #f6f1e7;
  --cream-2: #efe7d6;
  --teal: #1f6f6b;
  --teal-deep: #0c3b3a;
  --amber: #d2682f;
  --amber-2: #e8a33d;
  --line: #d9cfba;
  --card: #ffffff;
  --max: 1080px;
  --shadow: 0 10px 30px rgba(12, 59, 58, 0.10);
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; }

a { color: var(--teal); }

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

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-family: Georgia, serif; font-weight: 700; font-size: 1.05rem; letter-spacing: .3px; color: var(--teal-deep); text-decoration: none; }
.brand span { color: var(--amber); }
.nav-links { display: flex; gap: 22px; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-size: .95rem; font-weight: 600; }
.nav-links a:hover { color: var(--teal); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: flex-end;
  background-image:
    linear-gradient(180deg, rgba(12,59,58,.15) 0%, rgba(12,59,58,.45) 55%, rgba(12,59,58,.86) 100%),
    url("images/04262022_hendrixernestine_124344.webp");
  background-size: cover; background-position: center;
  color: #fff;
}
.hero .container { padding-top: 70px; padding-bottom: 60px; }
.kicker {
  display: inline-block;
  text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; font-weight: 700;
  background: var(--amber); color: #2a1404; padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 4rem); margin: 0 0 14px; max-width: 18ch; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero p.lede { font-size: clamp(1.05rem, 2.1vw, 1.35rem); max-width: 56ch; margin: 0; color: #f3ead9; }
.hero .cta-row { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-credit { margin: 22px 0 0; font-size: .76rem; color: rgba(243,234,217,.78); text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: .98rem;
  padding: 12px 22px; border-radius: 999px; transition: transform .08s ease, box-shadow .2s ease;
}
.btn-primary { background: var(--amber); color: #2a1404; box-shadow: var(--shadow); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn:hover { transform: translateY(-1px); }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-tag { text-transform: uppercase; letter-spacing: 2px; font-size: .78rem; font-weight: 700; color: var(--amber); margin: 0 0 10px; }
section h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin: 0 0 18px; color: var(--teal-deep); }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 62ch; }

.band { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-dark { background: var(--teal-deep); color: #eaf3f1; }
.band-dark h2 { color: #fff; }
.band-dark .lead { color: #cfe2df; }

/* needs / not-needs grids */
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 30px; }
@media (max-width: 760px) { .cols { grid-template-columns: 1fr; } }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 22px; box-shadow: var(--shadow); }
.panel.warn { border-top: 4px solid var(--amber); }
.panel.good { border-top: 4px solid var(--teal); }
.panel h3 { margin: 0 0 14px; font-size: 1.3rem; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { position: relative; padding: 8px 0 8px 32px; border-bottom: 1px dashed var(--line); }
.checklist li:last-child { border-bottom: 0; }
.checklist li::before { content: ""; position: absolute; left: 4px; top: 15px; width: 14px; height: 14px; border-radius: 4px; }
.checklist.need li::before { background: var(--teal); }
.checklist.reject li::before { background: var(--amber); transform: rotate(45deg); border-radius: 2px; }

/* ---------- Claims / The Case ---------- */
.claims { display: grid; gap: 22px; margin-top: 34px; }
.group-label {
  margin: 26px 0 0; font-family: Georgia, serif; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 1.6px; color: var(--amber);
  border-bottom: 2px solid var(--line); padding-bottom: 8px;
}
.group-label:first-child { margin-top: 0; }
.claim {
  background: var(--card); border: 1px solid var(--line); border-left: 5px solid var(--teal);
  border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow);
}
.claim h3 { margin: 0 0 8px; font-size: 1.22rem; color: var(--teal-deep); }
.claim p { margin: 0 0 14px; color: var(--ink-soft); }
.sources { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.source {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  background: var(--cream-2); border: 1px solid var(--line); color: var(--ink);
  font-size: .85rem; font-weight: 600; padding: 7px 13px; border-radius: 999px;
  transition: background .15s ease, border-color .15s ease;
}
.source:hover { background: #fff; border-color: var(--teal); }
.source .outlet { color: var(--teal); }
.source .arrow { opacity: .55; }

/* ---------- Footer ---------- */
.footer { background: var(--teal-deep); color: #cfe2df; padding: 48px 0 56px; }
.footer h3 { color: #fff; margin: 0 0 10px; }
.footer a { color: var(--amber-2); }
.footer .fine { font-size: .85rem; color: #9db8b5; margin-top: 22px; max-width: 70ch; }

.divider { height: 1px; background: var(--line); margin: 0; border: 0; }
