.site-nav .nav-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.92;
}

.subpage-hero {
  min-height: 72vh;
  padding: 8.75rem 6vw 4.75rem;
  display: flex;
  align-items: flex-end;
  color: var(--soft-white);
  background:
    linear-gradient(180deg, rgba(22, 38, 53, 0.06) 0%, rgba(22, 38, 53, 0.76) 100%),
    url("../assets/images/hero.jpg") center / cover no-repeat;
}

.subpage-hero .section-eyebrow,
.subpage-hero p.section-eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(247, 248, 247, 0.74);
  margin: 0 0 1.35rem;
}

.subpage-hero h1 {
  max-width: 48rem;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.92;
  color: var(--soft-white);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.subpage-hero p:not(.section-eyebrow) {
  display: none;
}

.list-section {
  background: var(--slate-deep);
  color: var(--text-light);
  padding: 5.5rem 6vw 6rem;
}

.item-list {
  max-width: 39rem;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

.list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
  transition: opacity 0.25s ease;
}

.list-item:hover {
  opacity: 0.68;
}

.list-item strong {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.05vw, 2.85rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--soft-white);
}

.list-item span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(217, 226, 234, 0.7);
}

.content-section {
  padding: 5.5rem 6vw;
  max-width: 52rem;
  margin: 0 auto;
  background: var(--soft-white);
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.02;
  font-weight: 300;
  color: var(--slate-deep);
}

.content-section > p {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 300;
}

.team-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.team-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.team-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.05;
  color: var(--slate-deep);
}

.team-item span {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--steel);
}

.list-footer {
  padding: 2.5rem 6vw;
  background: var(--bg-cool);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--steel);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.list-footer a:hover {
  color: var(--slate-deep);
}

@media (max-width: 768px) {
  .site-nav .nav-logo img {
    width: 38px;
    height: 38px;
  }

  .subpage-hero {
    min-height: 64vh;
    padding: 7.75rem 6vw 4rem;
  }

  .subpage-hero h1 {
    font-size: clamp(3.1rem, 13vw, 5rem);
  }

  .list-section {
    padding: 4.5rem 6vw 5rem;
  }

  .item-list {
    max-width: 100%;
  }

  .list-item {
    grid-template-columns: 1fr;
    padding: 1.15rem 0;
  }

  .list-item strong {
    font-size: clamp(1.85rem, 8vw, 2.9rem);
  }

  .content-section {
    padding: 4.5rem 6vw;
  }

  .list-footer {
    flex-direction: column;
  }
}