:root {
  --paper: #f3f1eb;
  --ink: #11110f;
  --muted: #716f68;
  --rule: #c9c5bb;
  --accent: #9d1d20;
  --page-pad: clamp(1.25rem, 4vw, 4rem);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.site-header,
main,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  padding: 1.5rem var(--page-pad);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-size: 0.82rem;
  color: var(--muted);
}

.hero {
  min-height: calc(100svh - 88px);
  padding: clamp(3rem, 8vw, 7rem) var(--page-pad) clamp(4rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 4rem;
  border-bottom: 1px solid var(--rule);
}

.hero-mark {
  align-self: start;
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 0.74;
  font-weight: 750;
  letter-spacing: -0.085em;
}

.hero-mark span {
  display: block;
}

.hero-mark span:last-child {
  margin-left: 0.45em;
}

.hero-copy {
  max-width: 42rem;
  padding-bottom: 0.75rem;
}

.eyebrow,
.section-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.eyebrow {
  color: var(--accent);
  margin: 0 0 1.5rem;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 560;
}

.section {
  padding: clamp(4rem, 9vw, 9rem) var(--page-pad);
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 3rem;
  border-bottom: 1px solid var(--rule);
}

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

.section-body {
  max-width: 58rem;
}

.section-body p {
  margin: 0 0 1.8rem;
  max-width: 46rem;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

.section-body .statement {
  max-width: 32ch;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.compact {
  max-width: 40rem;
}

.site-footer {
  padding: 2rem var(--page-pad) 3rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer strong {
  color: var(--ink);
  font-weight: 600;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

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

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 5rem;
  }

  .hero-mark {
    font-size: clamp(5rem, 27vw, 9rem);
  }

  .hero-mark span:last-child {
    margin-left: 0.28em;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-meta {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .nav {
    gap: 0.9rem;
  }

  .nav a:nth-child(2) {
    display: none;
  }
}
