:root {
  --bg: #f7f4ef;
  --text: #1f2933;
  --muted: #5c6670;
  --accent: #7c4a2d;
  --accent-dark: #4f2e1c;
  --card: #ffffff;
  --line: #e5ded4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }
.container { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }
.site-header { position: sticky; top: 0; background: rgba(247,244,239,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); z-index: 10; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { font-weight: 800; font-size: 1.1rem; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; }
.hero { display: grid; grid-template-columns: 1.4fr .8fr; gap: 3rem; align-items: center; min-height: 72vh; padding: 5rem 0 3rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--accent); }
h1 { font-size: clamp(3rem, 7vw, 5.8rem); line-height: .95; margin: .2rem 0 1rem; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top: 0; }
h3 { margin: 0 0 .4rem; font-size: 1.2rem; }
.lead { font-size: 1.28rem; max-width: 720px; color: var(--muted); }
.actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: .75rem 1rem; background: var(--accent); color: #fff; font-weight: 700; border: 1px solid var(--accent); }
.button:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }
.button.secondary { background: transparent; color: var(--accent); }
.button.secondary:hover { background: #eee3d8; color: var(--accent-dark); }
.button.small { padding: .45rem .8rem; }
.profile-card, .card { background: var(--card); border: 1px solid var(--line); border-radius: 1.25rem; box-shadow: 0 16px 40px rgba(31,41,51,.07); }
.profile-card { padding: 1.5rem; }
.contact-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.section { padding: 4rem 0; border-top: 1px solid var(--line); }
.section-title { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 1.5rem; }
.section-title p { max-width: 520px; color: var(--muted); }
.pill-grid { display: flex; flex-wrap: wrap; gap: .8rem; }
.pill-grid span { padding: .6rem .85rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 700; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.card { padding: 1.25rem; }
.card p { color: var(--muted); }
.meta { color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .45rem; }
.links { display: flex; flex-wrap: wrap; gap: .8rem; font-weight: 700; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.timeline { padding-left: 1.2rem; }
.timeline li { margin-bottom: 1rem; }
.timeline.compact li { margin-bottom: .65rem; }
.contact-section { text-align: center; }
.footer { border-top: 1px solid var(--line); padding: 2rem 0; color: var(--muted); }
@media (max-width: 800px) {
  .hero, .two-col, .cards { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; align-items: flex-start; padding: 1rem; background: var(--bg); border-bottom: 1px solid var(--line); }
  .nav-open .nav-links { display: flex; }
  .section-title { display: block; }
}
