/* colinger.com — base styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-hover: #161616;
  --border: #1e1e1e;
  --border-hover: #2a2a2a;
  --text: #e8e3dc;
  --text-muted: #7a7265;
  --text-dim: #4a4540;
  --accent: #c17f3e;
  --accent-light: #d4944f;
  --accent-dim: rgba(193, 127, 62, 0.12);
  --accent-glow: rgba(193, 127, 62, 0.06);
  --font-body: 'Inter', sans-serif;
  --font-head: 'Oswald', sans-serif;
  --radius: 6px;
  --radius-lg: 10px;
  --transition: 0.2s ease;
  --max-w: 900px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after { content: ''; display: block; height: 1px; width: 48px; background: var(--accent); opacity: 0.4; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* --- Hero --- */
#hero { padding: 120px 0 100px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
#hero::before { content: ''; position: absolute; top: -100px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); pointer-events: none; }
.hero-eyebrow { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; font-weight: 500; }
.hero-name { font-family: var(--font-head); font-size: clamp(52px, 9vw, 88px); font-weight: 600; line-height: 0.95; letter-spacing: -0.02em; color: var(--text); margin-bottom: 20px; }
.hero-name span { color: var(--accent); }
.hero-title { font-size: clamp(18px, 2.5vw, 22px); font-weight: 400; color: var(--text-muted); margin-bottom: 8px; }
.hero-tagline { font-size: clamp(14px, 2vw, 16px); color: var(--text-dim); margin-bottom: 40px; font-style: italic; }
.hero-links { display: flex; gap: 16px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 500; transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { background: var(--accent-light); color: #0a0a0a; }
.btn-outline { border: 1px solid var(--border-hover); color: var(--text-muted); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* --- About --- */
.about-body { max-width: 680px; }
.about-body p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px; line-height: 1.75; }
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { color: var(--text); font-weight: 500; }

/* --- Experience Timeline --- */
.timeline-item { display: grid; grid-template-columns: 200px 1fr; gap: 0 32px; margin-bottom: 56px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-period { font-size: 13px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.05em; line-height: 1.4; margin-bottom: 4px; }
.timeline-location { font-size: 12px; color: var(--text-muted); opacity: 0.8; }
.timeline-company { font-family: var(--font-head); font-size: 22px; font-weight: 500; color: var(--text); margin-bottom: 2px; letter-spacing: 0.01em; }
.timeline-role { font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 14px; letter-spacing: 0.04em; }
.timeline-bullets { list-style: none; padding: 0; }
.timeline-bullets li { font-size: 14px; color: var(--text-muted); padding: 4px 0 4px 16px; position: relative; line-height: 1.6; }
.timeline-bullets li::before { content: '—'; position: absolute; left: 0; color: var(--accent); opacity: 0.5; font-size: 12px; top: 5px; }
.timeline-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
