:root {
  --navy: #1f3a5f;
  --navy-deep: #142a47;
  --navy-soft: #2a4d7a;
  --accent: #c9a24a;
  --ink: #1a1f2b;
  --ink-soft: #404756;
  --muted: #6a7385;
  --line: #e3e7ee;
  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-deep: #0f1d33;
  --radius: 10px;
  --max: 1080px;
  --shadow-sm: 0 1px 2px rgba(20,30,55,.05);
  --shadow-md: 0 10px 30px rgba(20,30,55,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-soft); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--navy);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav__links a { color: var(--ink-soft); }
.nav__links a:hover { color: var(--navy); }
.nav__cta {
  background: var(--navy);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background .15s ease;
}
.nav__cta:hover { background: var(--navy-deep); }

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,162,74,.15), transparent 60%),
    linear-gradient(180deg, #0f1d33 0%, #14264a 50%, #1f3a5f 100%);
  color: #fff;
  padding: 96px 24px 120px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 -1px 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero__eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.hero__name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.05;
  margin: 0 0 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero__tag {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,.78);
  margin: 0 0 28px;
  font-weight: 500;
  letter-spacing: .2px;
}
.hero__lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(255,255,255,.88);
  max-width: 720px;
  margin: 0 0 40px;
  line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: #1a1408 !important;
}
.btn--primary:hover { background: #d6b25f; }
.btn--ghost {
  border-color: rgba(255,255,255,.35);
  color: #fff !important;
  background: transparent;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn__icon { font-size: 16px; }
.btn--ghost .btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  font-size: 11px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.5px;
}

/* ---------- SECTIONS ---------- */
.section { padding: 96px 24px; }
.section--alt { background: var(--bg-alt); }
.section--contact { background: var(--bg-deep); color: #fff; }
.section__inner { max-width: var(--max); margin: 0 auto; }
.section__inner--narrow { max-width: 820px; }

.section__eyebrow {
  margin: 0 0 14px;
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
}
.section--contact .section__eyebrow { color: var(--accent); }
.section__eyebrow--mt { margin-top: 64px; }
.section__title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  margin: 0 0 40px;
  font-weight: 700;
  color: inherit;
  letter-spacing: -0.3px;
}
.section--contact .section__title { color: #fff; }
.section--sans .section__title { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; letter-spacing: -0.2px; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.about-grid p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.about-grid__lead { color: var(--ink); }
@media (max-width: 720px) { .about-grid { grid-template-columns: 1fr; } }

.pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillars li {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.pillars li:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pillars h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
}
.pillars p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.65; }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- TIMELINE ---------- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 200px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
}
.role {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 28px 0;
  position: relative;
}
.role::before {
  content: "";
  position: absolute;
  left: 195px;
  top: 36px;
  width: 11px;
  height: 11px;
  background: var(--accent);
  border: 2px solid var(--bg-alt);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--navy);
}
.role__meta {
  text-align: right;
  padding-right: 8px;
}
.role__dates {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .3px;
}
.role__company {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.role__location {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.role__title {
  margin: 0 0 10px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.2px;
}
.role__overview {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.7;
}
.role__bullets {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}
.role__bullets li {
  margin: 0 0 8px;
  line-height: 1.65;
  font-size: 14.5px;
}
.role__bullets li::marker { color: var(--accent); }
.role--compact .role__overview { font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 800px) {
  .timeline::before { display: none; }
  .role { grid-template-columns: 1fr; gap: 14px; padding: 24px 0; border-bottom: 1px solid var(--line); }
  .role::before { display: none; }
  .role__meta { text-align: left; padding-right: 0; }
  .role:last-child { border-bottom: 0; }
}

/* ---------- EDUCATION ---------- */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.edu {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px;
  box-shadow: var(--shadow-sm);
}
.edu__year {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}
.edu h3 {
  margin: 0 0 4px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px;
  color: var(--navy);
}
.edu__loc { margin: 0 0 12px; color: var(--muted); font-size: 14px; }
.edu__degree { margin: 0; color: var(--ink); font-weight: 500; }
@media (max-width: 720px) { .edu-grid { grid-template-columns: 1fr; } }

.activities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.activities li {
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14.5px;
}
@media (max-width: 720px) { .activities { grid-template-columns: 1fr; } }

/* ---------- CONTACT ---------- */
.contact__lede {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin: 0 0 40px;
  line-height: 1.7;
}
.contact__methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff !important;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}
.contact__card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}
.contact__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.contact__value { font-size: 16px; font-weight: 500; }
.contact__card--accent {
  background: var(--accent);
  color: #1a1408 !important;
  border-color: var(--accent);
}
.contact__card--accent .contact__label { color: rgba(26,20,8,.6); }
.contact__card--accent:hover { background: #d6b25f; border-color: #d6b25f; }
@media (max-width: 720px) { .contact__methods { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
.footer {
  padding: 28px 24px;
  background: #08111f;
  color: rgba(255,255,255,.6);
  font-size: 13.5px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: #fff; }

/* ---------- RESPONSIVE NAV ---------- */
@media (max-width: 640px) {
  .nav__links { gap: 14px; font-size: 13.5px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .hero { padding: 72px 24px 96px; }
  .section { padding: 72px 24px; }
}
