.about-page {
  background: #ffffff;
  padding-bottom: 2rem;
}

.about-hero {
  padding-top: 6.2rem;
  padding-bottom: 2.2rem;
}

.about-hero .container {
  max-width: 1520px;
  margin: 0 auto;
  padding-left: clamp(1.4rem, 4vw, 3.2rem);
  padding-right: clamp(1.4rem, 4vw, 3.2rem);
}

.about-hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: clamp(260px, 38vw, 500px);
  max-height: 70vh;
  background: #060709;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.35), rgba(8, 8, 10, 0.68));
}

.about-hero-overlay p {
  max-width: 19ch;
  margin: 0;
  color: #f2f4f7;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  letter-spacing: -0.03em;
}

.team-section {
  background: #f2f2f0;
  border-radius: 24px 24px 0 0;
  padding-top: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(2.2rem, 4vw, 3.4rem);
}

.about-page + .site-footer {
  margin-top: 0;
  border-top: 0;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
}

.team-copy {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.team-kicker {
  margin: 0 0 0.65rem;
  color: #2a2c31;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.team-copy h2 {
  margin: 0;
  color: #181a1f;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.team-gallery {
  display: grid;
  gap: 1rem;
}

.team-photo {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.team-photo-media {
  border-radius: 24px;
  overflow: hidden;
  background: #d7d7d5;
  height: clamp(320px, 48vw, 620px);
}

.team-photo-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-photo-caption {
  padding: 0 0.2rem;
}

.team-member-name {
  margin: 0;
  color: #111318;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.team-member-social {
  color: #4a4e56;
  font-family: var(--font-ui);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-left: 0.22rem;
  vertical-align: 0.06em;
}

.team-member-role {
  margin: 0.2rem 0 0;
  color: #3b3e45;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.3;
}

@media (max-width: 980px) {
  .about-hero .container {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .team-layout {
    grid-template-columns: 1fr;
  }

  .team-copy {
    position: static;
  }

  .about-hero-overlay p {
    max-width: 24ch;
    font-size: clamp(1.35rem, 5.2vw, 2.1rem);
  }

  .team-photo-media {
    height: clamp(280px, 70vw, 520px);
  }
}

@media (max-width: 760px) {
  .about-hero {
    padding-top: 5.4rem;
    padding-bottom: 1.4rem;
  }

  .about-hero-media {
    min-height: 0;
    max-height: none;
    border-radius: 0;
    background: transparent;
  }

  .about-hero-media img {
    display: none;
  }

  .about-hero-overlay {
    position: static;
    display: block;
    padding: 0;
    background: none;
  }

  .about-hero-overlay p {
    max-width: none;
    margin: 0;
    color: #101216;
    font-size: clamp(1.28rem, 5.7vw, 1.62rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-align: justify;
    text-justify: inter-word;
  }
}
