:root {
  --bg: #000;
  --ink: #fff;
  --muted: #8a8a8a;
  --line: rgba(255,255,255,0.12);
  --max: 960px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
}
.brand img { width: 28px; height: 28px; }
nav { display: flex; gap: 24px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}
nav a:hover, nav a:focus-visible { color: var(--ink); }
.hero {
  padding: 140px 0 100px;
  text-align: center;
}
.hero img {
  width: 88px;
  height: 88px;
  margin: 0 auto 40px;
}
.wordmark {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 400;
  letter-spacing: 0.22em;
  margin: 0;
  text-transform: uppercase;
}
.contact {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact span { color: var(--muted); font-size: 14px; }
.contact a {
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
}
.contact a:hover { text-decoration: underline; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0 56px;
  color: var(--muted);
  font-size: 12px;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); }
.legal { display: flex; gap: 16px; }
.page { padding: 80px 0; max-width: 560px; }
.page h1 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.page p { color: var(--muted); }
.page a { color: var(--ink); }
@media (max-width: 640px) {
  .hero { padding: 88px 0 72px; }
}
