@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/space-grotesk-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/space-grotesk-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/space-mono-400-latin.woff2") format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/space-mono-700-latin.woff2") format('woff2');
}

:root {
  --paper: #b9b9b2;
  --ink: #111111;
  --ink-muted: #55534e;
  --font-sans: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--paper); }

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--ink);
}

.site-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

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

.site-nav__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.site-nav__link:hover { border-bottom-color: var(--ink); }

/* ---------- Hero ---------- */
main { flex: 1; }

.main--center { display: flex; align-items: center; }

.hero { padding: 72px 0 64px; }

.hero__eyebrow { margin-bottom: 40px; display: block; }

.hero__headline {
  font-size: clamp(40px, 9.5vw, 150px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 56px;
}

.hero__headline .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.hero__headline .outline .solid {
  color: var(--ink);
  -webkit-text-stroke-width: 0;
}

.hero__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: end;
  border-top: 1px solid var(--ink);
  padding: 20px 0 56px;
}

.hero__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 44ch;
}

.hero__mail { text-align: right; }

.hero__actions {
  text-align: center;
}

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}

.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--paper); color: var(--ink); }

/* ---------- Legal ---------- */
.legal { padding: 72px 0 64px; }

.legal__headline {
  font-size: clamp(32px, 6vw, 80px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 56px;
}

.legal__section {
  border-top: 1px solid var(--ink);
  padding: 20px 0 40px;
  max-width: 60ch;
}

.legal__section .meta { display: block; margin-bottom: 24px; }

.legal__section p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.legal__section p:last-child { margin-bottom: 0; }

.legal__section strong { color: var(--ink); font-weight: 700; }

.legal__section a { border-bottom: 1px solid var(--ink-muted); }
.legal__section a:hover { border-bottom-color: var(--ink); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--ink); }

.site-footer__legal {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.site-footer__legal a { border-bottom: 1px solid var(--ink-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__row { grid-template-columns: 1fr; }
  .hero__mail { text-align: left; }
}

@media (max-width: 720px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .site-header__inner { padding: 14px 20px; }
  .site-footer__legal { padding: 14px 20px; }
}