:root {
  --green: #1a3c2e;
  --gold: #c8963e;
  --cream: #f7f3ed;
  --beige: #e8ddd0;
  --taupe: #8c7b6e;
  --ink: #1e293b;
  --font-display: "Montserrat", sans-serif;
  --font-body: "SUSE", sans-serif;
  --font-mono: "Geist Mono", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--green);
  background: var(--cream);
  line-height: 1.6;
}

section, .hero, .footer { padding: 120px 80px; }

img { vertical-align: middle; }

.kicker {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  margin-top: 12px;
}

.section-head { text-align: center; margin-bottom: 64px; }

/* ---------- hero ---------- */
.hero {
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.hero-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 8.3vw, 120px);
  line-height: 0.9;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.02em;
}
.hero-badge {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 4px;
}
.btn-resume {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  padding: 12px 24px;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-resume:hover { background: rgba(200, 150, 62, 0.12); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: #ffffff;
}
.stat-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.7;
}

/* ---------- about ---------- */
.about {
  background: var(--cream);
  display: flex;
  align-items: center;
  gap: 64px;
}
.about-photo {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.photo-ring {
  width: 240px;
  height: 240px;
  border: 6px solid var(--green);
  border-radius: 50%;
  overflow: hidden;
}
.photo-ring img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-caption {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}
.about-copy { flex: 1; }
.about-copy h2 { margin-top: 12px; }
.about-body {
  font-size: 20px;
  line-height: 1.6;
  color: var(--taupe);
  margin-top: 24px;
}
.about-highlights {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hl {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1.25;
}
.hl-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--beige);
  border: 3px solid var(--green);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- career (timeline + chart) ---------- */
.career { background: var(--gold); }
.career .section-head { color: var(--green); margin-bottom: 80px; }
.timeline {
  position: relative;
  display: flex;
  padding: 0 40px;
  margin: 0 auto;
  max-width: 1280px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 40px;
  height: 3px;
  background: rgba(26, 60, 46, 0.35);
}
.tl-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.tl-top {
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.tl-years {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  text-align: center;
}
.tl-dot {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: var(--green);
  border: 4px solid #ffffff;
}
.tl-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 8px;
  text-align: center;
}
.tl-role { font-family: var(--font-display); font-weight: 900; font-size: 14px; line-height: 1.25; }
.tl-org { font-weight: 700; font-size: 12px; opacity: 0.7; }
.tl-tag {
  background: var(--cream);
  border-radius: 100px;
  padding: 3px 8px;
  font-weight: 800;
  font-size: 10px;
  white-space: nowrap;
}
.rev-chart {
  background: var(--green);
  border-radius: 16px;
  padding: 40px;
  margin: 80px auto 0;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.rev-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--gold);
}
.rev-rows { display: flex; flex-direction: column; gap: 24px; }
.rev-row { display: flex; align-items: center; gap: 20px; }
.rev-acct {
  width: 70px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: #ffffff;
}
.rev-bars { flex: 1; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.d-group { display: inline-flex; gap: 2px; flex-wrap: wrap; }
.rev-arrow { margin: 0 2px; }
.rev-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: #ffffff;
  white-space: nowrap;
}

/* ---------- expertise ---------- */
.expertise { background: var(--cream); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}
.ex-card {
  background: var(--beige);
  border: 1px solid rgba(26, 60, 46, 0.08);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ex-top { display: flex; align-items: center; justify-content: space-between; }
.ex-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dots { display: inline-flex; gap: 4px; }
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.ex-title { font-family: var(--font-display); font-weight: 900; font-size: 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--cream);
  border: 1px solid rgba(26, 60, 46, 0.08);
  border-radius: 4px;
  padding: 4px 10px;
  font-weight: 600;
  font-size: 12px;
  color: var(--taupe);
}

/* ---------- philosophy ---------- */
.philosophy {
  background: var(--green);
  display: flex;
  align-items: center;
  gap: 80px;
}
.pop-col {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pop-frame {
  width: 340px;
  height: 440px;
  border: 12px solid var(--gold);
  border-radius: 8px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.13);
}
.pop-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pop-caption { text-align: center; }
.pop-name { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: #ffffff; }
.pop-role {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--gold);
}
.phil-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.philosophy blockquote {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 400;
}
.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.principle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 150, 62, 0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pr-head { display: flex; align-items: center; gap: 12px; }
.pr-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--gold);
}
.pr-body { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.8); }
.phil-close { font-style: italic; font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); }

/* ---------- projects ---------- */
.projects { background: var(--cream); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.project-card {
  background: var(--green);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 24px rgba(26, 60, 46, 0.25);
}
.pj-name { font-family: var(--font-mono); font-size: 18px; color: var(--gold); }
.pj-desc { font-size: 14px; color: #ffffff; opacity: 0.6; }
.pj-tech { font-family: var(--font-mono); font-size: 12px; color: #ffffff; opacity: 0.6; }
.pj-link {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ---------- footer ---------- */
.footer {
  background: var(--green);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.ft-name { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: #ffffff; }
.ft-email {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.5;
  text-decoration: none;
}
.ft-email:hover { opacity: 1; }
.ft-nav { display: flex; gap: 40px; }
.ft-nav a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.15s ease;
}
.ft-nav a:hover { color: var(--gold); }
.ft-social { display: flex; gap: 16px; }
.ft-social a { display: inline-flex; opacity: 0.9; transition: opacity 0.15s ease; }
.ft-social a:hover { opacity: 1; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  section, .hero, .footer { padding-left: 40px; padding-right: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  .hero-stats .stat { flex: 1 1 40%; }
  .about { flex-direction: column; }
  .about-copy { width: 100%; }
  .about-highlights { width: 100%; max-width: 480px; }
  .timeline { flex-wrap: wrap; gap: 32px 0; }
  .timeline::before { display: none; }
  .tl-item { flex: 1 1 25%; min-width: 160px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy { flex-direction: column; }
  .philosophy blockquote { font-size: 32px; }
  .projects-grid { grid-template-columns: 1fr; }
  h2 { font-size: 40px; }
}

@media (max-width: 720px) {
  section, .hero, .footer { padding: 80px 24px; }
  .hero-badge { font-size: 18px; text-align: center; }
  .hero-stats .stat { flex: 1 1 100%; }
  .about-photo { width: 100%; }
  .tl-item { flex: 1 1 100%; }
  .rev-row { flex-wrap: wrap; }
  .rev-acct { width: 100%; }
  .rev-val { width: 100%; }
  .expertise-grid { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .pop-frame { width: 100%; max-width: 340px; }
  .footer { flex-direction: column; }
  .ft-nav { flex-wrap: wrap; gap: 24px; justify-content: center; }
  h2 { font-size: 32px; }
}
