:root {
  color-scheme: light dark;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f5f2;
  color: #171815;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 5%, rgba(81, 116, 96, .12), transparent 28rem),
    #f6f5f2;
}

a { color: inherit; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: .14em; }
a:focus-visible { outline: 3px solid #245f46; outline-offset: 4px; border-radius: 2px; }

header, main, footer {
  width: min(100% - 2rem, 58rem);
  margin-inline: auto;
}

header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 2rem;
  border-bottom: 1px solid #d8d8d0;
}

.wordmark { font-weight: 780; letter-spacing: .16em; text-decoration: none; }
.context, .eyebrow { color: #596059; font-size: .86rem; }
.eyebrow { margin: 0 0 .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

main { padding-block: clamp(2.5rem, 7vw, 5.5rem); }
.hero { max-width: 43rem; }
h1 { margin: 0; font-size: clamp(2.7rem, 9vw, 5.6rem); line-height: .96; letter-spacing: -.05em; }
h2 { margin: 0; font-size: clamp(1.25rem, 3vw, 1.6rem); }
h3 { margin: 0; font-size: 1rem; }
p { line-height: 1.62; }
.lede { color: #4f554f; font-size: clamp(1.06rem, 2.4vw, 1.3rem); }

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-block: 3rem;
  padding: 1.4rem;
  border: 1px solid #bfd0c3;
  border-radius: 1rem;
  background: rgba(236, 246, 238, .72);
}

.notice p { margin: .35rem 0 0; }
.status-dot { width: .8rem; height: .8rem; margin-top: .35rem; border-radius: 50%; background: #28734e; box-shadow: 0 0 0 .3rem rgba(40, 115, 78, .13); }
.services { display: grid; gap: .85rem; margin-top: 1rem; }
.services article, .help { padding: 1.25rem; border: 1px solid #d8d8d0; border-radius: 1rem; background: rgba(255, 255, 255, .6); }
.service-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.badge { padding: .3rem .55rem; border-radius: 999px; background: #e6e8e2; color: #3e453f; font-size: .76rem; font-weight: 700; white-space: nowrap; }
.services p, .help p { margin-bottom: 0; color: #505650; }
.help { margin-top: 2.5rem; }

footer {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  padding-block: 1.5rem 2.5rem;
  border-top: 1px solid #d8d8d0;
  color: #596059;
  font-size: .85rem;
}

@media (prefers-color-scheme: dark) {
  :root { background: #111410; color: #f0f1ec; }
  body { background: radial-gradient(circle at 85% 5%, rgba(81, 148, 108, .14), transparent 28rem), #111410; }
  header, footer, .services article, .help { border-color: #343a34; }
  .context, .eyebrow, .lede, .services p, .help p, footer { color: #b7beb6; }
  .notice { border-color: #355b43; background: rgba(30, 60, 42, .5); }
  .services article, .help { background: rgba(24, 28, 23, .75); }
  .badge { background: #29332b; color: #dbe4da; }
  a:focus-visible { outline-color: #78c99a; }
}

@media (max-width: 34rem) {
  header { align-items: flex-start; flex-direction: column; }
  .service-heading { align-items: flex-start; flex-direction: column; gap: .6rem; }
}

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