:root {
  --navy: #1b2433;
  --navy-dark: #121824;
  --gold: #c6a75e;
  --gold-light: #e8dcc0;
  --sidebar-width: 300px;
  --text: #2f3542;
  --muted: #6b7280;
  --bg: #f7f8fa;
  --card: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4, .serif { font-family: "Playfair Display", Georgia, serif; }

#sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  background: #fff;
  border-right: 1px solid #eceff3;
  overflow-y: auto;
  z-index: 1000;
  padding: 2rem 1.5rem;
}

.sidebar-profile { text-align: center; margin-bottom: 1.5rem; }
.sidebar-profile img {
  width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem;
}
.sidebar-profile h2 { font-size: 1.5rem; margin: 0 0 .35rem; }
.sidebar-profile .role {
  color: var(--gold); font-size: .72rem; letter-spacing: 2px; font-weight: 700; text-transform: uppercase;
}
.sidebar-location { color: var(--muted); font-size: .9rem; margin-top: .5rem; }
.sidebar-social { display: flex; justify-content: center; gap: .6rem; margin: 1rem 0 1.5rem; }
.sidebar-social a {
  color: var(--navy); text-decoration: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); display: inline-flex; align-items: center; justify-content: center;
}
.sidebar-social a:hover { background: var(--gold-light); color: var(--navy); }

