/* HSH Design — reset & base typography */

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

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
}

body {
  font-family: 'Archivo', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, figure, form { margin: 0; }

a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { color: var(--lime); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

button { font: inherit; }

img, svg { display: block; max-width: 100%; }

.mono {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

.mono-label {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 14px;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: 15px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-head .section-head__meta {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--muted);
  white-space: nowrap;
}

.band .section-head { border-bottom-color: var(--on-band); }
.band .section-head .section-head__meta { color: var(--band-muted); }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: top .15s ease;
}
.skip-link:focus { top: 16px; color: var(--paper); }
