/* ─── Variables ─────────────────────────────── */
:root {
  --bg:        #f8f7f4;
  --text:      #000000;
  --muted:     #000000;
  --accent:    #000000;
  --link:      #000000;
}

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

/* ─── Base ───────────────────────────────────── */
html { font-size: 14px; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Times New Roman', Times, serif;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* ─── Main container ─────────────────────────── */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
  max-width: 360px;
}

/* ─── Profile image ──────────────────────────── */
.profile-img {
  width: 280px;
  height: auto;
}

/* ─── Name ───────────────────────────────────── */
h1 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: normal;
  font-size: 1.5rem;
  color: var(--text);
}

/* ─── Bio ────────────────────────────────────── */
.bio {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

/* ─── Bio link ───────────────────────────────── */
.bio a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
}
.bio a:hover {
  opacity: .6;
}

/* ─── Dark mode (auto) ───────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111110;
    --text: #ffffff;
  }
}
