:root {
  --bg: #f4f2ec;
  --paper: #fbfaf6;
  --ink: #111111;
  --muted: #68665f;
  --line: #d9d5ca;
  --line-strong: #1a1a1a;
  --accent: #d6c800;
  --max: 860px;
  --wide: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,0) 24rem),
    var(--bg);
  color: var(--ink);
  font-family: "Aptos", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.64;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17,17,17,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.020) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,0) 54%);
}

::selection { background: var(--accent); color: var(--ink); }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 10;
  background: var(--ink);
  color: var(--paper);
  padding: .55rem .75rem;
}
.skip-link:focus { left: 1rem; }

.site-header {
  width: min(var(--wide), calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line-strong);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(170px, 21vw, 270px);
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
  padding: .45rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.measure {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: clamp(58px, 9vw, 112px) 0 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.01;
  letter-spacing: -0.057em;
  font-weight: 660;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.043em;
  font-weight: 640;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.18;
  letter-spacing: -0.028em;
  font-weight: 650;
}

.lede {
  max-width: 690px;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.52;
  letter-spacing: -0.024em;
  color: #24231f;
}

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

.axioms {
  padding: 62px 0 30px;
  border-top: 1px solid var(--line);
}

.axiom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.axiom-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 5vw, 72px);
  padding: 31px 0 32px;
  border-bottom: 1px solid var(--line);
}

.axiom-number {
  flex: 0 0 72px;
  display: block;
  padding-top: 6px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .24em;
  color: var(--muted);
  white-space: nowrap;
}

.axiom-copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 720px;
}

.axiom-copy h3 {
  margin-bottom: 12px;
}

.axiom-copy p,
.article p,
.closing p {
  color: #37352f;
}

.axiom-copy p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 15.5px;
  line-height: 1.68;
}

.closing {
  padding: 68px 0 92px;
}

.closing h2 { margin-bottom: 18px; }

.closing p { max-width: 700px; }

.text-link {
  display: inline-block;
  margin-top: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article {
  padding: clamp(62px, 9vw, 110px) 0 108px;
}

.article h1 {
  max-width: 760px;
  margin-bottom: 14px;
}

.dek {
  max-width: 650px;
  margin-bottom: 46px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.5;
  letter-spacing: -0.024em;
}

.article p:not(.eyebrow):not(.dek) {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.74;
  letter-spacing: -0.016em;
}

.article p + p { margin-top: 23px; }

.site-footer {
  width: min(var(--wide), calc(100% - 40px));
  margin: 0 auto;
  padding: 25px 0 38px;
  border-top: 1px solid var(--line-strong);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.site-footer p { margin: 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--ink); }

@media (max-width: 760px) {
  body { font-size: 15px; }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 24px;
    gap: 18px;
  }

  .brand img { width: min(250px, 74vw); }

  .site-nav { gap: 15px; }

  .hero { padding-top: 54px; }

  .axiom-item {
    display: block;
    padding: 27px 0 28px;
  }

  .axiom-number {
    padding-top: 0;
    margin-bottom: 12px;
  }

  .axiom-copy p,
  .article p:not(.eyebrow):not(.dek) {
    font-size: 16px;
  }

  .site-footer {
    flex-direction: column;
    gap: 10px;
  }
}
