:root {
  --blue: #122b49;
  --blue-deep: #0b223c;
  --blue-soft: #3f6f92;
  --blue-light: #8eb4e3;
  --green: #c3d79b;
  --text: #f7f8fa;
  --muted: #d4dbe3;
  --line: rgba(255, 255, 255, 0.22);
  --max: 1120px;
  --header: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--blue);
  font-family: Calibri, "Open Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--green);
}

img,
video {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto 0;
  min-height: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header--home,
.site-header--subpage {
  background: rgba(13, 32, 55, 0.22);
}

.site-header--home {
  background: transparent;
  border-bottom: 0;
}

.site-header--subpage {
  background: transparent;
  border-bottom: 0;
}

.nav {
  min-height: var(--header);
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: -1px 1px 3px var(--blue-deep);
}

@media (min-width: 981px) {
  .site-header--home .brand,
  .site-header--subpage .brand {
    display: none;
  }

  .site-header--home .nav,
  .site-header--subpage .nav {
    width: 100%;
    padding-right: clamp(90px, 8.5vw, 220px);
    padding-left: clamp(220px, 28.7vw, 730px);
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header--home .nav-list,
  .site-header--subpage .nav-list {
    justify-self: start;
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 38px;
  margin-left: auto;
  padding: 9px;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  display: block;
  padding: 34px 0 33px;
  color: #fff;
  text-shadow: -1px 1px 3px var(--blue-deep), 1px -1px 3px rgba(255, 255, 255, 0.35);
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--green);
}

.nav-list ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 270px;
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  list-style: none;
}

.nav-list li:hover > ul,
.nav-list li:focus-within > ul {
  display: block;
}

.nav-list ul a {
  padding: 13px 16px;
  color: var(--blue-deep);
  background: #bfc4c8;
  border-bottom: 1px solid rgba(11, 34, 60, 0.18);
  text-shadow: none;
  text-transform: none;
}

.nav-list ul a:hover,
.nav-list ul a:focus,
.nav-list ul .is-active a {
  color: var(--blue-deep);
  background: var(--green);
}

.clock {
  width: 94px;
  justify-self: end;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  text-shadow: -1px 1px 3px var(--blue), 1px -1px 3px rgba(255, 255, 255, 0.85);
}

.clock span {
  display: block;
  line-height: 1;
}

.clock-time {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.clock-mark {
  margin: 4px 0 5px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.clock-place {
  margin-top: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.clock-date {
  margin-top: 1px;
  font-size: 12px;
  letter-spacing: 0;
}

.home-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 40px) 24px 64px;
  text-align: center;
}

.home-hero::after,
.page-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 34, 60, 0.38);
}

.home-hero video,
.page-strip img,
.split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding-top: 40px;
}

.hero-copy h1 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-shadow: -1px 1px 3px var(--blue-deep), 1px -1px 3px rgba(255, 255, 255, 0.48);
}

.hero-mark {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 0.8;
  text-shadow: -1px 1px 3px var(--blue-deep), 1px -1px 3px rgba(255, 255, 255, 0.4);
}

.claim {
  margin: 0 auto;
  max-width: 900px;
  color: #fff;
  font-size: clamp(29px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  text-shadow: -1px 1px 3px var(--blue-deep), 1px -1px 3px rgba(255, 255, 255, 0.4);
}

.hero-intro {
  max-width: 1040px;
  margin: 28px auto 0;
  color: #fff;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.42;
  text-shadow: -1px 1px 3px var(--blue-deep), 1px -1px 3px rgba(255, 255, 255, 0.24);
}

.home-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 333px;
}

.home-services .service-tile {
  align-items: center;
  justify-content: flex-start;
  min-height: 333px;
  padding: 84px 24px 0;
  text-align: center;
}

.home-services .service-tile:nth-child(odd) {
  background: #143252;
}

.home-services .service-tile:nth-child(even) {
  background: #8fb6df;
}

