*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; color-scheme: light; }
body { margin: 0; }
button { font: inherit; color: inherit; }
button:focus-visible,
a:focus-visible { outline: 2px solid currentColor; outline-offset: 6px; }
svg { display: block; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
:root {
  --paper: #f5f4f0;
  --ink: #262725;
  --muted: #545652;
  --rule: #d5d6cf;
  --font-body: "Satoshi", "Segoe UI", sans-serif;
  --font-display: "Satoshi", "Segoe UI", sans-serif;
  --text-sm: clamp(.875rem, .85rem + .12vw, 1rem);
  --text-base: clamp(1rem, .97rem + .16vw, 1.125rem);
  --text-hero: clamp(2.5rem, 1.75rem + 3.9vw, 5.25rem);
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}
html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #1c1e1c;
  --ink: #edeee7;
  --muted: #b9bcb3;
  --rule: #484c45;
}
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    color-scheme: dark;
    --paper: #1c1e1c;
    --ink: #edeee7;
    --muted: #b9bcb3;
    --rule: #484c45;
  }
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
}
.page {
  width: min(100%, 86rem);
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 6vw, var(--space-24));
}
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-12);
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: .075em;
}
.brand svg { width: 30px; height: 30px; }
.theme {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.theme:hover { border-color: var(--rule); }
.theme:active { background-color: var(--rule); }
.theme[hidden] { display: none; }
main { padding-block: clamp(var(--space-16), 9.5vw, var(--space-32)); }
h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.08;
  max-width: 21ch;
  margin: 0 0 var(--space-16);
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.detail {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-24);
  align-items: start;
}
.description {
  color: var(--muted);
  margin: 0;
  max-width: 62ch;
  text-wrap: pretty;
}
.areas { list-style: none; padding: 0; margin: 0; }
.areas li {
  font-size: var(--text-sm);
  line-height: 1.5;
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--rule);
}
.areas li:first-child { border-top: 1px solid var(--rule); }
.skip {
  position: absolute;
  top: var(--space-2);
  left: var(--space-6);
  background: var(--paper);
  color: var(--ink);
  padding: var(--space-3);
  transform: translateY(-200%);
  z-index: 2;
}
.skip:focus { transform: translateY(0); }
@media (max-width: 760px) {
  .masthead { padding-block: var(--space-6); }
  h1 { margin-bottom: var(--space-10); max-width: 16ch; }
  .detail { grid-template-columns: minmax(0, 1fr); gap: var(--space-10); }
  .areas { max-width: 32rem; }
}
@media print {
  .theme, .skip { display: none; }
  body { background: white; color: black; }
  .description { color: black; }
  main { padding-block: var(--space-12); }
}
