/* ---------- Navbar ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 249, 245, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 15.5px; color: var(--ink-soft); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.btn-hire {
  background: var(--ink); color: #fff !important;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; transition: opacity .2s;
}
.btn-hire:hover { opacity: .85; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: 90px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--accent); font-size: 13px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 26px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.hero h1 { font-size: clamp(56px, 8vw, 104px); line-height: .98; font-weight: 800; letter-spacing: -.03em; }
.hero h1 .last { display: block; color: var(--muted); }
.hero .role { margin-top: 30px; font-size: clamp(22px, 2.4vw, 28px); font-weight: 700; letter-spacing: -.01em; }
.hero .tagline { margin-top: 22px; font-size: 19px; color: var(--ink-soft); max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-photo { border-radius: 28px; overflow: hidden; box-shadow: 0 24px 60px rgba(20, 20, 20, .12); }
.hero-photo img { display: block; width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about-copy p { font-size: 18.5px; color: var(--ink-soft); margin-bottom: 24px; max-width: 560px; }
.lets-talk {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent); font-weight: 700; font-size: 17px; margin-top: 6px;
}
.lets-talk svg { width: 18px; height: 18px; transition: transform .2s; }
.lets-talk:hover svg { transform: translateX(4px); }
.info-card { padding: 34px; display: flex; flex-direction: column; gap: 26px; }
.info-row { display: flex; gap: 18px; align-items: center; }
.info-row .k { font-weight: 700; font-size: 16.5px; }
.info-row .v { color: var(--ink-soft); font-size: 16px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.stat-card { padding: 30px 30px 26px; }
.stat-card svg { width: 26px; height: 26px; color: var(--accent); }
.stat-card .num { font-size: 38px; font-weight: 800; letter-spacing: -.02em; margin-top: 18px; }
.stat-card .lbl { color: var(--ink-soft); font-size: 15.5px; margin-top: 4px; }

/* ---------- Experience ---------- */
.timeline { position: relative; padding-left: 46px; }
.timeline::before {
  content: ""; position: absolute; left: 10px; top: 16px; bottom: 16px;
  width: 2px; background: var(--line);
}
.xp-card { position: relative; margin-bottom: 30px; padding: 36px 40px; }
.xp-card::before {
  content: ""; position: absolute; left: -45px; top: 36px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); border: 4px solid var(--bg);
}
.xp-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; cursor: pointer; }
.xp-head h3 { font-size: 26px; font-weight: 700; letter-spacing: -.01em; }
.xp-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 8px; font-size: 16px; }
.xp-meta .co { font-weight: 700; }
.xp-meta .sep { color: var(--muted); }
.xp-meta .soft { color: var(--ink-soft); }
.chev { flex: none; width: 22px; height: 22px; color: var(--ink-soft); transition: transform .25s; margin-top: 8px; }
.xp-card.open .chev { transform: rotate(180deg); }
.xp-body { display: none; margin-top: 24px; }
.xp-card.open .xp-body { display: block; }
.xp-body > p { color: var(--ink-soft); font-size: 17px; margin-bottom: 20px; }
.xp-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.xp-bullets li { position: relative; padding-left: 24px; font-size: 16.5px; }
.xp-bullets li::before {
  content: ""; position: absolute; left: 2px; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.proj { margin-bottom: 26px; }
.proj-name { position: relative; padding-left: 24px; font-weight: 700; font-size: 17.5px; margin-bottom: 10px; }
.proj-name::before {
  content: ""; position: absolute; left: 2px; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.proj-desc {
  border-left: 2px solid var(--line); margin-left: 5px; padding-left: 18px;
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px;
}
.proj-desc p { color: var(--ink-soft); font-size: 16.5px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; padding-left: 24px; }

/* ---------- Awards ---------- */
.award-card { overflow: hidden; }
.award-card img { display: block; width: 100%; height: auto; }

/* ---------- Skills ---------- */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.skill-card { padding: 30px; }
.skill-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.skill-head h3 { font-size: 21px; font-weight: 700; }
.skill-card .pill { background: #F1F0EA; font-size: 14.5px; padding: 8px 18px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.testi-card { padding: 36px; display: flex; flex-direction: column; }
.quote-mark {
  color: var(--accent); font-size: 52px; font-weight: 800;
  line-height: 1; font-family: Georgia, serif; margin-bottom: 18px;
}
.testi-card p { color: var(--ink-soft); font-size: 16px; flex: 1; }
.testi-foot {
  border-top: 1px solid var(--line); margin-top: 28px; padding-top: 22px;
  display: flex; align-items: center; gap: 14px;
}
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex: none;
}
.testi-foot .name { font-weight: 700; font-size: 15.5px; }
.testi-foot .role { color: var(--ink-soft); font-size: 14px; }

/* ---------- Contact ---------- */
.contact p.blurb { font-size: 19px; color: var(--ink-soft); max-width: 520px; margin-bottom: 44px; }
.contact-rows { display: flex; flex-direction: column; gap: 26px; }
.contact-row { display: flex; align-items: center; gap: 20px; }
.contact-row .icon {
  width: 56px; height: 56px; border-radius: 16px; background: #EFEEE8;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.contact-row .icon svg { width: 22px; height: 22px; color: var(--ink); }
.contact-row .k { color: var(--ink-soft); font-size: 15px; }
.contact-row .v { font-weight: 700; font-size: 17px; }
.contact-row a.v:hover { color: var(--accent); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 36px 0; }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot .logo { font-size: 19px; }
.foot .mid { color: var(--ink-soft); font-size: 15.5px; }
.foot .icons { display: flex; gap: 18px; }
.foot .icons a { display: flex; }
.foot .icons svg { width: 20px; height: 20px; color: var(--ink); }
.foot .icons a:hover svg { color: var(--accent); }
