@font-face {
  font-family: "Clash Display";
  src:
    url("assets/fonts/clash-display-latin.woff2") format("woff2"),
    url("assets/fonts/clash-display-variable.otf") format("opentype");
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src:
    url("assets/fonts/poppins-latin.woff2") format("woff2"),
    url("assets/fonts/poppins-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src:
    url("assets/fonts/montserrat-latin.woff2") format("woff2"),
    url("assets/fonts/montserrat-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --cyan: #52b0ca;
  --cyan-control: #2f7f97;
  --cyan-dark: #153f4a;
  --cyan-readable: #3b91aa;
  --black: #000000;
  --ink: #141414;
  --paper: #ffffff;
  --muted: #656565;
  --line: #d8d8d8;
  --container: 1290px;
  --gutter: clamp(20px, 5.2vw, 75px);
  --heading: "Clash Display", "Montserrat", sans-serif;
  --body: "Poppins", Arial, sans-serif;
  --ui: "Montserrat", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-menu-open,
body:has(dialog[open]) {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  background: var(--cyan);
  color: var(--black);
}

.container {
  margin-inline: auto;
  max-width: calc(var(--container) + (2 * var(--gutter)));
  padding-inline: var(--gutter);
  width: 100%;
}

.section {
  padding-block: clamp(72px, 8vw, 126px);
}

.section--black {
  background: var(--black);
  color: var(--paper);
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--paper);
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -100px;
  z-index: 1300;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  align-items: stretch;
  color: var(--paper);
  display: flex;
  min-height: min(790px, 100svh);
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("assets/images/hero.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.15) 55%,
      rgba(0, 0, 0, 0.42)
    ),
    linear-gradient(
      180deg,
      rgba(4, 10, 13, 0.48),
      rgba(4, 10, 13, 0.18) 60%,
      rgba(4, 10, 13, 0.45)
    );
}

.navbar {
  align-items: center;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  background: rgba(5, 10, 12, 0.08);
  border: 1px solid transparent;
  border-radius: 2px;
  color: var(--paper);
  display: flex;
  height: 84px;
  justify-content: space-between;
  left: 50%;
  max-width: min(
    calc(var(--container) + (2 * var(--gutter))),
    calc(100vw - 32px)
  );
  padding-inline: clamp(18px, 3vw, 42px);
  position: fixed;
  top: 14px;
  transform: translateX(-50%);
  transition:
    -webkit-backdrop-filter 260ms ease,
    backdrop-filter 260ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  width: calc(100% - 32px);
  z-index: 1100;
}

.navbar.is-scrolled {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 12, 0.8);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  --brand-full-width: 232px;
  --brand-mark-width: 61px;
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 67px;
  overflow: hidden;
  position: relative;
  transition: width 480ms cubic-bezier(0.22, 1, 0.36, 1);
  width: var(--brand-mark-width);
}

.brand__logo {
  bottom: 0;
  display: block;
  height: auto;
  left: 0;
  margin-block: auto;
  position: absolute;
  top: 0;
  transform-origin: left center;
  width: var(--brand-mark-width);
}

.brand__logo--mark {
  aspect-ratio: 61 / 67;
  opacity: 1;
  transition:
    opacity 220ms ease,
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.brand__logo--full {
  aspect-ratio: 402 / 67;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-7px) scale(0.97);
  transition:
    clip-path 500ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 200ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  width: var(--brand-full-width);
  z-index: 1;
}

.navbar.is-scrolled .brand--expandable {
  width: var(--brand-full-width);
}

.navbar.is-scrolled .brand__logo--mark {
  opacity: 0;
  transform: scale(0.64);
}

.navbar.is-scrolled .brand__logo--full {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateX(0) scale(1);
}

.nav-links {
  align-items: center;
  display: flex;
  font-family: var(--heading);
  font-size: 14.3px;
  font-weight: 500;
  gap: clamp(18px, 2.6vw, 42px);
  margin-left: auto;
  margin-right: 56px;
}

.nav-links a {
  padding: 10px 14px;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: var(--cyan-control);
  color: var(--paper);
}

.social-mini,
.social-stack {
  align-items: center;
  display: flex;
  gap: 8px;
}

.language-switch {
  flex: 0 0 auto;
  margin-right: 18px;
  position: relative;
}

.language-switch::after {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  content: "";
  pointer-events: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-35%);
}

