:root {
  --bg: #101114;
  --surface: #16181d;
  --text: #e8e6e1;
  --text-dim: #9a978f;
  --accent: #e8833a;
  --rule: #2a2d34;
}

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

html {
  height: 100%;
}

body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
}

main {
  width: 100%;
  max-width: 640px;
  padding: 18vh 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.wordmark {
  font-size: clamp(40px, 10vw, 58px);
  line-height: 1;
  white-space: nowrap;
}

.wm-rlm {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.wm-labs {
  font-weight: 200;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

.wm-dot {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  margin-left: 0;
  background: var(--accent);
}

.tagline {
  margin-top: 14px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dim);
}

.contact {
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--surface);
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact a {
  color: var(--text);
  font-size: 17px;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}

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

footer {
  margin-top: auto;
  padding-top: 48px;
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  gap: 8px;
}

@media (max-width: 480px) {
  main {
    padding-top: 12vh;
  }
}
