@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=DM+Mono:wght@400;500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg: #faf8f4;
  --surface: #f2ede4;
  --border: #ddd8cc;
  --text: #1c1a17;
  --muted: #7a7265;
  --accent: #2d6a4f;
  --accent-light: #e8f5ee;
  --link: #2d6a4f;
  --mono: 'DM Mono', monospace;
  --serif: 'Lora', serif;
  --sans: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.65;
  min-height: 100vh;
}

.container { max-width: 680px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav { padding: 28px 0 0; margin-bottom: 56px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--mono); font-size: 0.85rem; color: var(--muted); text-decoration: none; letter-spacing: 0.04em; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { font-size: 0.88rem; color: var(--muted); text-decoration: none; font-family: var(--mono); letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero { margin-bottom: 64px; animation: fadeUp 0.7s ease both 0.05s; }
.hero-photo { width: 88px; height: 88px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; margin-bottom: 28px; }
h1.hero-name { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; line-height: 1.2; margin-bottom: 6px; letter-spacing: -0.02em; }
.tagline { font-family: var(--mono); font-size: 0.82rem; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px; }
.bio-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.bio-bullets li { font-size: 0.97rem; display: flex; align-items: baseline; gap: 10px; }
.bio-bullets .emoji { font-size: 1rem; flex-shrink: 0; }
.bio-bullets a { color: var(--link); text-decoration: underline; text-decoration-color: #b7d9c8; text-underline-offset: 3px; transition: text-decoration-color 0.2s; }
.bio-bullets a:hover { text-decoration-color: var(--accent); }

/* Socials */
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1px solid var(--border); border-radius: 99px; font-family: var(--mono); font-size: 0.76rem; color: var(--muted); text-decoration: none; background: var(--bg); transition: border-color 0.2s, color 0.2s, background 0.2s; letter-spacing: 0.02em; }
.social-pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* Divider */
.divider { border: none; border-top: 1px solid var(--border); margin: 52px 0 40px; }

/* Section label */
.section-label { font-family: var(--mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 28px; }

/* Placeholder / empty state */
.placeholder {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 40px 28px;
  text-align: center;
  background: var(--surface);
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both 0.1s;
}
.placeholder-emoji { font-size: 1.8rem; margin-bottom: 12px; }
.placeholder-text { font-size: 0.95rem; color: var(--muted); line-height: 1.7; max-width: 420px; margin: 0 auto; }
.placeholder-text a { color: var(--link); text-decoration: underline; text-decoration-color: #b7d9c8; text-underline-offset: 3px; }
.placeholder-text a:hover { text-decoration-color: var(--accent); }

/* About */
.post-content { font-size: 0.97rem; line-height: 1.8; }
.post-content p { margin-bottom: 1.2em; }
.post-content h2 { font-family: var(--serif); font-size: 1.3rem; margin: 1.6em 0 0.6em; }
.post-content ul { margin: 0 0 1.2em 1.4em; }
.post-content li { margin-bottom: 0.4em; }
.post-content a { color: var(--link); text-decoration: underline; text-decoration-color: #b7d9c8; text-underline-offset: 3px; }
.post-content a:hover { text-decoration-color: var(--accent); }

/* Footer */
footer { padding: 36px 0 48px; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: var(--mono); font-size: 0.75rem; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-family: var(--mono); font-size: 0.75rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  h1.hero-name { font-size: 1.8rem; }
}
