:root {
  --ink: #14231f;
  --ink-soft: #45524d;
  --navy: #112b35;
  --navy-deep: #091c23;
  --paper: #f3efe6;
  --paper-light: #fbf9f4;
  --sand: #d9cbb8;
  --ochre: #bc7d42;
  --ochre-light: #dda667;
  --sage: #aeb8aa;
  --line: rgba(20, 35, 31, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px clamp(24px, 5vw, 80px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.wordmark { display: flex; align-items: center; gap: 12px; }
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}
.wordmark-text {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
nav { display: flex; gap: clamp(18px, 3vw, 44px); }
nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
nav a:hover { color: var(--ochre-light); }

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-image, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image { object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 29, 35, 0.97) 0%, rgba(10, 32, 38, 0.9) 34%, rgba(11, 30, 35, 0.25) 67%, rgba(9, 27, 32, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 26, 31, 0.42), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 60%);
  padding: 150px 0 100px clamp(24px, 8vw, 132px);
}
.eyebrow, .kicker {
  margin: 0 0 20px;
  color: var(--ochre-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
h1 { font-size: clamp(68px, 9vw, 132px); }
h2 { font-size: clamp(44px, 6vw, 79px); }
h3 { line-height: 1.2; }
.hero-lead {
  max-width: 570px;
  margin: 30px 0 38px;
  color: rgba(255,255,255,.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 25px;
  border: 1px solid rgba(255,255,255,.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ochre); border-color: var(--ochre); }
.button-primary:hover { background: #ca8c50; }
.button-quiet {
  min-height: auto;
  padding-inline: 5px;
  border-color: transparent;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.button-quiet:hover { background: transparent; color: var(--ochre-light); }
.hero-credential {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 5vw, 80px);
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 22px;
  border-left: 2px solid var(--ochre-light);
}
.hero-credential span { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.hero-credential strong { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }

.section { position: relative; padding: clamp(86px, 11vw, 160px) clamp(24px, 8vw, 130px); }
.section-index {
  position: absolute;
  top: clamp(86px, 11vw, 160px);
  left: clamp(24px, 3.8vw, 62px);
  color: var(--ochre);
  font-family: Georgia, serif;
  font-size: 13px;
}
.section-index::after { content: ""; display: block; width: 1px; height: 66px; margin: 16px auto 0; background: var(--line); }

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .67fr);
  align-items: center;
  gap: clamp(52px, 9vw, 145px);
  background: var(--paper-light);
}
.intro-copy { padding-left: clamp(20px, 3vw, 55px); }
.intro-copy h2 { max-width: 810px; }
.intro-copy .lead-copy {
  margin: 38px 0 20px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.5;
}
.intro-copy > p:last-child { max-width: 690px; color: var(--ink-soft); }
.portrait-card { position: relative; margin: 0; }
.portrait-card::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--sand);
}
.portrait-card img { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center; }
.portrait-card figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin: -22px 18px 0;
  padding: 18px 21px;
  background: var(--navy);
  color: #fff;
}
.portrait-card figcaption span:first-child { font-family: Georgia, serif; font-size: 21px; }
.portrait-card figcaption span:last-child { color: rgba(255,255,255,.6); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(24px, 8vw, 130px);
  background: var(--navy);
  color: #fff;
}
.fact { min-height: 170px; display: flex; flex-direction: column; justify-content: center; padding: 36px clamp(24px, 4vw, 58px); border-left: 1px solid rgba(255,255,255,.14); }
.fact:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.fact strong { color: var(--ochre-light); font-family: Georgia, serif; font-size: clamp(31px, 4vw, 49px); font-weight: 400; line-height: 1.1; }
.fact span { margin-top: 10px; color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.expertise { background: var(--paper); }
.section-heading { max-width: 770px; margin-left: clamp(20px, 3vw, 55px); }
.section-heading > p:last-child { max-width: 610px; margin: 28px 0 0; color: var(--ink-soft); font-size: 18px; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 72px 0 0 clamp(20px, 3vw, 55px); }
.expertise-card { min-height: 410px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); background: rgba(255,255,255,.27); }
.expertise-card.featured { transform: translateY(-22px); background: var(--navy); color: #fff; border-color: var(--navy); }
.card-number { margin-bottom: auto; color: var(--ochre); font-family: Georgia, serif; }
.featured .card-number { color: var(--ochre-light); }
.expertise-card h3 { max-width: 280px; margin: 58px 0 20px; font-family: Georgia, serif; font-size: clamp(25px, 2.6vw, 35px); font-weight: 400; }
.expertise-card p { margin: 0; color: var(--ink-soft); }
.featured p { color: rgba(255,255,255,.66); }

.experience { background: var(--paper-light); }
.experience-heading { max-width: none; }
.timeline { margin: 70px 0 0 clamp(20px, 3vw, 55px); border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: minmax(130px, .42fr) 1.58fr; gap: 30px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.timeline-date { color: var(--ochre); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.timeline-item h3 { font-family: Georgia, serif; font-size: clamp(24px, 3vw, 37px); font-weight: 400; }
.timeline-item p { max-width: 700px; margin: 14px 0 0; color: var(--ink-soft); }
.timeline-item a, .credential-list a {
  display: inline-flex;
  margin-top: 15px;
  color: var(--ochre);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.teaching {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(48px, 10vw, 160px);
  align-items: end;
  background: var(--navy-deep);
  color: #fff;
}
.teaching-copy h2 { max-width: 900px; }
.teaching-copy > p:last-child { max-width: 780px; margin: 35px 0 0; color: rgba(255,255,255,.65); font-size: 18px; }
.kicker-light { color: var(--ochre-light); }
blockquote { margin: 0; padding: 32px 0 0 31px; border-left: 1px solid var(--ochre); }
blockquote p { margin: 0; color: rgba(255,255,255,.9); font-family: Georgia, serif; font-size: clamp(22px, 2.5vw, 32px); line-height: 1.45; }
blockquote cite { display: block; margin-top: 23px; color: var(--ochre-light); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.credentials { background: var(--paper); }
.credentials-title { max-width: 800px; margin-left: clamp(20px, 3vw, 55px); }
.credential-list { margin: 70px 0 0 clamp(20px, 3vw, 55px); border-top: 1px solid var(--line); }
.credential-list article { display: grid; grid-template-columns: .5fr 1fr 1.2fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.credential-list article > span { color: var(--ochre); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.credential-list h3 { font-family: Georgia, serif; font-size: clamp(22px, 2.4vw, 31px); font-weight: 400; }
.credential-list p { margin: 0; color: var(--ink-soft); }
.credential-list a { grid-column: 3; margin-top: -8px; }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 140px); background: var(--ochre); color: #fff; }
.contact-copy h2 { max-width: 630px; }
.contact-copy > p:last-child { max-width: 540px; margin: 28px 0 0; color: rgba(255,255,255,.77); }
.contact .kicker { color: var(--navy-deep); }
.contact-links { border-top: 1px solid rgba(255,255,255,.4); }
.contact-links a { display: grid; grid-template-columns: .42fr 1fr; gap: 20px; align-items: center; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.4); }
.contact-links a > span:first-child { color: rgba(255,255,255,.68); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-links strong {
  width: fit-content;
  font-family: Georgia, serif;
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

footer { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 28px clamp(24px, 5vw, 80px); background: var(--navy-deep); color: rgba(255,255,255,.64); }
footer > div { display: flex; gap: 30px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.footer-wordmark { color: #fff; }

@media (max-width: 960px) {
  nav a:nth-child(2), nav a:nth-child(3) { display: none; }
  .hero-content { width: 70%; }
  .intro { grid-template-columns: 1fr .7fr; gap: 45px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 270px; }
  .expertise-card.featured { transform: none; }
  .expertise-card h3 { margin-top: 38px; }
  .teaching { grid-template-columns: 1fr; align-items: start; }
  blockquote { max-width: 600px; }
  .credential-list article { grid-template-columns: .4fr 1.6fr; }
  .credential-list article p, .credential-list a { grid-column: 2; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { padding-top: 18px; padding-bottom: 18px; }
  nav { gap: 18px; }
  .hero {
    display: block;
    min-height: auto;
    padding-top: 58vh;
    padding-top: 58svh;
    background: var(--navy-deep);
  }
  .hero-image, .hero-shade {
    bottom: auto;
    height: 58vh;
    height: 58svh;
  }
  .hero-image { object-position: 73% center; }
  .hero-shade {
    background: linear-gradient(180deg, rgba(7,29,35,.5) 0%, rgba(7,29,35,.08) 42%, rgba(7,29,35,.24) 100%);
  }
  .hero-content { width: 100%; padding: 48px 24px 112px; background: var(--navy-deep); }
  .hero-credential { right: 24px; bottom: 24px; }
  .section-index { position: static; margin: 0 0 32px; }
  .section-index::after { display: none; }
  .intro { grid-template-columns: 1fr; }
  .intro-copy, .section-heading, .credentials-title { padding: 0; margin-left: 0; }
  .portrait-card { width: min(90%, 430px); margin: 30px auto 0; }
  .facts { grid-template-columns: 1fr; }
  .fact { min-height: 135px; border: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .expertise-grid, .timeline, .credential-list { margin-left: 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 13px; }
  .credential-list article { grid-template-columns: 1fr; }
  .credential-list article p, .credential-list a { grid-column: 1; }
  .contact-links a { grid-template-columns: 1fr; }
  .contact-links a > span:first-child { margin-bottom: -12px; }
  footer, footer > div { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
  .wordmark-text { font-size: 11px; }
  nav a:first-child { display: none; }
  h1 { font-size: 62px; }
  .hero-lead { font-size: 18px; }
  .hero-credential span { display: none; }
  .button { width: 100%; }
  .contact-links strong { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
