:root {
  --ink: #3e5370;
  --blue: #3e5370;
  --slate: #646a77;
  --grey: #79797b;
  --line: #c6c5c5;
  --paper: #f7f7f6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(62, 83, 112, 0.16);
  background: rgba(247, 247, 246, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand img {
  width: 104px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 8px;
}

nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--slate);
  font-size: 0.95rem;
}

nav a[aria-current="page"],
nav a:hover {
  background: var(--blue);
  color: var(--white);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding: 56px 0 88px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

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

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.93;
  font-weight: 400;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 400;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.lede {
  max-width: 680px;
  color: var(--slate);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 22px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.text-link {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero-panel {
  border-left: 1px solid var(--line);
  padding-left: 34px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-panel p {
  color: var(--grey);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-panel li {
  padding: 18px 0;
  border-top: 1px solid rgba(62, 83, 112, 0.16);
  font-size: 1.08rem;
}

.section {
  padding: 84px 0;
  border-top: 1px solid rgba(62, 83, 112, 0.16);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
}

.copy-stack {
  color: var(--slate);
  font-size: 1.15rem;
}

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

.cards article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(62, 83, 112, 0.18);
  background: var(--white);
  border-radius: 6px;
}

.cards span {
  display: block;
  margin-bottom: 56px;
  color: var(--grey);
  font-weight: 700;
}

.cards p {
  color: var(--slate);
}

.contact-hero {
  padding: 82px 0 46px;
  border-bottom: 1px solid rgba(62, 83, 112, 0.16);
}

.people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  padding: 42px 0 92px;
}

.person-card {
  background: var(--white);
  border: 1px solid rgba(62, 83, 112, 0.18);
  border-radius: 6px;
  overflow: hidden;
}

.person-card img {
  width: 100%;
  height: clamp(420px, 48vw, 620px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.person-card div {
  padding: 24px;
}

.person-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}

.person-card a {
  display: block;
  color: var(--blue);
  margin-top: 8px;
  overflow-wrap: anywhere;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(62, 83, 112, 0.16);
  color: var(--slate);
}

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

  .hero,
  .split,
  .people,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 26px 0 0;
  }
}
