:root {
  color-scheme: light;
  --paper: #f4f1ea;
  --paper-strong: #ebe4d7;
  --surface: #fffdf8;
  --surface-cool: #f8fbfb;
  --ink: #151515;
  --muted: #5d625f;
  --soft: #898071;
  --line: #d6cbbd;
  --line-cool: #ccd7d5;
  --accent: #204c45;
  --accent-strong: #123832;
  --copper: #80562f;
  --shadow: 0 24px 70px rgb(34 28 20 / 12%);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 34%) 1px, transparent 1px),
    linear-gradient(rgb(255 255 255 / 25%) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 55%), transparent 58%);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.24em;
}

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

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 10;
  transform: translateY(-150%);
  background: var(--accent);
  color: white;
  padding: 0.5rem 0.75rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.nav-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgb(255 253 248 / 62%);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 16px auto 0;
  min-height: min(560px, calc(100vh - 150px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: 20px 0 34px;
}

.context-line,
.section-label {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.02;
}

.hero-lede {
  max-width: 640px;
  color: #343632;
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-action,
.secondary-action {
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}

.primary-action {
  background: var(--accent);
  color: white;
}

.primary-action:hover {
  background: var(--accent-strong);
  color: white;
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgb(255 253 248 / 72%);
}

.hero-card {
  align-self: stretch;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.profile-note {
  display: grid;
  gap: 2px;
  padding: 18px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.profile-note strong {
  font-size: 15px;
}

.profile-note span {
  color: var(--muted);
  font-size: 13px;
}

.proof-strip {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--line);
}

.two-column,
.background-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 88px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
}

.section-body {
  color: #363a36;
  font-size: 19px;
}

.section-body p:last-child {
  margin-bottom: 0;
}

.focus-section {
  border-bottom: 0;
}

.focus-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

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

.focus-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line-cool);
  border-radius: 8px;
  background: var(--surface-cool);
}

.focus-grid h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.15;
}

.focus-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

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

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item span {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.contact-actions {
  display: grid;
  gap: 14px;
  align-content: start;
  font-size: clamp(22px, 3vw, 34px);
  font-family: Georgia, "Times New Roman", serif;
}

.contact-actions a {
  width: fit-content;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
  }

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

  .hero-card {
    max-width: 460px;
    min-height: auto;
  }

  .hero-card img {
    aspect-ratio: 4 / 5;
  }

  .proof-strip,
  .focus-grid,
  .two-column,
  .background-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .proof-strip,
  .section,
  .contact-section {
    width: min(100% - 28px, var(--max-width));
  }

  .site-nav a:not(.nav-button) {
    font-size: 13px;
  }

  h1 {
    font-size: 44px;
  }

  .hero-lede,
  .section-body {
    font-size: 17px;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-card {
    display: none;
  }

  .focus-grid article {
    min-height: 0;
  }
}
