:root {
  color-scheme: light;
  --background: #fafaf8;
  --ink: #252725;
  --muted: #666963;
  --line: #dcded7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
p {
  margin: 0;
}
p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.page {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 48px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  padding: 12px;
  background: var(--ink);
  color: var(--background);
  z-index: 10;
}
.skip-link:focus {
  top: 12px;
}
.header {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.8px;
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  width: 24px;
  height: 25px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
nav a {
  padding-block: 13px;
}
nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 55px;
  align-items: end;
  padding-block: 76px 52px;
}
h1 {
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.05;
  font-weight: 450;
  letter-spacing: -0.055em;
}
.intro-copy {
  max-width: 300px;
  padding-bottom: 2px;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-block: 10px;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #a9aca3;
}
.text-link:hover {
  text-decoration-color: var(--ink);
}
.intro-copy .text-link {
  margin-top: 10px;
}
.landscape {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #08241d;
}
.landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  filter: saturate(0.35);
}
.landscape .landscape-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  filter: saturate(0.35);
  mask-image: radial-gradient(
    circle 245px at var(--light-x, 50%) var(--light-y, 50%),
    #000 0%,
    #000 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 220ms ease;
}
.landscape.is-active .landscape-particles {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce), (hover: none) {
  .landscape .landscape-particles {
    display: none;
  }
}
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 38px 42px;
}
h2 {
  font-size: 15px;
  font-weight: 550;
  line-height: 1.4;
  margin-bottom: 12px;
}
.details p {
  max-width: 380px;
}
.details .text-link {
  margin-top: 8px;
}
.team-links {
  display: flex;
  gap: 24px;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 23px 30px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-block: 12px 72px;
}
.profile {
  display: flex;
  gap: 25px;
  align-items: center;
}
.portrait {
  width: 104px;
  height: 128px;
  object-fit: cover;
}
.profile h2 {
  margin-bottom: 6px;
}
.profile .team-links {
  margin-top: 5px;
}
@media (max-width: 760px) {
  .page {
    padding-inline: 24px;
  }
  .header {
    height: 82px;
  }
  .intro {
    gap: 28px;
    grid-template-columns: 1fr;
    padding-block: 48px 32px;
  }
  h1 {
    font-size: clamp(39px, 7.5vw, 53px);
  }
  .intro-copy {
    max-width: 350px;
  }
  .intro-copy .text-link {
    margin-top: 5px;
  }
  .landscape {
    height: 175px;
  }
  .details {
    gap: 28px;
    grid-template-columns: 1fr;
    padding-block: 30px;
  }
  .details p {
    max-width: 440px;
  }
  h2 {
    margin-bottom: 8px;
  }
  .details .text-link {
    margin-top: 3px;
  }
  .profiles {
    grid-template-columns: 1fr;
    padding-block: 5px 45px;
    gap: 30px;
  }
  footer {
    font-size: 10px;
    gap: 12px;
    padding-block: 21px;
  }
}
