:root {
  --bg: #0b0d10;
  --fg: #f5f3ef;
  --muted: #8a8f96;
  --accent: #c8553d;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Lexend", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

header {
  flex: 0 0 auto;
}

.wordmark {
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 1.05rem;
  color: var(--fg);
}

.hero {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 0;
}

.hero h1 {
  font-weight: 400;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  margin: 0;
  max-width: 22ch;
}

.tagline {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}

.contact {
  margin: 1rem 0 0 0;
  font-size: 1rem;
}

.contact a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.15s ease;
}

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

footer {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
