/* ==========================================================================
   The Colorado Hunting Guide — design system (DESIGN.md v1)
   One stylesheet, no framework, no JS dependency. A beautifully typeset field
   guide with a state agency's rigor and a book designer's restraint.
   Order: tokens · fonts · reset · type · layout · header · chrome ·
   components · calendar · open-now · outfitters · templates · footer ·
   responsive · print.
   ========================================================================== */

/* --- tokens ------------------------------------------------------------- */

:root {
  --paper: #f7f4ec;
  --ink: #1b211b;
  --muted: #5c6459;
  --rule: #e1dbcb;
  --pine: #2c4a38;
  --pine-deep: #1e3527;
  --sage: #7a8b6f;
  --blaze: #d95b14;
  --blaze-text: #a84508;
  --tint: #eef0e6;

  --serif: 'Libre Caslon Text', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

  --measure: 70ch;
  --gutter: 24px;
  --wide: 1120px;
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #131a15;
    --ink: #e8e4d8;
    --muted: #9aa394;
    --rule: #28322a;
    --pine: #8fbca0;
    --pine-deep: #a9d0b7;
    --sage: #8c9c80;
    --blaze: #f08a4b;
    --blaze-text: #f0a06b;
    --tint: #1b2620;
  }
}

/* --- fonts -------------------------------------------------------------- */

@font-face {
  font-family: 'Libre Caslon Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/libre-caslon-text-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Libre Caslon Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/libre-caslon-text-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/source-sans-3-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/source-sans-3-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
}

/* --- reset -------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* --- type --------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.006em;
  line-height: 1.2;
  margin: 0 0 var(--s2);
  text-wrap: balance;
}

h1 {
  font-size: 2.25rem;
  line-height: 1.12;
  margin-bottom: var(--s3);
}

h2 {
  font-size: 1.6rem;
  margin-top: var(--s5);
  padding-top: var(--s3);
  border-top: 1px solid var(--rule);
}

h3 {
  font-size: 1.3rem;
  margin-top: var(--s4);
}

h4 {
  font-size: 1.125rem;
  margin-top: var(--s3);
}

p,
ul,
ol,
dl {
  margin: 0 0 var(--s3);
}

li {
  margin-bottom: var(--s1);
}

li > ul,
li > ol {
  margin-top: var(--s1);
  margin-bottom: 0;
}

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

a:hover {
  color: var(--pine-deep);
}

strong {
  font-weight: 700;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: var(--s5) 0;
}

:focus-visible {
  outline: 2px solid var(--pine);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--paper);
  color: var(--pine);
  font-family: var(--sans);
  padding: var(--s2);
  z-index: 20;
}

.skip:focus {
  left: 0;
}

/* --- layout ------------------------------------------------------------- */

.page {
  max-width: var(--measure);
  margin: 0 auto;
  padding: var(--s5) var(--gutter) var(--s6);
}

/* Home and directory breathe wider than the 70ch reading measure. */
.tpl-home,
.tpl-directory {
  max-width: var(--wide);
}

/* --- header ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 2px color-mix(in srgb, var(--ink) 7%, transparent);
}

.hdr-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: var(--s2) var(--gutter);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s3);
  flex-wrap: wrap;
}

.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-the {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 400;
}

.brand:hover {
  color: var(--pine);
}

.site-header nav {
  display: flex;
  gap: var(--s3);
  font-family: var(--sans);
  font-size: 0.9375rem;
  flex-wrap: wrap;
}

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.site-header nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--rule);
}

.site-header nav a.emph {
  color: var(--pine);
  font-weight: 600;
}

.site-header nav a[aria-current='page'] {
  color: var(--ink);
  border-bottom-color: var(--blaze);
}

/* --- breadcrumb + verified badge ---------------------------------------- */

.crumb {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: var(--s2);
}

.crumb a {
  color: var(--muted);
  text-decoration: none;
}

.crumb a:hover {
  color: var(--pine);
  text-decoration: underline;
}

.crumb i {
  font-style: normal;
  padding: 0 0.5em;
  color: var(--rule);
}

.crumb span[aria-current] {
  color: var(--ink);
}

.verified {
  float: right;
  margin: 0 0 var(--s2) var(--s3);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.09em;
  color: var(--muted);
  white-space: nowrap;
}

.verified .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.5em;
  border-radius: 50%;
  background: var(--blaze);
  vertical-align: 0.05em;
}

/* --- answer box (component 4) ------------------------------------------- */