.language-select {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(5, 10, 12, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 600;
  height: 30px;
  letter-spacing: 0.06em;
  padding: 0 22px 0 9px;
  text-transform: uppercase;
}

.language-select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.language-select option {
  background: #101719;
  color: var(--paper);
}

.social-link {
  align-items: center;
  border: 2px solid currentColor;
  display: inline-flex;
  height: 26px;
  justify-content: center;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  width: 26px;
}

.social-link--facebook {
  border-radius: 50%;
}

.social-link--instagram {
  border-radius: 7px;
  color: var(--cyan-readable);
}

.social-link svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.social-link--instagram svg circle:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.social-link:hover {
  background: currentColor;
  transform: translateY(-2px);
}

.social-mini .social-link--facebook {
  color: var(--paper);
}

.social-mini .social-link--facebook:hover svg,
.social-link--instagram:hover svg {
  color: var(--black);
}

.social-stack .social-link--facebook:hover svg {
  color: var(--paper);
}

.menu-toggle {
  background: transparent;
  cursor: pointer;
  display: none;
  padding: 8px;
}

.menu-toggle span:not(.sr-only) {
  background: var(--paper);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 27px;
}

.mobile-menu {
  background: var(--cyan);
  color: var(--black);
  display: grid;
  gap: 18px;
  inset: 0 0 auto auto;
  min-height: 436px;
  padding: 58px 42px 42px;
  position: fixed;
  width: min(100%, 360px);
  z-index: 1200;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
}

.mobile-menu__close {
  background: transparent;
  cursor: pointer;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 800;
  position: absolute;
  right: 22px;
  text-transform: uppercase;
  top: 18px;
}

.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 28px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-title-group {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.hero-content h1 {
  font-family: var(--heading);
  font-size: clamp(86px, 10.42vw, 150px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.82;
  margin: 54px 0 58px;
}

.hero-kicker {
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  left: -24px;
  letter-spacing: 0.2em;
  margin: 0;
  position: absolute;
  text-orientation: mixed;
  top: 50%;
  transform: rotate(180deg);
  transform-origin: center;
  translate: 0 -50%;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

@media (min-width: 821px) {
  html:is([lang="de"], [lang="sv"]) .hero-content h1 {
    font-size: clamp(70px, 8.3vw, 128px);
  }
}

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--heading);
  font-size: 15.3px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: -0.01em;
  min-height: 46px;
  padding: 13px 22px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--cyan {
  background: var(--cyan-control);
  color: var(--paper);
}

.button--cyan:hover {
  background: var(--paper);
  color: var(--black);
}

.button--black {
  background: var(--black);
  color: var(--paper);
}

.button--black:hover {
  background: var(--cyan);
  color: var(--black);
}

.hero-cta {
  font-size: 17.9px;
  gap: 14px;
  min-height: 46.78px;
  padding: 12px 19.61px;
}

.floating-action {
  align-items: center;
  background: var(--cyan);
  border-radius: 50%;
  bottom: 53px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 13px;
  height: 42px;
  justify-content: center;
  letter-spacing: 2px;
  position: absolute;
  right: var(--gutter);
  width: 42px;
  z-index: 5;
}

.hotline {
  background: var(--cyan);
  color: var(--black);
  display: block;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 600;
  height: 52px;
  line-height: 52px;
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
}

.hotline__track {
  animation: ticker 24s linear infinite;
  display: inline-block;
  min-width: max-content;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.about {
  background: var(--paper);
}

.about-summary {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 92px);
  grid-template-columns: 105px minmax(0, 1fr) 36px;
  min-height: 460px;
}

.about-summary__brand {
  align-items: center;
  display: flex;
  height: 390px;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.about-summary__brand img {
  height: auto;
  max-width: none;
  transform: rotate(-90deg);
  width: 355px;
}

.about-summary__copy {
  margin-inline: auto;
  max-width: 930px;
}

.about-summary__copy p {
  font-size: clamp(13px, 1.12vw, 16px);
  line-height: 3.05;
  margin: 0;
}

.about-summary__copy .button {
  margin-top: 28px;
}

.about-summary__social {
  flex-direction: column;
  justify-self: end;
}

.coverage {
  background: #f1f3f4;
  overflow: hidden;
}

.coverage-grid {
  align-items: center;
  display: grid;
  gap: clamp(54px, 7vw, 110px);
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
}

.coverage-copy {
  max-width: 510px;
}

.coverage-copy .eyebrow {
  color: var(--cyan-dark);
  margin-bottom: 28px;
}

.coverage-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.95;
  margin: 34px 0 0;
}

.coverage-stat {
  align-items: flex-end;
  display: flex;
  gap: 18px;
  margin-top: 42px;
}

.coverage-stat strong {
  color: var(--cyan-readable);
  font-family: var(--heading);
  font-size: clamp(64px, 6vw, 90px);
  font-weight: 600;
  line-height: 0.78;
}

.coverage-stat sup {
  font-size: 0.4em;
  line-height: 1;
  vertical-align: top;
}

.coverage-stat > span {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  max-width: 120px;
  text-transform: uppercase;
}

.coverage-map {
  border-top: 3px solid var(--cyan);
  padding-top: clamp(18px, 2.5vw, 34px);
}

.coverage-map__visual {
  aspect-ratio: 48 / 31;
  overflow: hidden;
}

.coverage-map__object {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.coverage-country-detail {
  align-items: baseline;
  border-left: 4px solid var(--cyan);
  display: grid;
  gap: 4px;
  margin-top: 20px;
  min-height: 56px;
  padding: 5px 0 5px 18px;
}

.coverage-country-detail strong {
  font-family: var(--heading);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.coverage-country-detail span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.coverage-countries {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 20px 0 0;
  padding: 14px 0 0;
}

.coverage-country {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  display: grid;
  font-family: var(--ui);
  gap: 2px;
  padding: 11px 0;
  text-align: left;
  transition: border-color 180ms ease, color 180ms ease, padding 180ms ease;
  width: 100%;
}

.coverage-country:hover,
.coverage-country:focus-visible,
.coverage-country.is-active {
  border-bottom-color: var(--cyan);
  color: var(--cyan-dark);
  padding-left: 7px;
}

.coverage-country__name {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coverage-country__description {
  color: var(--muted);
  font-family: var(--body);
  font-size: 8px;
  line-height: 1.45;
  max-width: 170px;
}

.contact-person:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  transform: translateX(4px);
}

.metrics {
  padding-block: clamp(72px, 7vw, 105px);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  min-width: 0;
  padding: 0 clamp(26px, 3vw, 52px);
}

.metric + .metric {
  border-left: 4px solid var(--cyan);
}

.metric strong {
  color: var(--cyan);
  display: block;
  font-family: var(--heading);
  font-size: 63px;
  font-weight: 600;
  line-height: 0.9;
  margin-bottom: 30px;
}

.metric strong sup,
.projects-count sup {
  font-size: 0.48em;
  line-height: 1;
  vertical-align: top;
}

.metric h2 {
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.metric p {
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
  max-width: 190px;
}

.services {
  background: var(--paper);
  padding-bottom: clamp(78px, 8vw, 128px);
}

.services-intro {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr) 34px;
  margin-bottom: 72px;
}

.display-title {
  font-family: var(--heading);
  font-size: clamp(46px, 3.61vw, 51.9px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

.display-title span {
  color: var(--cyan-readable);
}

.display-title--light {
  color: var(--paper);
}

.services-intro > p {
  font-size: 14px;
  line-height: 1.95;
  margin: 2px 0 0;
  max-width: 700px;
}

.accent-line {
  background: var(--cyan);
  cursor: pointer;
  height: 55px;
  justify-self: end;
  width: 4px;
}

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

.service-card button {
  background: transparent;
  cursor: pointer;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-width: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.service-card__image {
  aspect-ratio: 1 / 0.97;
  background: var(--black);
  display: block;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}

.service-card__image::after {
  background: rgba(0, 0, 0, 0.12);
  content: "";
  inset: 0;
  position: absolute;
  transition: background-color 220ms ease;
}

.service-card__photo {
  filter: grayscale(1);
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.service-card__icon {
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -43%) scale(0.86);
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 220ms ease;
  visibility: hidden;
  z-index: 2;
}

.service-card:nth-child(1) .service-card__icon {
  height: 84.11px;
  width: 80.26px;
}

.service-card:nth-child(2) .service-card__icon {
  height: 79.52px;
  width: 86.66px;
}

.service-card:nth-child(3) .service-card__icon {
  height: 84.1px;
  width: 82.63px;
}

.service-card:nth-child(4) .service-card__icon {
  height: 84.09px;
  width: 91.23px;
}

.service-card:is(:hover, :focus-within) .service-card__photo {
  transform: scale(1.06);
}

.service-card:is(:hover, :focus-within) .service-card__image::after {
  background: rgba(0, 0, 0, 0.28);
}

.service-card:is(:hover, :focus-within) .service-card__icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  visibility: visible;
}

.service-card__title {
  display: block;
  font-family: var(--heading);
  font-size: 19.7px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0 0 17px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.service-card__text {
  display: block;
  font-size: 9.3px;
  line-height: 1.44;
  margin: 0;
  min-height: 5.8em;
}

.service-card__arrow {
  color: var(--cyan);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: 0.5;
  margin-top: 26px;
  transition: transform 180ms ease;
}

.service-card:is(:hover, :focus-within) .service-card__arrow {
  transform: translateY(5px);
}

.rental {
  min-height: 468px;
  padding-block: 94px;
  position: relative;
}

.rental-inner {
  align-items: start;
  display: grid;
  gap: clamp(54px, 8vw, 120px);
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.rental .button {
  margin-top: 38px;
}

.rental .display-title,
.careers .display-title {
  font-size: 47.9px;
  line-height: 1.05;
}

.rental .title-highlight {
  background: var(--cyan);
  color: var(--ink);
  display: inline-block;
  margin-block: 0.06em;
  padding: 0.01em 0.14em 0.07em;
  white-space: nowrap;
}

html[lang="de"] .rental .title-highlight {
  font-size: 0.83em;
}

.rental-copy {
  font-size: 13px;
  line-height: 2;
  max-width: 660px;
}

.rental-copy p {
  margin: 0;
}

.rental-copy p + p {
  margin-top: 20px;
}

.floating-action--section {
  bottom: 44px;
}

.projects {
  background: var(--paper);
  padding-top: clamp(76px, 8vw, 118px);
}

.projects-heading {
  align-items: end;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  padding-bottom: clamp(48px, 6vw, 82px);
}

.eyebrow {
  color: var(--cyan-dark);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.projects-count {
  color: var(--cyan-readable);
  font-family: var(--heading);
  font-size: clamp(58px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.85;
  margin: 0;
  text-align: right;
}

.projects-count small {
  color: var(--ink);
  display: block;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 12px;
  text-transform: uppercase;
}

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

.gallery-item {
  aspect-ratio: 4 / 3;
  background: var(--black);
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.gallery-item img {
  filter: grayscale(1);
  height: 100%;
  object-fit: cover;
  transition:
    filter 220ms ease,
    transform 450ms ease;
  width: 100%;
}

.gallery-item::after {
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.84));
  content: "";
  inset: 0;
  position: absolute;
}

.gallery-item > span {
  bottom: clamp(20px, 2.6vw, 38px);
  color: var(--paper);
  font-family: var(--heading);
  font-size: clamp(16px, 1.55vw, 23px);
  font-weight: 600;
  left: clamp(20px, 2.6vw, 38px);
  line-height: 1.05;
  max-width: calc(100% - 40px);
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.gallery-item > span small {
  color: var(--cyan);
  display: block;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 9px;
}

.gallery-item:hover img {
  filter: grayscale(1) brightness(0.68);
  transform: scale(1.035);
}

.careers {
  background: var(--paper);
}

.careers-grid {
  align-items: start;
  display: grid;
  gap: clamp(64px, 9vw, 150px);
  grid-template-columns: 0.85fr 1.15fr;
}

.careers .button {
  margin-top: 78px;
}

.careers-copy {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.9;
}

.careers-copy > p {
  line-height: inherit;
  margin: 0;
}

.short-line {
  background: var(--cyan);
  display: block;
  height: 3px;
  margin: 36px 0 28px;
  width: 18px;
}

.careers-copy h3 {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 20px;
}

.careers-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.careers-copy li {
  line-height: 1.75;
  margin: 16px 0;
}

.careers-newsletter {
  align-items: start;
  background: #f3f5f5;
  border-top: 6px solid var(--cyan);
  display: grid;
  gap: clamp(42px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  margin-top: clamp(72px, 9vw, 128px);
  padding: clamp(38px, 5vw, 68px);
}

.careers-newsletter__copy .eyebrow {
  color: var(--cyan-dark);
  display: block;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.careers-newsletter__copy h3 {
  font-family: var(--heading);
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 20px;
  text-wrap: balance;
}

.careers-newsletter__copy p {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  max-width: 520px;
}

.careers-newsletter__form {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.careers-newsletter__email {
  color: var(--ink);
  display: grid;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  text-transform: uppercase;
}

.careers-newsletter__email input {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 0;
  font-family: var(--body);
  font-size: 15px;
  min-height: 54px;
  outline: 0;
  padding: 13px 16px;
  text-transform: none;
  width: 100%;
}

.careers-newsletter__email input:focus {
  border-color: var(--cyan-control);
  box-shadow: 0 0 0 3px rgba(82, 176, 202, 0.24);
}

.careers-newsletter__email input[aria-invalid="true"],
.careers-newsletter__consent input[aria-invalid="true"] {
  border-color: #a62525;
  outline: 2px solid rgba(166, 37, 37, 0.18);
}

.careers-newsletter__consent {
  align-items: start;
  display: grid;
  font-size: 10.5px;
  gap: 13px;
  grid-template-columns: 22px minmax(0, 1fr);
  line-height: 1.65;
}

.careers-newsletter__consent input {
  accent-color: var(--cyan-control);
  height: 20px;
  margin: 2px 0 0;
  width: 20px;
}

.careers-newsletter__consent a {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.careers-newsletter__status {
  margin: -5px 0 -7px;
}

.careers-newsletter__form .button {
  justify-self: start;
  margin: 0;
}

.careers-newsletter__form[aria-busy="true"] {
  cursor: wait;
}

.careers-newsletter__form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.careers-newsletter__security {
  color: var(--muted);
  font-family: var(--ui);
  font-size: 9px;
  line-height: 1.55;
}

.newsletter-dialog {
  background: var(--paper);
  border: 0;
  border-top: 6px solid var(--cyan);
  color: var(--ink);
  max-width: min(540px, calc(100vw - 40px));
  padding: 56px 48px 44px;
  text-align: center;
  width: 100%;
}

.newsletter-dialog::backdrop {
  backdrop-filter: blur(2px);
  background: rgba(0, 0, 0, 0.78);
}

.newsletter-dialog__icon {
  align-items: center;
  background: var(--cyan);
  border-radius: 50%;
  display: inline-flex;
  font-family: var(--ui);
  font-size: 22px;
  font-weight: 800;
  height: 52px;
  justify-content: center;
  margin-bottom: 22px;
  width: 52px;
}

.newsletter-dialog h2 {
  font-family: var(--heading);
  font-size: 36px;
  line-height: 1.05;
  margin: 0 0 14px;
}

.newsletter-dialog p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.newsletter-dialog .button {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 640px;
}

.contact-card {
  position: relative;
}

.contact-card--visual {
  min-height: 640px;
  overflow: hidden;
}

.contact-card--visual > img {
  filter: grayscale(1);
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.contact-card__shade {
  background: rgba(6, 12, 14, 0.62);
  inset: 0;
  position: absolute;
}

.contact-card__content {
  align-items: center;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 54px;
  position: absolute;
  text-align: center;
}

.contact-card__content strong {
  font-family: var(--ui);
  font-size: 16px;
  margin-bottom: 52px;
  text-transform: uppercase;
}

.contact-logo {
  margin-bottom: 46px;
  width: 76px;
}

.contact-card__content a {
  color: var(--cyan);
  font-family: var(--ui);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-card--form {
  align-items: center;
  display: flex;
  padding: clamp(48px, 7vw, 110px);
}

.contact-form-wrap {
  max-width: 710px;
  width: 100%;
}

.contact-accent {
  background: var(--cyan);
  display: block;
  height: 62px;
  margin-bottom: 28px;
  width: 4px;
}

.contact-form-wrap h2 {
  font-family: var(--heading);
  font-size: clamp(50px, 4.03vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 8px;
}

.contact-form-wrap > p {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 44px;
}

.line-form {
  display: grid;
  gap: 28px;
}

.form-grid {
  display: grid;
  gap: 26px 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.line-form label {
  color: var(--ink);
  display: grid;
  font-family: var(--ui);
  font-size: 11.2px;
  font-weight: 600;
  gap: 6px;
  text-transform: uppercase;
}

.line-form input,
.line-form select,
.line-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid var(--ink);
  border-radius: 0;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  min-width: 0;
  outline: 0;
  padding: 8px 0;
  text-transform: none;
  width: 100%;
}

.line-form textarea {
  resize: vertical;
}

.line-form input:focus,
.line-form select:focus,
.line-form textarea:focus {
  border-bottom-color: var(--cyan);
  box-shadow: 0 2px 0 var(--cyan);
}

.line-form [aria-invalid="true"] {
  border-bottom-color: #c52e2e;
}

.form-status {
  color: var(--cyan-dark);
  font-family: var(--ui);
  font-size: 12px;
  margin: -12px 0 0;
  min-height: 20px;
}

.form-status[data-state="error"] {
  color: #a62525;
}

.form-status[data-state="success"] {
  color: #236b43;
  font-weight: 600;
}

.form-trap {
  height: 1px !important;
  left: -10000px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  top: auto !important;
  width: 1px !important;
}

.line-form[aria-busy="true"] {
  cursor: wait;
}

.line-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  color: var(--muted);
  font-size: 9px;
  margin: -6px 0 0;
}

.form-note a {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.line-form .button {
  justify-self: start;
}

.site-footer {
  padding: 62px 0 48px;
}

.footer-top {
  align-items: start;
  display: grid;
  font-family: var(--body);
  font-size: 11px;
  gap: 50px;
  grid-template-columns: 0.62fr 1.18fr 1.2fr;
}

.footer-top p,
.footer-top address {
  font-style: normal;
  margin: 0;
}

.footer-top nav {
  font-family: var(--heading);
  display: grid;
  font-weight: 700;
  gap: 7px 24px;
  justify-content: start;
  text-transform: uppercase;
}

.footer-system {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-system a {
  align-items: center;
  display: flex;
  line-height: 1.45;
  min-height: 24px;
}

.footer-top a:hover {
  color: var(--cyan);
}

.footer-brand {
  align-items: center;
  display: flex;
  margin-top: 74px;
}

.footer-member {
  align-items: center;
  color: #8e8e8e;
  display: flex;
  font-family: var(--ui);
  font-size: 10px;
  gap: 12px;
  letter-spacing: 0.1em;
  margin-top: 50px;
  text-transform: uppercase;
}

.footer-member img {
  display: block;
  height: auto;
  width: clamp(96px, 7.6vw, 126px);
}

.footer-logo {
  height: auto;
  width: min(650px, 64vw);
}

.copyright-note {
  color: #777;
  font-size: 8px;
  margin-top: 46px;
  text-align: right;
}

.modal,
.lightbox {
  border: 0;
  max-height: calc(100dvh - 40px);
  overflow: auto;
  padding: 0;
}

.modal {
  background: var(--paper);
  color: var(--ink);
  width: min(1320px, calc(100vw - 40px));
}

.modal::backdrop,
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(2px);
}

.modal__close,
.lightbox__close {
  background: transparent;
  cursor: pointer;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  right: 26px;
  text-transform: uppercase;
  top: 22px;
  z-index: 4;
}

.service-detail {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.52fr);
  min-height: 640px;
  padding: 66px 54px 48px;
}

.service-detail__copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-detail__copy .display-title {
  font-size: clamp(39px, 3.25vw, 50px);
  hyphens: auto;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.service-detail__copy p {
  font-size: 12px;
  line-height: 2;
  margin: 0 0 36px;
}

.service-detail__copy .button {
  margin-top: auto;
  width: max-content;
}

.service-detail__gallery {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail__gallery img {
  filter: grayscale(1);
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.modal--quote {
  width: min(680px, calc(100vw - 32px));
}

.quote-wrap {
  padding: 52px 62px 44px;
}

.quote-wrap .display-title {
  font-size: 42px;
  margin-bottom: 40px;
}

.lightbox {
  background: transparent;
  height: 100dvh;
  max-height: none;
  max-width: none;
  width: 100vw;
}

.lightbox__close {
  color: var(--paper);
  font-size: 30px;
  right: 30px;
  top: 18px;
}

.lightbox > img {
  filter: grayscale(1);
  height: 100%;
  object-fit: contain;
  padding: 60px 80px;
  width: 100%;
}

.lightbox__meta {
  bottom: 20px;
  color: var(--paper);
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: min(70vw, 760px);
  z-index: 4;
}

.lightbox__meta strong {
  display: block;
  font-family: var(--heading);
  font-size: clamp(14px, 1.4vw, 19px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lightbox__meta > span {
  color: var(--cyan);
  display: block;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  margin-top: 3px;
}

.lightbox__caption {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 5px 0 0;
  text-transform: uppercase;
}

.cookie-banner {
  align-items: flex-start;
  background: var(--black);
  bottom: 18px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.32);
  color: var(--paper);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 50%;
  max-height: calc(100dvh - 36px);
  max-width: min(980px, calc(100vw - 36px));
  overflow-y: auto;
  padding: 22px 24px;
  position: fixed;
  transform: translateX(-50%);
  width: 100%;
  z-index: 80;
}

.cookie-banner[hidden],
.cookie-banner [hidden] {
  display: none;
}

.cookie-banner__summary {
  flex: 1 1 430px;
}

.cookie-banner__summary > strong {
  display: block;
  font-family: var(--heading);
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}

.cookie-banner p,
.cookie-category small {
  font-size: 10px;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions,
.cookie-banner__settings-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-banner .button,
.cookie-button {
  flex: 0 0 auto;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  min-height: 38px;
  padding: 8px 16px;
}

.cookie-button {
  background: transparent;
  border: 1px solid transparent;
  color: var(--paper);
  cursor: pointer;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  color: var(--cyan);
}

.cookie-button--outline {
  border-color: rgba(255, 255, 255, 0.6);
}

.cookie-button--outline:hover,
.cookie-button--outline:focus-visible {
  border-color: var(--cyan);
}

.cookie-banner__settings {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  flex: 1 0 100%;
  gap: 0;
  padding-top: 14px;
  width: 100%;
}

.cookie-category {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--paper);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 11px 0;
}

.cookie-category span {
  display: grid;
  gap: 2px;
}

.cookie-category strong {
  font-family: var(--ui);
  font-size: 11px;
}

.cookie-category small {
  color: rgba(255, 255, 255, 0.68);
}

.cookie-category em {
  color: var(--cyan);
  flex: 0 0 auto;
  font-family: var(--ui);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-category input {
  accent-color: var(--cyan);
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.cookie-banner__settings-actions {
  margin-top: 14px;
}

@media (min-width: 601px) {
  .cookie-banner.is-settings-open {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
    max-width: min(940px, calc(100vw - 36px));
  }

  .cookie-banner.is-settings-open .cookie-banner__summary {
    align-self: start;
    flex: none;
    min-width: 0;
    padding-right: 28px;
  }

  .cookie-banner.is-settings-open .cookie-banner__summary > strong {
    font-size: 24px;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .cookie-banner.is-settings-open .cookie-banner__settings {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 0;
    min-width: 0;
    padding-left: 28px;
    padding-top: 0;
  }
}

.cookie-preferences {
  background: var(--black);
  color: var(--paper);
  margin: 30px 0 42px;
  padding: clamp(24px, 4vw, 38px);
}

.cookie-preferences .eyebrow {
  color: var(--cyan);
  margin-bottom: 10px;
}

.cookie-preferences > p {
  color: rgba(255, 255, 255, 0.78);
}

.cookie-preferences__status {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 20px !important;
  padding-top: 16px;
}

.cookie-preferences__status strong {
  color: var(--paper);
}

.cookie-preferences .button {
  margin-top: 18px;
}

/* Vnútorné informačné stránky */
.subpage {
  background: #f5f5f3;
}

.subpage-header {
  background: var(--black);
  color: var(--paper);
  min-height: 286px;
}

.subpage-header__title {
  padding-bottom: 56px;
  padding-top: 142px;
}

.subpage-header__title .eyebrow {
  color: var(--cyan);
}

.subpage-header__title h1 {
  color: var(--paper);
  font-family: var(--heading);
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.subpage-main {
  padding-block: clamp(66px, 8vw, 116px);
}

.system-page .subpage-main {
  padding-bottom: 0;
}

.system-hero {
  border-bottom: 8px solid var(--cyan);
  min-height: clamp(390px, 48vw, 560px);
  overflow: hidden;
  position: relative;
}

.system-hero::after {
  background:
    linear-gradient(135deg, transparent 48%, rgba(82, 176, 202, 0.08) 49%, rgba(82, 176, 202, 0.08) 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.045) 49%, rgba(255, 255, 255, 0.045) 51%, transparent 52%);
  background-size: 86px 86px;
  content: "";
  inset: 0 0 0 54%;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
}

.system-hero .subpage-header__title {
  padding-bottom: clamp(62px, 7vw, 94px);
  padding-top: clamp(190px, 20vw, 258px);
  position: relative;
  z-index: 1;
}

.system-hero .subpage-header__title h1 {
  max-width: 1050px;
}

.system-hero .subpage-header__title h1 > span {
  color: var(--cyan);
}

.system-hero .subpage-header__title h1 sup {
  font-size: 0.28em;
  letter-spacing: 0;
  margin-left: 0.08em;
  vertical-align: top;
}

.system-intro {
  align-items: start;
  display: grid;
  gap: clamp(36px, 7vw, 110px);
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  padding-bottom: clamp(64px, 8vw, 118px);
}

.system-intro > .eyebrow {
  color: var(--cyan-dark);
  margin-top: 10px;
}

.system-intro__content {
  max-width: 880px;
}

.system-intro__content h2,
.commitment h2,
.operator-panel h2,
.legal-contact h2 {
  font-family: var(--heading);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

.system-intro__content h2 span {
  color: var(--cyan-readable);
}

.system-intro__content > p {
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.85;
  margin: 30px 0 0;
  max-width: 690px;
}

.principles,
.legal-summary {
  padding-bottom: clamp(76px, 9vw, 132px);
}

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

.principle-card,
.legal-summary-card {
  background: var(--paper);
  border-top: 4px solid var(--ink);
  min-height: 300px;
  padding: clamp(24px, 2.5vw, 36px);
  position: relative;
}

.principle-card:nth-child(3n + 1),
.principle-card:nth-child(3n + 2),
.legal-summary-card:nth-child(3n + 1) {
  border-top-color: var(--cyan);
}

.principle-card__icon {
  color: var(--cyan-readable);
  display: block;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: clamp(44px, 5vw, 72px);
}

.principle-card h2,
.legal-summary-card h2 {
  font-family: var(--heading);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 650;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.principle-card p,
.legal-summary-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
  margin: 20px 0 0;
}

.system-quote {
  border-left: 8px solid var(--cyan);
  margin-bottom: clamp(76px, 9vw, 132px);
  padding-block: clamp(18px, 3vw, 38px);
}

.system-quote p {
  font-family: var(--heading);
  font-size: clamp(28px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  max-width: 1050px;
}

.policy-panel {
  padding-block: clamp(78px, 9vw, 132px);
}

.policy-panel__grid {
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.policy-panel__grid > *,
.commitment > *,
.system-intro > * {
  min-width: 0;
}

.policy-panel .eyebrow,
.legal-contact .eyebrow {
  color: var(--cyan);
}

.policy-panel h2 {
  font-family: var(--heading);
  font-size: clamp(42px, 6.5vw, 86px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 18px 0 0;
  text-transform: uppercase;
}

html:is([lang="de"], [lang="sv"]) .policy-panel h2 {
  font-size: clamp(38px, 4.4vw, 64px);
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.policy-panel__copy {
  align-self: end;
}

.policy-panel__copy > p {
  color: #b8b8b8;
  font-size: 13px;
  line-height: 1.9;
  margin: 22px 0 0;
}

.policy-panel__copy .policy-panel__lead {
  color: var(--paper);
  font-family: var(--heading);
  font-size: clamp(21px, 2.5vw, 32px);
  line-height: 1.25;
  margin-top: 0;
}

.policy-points,
.commitment-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.policy-points li,
.commitment-list li {
  border-top: 1px solid #333;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
  padding: 16px 0;
  text-transform: uppercase;
}

.policy-points li::before,
.commitment-list li::before {
  color: var(--cyan);
  content: "—";
  margin-right: 14px;
}

.commitment {
  display: grid;
  gap: clamp(46px, 9vw, 140px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  padding-block: clamp(78px, 9vw, 132px);
}

.commitment .eyebrow {
  color: var(--cyan-dark);
  margin-bottom: 22px;
}

.commitment-list {
  margin-top: 0;
}

.commitment-list li {
  border-color: var(--line);
  font-size: 12px;
}

.operator-panel {
  background: var(--paper);
  border-top: 6px solid var(--cyan);
  display: grid;
  gap: clamp(44px, 8vw, 110px);
  grid-template-columns: minmax(240px, 0.64fr) minmax(0, 1.36fr);
  margin-bottom: clamp(78px, 9vw, 132px);
  padding-block: clamp(34px, 5vw, 62px);
}

.operator-panel__heading .principle-card__icon {
  margin-bottom: 50px;
}

.operator-panel__heading .eyebrow {
  color: var(--cyan-dark);
  margin-bottom: 18px;
}

.operator-data {
  display: grid;
  gap: 0 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.operator-data > div {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

.operator-data__wide {
  grid-column: 1 / -1;
}

.operator-data dt {
  color: var(--cyan-dark);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.09em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.operator-data dd {
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.operator-data a:hover {
  color: var(--cyan-dark);
}

.legal-summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-summary-card {
  min-height: 340px;
}

.trademark-note {
  border-left: 3px solid var(--cyan);
  padding-left: 16px;
}

.trademark-note strong {
  color: var(--ink);
  display: block;
  font-family: var(--ui);
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.related-system {
  align-items: start;
  display: grid;
  gap: clamp(44px, 8vw, 120px);
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  padding-bottom: clamp(78px, 9vw, 132px);
}

.related-system h2 {
  font-family: var(--heading);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  margin: 18px 0 0;
  text-transform: uppercase;
}

.related-system__links {
  display: grid;
}

.related-system__links a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-family: var(--heading);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  justify-content: space-between;
  padding: 22px 0;
  text-transform: uppercase;
  transition: color 180ms ease, padding 180ms ease;
}

.related-system__links a:hover {
  color: var(--cyan-dark);
  padding-inline: 8px;
}

.legal-contact {
  padding-block: clamp(72px, 8vw, 110px);
}

.legal-contact__grid {
  align-items: end;
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.legal-contact address {
  display: grid;
  font-size: 13px;
  font-style: normal;
  gap: 10px;
}

.legal-contact address a {
  font-family: var(--heading);
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.1;
}

.legal-contact address a:hover {
  color: var(--cyan);
}

.company-page .subpage-main {
  background: var(--paper);
}

.company-overview {
  align-items: stretch;
  display: grid;
  gap: clamp(42px, 7vw, 96px);
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
}

.company-photo {
  margin: 0;
  min-height: 590px;
  overflow: hidden;
  position: relative;
}

.company-photo::before {
  background: var(--cyan);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0;
  width: 42%;
  z-index: 1;
}

.company-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  width: 100%;
}

.company-copy {
  align-content: start;
  display: grid;
  gap: 32px;
}

.company-copy .display-title {
  font-size: clamp(46px, 6.5vw, 88px);
  line-height: 0.86;
}

.company-copy > p {
  font-size: 14px;
  line-height: 2.15;
  margin: 0;
}

.company-copy > .button {
  justify-self: start;
}

.company-facts {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-block: 24px;
}

.company-address {
  display: grid;
  font-size: 12px;
  font-style: normal;
  line-height: 1.75;
}

.company-address span,
.company-identity span,
.company-contact span {
  color: var(--cyan-dark);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-address strong {
  font-family: var(--heading);
  font-size: 18px;
}

.company-socials {
  align-self: center;
}

.company-identity {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 24px;
}

.company-identity > div {
  display: grid;
  gap: 4px;
}

.company-identity strong {
  font-family: var(--heading);
  font-size: 16px;
}

.company-identity small {
  color: var(--muted);
  font-size: 10px;
}

.company-contacts-section {
  background: #f2f3f3;
  padding-block: clamp(70px, 8vw, 110px);
}

.company-contacts-heading {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: clamp(38px, 5vw, 70px);
}

.company-contacts-heading > p {
    color: var(--muted);
    font-size: 11px;
    margin: 0 0 8px;
    max-width: 340px;
    text-align: right;
}

.company-contacts {
  display: grid;
  gap: 0 clamp(26px, 4vw, 56px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-contact {
  border-top: 1px solid #c9c9c9;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 24px 0;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.company-contact strong {
  font-family: var(--heading);
  font-size: clamp(16px, 2vw, 24px);
  overflow-wrap: anywhere;
}

.company-contact:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  transform: translateX(4px);
}

.legal-layout {
  display: grid;
  gap: clamp(46px, 8vw, 110px);
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
}

.legal-aside {
  align-self: start;
  border-top: 4px solid var(--cyan);
  font-family: var(--ui);
  font-size: 10px;
  line-height: 1.65;
  padding-top: 20px;
  position: sticky;
  top: 92px;
}

.legal-aside strong {
  display: block;
  font-size: 11px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2,
.legal-content h3 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.legal-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 30px;
}

.legal-content h3 {
  font-size: 20px;
  margin: 46px 0 14px;
}

.legal-content p,
.legal-content li {
  font-size: 13px;
  line-height: 1.9;
}

.legal-content a {
  color: var(--cyan-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a.button {
  color: var(--paper);
  text-decoration: none;
}

.legal-content a.button:hover {
  color: var(--paper);
}

.legal-content ul {
  padding-left: 20px;
}

.certificate-card {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(24px, 4vw, 58px);
}

.certificate-card img {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  width: 100%;
}

.lightbox__nav {
  background: var(--cyan);
  border-radius: 50%;
  cursor: pointer;
  font-size: 36px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  z-index: 3;
}

.lightbox__nav--prev {
  left: 22px;
}

.lightbox__nav--next {
  right: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .brand {
    --brand-full-width: 176px;
  }

  .nav-links {
    gap: 8px;
    margin-right: 24px;
  }

  .nav-links a {
    padding-inline: 8px;
  }

  .language-switch {
    margin-right: 10px;
  }

  .metrics-grid {
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .metric {
    padding: 34px;
  }

  .metric:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #333;
  }

  .metric:nth-child(4) {
    border-top: 1px solid #333;
  }

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 56px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail__copy .button {
    margin-top: 0;
  }

  html:is([lang="de"], [lang="sv"]) .policy-panel__grid,
  html:is([lang="de"], [lang="sv"]) .commitment {
    gap: 48px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .brand {
    --brand-full-width: 220px;
  }

  .nav-links,
  .social-mini {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: 8px;
  }

  .language-switch {
    margin-left: auto;
    margin-right: 0;
  }

  .hero-kicker {
    display: none;
  }

  .about-summary {
    gap: 28px;
    grid-template-columns: 78px minmax(0, 1fr) 30px;
  }

  .about-summary__brand {
    height: 340px;
  }

  .about-summary__brand img {
    width: 310px;
  }

  .about-summary__copy p {
    line-height: 2.35;
  }

  .services-intro,
  .rental-inner,
  .careers-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-copy {
    max-width: 680px;
  }

  .coverage-map {
    max-width: 760px;
    width: 100%;
  }

  .services-intro {
    gap: 26px;
  }

  .accent-line {
    height: 4px;
    justify-self: start;
    width: 44px;
  }

  .rental-inner {
    gap: 56px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-heading {
    align-items: start;
  }

  .careers .button {
    margin-top: 42px;
  }

  .careers-newsletter {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact-card--visual {
    min-height: 540px;
  }

  .contact-card--form {
    min-height: 640px;
  }

  .legal-layout,
  .certificate-card,
  .company-overview,
  .policy-panel__grid,
  .commitment,
  .operator-panel,
  .related-system,
  .legal-contact__grid {
    grid-template-columns: 1fr;
  }

  .principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-intro {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .operator-panel {
    gap: 30px;
  }

  .operator-panel__heading .principle-card__icon {
    margin-bottom: 30px;
  }

  .legal-aside {
    position: static;
  }

  .certificate-card img {
    max-width: 560px;
  }

  .company-photo {
    min-height: 480px;
  }

  .company-contacts-heading {
    align-items: start;
    flex-direction: column;
  }

  .company-contacts-heading p {
    max-width: 480px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 23px;
  }

  body {
    font-size: 14px;
  }

  .section {
    padding-block: 70px;
  }

  .careers-newsletter {
    gap: 34px;
    margin-top: 68px;
    padding: 34px 23px;
  }

  .careers-newsletter__copy h3 {
    font-size: clamp(29px, 10vw, 39px);
  }

  .careers-newsletter__form .button {
    width: 100%;
  }

  .newsletter-dialog {
    max-height: 100dvh;
    max-width: 100vw;
    padding: 58px 23px 38px;
    width: 100vw;
  }

  .site-header {
    min-height: 495px;
  }

  .navbar {
    height: 64px;
    max-width: calc(100vw - 16px);
    padding-inline: 16px;
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand {
    --brand-full-width: 168px;
    --brand-mark-width: 48px;
    height: 53px;
  }

  .subpage .navbar .button {
    font-size: 0;
    min-height: 38px;
    padding: 0;
    width: 42px;
  }

  .subpage .navbar .button::before {
    content: "←";
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero-content {
    align-items: flex-start;
    justify-content: center;
    padding-top: 45px;
    text-align: left;
  }

  .hero-title-group {
    justify-content: flex-start;
  }

  .hero-content h1 {
    font-size: 60px;
    letter-spacing: 0;
    line-height: 0.877;
    margin: 38px 0 28px;
    max-width: 100%;
    width: 292px;
  }

  .hero-cta {
    margin-left: 52px;
  }

  .floating-action {
    display: none;
  }

  .hotline {
    font-size: 11px;
    height: 42px;
    line-height: 42px;
  }

  .about-summary {
    gap: 30px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-summary__brand {
    height: auto;
    justify-content: flex-start;
  }

  .about-summary__brand img {
    max-width: 100%;
    transform: none;
    width: 250px;
  }

  .about-summary__copy p {
    font-size: 12px;
    line-height: 2.1;
  }

  .about-summary__social {
    flex-direction: row;
    justify-self: start;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-bottom: 2px solid var(--cyan);
    padding: 38px 18px;
    text-align: center;
  }

  .metric + .metric,
  .metric:nth-child(3),
  .metric:nth-child(4) {
    border-left: 0;
    border-top: 0;
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .metric strong {
    font-size: 63px;
    margin-bottom: 20px;
  }

  .metric p {
    margin-inline: auto;
  }

  .display-title {
    font-size: 38.4px;
  }

  .company-overview > *,
  .legal-layout > * {
    min-width: 0;
  }

  .company-copy .display-title {
    font-size: clamp(36px, 12vw, 38.4px);
  }

  .legal-content h2 {
    font-size: clamp(24px, 8vw, 30px);
  }

  .services .display-title {
    font-size: 38px;
    line-height: 0.95;
  }

  .rental .display-title,
  .careers .display-title {
    font-size: 38.4px;
    line-height: 1.05;
  }

  .services-intro {
    margin-bottom: 42px;
  }

  .services-intro > p {
    font-size: 12px;
  }

  .service-cards {
    display: flex;
    gap: 16px;
    margin: 0;
    max-width: none;
    overflow-x: auto;
    padding: 0 23px 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .service-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

  .service-card__image {
    aspect-ratio: 1 / 0.86;
  }

  .rental {
    padding-block: 72px;
  }

  .rental-copy {
    font-size: 12px;
  }

  .gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .projects-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 36px;
  }

  .projects-count {
    text-align: left;
  }

  .gallery-item {
    flex: 0 0 82vw;
    scroll-snap-align: center;
  }

  .careers-copy {
    font-size: 12px;
  }

  .coverage-grid {
    gap: 46px;
  }

  .coverage-copy > p:not(.eyebrow) {
    font-size: 12px;
  }

  .coverage-stat {
    align-items: center;
    margin-top: 34px;
  }

  .coverage-map {
    padding-top: 18px;
  }

  .coverage-countries {
    gap: 12px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
    padding-top: 18px;
  }

  .coverage-country__name {
    font-size: 10px;
  }

  .coverage-country__description {
    font-size: 9px;
    max-width: none;
  }

  .contact-card--visual {
    min-height: 475px;
  }

  .contact-card__content {
    padding: 34px 20px;
  }

  .contact-card__content strong {
    margin-bottom: 38px;
  }

  .contact-logo {
    width: 70px;
  }

  .contact-card__content a {
    font-size: 15px;
  }

  .contact-card--form {
    min-height: 680px;
    padding: 62px 24px;
  }

  .contact-accent {
    height: 44px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-system {
    grid-template-columns: 1fr;
  }

  .footer-top nav {
    justify-content: start;
  }

  .footer-brand {
    margin-top: 58px;
  }

  .footer-logo {
    width: min(100%, 300px);
  }

  .company-photo {
    min-height: 360px;
  }

  .company-copy > p {
    font-size: 12px;
  }

  .company-facts,
  .company-identity,
  .company-contacts {
    grid-template-columns: 1fr;
  }

  .copyright-note {
    margin-top: 34px;
    text-align: left;
  }

  .modal {
    max-height: 100dvh;
    width: 100vw;
  }

  .service-detail {
    gap: 36px;
    padding: 62px 23px 30px;
  }

  .service-detail__copy p {
    font-size: 11px;
  }

  .service-detail__gallery {
    gap: 12px;
  }

  .service-detail__gallery img {
    min-height: 250px;
  }

  .quote-wrap {
    padding: 62px 24px 34px;
  }

  .lightbox > img {
    padding: 70px 20px;
  }

  .lightbox__nav {
    bottom: 20px;
    top: auto;
    transform: none;
  }

  .lightbox__meta {
    bottom: 84px;
    width: calc(100vw - 40px);
  }

  .cookie-banner {
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-top: 4px solid var(--cyan);
    bottom: max(12px, env(safe-area-inset-bottom));
    flex-direction: column;
    gap: 16px;
    max-height: calc(100dvh - 24px - env(safe-area-inset-bottom));
    max-width: 430px;
    overscroll-behavior: contain;
    padding: 18px 18px 14px;
    width: calc(100% - 24px);
  }

  .cookie-banner__summary {
    flex: 0 0 auto;
  }

  .cookie-banner__summary > strong {
    font-size: 20px;
    margin-bottom: 7px;
  }

  .cookie-banner p,
  .cookie-category small {
    font-size: 11px;
    line-height: 1.55;
  }

  .cookie-banner__actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .cookie-banner .button,
  .cookie-button {
    justify-content: center;
    min-height: 44px;
    padding: 9px 10px;
    text-align: center;
    width: 100%;
  }

  .cookie-banner__actions [data-cookie-settings] {
    grid-column: 1 / -1;
    min-height: 30px;
    padding-block: 3px;
  }

  .cookie-banner__settings {
    padding-top: 12px;
  }

  .cookie-banner__settings-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: 100%;
  }

  .cookie-banner__settings-actions [data-cookie-back] {
    min-width: 78px;
  }

  .cookie-category {
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
  }

  .subpage-header {
    min-height: 250px;
  }

  .subpage-header__title {
    padding-bottom: 44px;
    padding-top: 112px;
  }

  .system-page .subpage-header__title h1 {
    font-size: clamp(32px, 10vw, 40px);
    hyphens: none;
    overflow-wrap: normal;
    text-wrap: balance;
    word-break: normal;
  }

  .system-intro__content h2,
  .commitment h2,
  .operator-panel h2,
  .legal-contact h2 {
    font-size: clamp(24px, 8vw, 32px);
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }

  .system-hero {
    min-height: 330px;
  }

  .system-hero .subpage-header__title {
    padding-bottom: 52px;
    padding-top: 150px;
  }

  .standard-page .system-hero .subpage-header__title h1 > span {
    font-size: 0.58em;
    white-space: nowrap;
  }

  .system-hero::after {
    inset-inline-start: 38%;
  }

  .system-intro {
    padding-bottom: 58px;
  }

  .principle-grid,
  .legal-summary-grid {
    grid-template-columns: 1fr;
  }

  .principle-card,
  .legal-summary-card {
    min-height: 0;
  }

  .principle-card__icon {
    margin-bottom: 34px;
  }

  .operator-data {
    grid-template-columns: 1fr;
  }

  .operator-data__wide {
    grid-column: auto;
  }

  .legal-contact address a {
    overflow-wrap: anywhere;
  }

  .legal-content p,
  .legal-content li {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .coverage-countries {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions [data-cookie-settings] {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hotline__track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
