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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #fafaf9;
  color: #1c1917;
  min-height: 100vh;
}

/* ── Nav ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 40px;
  z-index: 10;
}

.wordmark {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8a29e;
}

/* ── Hero ── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -1px;
  color: #1c1917;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero .role {
  font-size: clamp(14px, 1.8vw, 18px);
  color: #78716c;
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  font-style: italic;
}

.hero-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.hero-links a {
  font-size: 13px;
  color: #a8a29e;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.hero-links a:hover {
  color: #1c1917;
}

.dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d6d0ca;
  flex-shrink: 0;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: #d6d0ca;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── Bio ── */

.bio {
  max-width: 580px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.bio hr {
  border: none;
  border-top: 1px solid #e5e2dc;
  width: 60px;
  margin: 0 auto 60px;
}

.bio p {
  font-size: 17px;
  line-height: 1.8;
  color: #44403c;
  margin-bottom: 48px;
}

.now {
  font-size: 11px;
  color: #a8a29e;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.now-text {
  font-size: 15px;
  color: #78716c;
  font-style: italic;
}

/* ── Footer ── */

footer {
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid #e5e2dc;
}

footer span {
  font-size: 12px;
  color: #d6d0ca;
  letter-spacing: 1px;
}

/* ── Responsive ── */

@media (max-width: 480px) {
  nav {
    padding: 16px 24px;
  }

  .hero {
    padding: 80px 24px;
  }

  .hero-links {
    flex-direction: column;
    gap: 16px;
  }

  .dot {
    display: none;
  }

  .bio {
    padding: 60px 24px;
  }
}
