:root {
  --bg: #090909;
  --fg: #f2f2ee;
  --muted: #a6a6a1;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.page-shell {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(24px, 4vw, 64px);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8vh 0 4vh;
}

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: .92;
  text-transform: lowercase;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 32px);
  margin-top: clamp(36px, 6vw, 72px);
}

.socials a {
  width: 27px;
  height: 27px;
  color: var(--fg);
  opacity: .8;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  opacity: 1;
  transform: translateY(-3px);
}

.socials a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
  border-radius: 2px;
}

.socials svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: clamp(.68rem, 1.4vw, .82rem);
  letter-spacing: .02em;
}

footer p { margin: 0; }

@media (max-width: 520px) {
  .page-shell { padding: 22px 18px 26px; }
  h1 { font-size: clamp(3.3rem, 19vw, 5.7rem); }
  .socials { gap: 21px; }
  .socials a { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .socials a { transition: none; }
}
