:root {
  --paper: #f6f3ed;
  --ink: #10233b;
  --muted: #5e6974;
  --green: #55784d;
  --green-soft: #789173;
  --line: #d9d6ce;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0, rgba(255, 255, 255, .92), transparent 33rem),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

a { color: inherit; }

a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 5px;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 5;
  padding: .5rem .7rem;
  color: white;
  background: var(--ink);
}

.page {
  width: min(1320px, calc(100% - 56px));
  margin: auto;
}

.page--narrow { width: min(820px, calc(100% - 42px)); }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.monogram {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.12em;
  text-decoration: none;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--green);
  font-family: var(--serif);
  font-size: 17px;
}

.header-nav a { text-underline-offset: 7px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  padding: clamp(70px, 10vw, 132px) 0 72px;
}

.eyebrow,
.section-number {
  margin: 0 0 15px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.055em; }

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(74px, 11.8vw, 166px);
  line-height: .79;
}

.hero-intro {
  max-width: 770px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 36px);
  letter-spacing: -.025em;
  line-height: 1.22;
}

.current-callout {
  align-self: end;
  padding: 0 0 5px 24px;
  border-left: 1px solid var(--green);
}

.current-callout .eyebrow { margin-bottom: 13px; }

.current-callout strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.02;
}

.current-callout p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.rule {
  height: 1px;
  background: var(--line);
}

.overview {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(360px, 1.65fr) minmax(210px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  padding: 54px 0 38px;
}

.section-title {
  margin-bottom: 26px;
  color: var(--green);
  font-size: 29px;
  line-height: 1;
}

.serif-copy {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.42;
}

.elsewhere {
  margin-top: 38px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.link-list,
.credential-list,
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list { margin-top: 25px; }

.link-list li { margin: 15px 0; }

.link-list a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--serif);
  font-size: 18px;
  text-decoration-color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.glyph {
  color: var(--green);
  font-family: var(--sans);
  font-size: 16px;
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 6px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) 150px;
  gap: 11px;
  padding: 0 0 20px;
}

.timeline li:last-child { padding-bottom: 0; }

.dot {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  margin-top: 4px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
}

.timeline h3 {
  margin: 0 0 1px;
  font-size: 17px;
}

.role {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.date {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.credential-list li {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
}

.credential-list li:last-child { border-bottom: 1px solid var(--line); }

.site-footer {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 48px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.site-footer span { color: var(--green); font-size: 22px; }

/* Now page */
.now-content { padding: clamp(82px, 10vw, 112px) 0 72px; }

.now-content h1 {
  max-width: none;
  margin-bottom: 30px;
  font-size: clamp(64px, 10vw, 110px);
  line-height: .82;
}

.now-intro {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 35px);
  letter-spacing: -.025em;
  line-height: 1.27;
}

.now-rule { margin-top: 58px; }

.notes { max-width: 680px; }

.note {
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.note h2 {
  margin: 0 0 13px;
  font-size: 29px;
}

.note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
}

.updated {
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 42px; }
  .overview { grid-template-columns: 1fr; gap: 42px; }
  .certifications { padding-top: 42px; border-top: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .page { width: min(100% - 30px, 1320px); }
  .page--narrow { width: min(100% - 30px, 820px); }
  .site-header { min-height: 74px; }
  .monogram { width: 46px; height: 46px; }
  .header-nav { gap: 16px; font-size: 16px; }
  .hero { padding: 68px 0 48px; }
  h1 { font-size: clamp(65px, 19vw, 112px); }
  .hero-intro { font-size: 24px; }
  .current-callout { padding-left: 18px; }
  .overview { padding-top: 40px; }
  .timeline li { grid-template-columns: 27px minmax(0, 1fr); gap: 10px; }
  .date { grid-column: 2; text-align: left; }
  .now-content { padding: 72px 0 54px; }
  .now-content h1 { font-size: clamp(62px, 19vw, 100px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