.answer {
  clear: both;
  background: var(--tint);
  border-left: 3px solid var(--pine);
  padding: var(--s3) var(--s3) calc(var(--s3) - 8px);
  margin: 0 0 var(--s4);
  font-size: 1.1875rem;
  line-height: 1.55;
}

.answer > p:last-child {
  margin-bottom: 0;
}

.tpl-home .answer,
.tpl-directory .answer {
  max-width: var(--measure);
}

/* --- source chip (component 5) + data literal --------------------------- */

.chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 1px 8px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  color: var(--muted);
  background: var(--paper);
  text-decoration: none;
  white-space: nowrap;
}

a.chip:hover {
  color: var(--pine);
  border-color: var(--pine);
}

.lit {
  font-family: var(--mono);
  font-size: 0.9em;
  font-variant-numeric: lining-nums tabular-nums;
}

/* --- callouts + deadline (component 7) ---------------------------------- */

.callout {
  margin: var(--s4) 0;
  padding: var(--s3);
  background: var(--tint);
  border-left: 3px solid var(--sage);
  font-size: 1rem;
}

.callout-warn {
  border-left-color: var(--blaze);
}

.callout > :last-child {
  margin-bottom: 0;
}

.callout h3 {
  margin-top: 0;
  font-size: 1.125rem;
}

.deadline {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  margin: var(--s4) 0;
  padding: var(--s3);
  background: var(--tint);
  border-left: 3px solid var(--blaze);
}

.deadline-date {
  flex: none;
  font-family: var(--mono);
  font-variant-caps: all-small-caps;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  color: var(--blaze-text);
  margin: 0;
  padding-top: 2px;
  white-space: nowrap;
}

.deadline-body > :last-child {
  margin-bottom: 0;
}

.deadline-body {
  font-size: 1rem;
}

/* --- figures, tables ---------------------------------------------------- */

.fig {
  margin: var(--s5) 0;
}

.fig figcaption {
  margin-top: var(--s2);
  font-family: var(--sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  margin: var(--s4) 0;
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.9375rem;
  background: var(--tint);
}

.data-table caption {
  caption-side: top;
  text-align: left;
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 0 0 var(--s1);
}

.data-table th,
.data-table td {
  text-align: left;
  padding: var(--s1) var(--s2);
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.data-table thead th {
  font-weight: 600;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}

.data-table .num {
  text-align: right;
  font-variant-numeric: lining-nums tabular-nums;
}

.data-table td.num,
.data-table td .lit {
  font-family: var(--mono);
}

.data-table .row-group th {
  font-family: var(--serif);
  font-weight: 700;
  font-variant-caps: normal;
  letter-spacing: 0;
  color: var(--ink);
  border-bottom-color: var(--rule);
  padding-top: var(--s2);
}

.data-table tbody th[scope='rowgroup'] {
  font-family: var(--serif);
  font-weight: 700;
  font-variant-caps: normal;
  letter-spacing: 0;
  color: var(--ink);
  font-size: 1rem;
  border-right: 1px solid var(--rule);
  white-space: nowrap;
}

/* --- FAQ ---------------------------------------------------------------- */

.faqs details {
  border-bottom: 1px solid var(--rule);
}

.faqs summary {
  cursor: pointer;
  padding: var(--s2) 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.125rem;
  list-style: none;
  display: flex;
  gap: var(--s2);
  align-items: baseline;
}

.faqs summary::-webkit-details-marker {
  display: none;
}

.faqs summary::before {
  content: '+';
  font-family: var(--sans);
  color: var(--blaze-text);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  flex: none;
  width: 0.75em;
}

.faqs details[open] summary::before {
  content: '\2212';
}

.faq-a {
  padding: 0 0 var(--s2) calc(0.75em + var(--s2));
}

.faq-a > :last-child {
  margin-bottom: 0;
}

/* --- sources, related --------------------------------------------------- */

.sources ul,
.related ul {
  list-style: none;
  padding: 0;
}

.sources {
  font-family: var(--sans);
  font-size: 0.9375rem;
}

.sources li {
  padding-left: 1.1em;
  text-indent: -1.1em;
  margin-bottom: var(--s2);
}

.sources li::before {
  content: '›';
  color: var(--sage);
  padding-right: 0.6em;
  font-weight: 600;
}

.sources .note {
  color: var(--muted);
  font-size: 0.875rem;
}

.related ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s3);
}

.related li {
  margin: 0;
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--rule);
}

.related li a {
  display: block;
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
}

