:root {
  --background: #ffffff;
  --foreground: #1c1c1c;
  --muted: #626262;
  --line: #dedede;
  --soft: #f6f6f3;
  --accent: #244d43;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Times New Roman", Times, serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
}

nav {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-size: 0.94rem;
}

nav a {
  padding: 10px 0;
}

nav a:hover,
nav a:focus-visible {
  color: var(--accent);
}

.hero {
  padding: clamp(76px, 13vw, 156px) 0 clamp(72px, 10vw, 126px);
  border-bottom: 1px solid var(--line);
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--foreground);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(3.6rem, 11vw, 8.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  margin-bottom: 0;
  color: #3f3f3f;
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
  line-height: 1.72;
}

.section {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(64px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--line);
}

.section-body {
  max-width: 760px;
}

.section-body p,
.member-copy p {
  color: #3d3d3d;
  font-size: 1.04rem;
  line-height: 1.82;
}

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

.team-section {
  align-items: start;
}

.team-list {
  display: grid;
  gap: 0;
  max-width: 820px;
}

.team-member {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(24px, 5vw, 56px);
  padding: 0 0 44px;
  border-bottom: 1px solid var(--line);
}

.team-member + .team-member {
  padding-top: 44px;
}

.team-member:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.member-heading h2 {
  margin-bottom: 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.member-heading p {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 112px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer img {
  width: 28px;
  height: 28px;
}

.site-footer span + span::before {
  margin-right: 12px;
  color: #b9b9b9;
  content: "/";
}

@media (max-width: 820px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 104px;
  }

  nav {
    gap: 22px;
  }

  .hero {
    padding: 64px 0 72px;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5.5rem);
  }

  .section,
  .team-member {
    grid-template-columns: 1fr;
  }

  .section {
    gap: 16px;
    padding: 56px 0;
  }

  .team-member,
  .team-member + .team-member {
    padding-top: 0;
  }

  .team-member + .team-member {
    padding-top: 36px;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 96px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding-top: 52px;
  }

  .lede,
  .section-body p,
  .member-copy p {
    font-size: 1rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 28px 0;
  }

  .site-footer span + span::before {
    content: "";
    margin-right: 0;
  }
}
