:root {
  --bg: #faf9f6;
  --bg-alt: #f1efe9;
  --ink: #1c1d1f;
  --ink-soft: #4a4c50;
  --accent: #8a6d3b;
  --accent-ink: #ffffff;
  --line: #e1ddd3;
  --card-bg: #ffffff;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.hero-avatar {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 55% 25%;
  border: 4px solid var(--card-bg);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  margin: 0 auto 28px;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-role {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 4px;
}

.hero-location {
  font-size: 0.95rem;
  color: var(--ink-soft);
  opacity: 0.8;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--accent); }

.btn-secondary {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff; }

.btn-lg { padding: 14px 32px; font-size: 1.05rem; }

.btn-text {
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 10px 0;
  margin-top: 8px;
}

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

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 28px;
}

.subsection-title {
  font-size: 1.3rem;
  margin: 48px 0 20px;
}

.lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 72ch;
  margin-bottom: 20px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 24px 12px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Timeline */
.timeline {
  border-left: 2px solid var(--line);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.timeline-more { margin-top: 36px; }

.timeline-item { position: relative; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-date {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
}

.timeline-content h3 {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.timeline-org {
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 10px;
  font-size: 0.95rem;
}

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

.timeline-content li {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.timeline-content p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Education */
.grid-2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}

.edu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.edu-list li {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.edu-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.edu-name {
  font-weight: 600;
  margin-top: 4px;
}

.edu-org {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.side-block h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.bullet-list {
  padding-left: 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.bullet-list li { margin-bottom: 12px; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Press */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.press-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.press-item:hover { border-color: var(--accent); }

.press-outlet {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  flex-shrink: 0;
  width: 110px;
}

.press-headline {
  font-weight: 500;
  color: var(--ink);
}

/* Contact */
.contact-section { text-align: center; }
.contact-inner { display: flex; flex-direction: column; align-items: center; }

.social-links {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.social-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

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

/* Footer */
.site-footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Responsive */
@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; }
  .press-item { flex-direction: column; gap: 4px; }
  .press-outlet { width: auto; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
}
