:root {
  --charcoal: #0F1113;
  --ivory: #F5F2EA;
  --amber: #E6A23C;
  --amber-on-light: #8C5A0E;
  --muted-light: #60615D;
  --line-light: rgba(15, 17, 19, .16);
  --shell: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --font: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--ivory); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
::selection { color: var(--charcoal); background: var(--amber); }

:focus-visible {
  outline: 2px solid var(--amber-on-light);
  outline-offset: 4px;
  border-radius: 3px;
}

.shell {
  width: min(var(--shell), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -64px;
  left: 16px;
  padding: 10px 14px;
  color: var(--ivory);
  background: var(--charcoal);
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.header {
  color: var(--charcoal);
  background: var(--ivory);
  border-bottom: 1px solid var(--line-light);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { width: auto; height: 48px; object-fit: contain; }

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0 7px;
  border-bottom: 1px solid currentColor;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-contact::after { content: "↗"; color: var(--amber-on-light); }
.nav-contact:hover { color: var(--amber-on-light); }

main { padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 8vw, 96px); }

h1, h2, p, ul { margin-top: 0; }

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 710;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--amber-on-light);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.updated {
  margin-bottom: 44px;
  color: var(--muted-light);
  font-size: .82rem;
  letter-spacing: .02em;
}

.prose { max-width: 720px; }

.prose h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 690;
}

.prose p, .prose li {
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.7;
}
.prose p { margin-bottom: 16px; }
.prose ul { margin-bottom: 16px; padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--charcoal); font-weight: 650; }

.prose a {
  color: var(--amber-on-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  color: var(--muted-light);
  font-size: .7rem;
  line-height: 1.7;
}

.footer-logo { width: auto; height: 58px; object-fit: contain; }
.footer-legal { text-align: right; }

.footer-link {
  display: inline-block;
  margin-top: 4px;
  /* keeps the target at least 24px tall (WCAG 2.2 SC 2.5.8) */
  padding: 3px 0;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
}
.footer-link:hover {
  color: var(--amber-on-light);
  border-color: var(--amber-on-light);
}

@media (max-width: 860px) {
  .footer { grid-template-columns: 1fr; align-items: start; }
  .footer-legal { text-align: left; }
}

@media (max-width: 520px) {
  :root { --pad: 20px; }
  .nav { min-height: 68px; }
  .nav-logo { height: 41px; }
  .nav-contact span { display: none; }
  .nav-contact::before { content: "Contact"; }
  .footer-logo { height: 50px; }
}
