:root {
  --bg: #f7f4ee;
  --ink: #1f2933;
  --muted: #5f6b76;
  --line: #ded8ce;
  --card: #ffffff;
  --accent: #1f4f46;
  --accent-soft: #dfece8;
  --gold: #b78338;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

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

.hero {
  min-height: 88vh;
  background:
    radial-gradient(circle at top right, rgba(183, 131, 56, 0.18), transparent 32%),
    linear-gradient(135deg, #f7f4ee 0%, #eef3f1 100%);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px 110px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.45rem, 7vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.intro {
  max-width: 760px;
  font-size: 1.16rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 82px 24px;
  border-bottom: 1px solid var(--line);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(31, 41, 51, 0.05);
}

.stat {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  margin-bottom: 10px;
  color: var(--accent);
}

.stat-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.copy {
  color: var(--muted);
  font-size: 1.03rem;
}

.copy p:last-child {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 18px;
}

.role {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.role-heading {
  margin-bottom: 16px;
}

.role-heading p {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  color: var(--muted);
}

li:last-child {
  margin-bottom: 0;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills-grid span {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.92rem;
}

.education {
  border-bottom: none;
}

.contact {
  text-align: center;
  background: var(--accent);
  color: white;
  border-radius: 34px;
  margin-bottom: 80px;
  border-bottom: none;
}

.contact .eyebrow,
.contact p {
  color: rgba(255,255,255,0.78);
}

.contact h2 {
  margin-bottom: 12px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.contact-links a {
  color: white;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 10px 14px;
}

.contact-links a:hover {
  background: rgba(255,255,255,0.1);
}

footer {
  text-align: center;
  color: var(--muted);
  padding: 24px;
  font-size: 0.86rem;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 52px 20px 76px;
  }

  .section {
    padding: 58px 20px;
  }

  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .role {
    padding: 22px;
  }

  .contact {
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 18px 20px;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 2.75rem;
  }

  .intro {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    font-size: 1.65rem;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-links a {
    width: 100%;
  }
}
