:root {
  --ink: #1c2b33;
  --ink-soft: #4f6169;
  --ground: #f2f7f6;
  --card: #ffffff;
  --teal: #106b5d;
  --teal-deep: #0b4a40;
  --teal-wash: #dcebe7;
  --amber: #b97a14;
  --amber-soft: #f7ead2;
  --line: #d5e2de;
  --night: #12312b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ground);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: var(--teal); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { max-width: 68rem; margin: 0 auto; padding: 0 1.25rem; }

/* Crisis strip */
.crisis-strip {
  background: var(--night);
  color: #e9f3ef;
  font-size: 0.9rem;
  padding: 0.55rem 0;
}
.crisis-strip .wrap {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1.5rem;
  align-items: center; justify-content: center; text-align: center;
}
.crisis-strip a { color: #ffd591; font-weight: 700; text-decoration: none; }
.crisis-strip a:hover { text-decoration: underline; }

/* Header */
header.site {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 0.75rem; padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--teal-deep); text-decoration: none;
}
.brand span { color: var(--amber); }
nav.main { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: 0.95rem; }
nav.main a { color: var(--ink-soft); text-decoration: none; font-weight: 600; padding: 0.2rem 0; }
nav.main a:hover, nav.main a[aria-current="page"] {
  color: var(--teal-deep);
  box-shadow: 0 2px 0 var(--amber);
}

/* Hero */
.hero { padding: 3.5rem 0 2.5rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); max-width: 21ch; }
.hero .lede {
  margin-top: 1rem; max-width: 58ch; font-size: 1.15rem; color: var(--ink-soft);
}
.open-line {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.4rem; font-weight: 700; color: var(--teal-deep); font-size: 0.95rem;
  background: var(--teal-wash); border-radius: 999px; padding: 0.4rem 1rem;
}
.open-line .dot {
  width: 0.6rem; height: 0.6rem; border-radius: 50%;
  background: var(--teal);
  animation: breathe 2.6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 107, 93, 0.45); }
  50% { box-shadow: 0 0 0 7px rgba(16, 107, 93, 0); }
}

/* Call cards */
.call-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.1rem; margin: 2rem 0 1rem;
}
.call-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: 0 1px 2px rgba(28, 43, 51, 0.05);
}
.call-card .for { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.call-card .number {
  display: block; font-family: "Fraunces", Georgia, serif;
  font-size: 2rem; font-weight: 600; color: var(--teal-deep);
  text-decoration: none; margin: 0.3rem 0 0.15rem;
  font-variant-numeric: tabular-nums;
}
.call-card .number:hover { color: var(--teal); }
.call-card .name { font-weight: 700; }
.call-card .always { color: var(--amber); font-size: 0.9rem; font-weight: 700; }
.call-card p { margin-top: 0.6rem; font-size: 0.95rem; color: var(--ink-soft); }
.call-card details { margin-top: 0.8rem; font-size: 0.95rem; }
.call-card summary { cursor: pointer; font-weight: 700; color: var(--teal); }
.call-card details ol { margin: 0.5rem 0 0 1.2rem; color: var(--ink-soft); }
.call-card details li { margin-bottom: 0.3rem; }

/* Sections */
section.band { padding: 2.8rem 0; }
section.band.alt { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section.band h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 0.5rem; }
section.band .kicker {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--amber); margin-bottom: 0.5rem;
}
section.band > .wrap > p { max-width: 62ch; color: var(--ink-soft); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: 1.1rem; margin-top: 1.6rem; }
.tile {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.3rem 1.25rem;
}
.band.alt .tile { background: var(--ground); }
.tile h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.tile p { font-size: 0.97rem; color: var(--ink-soft); }
.tile .go { display: inline-block; margin-top: 0.7rem; font-weight: 700; text-decoration: none; }
.tile .go::after { content: " \2192"; }
.tile ul { margin: 0.6rem 0 0 1.15rem; font-size: 0.97rem; color: var(--ink-soft); }
.tile li { margin-bottom: 0.35rem; }

/* Article pages */
article.page { padding: 3rem 0 1rem; }
article.page h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); max-width: 24ch; }
article.page .lede { margin: 1rem 0 0; max-width: 60ch; font-size: 1.12rem; color: var(--ink-soft); }
article.page section { margin-top: 2.4rem; max-width: 46rem; }
article.page h2 { font-size: 1.55rem; margin-bottom: 0.6rem; }
article.page h3 { font-size: 1.15rem; margin: 1.3rem 0 0.35rem; }
article.page p { margin-bottom: 0.9rem; color: #33434c; }
article.page ul, article.page ol { margin: 0 0 1rem 1.3rem; color: #33434c; }
article.page li { margin-bottom: 0.45rem; }
.callout {
  background: var(--amber-soft); border-left: 4px solid var(--amber);
  border-radius: 0 10px 10px 0; padding: 1rem 1.2rem; margin: 1.4rem 0;
}
.callout p { margin: 0; }
.callout a { font-weight: 700; }
.note {
  background: var(--teal-wash); border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0; padding: 1rem 1.2rem; margin: 1.4rem 0;
}
.note p { margin: 0; }

/* Footer */
footer.site {
  margin-top: 3.5rem; background: var(--night); color: #c4d8d1;
  padding: 2.5rem 0 2rem; font-size: 0.92rem;
}
footer.site .cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.8rem;
}
footer.site h2 { font-size: 1.05rem; color: #fff; margin-bottom: 0.6rem; font-family: "Public Sans", sans-serif; font-weight: 700; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 0.4rem; }
footer.site a { color: #9fd6c6; }
footer.site .fine {
  margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid #234a41;
  color: #8fa8a0; font-size: 0.85rem; max-width: 70ch;
}
