/* ===== ACCENT: EUCALYPTUS ===== */
:root {
  --accent: #5a9e8f;
  --accent-soft: #5a9e8f18;
  --accent-hover: #4b8a7c;
  --bg: #fafaf9;
  --text-primary: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-tertiary: #999999;
  --border-subtle: #f0f0ed;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 400;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}

/* ===== HERO / INTRO ===== */
.hero {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.avatar {
  width: 45%;
  flex-shrink: 0;
}
.hero-text p + p {
  margin-top: 1rem;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* ===== SECTIONS ===== */
.section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  white-space: nowrap;
}

/* ===== LINKS / CONTACT ===== */
.links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.links a {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
  padding: 0.15rem 0;
}
.links a:hover {
  color: var(--accent);
}
.links a .icon {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
}

/* ===== GENERAL LINKS ===== */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--accent-hover);
}

/* ===== FOOTER ===== */
.footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 520px) {
  .container { padding: 2rem 1.25rem 3rem; }
  .hero h1 { font-size: 1.65rem; }
  .hero { flex-direction: column; }
  .avatar { width: 100%; }
}