.sidebar-nav { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.sidebar-nav li { margin-bottom: .25rem; }
.sidebar-nav a {
  display: flex; align-items: center; gap: .65rem; padding: .65rem .85rem; border-radius: .5rem;
  color: var(--text); text-decoration: none; font-size: .95rem;
}
.sidebar-nav a i { color: var(--gold); width: 18px; }
.sidebar-nav a.active, .sidebar-nav a:hover { background: var(--gold-light); }

.btn-download {
  display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%;
  border: 1px solid var(--gold-light); background: #faf7f0; padding: .7rem 1rem; border-radius: 999px;
  text-decoration: none; color: var(--navy); margin-bottom: 1.5rem; font-weight: 600;
}
.btn-download:hover { border-color: var(--gold); background: var(--gold-light); }

.sidebar-skills h4 { font-size: .95rem; margin-bottom: .75rem; }
.skill-item { margin-bottom: .85rem; }
.skill-item .label { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: .25rem; }
.skill-item .bar { height: 6px; background: #eceff3; border-radius: 999px; overflow: hidden; }
.skill-item .bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), #d4b978); border-radius: 999px; }

.sidebar-quote {
  margin-top: 1.5rem; background: var(--navy); color: #fff; padding: 1.25rem; border-radius: .75rem;
  font-size: .85rem; line-height: 1.6;
}
.sidebar-quote .mark { color: var(--gold); font-size: 1.5rem; line-height: 1; }

#main { margin-left: var(--sidebar-width); min-height: 100vh; }

.topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem; background: #fff; border-bottom: 1px solid #eceff3; position: sticky; top: 0; z-index: 900;
}
.top-nav { display: flex; gap: 1.5rem; list-style: none; padding: 0; margin: 0; }
.top-nav a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.top-nav a:hover { color: var(--navy); }
.btn-talk {
  background: var(--navy); color: #fff; border: none; padding: .65rem 1.2rem; border-radius: 999px;
  text-decoration: none; display: inline-flex; align-items: center; gap: .45rem; font-size: .9rem;
}
.btn-talk:hover { background: var(--navy-dark); color: #fff; }

.section { padding: 3.5rem 2rem; }
.section-white { background: #fff; }
.section-title { margin-bottom: 2rem; }
.section-title h2 { font-size: 2rem; margin: 0 0 .35rem; }
.section-title p { color: var(--muted); margin: 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.section-head h2 { margin: 0; font-size: 2rem; }
.link-arrow { color: var(--navy); text-decoration: none; font-weight: 600; }
.link-arrow:hover { color: var(--gold); }

#hero { padding-top: 2rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
.hero-kicker { color: var(--gold); font-weight: 700; letter-spacing: 1px; font-size: .85rem; text-transform: uppercase; }
.hero-grid h1 { font-size: 2.75rem; line-height: 1.15; margin: .75rem 0; }
.hero-grid h1 em { font-style: normal; color: var(--navy); }
.hero-grid p { color: var(--muted); line-height: 1.7; max-width: 560px; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn-solid {
  background: var(--navy); color: #fff; padding: .75rem 1.35rem; border-radius: 999px; text-decoration: none;
}
.btn-solid:hover { background: var(--navy-dark); color: #fff; }
.btn-outline {
  border: 1px solid var(--navy); color: var(--navy); padding: .72rem 1.3rem; border-radius: 999px; text-decoration: none;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.hero-visual img { width: 100%; border-radius: 1rem; box-shadow: 0 20px 50px rgba(27,36,51,.12); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-box {
  background: #fff; border: 1px solid #eceff3; border-radius: .85rem; padding: 1.25rem; text-align: center;
}
.stat-icon {
  width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: .35rem; font-size: 1.15rem;
}
.stat-icon--1 { background: #ede9fe; color: #7c3aed; }
.stat-icon--2 { background: #dbeafe; color: #2563eb; }
.stat-icon--3 { background: #dcfce7; color: #16a34a; }
.stat-icon--4 { background: #ffedd5; color: #ea580c; }
.stat-box h3 { margin: .35rem 0 .15rem; font-size: 1.6rem; font-family: "Inter", sans-serif; }
.stat-box p { margin: 0; color: var(--muted); font-size: .85rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-box {
  background: #fff; border: 1px solid #eceff3; border-radius: .85rem; padding: 1.5rem 1.25rem;
}
.service-icon {
  width: 46px; height: 46px; border-radius: .65rem; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: .75rem;
}
.service-icon--1 { background: #ede9fe; color: #7c3aed; }
.service-icon--2 { background: #ffedd5; color: #ea580c; }
.service-icon--3 { background: #dcfce7; color: #16a34a; }
.service-icon--4 { background: #dbeafe; color: #2563eb; }
.service-box h4 { margin: 0 0 .5rem; font-size: 1.05rem; font-family: "Inter", sans-serif; font-weight: 700; }
.service-box p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.work-card { background: #fff; border-radius: .85rem; overflow: hidden; border: 1px solid #eceff3; }
.work-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.work-card .body { padding: 1rem 1.1rem 1.25rem; }
.work-card .tag { color: var(--gold); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.work-card h4 { margin: .35rem 0 0; font-size: 1.05rem; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.timeline { position: relative; padding-left: 1.25rem; border-left: 2px solid #eceff3; }
.edu-timeline { margin-top: .5rem; }
.timeline-item { margin-bottom: 1.5rem; position: relative; }
.timeline-item::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--gold);
  position: absolute; left: -1.35rem; top: .35rem;
}
.timeline-item h4 { margin: 0 0 .2rem; font-size: 1rem; }
.timeline-item .meta { color: var(--gold); font-size: .82rem; font-weight: 600; margin-bottom: .35rem; }
.timeline-item .org { color: var(--muted); font-size: .88rem; margin-bottom: .35rem; font-weight: 600; }
.exp-bullets { margin: .35rem 0 0; padding-left: 1.1rem; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.exp-bullets li { margin-bottom: .25rem; }

.list-card { background: #fff; border: 1px solid #eceff3; border-radius: .85rem; padding: 1.25rem; }
.list-row {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid #f0f2f5;
}
.list-row:last-child { border-bottom: none; }
.badge-live { background: #dcfce7; color: #166534; font-size: .72rem; padding: .2rem .55rem; border-radius: 999px; font-weight: 700; }
.badge-soon { background: #f3f4f6; color: #6b7280; font-size: .72rem; padding: .2rem .55rem; border-radius: 999px; font-weight: 700; }

.cta-band {
  background: var(--navy); color: #fff; border-radius: 1rem; padding: 2.5rem 2rem; text-align: center; margin: 0 2rem 2rem;
}
.cta-band i { font-size: 2rem; color: var(--gold); }
.cta-band h3 { font-size: 1.75rem; margin: .75rem 0; }
.btn-gold {
  background: var(--gold); color: var(--navy-dark); border: none; padding: .8rem 1.5rem; border-radius: 999px;
  text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: .4rem;
}
.btn-gold:hover { background: #d4b978; color: var(--navy-dark); }

.main-footer {
  text-align: center; color: var(--muted); font-size: .85rem; padding: 0 2rem 2rem;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-item { display: flex; gap: .85rem; margin-bottom: 1rem; }
.contact-item i { color: var(--gold); font-size: 1.25rem; }

.mobile-toggle {
  display: none; position: fixed; top: 1rem; right: 1rem; z-index: 1100;
  background: var(--navy); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%;
}

@media (max-width: 1200px) {
  .work-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
  #sidebar { transform: translateX(-100%); transition: .3s; }
  #sidebar.show { transform: translateX(0); }
  #main { margin-left: 0; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .top-nav { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
