/* Larger desktop brand with centered, single-line primary navigation. */
.site-header {
  height: 108px;
}

.site-header .container {
  width: min(1780px, calc(100% - 48px));
}

.site-header .nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(24px, 2vw, 42px);
}

.site-header .brand {
  flex-shrink: 0;
  gap: 14px;
}

.site-header .brand-mark {
  flex-basis: 116px;
  width: 116px;
  height: 70px;
}

.site-header .brand b {
  font-size: 24px;
}

.site-header .brand small {
  font-size: 13px;
}

.site-header .site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 2vw, 38px);
  width: 100%;
}

.site-nav-primary,
.site-nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.site-nav-primary {
  justify-content: center;
  gap: clamp(16px, 1.35vw, 28px);
}

.site-nav-actions {
  justify-content: flex-end;
  gap: 14px;
}

.site-header .site-nav a,
.site-header .site-nav .button {
  font-size: 20px;
  white-space: nowrap;
}

.site-header .site-nav a {
  font-weight: 700;
}

.site-header .lang-select select {
  min-width: 145px;
  padding: 11px 34px 11px 13px;
  font-size: 14px;
}

.site-header .site-nav .button-small {
  padding: 14px 20px;
}

/* A quiet team introduction directly below the existing hero. */
.team-intro {
  padding: 30px 0 78px;
  background: var(--cream);
}

.team-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, .65fr);
  min-height: 470px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow);
}

.team-showcase-media,
.team-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.team-showcase-media img {
  object-fit: cover;
  object-position: center 48%;
}

.team-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.team-showcase-copy .eyebrow {
  color: #dceee5;
}

.team-showcase-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.team-showcase-copy p {
  color: #d9e7e2;
}

.team-showcase-copy .button {
  align-self: flex-start;
  margin-top: 8px;
}

/*
 * The full navigation needs more room than its individual labels suggest:
 * the logo, language selector and CTA all share the same row. Switch to the
 * compact menu before those columns can collide on scaled or narrower screens.
 */
@media (max-width: 1700px) {
  .site-header {
    height: 88px;
  }

  .site-header .container {
    width: min(1160px, calc(100% - 40px));
  }

  .site-header .nav-wrap {
    display: flex;
  }

  .site-header .brand-mark {
    flex-basis: 86px;
    width: 86px;
    height: 52px;
  }

  .site-header .brand b {
    font-size: 19px;
  }

  .site-header .brand small {
    font-size: 12px;
  }

  .site-header .nav-toggle {
    display: block;
  }

  .site-header .site-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header .site-nav.open {
    display: flex;
  }

  .site-header .site-nav-primary,
  .site-header .site-nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-header .site-nav a {
    padding: 8px 4px;
  }

  .site-header .lang-select select {
    width: 100%;
  }
}

@media (max-width: 800px) {
  .team-intro {
    padding: 16px 0 58px;
  }

  .team-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }

  .team-showcase-media img {
    height: auto;
    object-fit: contain;
  }

  .team-showcase-copy {
    padding: 30px 26px 34px;
  }
}
