:root {
  --bg: #f6f3ee;
  --bg-alt: #efe8dc;
  --ink: #1c1917;
  --muted: #57534e;
  --card: #fffdf8;
  --line: #e7e0d4;
  --accent: #0f766e;
  --accent-2: #c2410c;
  --shadow: 0 18px 40px rgba(28, 25, 23, 0.08);
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 238, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-dot { color: var(--accent); }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: white !important;
  padding: 8px 14px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 8px;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.05; }

h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.2; }

h3 { font-size: 1.15rem; margin-bottom: 8px; }

.hero-role {
  margin: 10px 0 14px;
  font-weight: 700;
  color: var(--accent-2);
}

.tagline { max-width: 52ch; color: var(--muted); }

.hero-actions { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-primary { background: var(--accent); color: white; }
.btn-ghost { background: white; border: 1px solid var(--line); }

.hero-meta {
  list-style: none;
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  flex-wrap: wrap;
}

.photo-frame {
  background: white;
  padding: 12px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 28px;
}

.photo-badge {
  margin-top: 14px;
  background: var(--ink);
  color: white;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 28px; max-width: 60ch; }

.about-grid,
.contact-grid,
.activity {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

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

.card-soft { background: #fff; }

.check-list { margin: 12px 0 0 18px; color: var(--muted); }
.mt { margin-top: 22px; }

.profile-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.profile-item,
.timeline li,
.work,
.skill {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.label { display: block; color: var(--muted); font-size: 0.85rem; }

.timeline { list-style: none; display: grid; gap: 14px; }
.year { color: var(--accent); font-weight: 700; font-size: 0.9rem; }

.cards-3, .works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.skills { display: grid; gap: 14px; }
.skill-top { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 8px; }
.bar { height: 10px; background: #e7e5e4; border-radius: 999px; overflow: hidden; }
.bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), #2dd4bf); }

.note { margin-top: 16px; color: var(--muted); font-size: 0.92rem; }

.work img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.chip {
  display: inline-block;
  margin-top: 10px;
  margin-right: 6px;
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.link-soon {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 700;
}

.activity img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-list { list-style: none; display: grid; gap: 16px; }
.contact-list span { display: block; color: var(--muted); font-size: 0.85rem; }
.contact-list a { font-weight: 700; color: var(--accent); }

.form { display: grid; gap: 12px; }
.form input, .form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: white;
}

.form-note { color: var(--accent); font-weight: 600; }

.footer {
  background: #1c1917;
  color: #e7e5e4;
  padding: 36px 0 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer nav, .social { display: flex; gap: 14px; }
.copyright { text-align: center; color: #a8a29e; font-size: 0.85rem; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    inset: 72px 20px auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
  .hero-grid,
  .about-grid,
  .contact-grid,
  .activity,
  .profile-row,
  .cards-3,
  .works {
    grid-template-columns: 1fr;
  }
}