.related li a:hover {
  text-decoration: underline;
}

.related li span {
  display: block;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 2px;
}

/* --- season calendar (component 1) -------------------------------------- */

.cal-fig {
  margin: var(--s4) 0 var(--s5);
}

.calendar {
  display: block;
  width: 100%;
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: var(--s2) var(--s1) var(--s1);
}

.cal-month {
  font-family: var(--sans);
  font-size: 12px;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.08em;
  fill: var(--muted);
}

.cal-species {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  fill: var(--ink);
}

.cal-method {
  font-family: var(--sans);
  font-size: 11px;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.05em;
  fill: var(--muted);
}

.cal-today {
  font-family: var(--sans);
  font-size: 10px;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.1em;
  fill: var(--blaze-text);
  font-weight: 600;
}

.cal-table {
  margin-top: var(--s3);
}

.cal-table summary {
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--pine);
  padding: var(--s1) 0;
}

/* --- region map (component 3, regions-only) ----------------------------- */

.rm-fig {
  margin: var(--s4) 0 var(--s5);
}

.regionmap {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.rm-label {
  font-family: var(--sans);
  font-size: 15px;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.07em;
  fill: var(--ink);
}

.rm-active {
  fill: var(--paper);
  font-weight: 600;
}

.regionmap a text {
  fill: var(--ink);
}

.regionmap a:hover path {
  fill: var(--pine);
  fill-opacity: 0.55;
}

.regionmap a:focus-visible {
  outline: 2px solid var(--pine);
}

/* --- open-now board (component 2) --------------------------------------- */

.open-now {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: var(--s4) 0;
}

.on-group {
  background: var(--paper);
  padding: var(--s3);
}

.on-species {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 var(--s2);
  padding-bottom: var(--s1);
  border-bottom: 1px solid var(--rule);
}

.on-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s2);
  padding: 5px 0;
  font-size: 0.9375rem;
}

.on-method {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 0.875rem;
}

.on-status {
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.05em;
  text-align: right;
  white-space: nowrap;
}

.on-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blaze);
  margin-right: 0.5em;
  vertical-align: 0.05em;
}

.on-open {
  color: var(--blaze-text);
  font-weight: 600;
}

.on-until {
  color: var(--muted);
  margin-left: 0.4em;
}

.on-soon {
  color: var(--pine);
}

.on-closed {
  color: var(--muted);
  opacity: 0.75;
}

.on-open .on-method {
  color: var(--ink);
}

/* Big single-line summary for the home strip + open-now hero. */
.now-summary {
  font-family: var(--serif);
  font-size: 1.375rem;
  line-height: 1.4;
  margin: 0 0 var(--s3);
}

.now-summary .now-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--blaze);
  margin-right: 0.4em;
  vertical-align: 0.08em;
}

.now-summary .lit {
  color: var(--blaze-text);
}

/* --- outfitter cards (component 8) -------------------------------------- */

.of-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s3);
  margin: var(--s4) 0;
}

.of-card {
  border: 1px solid var(--rule);
  padding: var(--s3);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.of-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 4px;
}

.of-place {
  margin: 0 0 var(--s2);
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
}

.of-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s2);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.of-tag {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.07em;
  color: var(--pine);
  background: var(--tint);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 1px 7px;
  margin: 0;
}

.of-reg {
  margin: auto 0 0;
  padding-top: var(--s2);
  border-top: 1px solid var(--rule);
  font-size: 0.8125rem;
}

.of-reg > div {
  display: flex;
  justify-content: space-between;
  gap: var(--s2);
  padding: 2px 0;
}

.of-reg dt {
  font-family: var(--sans);
  font-variant-caps: all-small-caps;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
}

.of-reg dd {
  margin: 0;
  text-align: right;
}

.of-verify {
  text-decoration: none;
  border-bottom: 1px dotted var(--pine);
}

.of-verified {
  color: var(--muted);
}

.of-site {
  margin: var(--s2) 0 0;
  font-family: var(--sans);
  font-size: 0.8125rem;
}

.of-site a {
  text-decoration: none;
  color: var(--pine);
}

.of-site a:hover {
  text-decoration: underline;
}

.of-empty {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--muted);
  background: var(--tint);
  padding: var(--s3);
  border-left: 3px solid var(--rule);
}

.region-blurb {
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 0;
}

/* --- home + hub template blocks ----------------------------------------- */

.lede {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: var(--s4);
  max-width: var(--measure);
}

.hub-list {
  list-style: none;
  padding: 0;
  margin: var(--s4) 0;
}

