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

/* ─── Palette ────────────────────────────────────────────── */
:root {
  --bg:      #0e1510;
  --text:    #e8dfc8;
  --muted:   #8fa88e;
  --accent:  #4a7c59;
  --hi:      #a3c4a8;
}

/* ─── Base ───────────────────────────────────────────────── */
html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

/* ─── Layout ─────────────────────────────────────────────── */
main {
  width: 100%;
  max-width: 560px;
}

/* ─── Header ─────────────────────────────────────────────── */
header {
  margin-bottom: 2rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.location {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
}

header::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background-color: var(--accent);
  margin-top: 1.25rem;
}

/* ─── Bio ────────────────────────────────────────────────── */
.bio {
  margin-bottom: 2.5rem;
}

.bio p {
  color: var(--text);
  font-size: 0.975rem;
  max-width: 48ch;
}

/* ─── Contact ────────────────────────────────────────────── */
.contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact a {
  color: var(--hi);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

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

.sep {
  color: var(--accent);
  font-size: 0.875rem;
  user-select: none;
}
