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

:root {
  --bg:      #ffffff;
  --text:    #1a1a1a;
  --muted:   #666666;
  --accent:  #0066cc;
  --border:  #e0e0e0;
  --max-w:   680px;
  --gap:     2.5rem;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  padding: 3rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* =========================================
   Typography
   ========================================= */
h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

p, li {
  font-size: 1rem;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================================
   Header
   ========================================= */
header {
  margin-bottom: var(--gap);
}

header .tagline {
  color: var(--muted);
  margin-top: 0.25rem;
}

/* =========================================
   Sections  (modular — add/remove freely)
   ========================================= */
section {
  margin-bottom: var(--gap);
  padding-bottom: var(--gap);
  border-bottom: 1px solid var(--border);
}

section:last-of-type {
  border-bottom: none;
}

/* =========================================
   Links list
   ========================================= */
#links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

#links a {
  font-weight: 500;
}

/* =========================================
   Footer
   ========================================= */
footer {
  margin-top: var(--gap);
  font-size: 0.85rem;
  color: var(--muted);
}