.home-services .service-tile h2 {
  max-width: 680px;
  margin: 0 0 92px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
}

.home-services .service-tile:nth-child(even) h2 {
  color: #173553;
}

.home-services .more {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

.home-services .service-tile:nth-child(even) .more {
  color: #173553;
  border-color: #173553;
}

.service-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 333px;
  padding: 42px clamp(28px, 4vw, 64px);
  color: #fff;
  border-top: 1px solid var(--line);
}

.service-tile:nth-child(odd) {
  background: var(--blue-deep);
}

.service-tile:nth-child(even) {
  background: var(--blue-soft);
}

.service-tile h2 {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 1.15;
}

.service-tile p {
  margin: 0 0 26px;
  color: var(--muted);
}

.more {
  width: max-content;
  padding: 8px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: lowercase;
}

.page-strip {
  position: relative;
  height: 129px;
  overflow: hidden;
}

.breadcrumb-bar {
  background: var(--blue-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.breadcrumb-bar .wrap {
  width: min(100% - 512px, 2040px);
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 16px;
}

.breadcrumb-bar a {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.breadcrumb-bar .wrap span:last-child {
  min-width: 0;
  overflow-wrap: break-word;
}

@media (min-width: 981px) {
  .is-subpage .page-strip {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;
  }

  .is-subpage .breadcrumb-bar {
    position: fixed;
    z-index: 20;
    top: 129px;
    right: 0;
    left: 0;
  }

  .is-subpage main {
    padding-top: 184px;
  }
}

.split-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 184px);
}

.split-media {
  position: relative;
  min-height: calc(100vh - 184px);
  overflow: hidden;
  background: var(--blue-deep);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: calc(100vh - 184px);
  padding: 0 clamp(44px, 5vw, 64px) 86px;
  background: var(--blue);
}

.page-unternehmen .split-media img {
  object-position: center top;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 184px);
  background: var(--blue);
}

.service-detail__visual,
.person-profile__media {
  position: relative;
  min-height: calc(100vh - 184px);
  overflow: hidden;
}

.service-detail__visual img,
.person-profile__media img,
.person-profile__media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-detail__visual img,
.person-profile__media img {
  object-fit: cover;
}

.service-switch {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 96px));
  margin: 46px clamp(42px, 5vw, 72px) 0 auto;
  text-align: right;
}

