/* Hallmark · P4 H5 E4 S5 R5 V3 */
:root {
  --color-primary: #003399;
  --color-primary-hover: #002277;
  --color-accent: #c98a0c;
  --color-txt: #1a202c;
  --color-txt-secondary: #4a5568;
  --color-txt-muted: #3f4f63;
  --color-on-primary: #ffffff;
  --color-bg: #f5f7fa;
  --color-surface: #ffffff;
  --color-border: #e2e8f0;
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-sans: Inter, system-ui, sans-serif;
  --radius: 6px;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { color-scheme: light; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-txt);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-primary); }
a:hover { color: var(--color-primary-hover); }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
header, footer, main { width: min(42rem, calc(100% - 2rem)); margin-inline: auto; }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-txt);
  text-decoration: none;
}
.brand:hover { color: var(--color-primary); }
.back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-txt-secondary);
  text-decoration: none;
  font-size: 0.875rem;
}
.back:hover { color: var(--color-txt); text-decoration: underline; }
main { padding: 2.5rem 0 4rem; }
h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.kicker {
  margin: 0 0 2rem;
  color: var(--color-txt-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-wrap: balance;
}
p, li { text-wrap: pretty; }
p { margin: 0 0 0.85rem; color: var(--color-txt); }
ul { margin: 0 0 0.85rem; padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }
address { font-style: normal; }
footer {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0 2.5rem;
  color: var(--color-txt-muted);
  font-size: 0.8125rem;
}
footer p { margin: 0 0 0.75rem; color: var(--color-txt-muted); overflow-wrap: anywhere; }
footer nav { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
footer a {
  color: var(--color-txt-secondary);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
footer a:hover { color: var(--color-txt); text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
