:root {
  --enamel: #f3ede0;
  --enamel-deep: #e6dcc9;
  --board: #fbf7ee;
  --ink: #191512;
  --ink-soft: #574c42;
  --oxblood: #7c1d26;
  --oxblood-deep: #5c1119;
  --mint: #2f8e78;
  --brass: #b3862c;
  --chrome: #b9bfc4;
  --rule: rgba(25, 21, 18, 0.16);
  --rule-strong: rgba(25, 21, 18, 0.34);
  --shadow-board: 0 2px 0 rgba(25, 21, 18, .12), 0 18px 48px rgba(25, 21, 18, .18);
  --shadow-row: 0 1px 0 rgba(25, 21, 18, .08);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font-display: "Alfa Slab One", "Rockwell", "Courier New", Georgia, serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-height: 100svh;
  background: var(--enamel);
  background-image:
    radial-gradient(90% 60% at 50% 0%, rgba(255, 255, 255, .7), transparent 70%),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(25, 21, 18, .022) 3px 4px);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .005em;
}

p {
  margin: 0;
}

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

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

.eyebrow {
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.muted {
  color: var(--ink-soft);
}

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