:root {
  --navy: #12314d;
  --navy-deep: #0b2136;
  --cream: #faf7f1;
  --ink: #1c2530;
  --muted: #5a6672;
  --accent: #b3562b;
  --rule: #dcd4c7;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
}

.wrap {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 4.5rem 0 3.5rem;
  border-bottom: 5px solid var(--accent);
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9fb6cb;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 9vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.tagline {
  margin: 0.75rem 0 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e3b294;
}

.lede {
  margin: 1.75rem 0 0;
  font-size: 1.15rem;
  color: #dfe7ee;
  max-width: 34rem;
}

/* ── Sections ─────────────────────────────────────────────────────────── */

.section {
  padding: 3.25rem 1.5rem;
}

.section + .section {
  border-top: 1px solid var(--rule);
}

h2 {
  margin: 0 0 1.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--navy-deep);
}

p {
  margin: 0 0 1.15rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
  color: var(--navy-deep);
}

.issue + .issue {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--rule);
}

/* ── Closing ──────────────────────────────────────────────────────────── */

.closing {
  text-align: center;
}

.ask {
  font-size: 1.5rem;
  color: var(--navy-deep);
}

.contact {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--navy);
}

.hero a {
  color: #e3b294;
}

/* ── Footer ───────────────────────────────────────────────────────────── */

footer {
  background: var(--navy-deep);
  color: #8ba2b8;
  padding: 1.75rem 0;
}

.disclaimer {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ── 404 ──────────────────────────────────────────────────────────────── */

.notfound {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 480px) {
  body {
    font-size: 18px;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .section {
    padding: 2.5rem 1.5rem;
  }
}