.hub-list li {
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--rule);
  margin: 0;
}

.hub-list li:first-child {
  border-top: 1px solid var(--rule);
}

.hub-list a {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.hub-list a:hover {
  text-decoration: underline;
}

.hub-list p {
  margin: var(--s1) 0 0;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: var(--measure);
}

/* Home hub grid — section cards. */
.hub-grid {
  list-style: none;
  padding: 0;
  margin: var(--s4) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.hub-grid li {
  margin: 0;
  padding: var(--s3);
  background: var(--paper);
}

.hub-grid a {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.hub-grid a:hover {
  text-decoration: underline;
}

.hub-grid p {
  margin: var(--s1) 0 0;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--muted);
}

.label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.11em;
  color: var(--muted);
  margin-bottom: var(--s1);
}

/* Home hero + topo motif (component 11). */
.hero-topo {
  display: block;
  width: 100%;
  height: 40px;
  margin: var(--s3) 0 var(--s4);
  color: var(--rule);
}

.section-topo {
  display: block;
  width: 100%;
  height: 26px;
  margin: var(--s5) 0 0;
  color: var(--rule);
}

/* --- capture (component 10) --------------------------------------------- */

.capture {
  max-width: var(--wide);
  margin: 0 auto var(--s6);
  padding: var(--s4);
  border: 1px solid var(--rule);
  background: color-mix(in srgb, var(--tint) 55%, var(--paper));
}

.capture h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  font-size: 1.3rem;
}

.capture p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: var(--s3);
  max-width: var(--measure);
}

.capture-form {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
}

.capture-form input[type='email'] {
  flex: 1 1 16rem;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 10px 12px;
  border: 1px solid var(--muted);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
}

.capture-form button {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid var(--pine);
  border-radius: 2px;
  background: var(--pine);
  color: var(--paper);
  cursor: pointer;
}

.capture-form button:hover {
  background: var(--pine-deep);
  border-color: var(--pine-deep);
}

.capture-form button:disabled {
  opacity: 0.6;
  cursor: default;
}

.capture-msg:empty {
  display: none;
}

.capture-msg {
  font-family: var(--sans);
  font-size: 0.9375rem;
  margin: var(--s2) 0 0;
}

.hp {
  position: absolute;
  left: -9999px;
}

/* --- footer ------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--rule);
  background: color-mix(in srgb, var(--tint) 55%, var(--paper));
  font-family: var(--sans);
  font-size: 0.9375rem;
}

.foot-map {
  max-width: var(--wide);
  margin: 0 auto;
  padding: var(--s5) var(--gutter) var(--s3);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--s4);
}

.foot-map h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 var(--s2);
  font-weight: 600;
}

.foot-map h3 a {
  color: var(--muted);
  text-decoration: none;
}

.foot-map h3 a:hover {
  color: var(--pine);
}

.foot-map ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-map li {
  margin-bottom: 6px;
}

.foot-map a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.875rem;
}

.foot-map a:hover {
  color: var(--pine);
  text-decoration: underline;
}

.foot-end {
  max-width: var(--wide);
  margin: 0 auto;
  padding: var(--s3) var(--gutter) var(--s5);
  border-top: 1px solid var(--rule);
}

.foot-brand {
  font-family: var(--serif);
  font-size: 1.0625rem;
  margin: 0 0 var(--s2);
}

.tilde {
  color: var(--sage);
  padding: 0 0.35em;
}

.foot-end nav {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s3);
}

.foot-end nav a {
  color: var(--pine);
  text-decoration: none;
}

.foot-end nav a:hover {
  text-decoration: underline;
}

.fineprint {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 90ch;
}

/* --- responsive --------------------------------------------------------- */

@media (max-width: 44rem) {
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .page {
    padding-top: var(--s4);
  }
  .verified {
    float: none;
    margin-left: 0;
  }
  .hdr-inner {
    gap: var(--s1);
  }
  .site-header nav {
    gap: var(--s2);
    font-size: 0.875rem;
  }
  .capture {
    padding: var(--s3);
  }
  .now-summary {
    font-size: 1.1875rem;
  }
}

/* --- print -------------------------------------------------------------- */

@media print {
  .site-header,
  .capture,
  .foot-map,
  .skip {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }
  .page {
    max-width: none;
  }
  a {
    color: #000;
  }
  .answer {
    border-left: 3px solid #000;
  }
  .calendar,
  .of-card,
  .open-now {
    break-inside: avoid;
  }
}
