* { box-sizing: border-box; }

:root {
  --bg: #f5f4ef;
  --ink: #171717;
  --muted: #6d6b66;
  --line: #ddd9d0;
  --panel: #eceae3;
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .62; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(216,214,207,.8);
  backdrop-filter: blur(14px);
  background: rgba(245,244,239,.88);
}

.brand {
  font-weight: 700;
  letter-spacing: -.02em;
}

nav {
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: var(--muted);
}

main, footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.hero {
  min-height: 74vh;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 72px;
  align-items: center;
  padding: 78px 0 72px;
}

.eyebrow, .section-label, .card-meta {
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 750;
  color: var(--muted);
}

h1 {
  font-size: clamp(58px, 7vw, 102px);
  line-height: .92;
  letter-spacing: -.06em;
  margin: 14px 0 26px;
}

.role {
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.22;
  letter-spacing: -.025em;
  margin: 0 0 25px;
}

.role span {
  display: block;
  color: var(--muted);
  font-size: .76em;
  margin-top: 8px;
}

.lede {
  max-width: 700px;
  font-size: 20px;
  color: #44423e;
  margin-bottom: 19px;
}

.lineage {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 31px;
}

.links, .connect-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 14px;
  font-weight: 650;
}

.hero-image-wrap {
  justify-self: end;
  width: min(100%, 360px);
  border-radius: 26px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(0,0,0,.08);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 94px 0;
  border-top: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
}

h2 {
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin: 12px 0 0;
  max-width: 720px;
}

.section-copy {
  font-size: 19px;
  color: #45433f;
}

.section-copy p:first-child { margin-top: 0; }

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.pill-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 15px;
  background: rgba(255,255,255,.25);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.text-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 650;
  padding-bottom: 8px;
}

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

.card {
  background: var(--panel);
  border-radius: 18px;
  padding: 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}

.card h3 {
  font-size: 25px;
  line-height: 1.13;
  letter-spacing: -.025em;
  margin: 14px 0 14px;
}

.card p:not(.card-meta) { color: var(--muted); }

.card a {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
}

.speaking-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.speaking-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.speaking-list span:last-child {
  color: var(--muted);
  text-align: right;
}

.connect h2 { margin-bottom: 32px; }

footer {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 42px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 850px) {
  nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 52px;
    min-height: auto;
  }

  .hero-image-wrap {
    justify-self: start;
    max-width: 300px;
    order: -1;
  }

  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 250px; }
  .section-heading-row { align-items: start; flex-direction: column; }
}

@media (max-width: 520px) {
  .site-header { padding: 18px 20px; }
  main, footer { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 42px 0 56px; }
  h1 { font-size: 56px; }
  .section { padding: 66px 0; }
  footer { flex-direction: column; gap: 6px; }
}