.service-switch a {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(19px, 1.55vw, 27px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(11, 34, 60, 0.35);
}

.service-switch a.is-active {
  color: var(--blue-light);
}

.service-switch__arrow {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.service-switch__label--mobile {
  display: none;
}

.service-detail__copy {
  min-height: calc(100vh - 184px);
  min-width: 0;
  padding: 34px clamp(48px, 5vw, 80px) 90px;
}

.tilde-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tilde-list li {
  position: relative;
  margin: 0 0 22px;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.52;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.tilde-list li::before {
  content: "~";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: 900;
}

.career-page .split-copy {
  padding-top: 62px;
}

.career-page .split-copy .kicker {
  display: none;
}

.management-page {
  min-height: calc(100vh - 184px);
  padding: 48px 0 78px;
  background: var(--blue);
}

.management-page__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.management-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 38px;
  margin: 0 0 34px;
}

.management-menu a {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.management-menu a::before {
  content: "▸";
  margin-right: 9px;
  font-size: 16px;
}

.management-menu span {
  display: block;
  margin-left: 25px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
}

.management-photo img {
  width: 100%;
  height: auto;
}

.person-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - 184px);
}

.person-profile__media {
  background: #f0f0ed;
}

.person-profile__media img {
  object-position: center top;
}

.person-profile__copy {
  min-height: calc(100vh - 184px);
  background: var(--blue-light);
  color: #fff;
}

.person-profile__inner {
  max-width: 980px;
  padding: 66px clamp(52px, 5.2vw, 76px) 80px;
}

.person-profile h1 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.person-profile h1 small {
  color: var(--blue-deep);
  font-size: 20px;
  font-weight: 900;
  text-transform: none;
}

.person-profile__role {
  margin: 0 0 16px;
  color: var(--blue-deep) !important;
  font-size: 20px;
  font-weight: 900;
}

.person-profile p {
  margin: 0 0 20px;
  color: #fff;
}

.legal-page {
  padding: 28px 0 82px;
  background: var(--blue);
}

.legal-content {
  width: min(100% - 512px, 2040px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  margin: 22px 0 10px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.25;
}

.legal-content h4:first-child {
  margin-top: 0;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}

.legal-content li {
  margin: 0 0 8px;
}

.legal-content a {
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.split-copy h1,
.text-page h1,
.service-overview h1 {
  margin: 0 0 26px;
  color: var(--green);
  font-size: clamp(35px, 4.6vw, 62px);
  line-height: 1.08;
}

.split-copy h2 {
  margin: -12px 0 24px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.2;
}

.split-copy p,
.text-page p,
.split-copy li {
  color: var(--muted);
}

.highlight {
  color: var(--green) !important;
  font-weight: 700;
}

.content-list {
  margin: 0;
  padding: 0 0 0 20px;
}

.content-list li {
  margin-bottom: 12px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.link-row a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  color: #fff;
  font-size: 14px;
}

.link-row a:hover,
.link-row a:focus {
  border-color: var(--green);
}

.service-overview,
.text-page {
  padding: 64px 0 78px;
}

.service-overview__intro,
.person-subnav {
  display: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-overview__note {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 981px) {
  .page-dienstleistungen .service-overview {
    min-height: calc(100vh - 242px);
    padding: 34px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
      linear-gradient(rgba(18, 43, 73, 0.74), rgba(18, 43, 73, 0.74)),
      url("../images/bg_dienstleistungen.jpg") center center / cover;
  }

  .page-dienstleistungen .service-overview__head {
    width: min(100% - 280px, 2260px);
  }

  .page-dienstleistungen .service-overview h1 {
    display: none;
  }

  .page-dienstleistungen .service-overview__intro {
    display: block;
    padding: 11px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.45;
    text-align: center;
  }

  .page-dienstleistungen .service-overview__intro p {
    margin: 0;
  }

  .page-dienstleistungen .service-overview__intro p + p {
    margin-top: 17px;
  }

  .page-dienstleistungen .service-overview__intro .highlight {
    color: var(--green) !important;
    font-weight: 700;
  }

  .page-dienstleistungen .service-grid {
    display: flex;
    flex-direction: column;
    width: 226px;
    gap: 16px;
    margin: 75px auto 0;
  }

  .page-dienstleistungen .service-tile {
    width: 100%;
    min-height: 66px;
    padding: 10px 12px;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: rgba(232, 237, 242, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.9);
    text-align: center;
  }

  .page-dienstleistungen .service-tile h2 {
    margin: 0;
    color: var(--blue);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.18;
  }

  .page-dienstleistungen .service-tile p,
  .page-dienstleistungen .service-tile .more {
    display: none;
  }

  .page-dienstleistungen .service-overview__note {
    width: min(100% - 280px, 2260px);
    margin: 74px auto 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
  }
}

.text-panel {
  max-width: 860px;
  padding: 48px;
  background: var(--blue-deep);
}

.team-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.team-link {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  background: var(--blue-deep);
}

.team-link img {
  width: 112px;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-link strong,
.team-link span {
  display: block;
}

.team-link strong {
  color: var(--green);
  font-size: 20px;
}

.team-link span {
  color: var(--muted);
  font-size: 14px;
}

.person-meta {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.person-meta li {
  padding: 9px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  background: var(--blue-deep);
  border-top: 1px solid var(--line);
}

.footer-links {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0;
  padding: 0 24px;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  :root {
    --header: 42px;
  }

  .site-header {
    min-height: 0;
    height: 0;
    border-bottom: 0;
    background: transparent;
  }

  .nav {
    width: 100%;
    min-height: var(--header);
    height: var(--header);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
  }

  .brand {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 40;
    width: 50px;
    height: 42px;
    margin: 0;
    padding: 9px 15px;
    color: #fff;
    background: rgba(18, 43, 73, 0.86);
    border: 0;
    border-radius: 0 0 4px 4px;
  }

  .nav-toggle span {
    height: 2px;
    margin: 3px 0;
  }

  .clock {
    display: none;
  }

  .nav-list {
    display: none;
    position: fixed;
    z-index: 35;
    top: 0;
    right: 0;
    left: 0;
    padding: 56px 20px 20px;
    background: var(--blue);
    border-top: 0;
  }

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

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  }

  .nav-list li li {
    border-bottom: 0;
  }

  .nav-list a {
    padding: 8px 17px;
    font-size: 16px;
    text-shadow: none;
  }

  .nav-list ul {
    display: none;
    position: static;
    width: auto;
    padding-left: 16px;
    transform: none;
  }

  .nav-list.is-open > li:hover > ul,
  .nav-list.is-open > li:focus-within > ul {
    display: none;
  }

  .nav-list ul a {
    color: var(--muted);
    background: transparent;
    border: 0;
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 7px;
  }

  .page-strip {
    height: 68px;
  }

  .page-strip::after {
    background: rgba(11, 34, 60, 0.12);
  }

  .breadcrumb-bar .wrap {
    width: calc(100% - 74px);
    min-height: 61px;
    gap: 4px;
    font-size: 16px;
  }

  .breadcrumb-bar a {
    font-size: 24px;
  }

  .home-services,
  .split-page,
  .service-detail,
  .person-profile,
  .service-grid,
  .team-row {
    grid-template-columns: 1fr;
  }

  .split-page,
  .split-copy,
  .split-media,
  .service-detail,
  .service-detail__copy,
  .service-detail__visual,
  .person-profile,
  .person-profile__copy,
  .person-profile__media {
    min-height: auto;
  }

  .split-media,
  .service-detail__visual,
  .person-profile__media {
    min-height: 138px;
  }

  .split-copy {
    padding: 22px 18px 48px;
    font-size: 18px;
    line-height: 1.35;
  }

  .split-copy p {
    margin: 0 0 20px;
  }

  .page-unternehmen .split-media img,
  .page-karriere .split-media img {
    object-position: center top;
  }

  .service-overview {
    padding: 0;
    background:
      linear-gradient(rgba(18, 43, 73, 0.78), rgba(18, 43, 73, 0.78)),
      url("../images/bg_dienstleistungen.jpg") center top / cover;
  }

  .service-overview__head {
    width: min(100% - 48px, 640px);
  }

  .service-overview h1 {
    display: none;
  }

  .service-overview__intro {
    display: block;
    padding: 41px 0 23px;
    color: #fff;
    font-size: 17px;
    line-height: 1.55;
    text-align: center;
  }

  .service-overview__intro p {
    margin: 0 0 24px;
  }

  .service-overview__intro .highlight {
    margin-bottom: 0;
  }

  .page-dienstleistungen .service-grid {
    display: block;
    width: min(100% - 150px, 420px);
    margin: 0 auto;
    padding: 0 0 38px;
  }

  .page-dienstleistungen .service-tile {
    display: flex;
    min-height: 0;
    margin: 0 0 16px;
    padding: 13px 8px;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.48) !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
  }

  .page-dienstleistungen .service-tile h2 {
    margin: 0;
    color: var(--blue);
    font-size: 16px;
    line-height: 1.18;
  }

  .page-dienstleistungen .service-tile p,
  .page-dienstleistungen .service-tile .more {
    display: none;
  }

  .page-dienstleistungen .service-overview__note {
    width: min(100% - 48px, 640px);
    margin: 0 auto 34px;
    color: #fff;
    font-size: 17px;
    line-height: 1.45;
  }

  .service-switch {
    display: flex;
    width: 100%;
    height: 79px;
    margin: 0;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    text-align: center;
  }

  .service-switch a {
    flex: 0 0 151px;
    margin: 0;
    padding: 15px 4px 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    scroll-snap-align: start;
  }

  .service-switch a.is-active {
    color: #fff;
  }

  .service-switch__label--desktop {
    display: none;
  }

  .service-switch__label--mobile {
    display: block;
  }

  .service-switch__arrow {
    display: none;
  }

  .service-detail__visual {
    min-height: 79px;
  }

  .service-detail__copy {
    padding: 31px 34px 54px;
  }

  .tilde-list li {
    margin-bottom: 23px;
    padding-left: 17px;
    color: #fff;
    font-size: 18px;
    line-height: 1.48;
  }

  .tilde-list li::before {
    color: #fff;
  }

  .management-page {
    min-height: auto;
    padding: 0;
  }

  .management-page__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .management-menu {
    order: 2;
    display: block;
    margin: 0;
    padding: 25px 31px 20px;
  }

  .management-menu a {
    display: block;
    margin: 0 0 22px;
    font-size: 22px;
  }

  .management-menu span {
    margin-left: 25px;
    font-size: 22px;
  }

  .management-photo {
    order: 1;
  }

  .management-photo img {
    width: 100%;
    height: 138px;
    object-fit: cover;
    object-position: center top;
  }

  .person-profile {
    display: block;
  }

  .person-subnav {
    display: flex;
    height: 76px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    background: var(--blue);
    border-bottom: 7px solid rgba(255, 255, 255, 0.35);
  }

  .person-subnav a {
    flex: 0 0 154px;
    padding: 13px 16px 0 22px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 14px;
    line-height: 1.25;
    text-transform: uppercase;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .person-subnav a.is-active {
    color: #fff;
  }

  .person-subnav span,
  .person-subnav small {
    display: block;
  }

  .person-subnav span {
    font-weight: 900;
  }

  .person-subnav small {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
  }

  .person-profile__media {
    min-height: 138px;
  }

  .person-profile__copy {
    min-height: auto;
  }

  .person-profile__inner {
    padding: 19px 22px 46px;
  }

  .person-profile h1 {
    margin-bottom: 3px;
    font-size: 25px;
  }

  .person-profile h1 small {
    font-size: 0;
  }

  .person-profile__role {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .person-profile p {
    margin-bottom: 19px;
    font-size: 18px;
    line-height: 1.38;
  }

  .legal-content {
    width: min(100% - 90px, 980px);
    font-size: 16px;
    line-height: 1.5;
  }

  .legal-page {
    padding: 36px 0 54px;
  }

  .legal-content h1,
  .legal-content h2,
  .legal-content h3,
  .legal-content h4 {
    font-size: 20px;
  }

  .site-footer {
    border-top-color: rgba(255, 255, 255, 0.85);
  }

  .footer-links {
    min-height: 58px;
    gap: 22px;
    font-size: 14px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .home-hero {
    min-height: 650px;
    padding: 54px 18px 42px;
    align-items: start;
  }

  .hero-copy {
    padding-top: 50px;
  }

  .hero-copy h1 {
    margin: 0 0 9px;
    font-size: 49px;
  }

  .hero-mark {
    margin-bottom: 26px;
    font-size: 34px;
  }

  .claim {
    font-size: 28px;
    line-height: 1.27;
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.45;
  }

  .home-services .service-tile {
    min-height: 197px;
    padding: 36px 32px 0;
  }

  .home-services .service-tile h2 {
    margin-bottom: 48px;
    font-size: 22px;
  }

  .home-services .more {
    padding: 8px 16px;
    font-size: 16px;
  }

  .page-dienstleistungen .service-grid {
    width: min(100% - 150px, 420px);
  }

  .page-dienstleistungen .service-tile {
    min-height: 0;
  }

  .split-copy {
    padding: 22px 18px 46px;
  }

  .team-link {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .team-link img {
    width: 86px;
  }
}
