:root {
  --ink: #151817;
  --muted: #626864;
  --paper: #f3f1e8;
  --line: #b9bcb5;
  --accent: #f2c94c;
  --chrome: #111315;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.site-header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 64px;
  background: var(--chrome);
  color: #f8f6ef;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  color: inherit;
  text-decoration: none;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 34px;
  place-items: center;
  background: var(--accent);
  color: var(--ink);
  font-family: Consolas, monospace;
  font-size: 12px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-left: 1px solid #343836;
  color: inherit;
  font-family: Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #242826;
  color: var(--accent);
  outline: none;
}

main {
  width: min(920px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 0 70px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(38px, 7vw, 76px);
  line-height: .95;
  text-transform: uppercase;
}

h2 {
  margin: 38px 0 10px;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
}

p, li { font-size: 16px; }
a { color: #7a5a00; font-weight: 700; }
.intro { max-width: 760px; color: #303633; font-size: 18px; }
.content-panel {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fffdf4;
}

.content-panel:first-of-type { margin-top: 0; }
.note {
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: #fff9d9;
  color: #3b3e3b;
}

.site-footer {
  padding: 22px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 720px) {
  .site-header { display: block; }
  .brand { min-height: 58px; }
  .site-nav { justify-content: flex-start; border-top: 1px solid #343836; }
  .site-nav a { min-height: 42px; }
  main { padding-top: 30px; }
  .content-panel { padding: 18px; }
}
