@font-face {
  font-family: "Linear Grotesk";
  src: url("../fonts/LinearGrotesk-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-red: #D62216;
  --color-red-hover: #AF2C23;
  --color-text: #363636;
  --color-heading: #212121;
  --color-black: #000000;
  --color-bg-black: #121212;
  --color-soft: #f2ede6;
  --color-border: #ececec;
  --font-heading: "Linear Grotesk", Arial, Helvetica, sans-serif;
  --font-body: "Inter", Arial, Helvetica, sans-serif;
  --font-size-body: 16px;
  --font-size-h1: 48px;
  --font-size-h2: 32px;
  --font-size-h3: 24px;
  --font-size-h4: 24px;
  --font-size-h5: 22px;
  --font-size-h6: 18px;
  --page-max: 1600px;
  --content-max: 1280px;
  --header-height: 120px;
  --section-pad: clamp(56px, 7vw, 112px);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body.landing-2026 {
  margin: 0;fo
  min-width: 0;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.landing-2026 h1,
.landing-2026 h2,
.landing-2026 h3,
.landing-2026 h4,
.landing-2026 h5,
.landing-2026 h6 {
  color: var(--color-heading);
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.landing-2026 h1 {
  font-size: var(--font-size-h1);
}

.landing-2026 h2 {
  font-size: var(--font-size-h2);
}

.landing-2026 h3 {
  font-size: var(--font-size-h3);
}

.landing-2026 h4 {
  font-size: var(--font-size-h4);
}

.landing-2026 h5 {
  font-size: var(--font-size-h5);
}

.landing-2026 h6 {
  font-size: var(--font-size-h6);
}

.landing-2026 a {
  color: inherit;
  text-decoration: none;
}

.landing-2026 a:hover,
.landing-2026 a:focus-visible {
  color: var(--color-red-hover);
}

.landing-2026 img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  margin: 0;
  padding: 0 2%;
  gap: 48px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 292px;
  min-width: 220px;
}

.site-logo img {
  width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--color-heading);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.site-nav__list {
  display: flex;
  align-items: stretch;
  gap: clamp(28px, 4vw, 68px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  display: flex;
  align-items: center;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: var(--header-height);
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.site-nav__item:hover > .site-nav__link::after,
.site-nav__item:focus-within > .site-nav__link::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  background: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.site-nav__item:hover .mega-menu,
.site-nav__item:focus-within .mega-menu,
.site-nav__item.is-open .mega-menu {
  display: block;
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 470px;
  gap: clamp(48px, 7vw, 112px);
  width: min(calc(100% - 64px), 1370px);
  margin: 0 auto;
  padding: 86px 0 92px;
}

.mega-menu__eyebrow {
  margin: 0 0 34px;
  color: #545454;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mega-menu__entry {
  display: block;
  padding: 0 0 34px;
}

.mega-menu__entry--group {
  padding-bottom: 34px;
}

.mega-menu__entry-title {
  display: block;
}

.mega-menu__entry strong {
  display: block;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.15;
}

.mega-menu__entry span {
  display: block;
  margin-top: 4px;
  color: #636363;
  font-size: 13px;
  line-height: 1.45;
}

.mega-menu__subtopics a {
  color: #636363;
}

.mega-menu__subtopics a:hover,
.mega-menu__subtopics a:focus-visible {
  color: var(--color-red-hover);
}

.mega-menu__cta {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: 44px;
  border-radius: 30px;
  background: var(--color-red);
  color: #fff;
  text-align: center;
}

.mega-menu__cta:hover,
.mega-menu__cta:focus-visible {
  background: var(--color-red-hover);
  color: #fff;
}

.mega-menu__cta strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.2;
}

.mega-menu__cta span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: 65vh;
  width: 100%;
  overflow: hidden;
  background: url("../images/slide_executive-search_people-and-projects.de.jpg") right center / cover no-repeat;
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: inherit;
  margin: 0;
  /* background: url("../images/hero-bg_landingpages_2026.svg") left center no-repeat;
  background-size: contain;
  background-height: 100%; */
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  /* min-height: inherit; */
  background: url("../images/hero-bg_landingpages_2026.svg") left center no-repeat;
  background-size: contain;
}

.hero__copy-content {
  width: 100%;
  padding: clamp(56px, 7vw, 112px) 60px;
}

.hero h1 {
  margin: 0 0 24px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: var(--font-size-h1);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__kicker {
  margin: 0 0 28px;
  color: var(--color-heading);
  font-size: 16px;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero p {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--color-text);
  font-size: var(--font-size-body);
  line-height: 1.65;
}

.section {
  padding: var(--section-pad) 0;
  background: #fff;
}

.section--tight-top {
  padding-top: clamp(48px, 5vw, 78px);
}

.section__inner {
  width: 100%;
  margin: 0;
  padding: 0 20%;
}

.section h2 {
  margin: 0 0 42px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: var(--font-size-h2);
  line-height: 1.12;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 8vw, 104px);
}

.content-grid p {
  margin: 0 0 28px;
}

.landing-2026 .section-cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 34px;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.landing-2026 .section-cta:hover,
.landing-2026 .section-cta:focus-visible {
  background: var(--color-red-hover);
  color: #fff;
}

.section--tag-cloud {
  padding-top: 0;
}

.section--tag-cloud h3 {
  margin: 0 0 24px;
  line-height: 1.15;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.tag-cloud a {
  color: var(--color-text);
  font-size: var(--font-size-body);
  line-height: 1.5;
}

.section--seo-links {
  padding-top: 0;
}

.section--seo-links h2 {
  margin-bottom: 28px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 48px;
}

.seo-link-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-link-grid li + li {
  margin-top: 8px;
}

.seo-link-grid a {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.45;
}

.legacy-content img {
  max-width: 100%;
  height: auto;
}

.legacy-content ul {
  padding-left: 1.2em;
}

.articles {
  padding: clamp(56px, 6vw, 92px) 0 clamp(80px, 8vw, 132px);
  background: #fff;
}

.articles__intro {
  margin: 0 0 34px;
}

.articles__intro h2 {
  margin-bottom: 18px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.article-card {
  display: block;
}

.article-card__media {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #ddd;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 12px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1;
}

.article-card h3 {
  margin: 22px 0 12px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: var(--font-size-h3);
  line-height: 1.18;
}

.article-card p {
  margin: 0;
  color: var(--color-text);
  font-size: var(--font-size-body);
  line-height: 1.55;
}

.site-footer {
  min-height: 560px;
  padding: clamp(72px, 9vw, 150px) 0 38px;
  background: var(--color-black);
  color: #fff;
}

.site-footer__inner {
  width: 100%;
  margin: 0;
  padding: 0 10%;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: clamp(90px, 13vw, 190px);
}

.footer-claim {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.02;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  list-style: none;
  font-size: 18px;
  color: #fff;
  background: transparent;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #c0c0c0;
}

.footer-social a img {
  display: block;
  width: 22px;
  height: 22px;
  background: transparent;
  filter: brightness(0) invert(1);
}

.footer-social a:hover img,
.footer-social a:focus-visible img {
  filter: brightness(0) invert(75%);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 300px repeat(4, minmax(150px, 1fr));
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}

.site-footer__logo img {
  width: 230px;
  height: auto;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: #a8a8a8;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li + li {
  margin-top: 8px;
}

.footer-col a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(90px, 12vw, 170px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

@media (min-width: 1025px) and (max-width: 1445px) {
  .hero__copy {
    width: 80%;
    background-size: contain;
  }

  .hero__copy-content {
    width: 100%;
  }

  .site-footer__nav {
    grid-template-columns: 240px repeat(2, minmax(150px, 1fr));
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 95px;
    --font-size-body: 16px;
    --font-size-h1: 36px;
    --font-size-h2: 28px;
    --font-size-h3: 24px;
    --font-size-h4: 24px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
  }

  .site-header__inner {
    width: 100%;
    padding: 0 4%;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    border-top: 1px solid var(--color-border);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    display: block;
    width: min(calc(100% - 40px), var(--page-max));
    margin: 0 auto;
    padding: 16px 0 24px;
  }

  .site-nav__item,
  .site-nav__link {
    display: block;
    min-height: 0;
  }

  .site-nav__link {
    padding: 16px 0;
  }

  .site-nav__link::after {
    bottom: 8px;
  }

  .mega-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-top: 0;
  }

  .site-nav__item.is-open .mega-menu {
    display: block;
  }

  .mega-menu__inner {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 28px;
    padding: 18px 0 30px;
  }

  .mega-menu__cta {
    min-height: 0;
    padding: 28px;
  }

  .hero {
    min-height: 65vh;
    background-size: cover;
  }

  .hero__inner {
    width: 100%;
    min-height: inherit;
  }

  .hero__copy {
    width: 100%;
    background-size: contain;
  }

  .hero__copy-content {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .section__inner {
    padding: 0 5%;
  }

  .content-grid,
  .article-grid,
  .seo-link-grid,
  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 95px;
    --font-size-body: 15px;
    --font-size-h1: 28px;
    --font-size-h2: 22px;
    --font-size-h3: 20px;
    --font-size-h4: 20px;
    --font-size-h5: 18px;
    --font-size-h6: 16px;
  }

  .site-logo {
    width: 220px;
    min-width: 0;
  }

  .hero {
    min-height: 65vh;
    background-position: center center;
    background-size: cover;
  }

  .section__inner {
    width: 100%;
    padding: 0 2%;
  }

  .hero__inner {
    width: 100%;
    min-height: inherit;
  }

  .hero__copy {
    width: 100%;
    background-size: contain;
  }

  .hero__copy-content {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .content-grid,
  .article-grid,
  .seo-link-grid,
  .site-footer__nav,
  .site-footer__top,
  .site-footer__bottom {
    display: block;
  }

  .content-grid > * + *,
  .article-card + .article-card,
  .footer-col + .footer-col {
    margin-top: 34px;
  }

  .footer-social {
    margin-top: 32px;
  }

  .footer-legal {
    margin-bottom: 22px;
    flex-wrap: wrap;
  }
}
