:root {
  --paper: #fbfaf7;
  --ink-1: rgba(22, 19, 15, 0.92);
  --ink-2: rgba(22, 19, 15, 0.64);
  --ink-3: rgba(22, 19, 15, 0.64);
  --hairline: rgba(22, 19, 15, 0.14);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  color-scheme: light;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/fonts/instrument-sans-var.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
}

::selection {
  background: rgba(22, 19, 15, 0.1);
}

:focus-visible {
  outline: 1.5px solid var(--ink-1);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  background: var(--ink-1);
  color: var(--paper);
}

.skip-link:focus {
  top: 1rem;
}

a {
  color: var(--ink-2);
  font-weight: 500;
  text-decoration-color: var(--hairline);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 120ms var(--ease), text-decoration-color 120ms var(--ease);
}

a:hover {
  color: var(--ink-1);
  text-decoration-color: var(--ink-1);
}

.label {
  color: var(--ink-3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 16px;
  text-transform: uppercase;
}

.masthead,
main,
.foot-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding-inline: clamp(24px, 6vw, 64px);
}

.masthead {
  padding-top: 36px;
}

.masthead a {
  display: inline-block;
}

.wordmark-img {
  display: block;
  width: 121px;
  height: 40px;
}

main {
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(80px, 11vw, 140px);
}

.title-block,
.policy {
  max-width: 66ch;
}

h1 {
  max-width: 18ch;
  margin-top: 12px;
  color: var(--ink-1);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.dates {
  margin-top: 20px;
}

.policy {
  margin-top: clamp(56px, 7vw, 80px);
}

section {
  border-top: 1px solid var(--hairline);
  padding-block: 40px;
}

h2 {
  margin-bottom: 20px;
  color: var(--ink-1);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

p + p,
p + ul,
ul + p {
  margin-top: 16px;
}

ul {
  padding-left: 1.25em;
}

li + li {
  margin-top: 8px;
}

strong {
  color: var(--ink-1);
  font-weight: 600;
}

.contact {
  color: var(--ink-3);
  font-size: 14px;
}

footer {
  border-top: 1px solid var(--hairline);
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 48px;
  padding-top: 40px;
  padding-bottom: 56px;
}

footer a {
  color: var(--ink-3);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 600px) {
  .foot-inner {
    flex-direction: column;
  }
}
