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

:root {
  --slate:      #1c2333;
  --slate-mid:  #2c3648;
  --slate-lt:   #3d4b63;
  --copper:     #c0703a;
  --copper-lt:  #d28c55;
  --copper-pale:#f0dfd0;
  --ink:        #1e1e1e;
  --muted:      #6b6f78;
  --divider:    #e4e0db;
  --bg:         #faf9f7;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 52px;
}

.nav-name {
  font-family: 'DM Serif Display', serif;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--copper-lt); }

.nav-links a.active { color: var(--copper-lt); }

.nav-ext {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav-ext a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35) !important;
  text-decoration: none;
  transition: color 0.2s !important;
}

.nav-ext a:hover { color: var(--copper-lt) !important; }

.nav-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}

/* ── UTILS ── */
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--divider);
}

.job-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: #eeece9;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  margin: 0.7rem 0 0.4rem;
}

ul.bullets { list-style: none; padding: 0; }
ul.bullets li {
  font-size: 13.5px;
  color: var(--ink);
  padding: 0.18rem 0 0.18rem 1.2rem;
  position: relative;
  line-height: 1.6;
}
ul.bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-size: 10px;
  top: 0.32rem;
}

/* ── FOOTER ── */
footer {
  background: var(--slate);
  text-align: center;
  padding: 1.8rem;
  font-size: 11.5px;
  color: rgba(190,195,210,0.4);
  letter-spacing: 0.04em;
  margin-top: 4rem;
}

footer a {
  color: var(--copper-lt);
  text-decoration: none;
}

/* ── RESPONSIVE NAV ── */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-ext { display: none; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 11px; }
}
