:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #6b6b6b;
  --hair: #e4e4e4;
  --max: 1120px;
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- top bar ---- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}

.mark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

/* ---- shared label ---- */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- hero ---- */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero-inner {
  max-width: 900px;
}

.hero .eyebrow {
  display: block;
  margin-bottom: 28px;
}

h1 {
  font-size: clamp(2.75rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.lede {
  margin-top: 28px;
  max-width: 30ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---- inner page content ---- */
.page {
  flex: 1;
  padding-top: 80px;
  padding-bottom: 96px;
}

.page h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 14px 0 48px;
}

.prose {
  max-width: 58ch;
}

.prose h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 40px 0 10px;
}

.prose p,
.prose li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.prose p + p {
  margin-top: 14px;
}

.prose ul {
  margin: 12px 0 0 18px;
}

.prose li {
  margin-bottom: 6px;
}

.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-rows {
  margin-top: 8px;
  display: grid;
  gap: 28px;
}

.contact-rows .row .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.contact-rows .row a,
.contact-rows .row p {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
}

.contact-rows .row a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- footer ---- */
.foot {
  border-top: 1px solid var(--hair);
  padding: 28px 0 36px;
}

.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  align-items: baseline;
  justify-content: space-between;
}

.foot .legal {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.foot .meta {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.foot .meta a {
  color: var(--muted);
  text-decoration: none;
}

.foot .meta a:hover {
  color: var(--ink);
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }

  .topbar {
    padding-top: 24px;
  }

  .nav {
    gap: 20px;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero .eyebrow {
    margin-bottom: 20px;
  }

  .lede {
    margin-top: 20px;
  }

  .page {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .page h2 {
    margin: 10px 0 32px;
  }

  .prose h3 {
    margin: 28px 0 8px;
  }

  .foot-inner {
    flex-direction: column;
    gap: 12px;
  }

  .foot {
    padding: 24px 0 32px;
  }
}
