@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/geist-mono.woff2") format("woff2");
}

:root {
  --font-geist-sans: "Geist", Arial, Helvetica, sans-serif;
  --font-geist-mono: "Geist Mono", monospace;
  --ink: #0d2527;
  --ink-soft: #17383a;
  --paper: #f4f0e8;
  --paper-2: #fbf9f4;
  --orange: #f08a1c;
  --teal: #2ba89e;
  --blue: #14779e;
  --line: rgba(13, 37, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 4px;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

#hauptinhalt:focus {
  outline: none;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 0 clamp(24px, 4.4vw, 72px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.group-brand {
  display: inline-block;
  width: fit-content;
}

.group-logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  white-space: nowrap;
}

.group-logo-mark {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  margin-right: 10px;
  color: #fff;
}

.group-logo-name {
  font-size: 1.48rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.045em;
}

.group-logo-divider {
  align-self: stretch;
  width: 1px;
  min-height: 34px;
  margin: 0 16px;
  background: rgba(255, 255, 255, 0.3);
}

.group-logo-descriptor {
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  font-size: 0.9rem;
  font-weight: 620;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.arrow {
  flex: 0 0 auto;
  width: 1.18em;
  height: 1.18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease;
}

.arrow svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a:hover .arrow {
  transform: translate(3px, -3px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 172px clamp(24px, 4.4vw, 72px) 116px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 34%,
      rgba(43, 168, 158, 0.16),
      transparent 27%
    ),
    radial-gradient(
      circle at 18% 86%,
      rgba(240, 138, 28, 0.12),
      transparent 27%
    ),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, 1600px);
  min-height: 590px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(430px, 0.7fr);
  gap: clamp(48px, 6vw, 108px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #75d5cc;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 5vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: -0.072em;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span:nth-child(2) {
  position: relative;
  color: var(--orange);
}

.hero h1 span:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 1.5%;
  bottom: 5%;
  width: min(65%, 520px);
  height: 10px;
  border-radius: 100%;
  background: rgba(240, 138, 28, 0.35);
  transform: rotate(-1deg);
  filter: blur(1px);
}

.hero-lead {
  max-width: 720px;
  margin: 34px 0 0;
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 720;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--orange);
}

.button-primary:hover {
  background: #ffa037;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button-ghost:hover {
  color: var(--ink);
  background: #fff;
}

.hero-index {
  align-self: stretch;
  display: grid;
  grid-template-rows: auto repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(9, 27, 29, 0.52);
  backdrop-filter: blur(14px);
}

.hero-index-label {
  margin: 0;
  padding: 24px 26px 22px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-index a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 2vw, 40px);
  min-height: 104px;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.hero-index a:last-child {
  border-bottom: 0;
}

.hero-index a:hover,
.hero-index a:focus-visible {
  color: var(--ink);
  background: var(--orange);
}

.hero-index-logo {
  min-width: 0;
  height: 44px;
  display: flex;
  align-items: center;
}

.hero-index-logo img {
  width: auto;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.hero-index-brand {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: center;
  transition: transform 180ms ease;
}

.hero-index a:hover .hero-index-brand,
.hero-index a:focus-visible .hero-index-brand {
  transform: translateY(-8px);
}

.hero-index-logo-shi {
  gap: 14px;
}

.hero-index-logo-shi img:first-child {
  width: 47px;
  height: 47px;
}

.hero-index-shi-wordmark {
  flex: 1 1 176px;
  min-width: 0;
  max-width: 176px;
  height: 44px;
  display: flex;
  align-items: center;
}

.hero-index-logo-shi .hero-index-shi-wordmark img {
  position: static;
  width: 100%;
  height: 44px;
  max-width: 176px;
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.hero-index-logo-media img {
  width: 228px;
}

.hero-index-logo-dispoboxx img {
  width: 171px;
}

.hero-index-logo-solutions img {
  width: 248px;
  filter: grayscale(1) invert(1) brightness(1.55) contrast(1.12);
}

.hero-index-claim {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-width: 390px;
  font-size: clamp(0.88rem, 0.82vw, 1rem);
  font-weight: 680;
  line-height: 1.24;
  text-align: left;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-3px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.hero-index a:hover .hero-index-claim,
.hero-index a:focus-visible .hero-index-claim {
  opacity: 0.76;
  transform: translateY(0);
}

.hero-index-cta {
  justify-self: end;
  font-size: clamp(0.7rem, 0.72vw, 0.82rem);
  font-weight: 740;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  transition: color 180ms ease;
}

.hero-index a:hover .hero-index-cta,
.hero-index a:focus-visible .hero-index-cta {
  color: rgba(13, 37, 39, 0.72);
}

.hero-marquee {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 52px);
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 720;
  letter-spacing: 0.18em;
}

.hero-marquee i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.brands-section {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: clamp(92px, 10vw, 152px) clamp(20px, 4vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.eyebrow-dark {
  color: #14756f;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.section-heading > p {
  max-width: 530px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(13, 37, 39, 0.66);
}

.brand-stack {
  display: grid;
  gap: 18px;
}

.brand-world {
  position: relative;
  min-height: 560px;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  scroll-margin-top: 24px;
}

.brand-world::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 7px;
  background: currentColor;
}

.brand-world-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(440px, 1.25fr) minmax(
      250px,
      0.62fr
    );
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  padding: clamp(42px, 5vw, 78px);
}

.brand-identity {
  align-self: start;
  display: grid;
  gap: 24px;
}

.brand-category {
  width: fit-content;
  padding: 9px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.64;
}

.shi-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shi-logo img:first-child {
  width: 46px;
  height: 46px;
}

.shi-logo img:last-child {
  width: 176px;
  height: 50px;
  object-fit: contain;
}

.media-logo {
  width: 260px;
  height: auto;
  margin-top: 7px;
}

.dispoboxx-logo {
  width: min(330px, 72%);
  height: auto;
}

.solutions-logo {
  width: min(390px, 76%);
  height: auto;
  margin-top: 8px;
}

.brand-kicker {
  margin: 0 0 18px;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.62;
}

.brand-message h3 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(3.1rem, 4.6vw, 5.2rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.brand-message > p:last-child {
  max-width: 560px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.58;
  opacity: 0.72;
}

.media-claim h3 em {
  position: relative;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.brand-side {
  align-self: end;
  display: grid;
  gap: 34px;
}

.brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-meta span {
  padding: 9px 12px;
  font-size: 0.74rem;
  font-weight: 650;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.64;
}

.brand-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  font-size: 0.92rem;
  font-weight: 760;
  border-top: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 24%, transparent);
}

.card-shi {
  color: #fff;
  background:
    radial-gradient(
      circle at 18% 104%,
      rgba(240, 138, 28, 0.2),
      transparent 31%
    ),
    linear-gradient(150deg, rgba(240, 138, 28, 0.08), transparent 34%),
    var(--ink);
}

.card-shi .brand-world-content {
  grid-template-columns: minmax(210px, 0.58fr) minmax(520px, 1.5fr) minmax(
      250px,
      0.62fr
    );
}

.shi-poster {
  position: relative;
  isolation: isolate;
}

.shi-poster::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(150px, 15vw, 270px);
  aspect-ratio: 1;
  right: 4%;
  top: 50%;
  border: clamp(22px, 2.5vw, 42px) solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  transform: translateY(-50%);
}

.shi-poster h3 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 6.25vw, 7.6rem);
  line-height: 0.78;
  letter-spacing: -0.078em;
  text-transform: uppercase;
}

.shi-poster h3 span {
  display: block;
  width: fit-content;
}

.shi-poster h3 span:last-child {
  margin-top: 0.12em;
}

.shi-poster h3 em {
  position: relative;
  display: inline-block;
  z-index: 0;
  margin-right: 0.05em;
  padding: 0 0.09em 0.02em 0.04em;
  color: var(--ink);
  font-style: normal;
}

.shi-poster h3 em::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -0.02em -0.02em 0.01em -0.04em;
  background: var(--orange);
  transform: rotate(-1.5deg);
}

.shi-poster > p:last-child {
  max-width: 620px;
}

.card-shi::before,
.card-media::before {
  background: var(--orange);
}

.card-media {
  color: #fff;
  background-color: #17120f;
  background-image: url("/images/jegasoft-media.jpg");
  background-size: cover;
  background-position: center 58%;
}

.media-photo-overlay {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 17, 15, 0.94) 0%,
      rgba(15, 17, 15, 0.76) 36%,
      rgba(15, 17, 15, 0.2) 58%,
      rgba(15, 17, 15, 0.84) 100%
    ),
    linear-gradient(0deg, rgba(15, 17, 15, 0.62), transparent 62%);
}

.card-media .brand-world-content {
  z-index: 1;
  grid-template-columns: minmax(230px, 0.66fr) minmax(470px, 1.26fr) minmax(
      300px,
      0.68fr
    );
}

.card-media .brand-message {
  align-self: end;
}

.card-media .media-logo {
  filter: grayscale(1) brightness(0) invert(1);
}

.card-media .brand-message h3 {
  font-size: clamp(3.8rem, 5.25vw, 6.6rem);
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.28);
}

.card-media .brand-message > p:last-child {
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.media-services-label {
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.media-services span {
  color: #fff;
  background: rgba(16, 22, 20, 0.34);
  border-color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  backdrop-filter: blur(8px);
}

.card-dispoboxx {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(20, 119, 158, 0.08), transparent 44%), #f7fbfb;
}

.card-dispoboxx::before {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.card-solutions {
  color: var(--ink);
  background:
    radial-gradient(
      circle at 84% 10%,
      rgba(0, 139, 168, 0.13),
      transparent 30%
    ),
    #eef8f7;
}

.card-solutions::before {
  background: #008ba8;
}

.card-regional {
  color: #fff;
  background-image: url("/images/spreewald-wasser.jpg");
  background-size: cover;
  background-position: center;
}

.card-regional::before {
  background: #75d5cc;
}

.regional-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 35, 39, 0.97) 0%,
      rgba(7, 35, 39, 0.84) 52%,
      rgba(7, 35, 39, 0.34) 100%
    ),
    linear-gradient(0deg, rgba(7, 35, 39, 0.48), transparent 70%);
}

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

.regional-links {
  gap: 0;
}

.regional-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  font-size: 0.88rem;
  font-weight: 710;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.regional-links a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  min-height: 720px;
  color: #fff;
  background: var(--ink);
}

.fit-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(72px, 8vw, 138px) clamp(28px, 6vw, 104px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.fit-intro h2 {
  max-width: 12.5ch;
  margin: 0;
  font-size: clamp(2.75rem, 3.55vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.fit-intro > p:not(.eyebrow) {
  max-width: 640px;
  margin: 34px 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.69);
}

.routing-list {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}

.routing-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(165px, 13vw, 205px) 24px;
  gap: clamp(22px, 2.2vw, 40px);
  align-items: center;
  padding: 32px clamp(30px, 4.2vw, 66px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.routing-list a:last-child {
  border-bottom: 0;
}

.routing-list a:hover,
.routing-list a:focus-visible {
  color: var(--ink);
  background: var(--orange);
}

.routing-list a > span:first-child {
  max-width: 30ch;
  font-size: clamp(1.2rem, 1.7vw, 1.78rem);
  line-height: 1.24;
  letter-spacing: -0.032em;
}

.routing-brand {
  justify-self: start;
  width: 100%;
  max-width: 190px;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: visible;
  opacity: 0.7;
  transition:
    opacity 180ms ease,
    filter 180ms ease;
}

.routing-brand > img {
  width: auto;
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.routing-brand-shi {
  gap: 9px;
}

.routing-brand-shi > img {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
}

.routing-shi-wordmark {
  width: 140px;
  height: 22px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.routing-shi-wordmark img {
  position: static;
  width: 140px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.routing-brand-media > img {
  width: 168px;
}

.routing-brand-dispoboxx > img {
  width: 132px;
}

.routing-brand-solutions > img {
  width: 182px;
  filter: grayscale(1) invert(1) brightness(1.55) contrast(1.12);
}

.routing-list a:hover .routing-brand,
.routing-list a:focus-visible .routing-brand {
  opacity: 0.78;
  filter: brightness(0) saturate(100%);
}

.company-section {
  width: min(100%, 1640px);
  margin: 0 auto;
  padding: clamp(94px, 10vw, 164px) clamp(24px, 5vw, 80px);
}

.company-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.55fr);
  column-gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.company-copy .eyebrow {
  grid-column: 1 / -1;
}

.company-copy h2 {
  margin: 0;
  font-size: clamp(3.6rem, 6.7vw, 7.3rem);
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.company-copy > p:last-child {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(13, 37, 39, 0.66);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(70px, 8vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts-grid > div {
  display: grid;
  gap: 8px;
  padding: 36px 26px;
  border-right: 1px solid var(--line);
}

.facts-grid > div:last-child {
  border-right: 0;
}

.facts-grid dd {
  order: -1;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.facts-grid dt,
.locations article > span {
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #14756f;
}

.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.locations article {
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper-2);
}

.locations h3 {
  margin: 34px 0 12px;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.locations address {
  margin: 0;
  font-style: normal;
  line-height: 1.65;
  color: rgba(13, 37, 39, 0.65);
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.location-links a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 0 15px;
  font-size: 0.78rem;
  font-weight: 720;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.location-links a:hover,
.location-links a:focus-visible {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.contact-section {
  display: flex;
  min-height: 660px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(240, 138, 28, 0.18),
      transparent 34%
    ),
    var(--ink);
}

.contact-section h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.contact-section > p:not(.eyebrow) {
  max-width: 680px;
  margin: 34px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: start;
  padding: 56px clamp(24px, 4.5vw, 72px);
  color: #fff;
  background: #081a1c;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand {
  display: inline-block;
  width: fit-content;
}

.group-logo-footer .group-logo-mark {
  width: 50px;
  height: 50px;
  margin-right: 8px;
}

.group-logo-footer .group-logo-name {
  font-size: 1.24rem;
}

.group-logo-footer .group-logo-divider {
  min-height: 30px;
  margin: 0 13px;
}

.group-logo-footer .group-logo-descriptor {
  font-size: 0.55rem;
}

.footer-legal,
.footer-links {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.56);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.footer-legal {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--orange);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-index {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto 1fr;
  }

  .hero-index-label {
    grid-column: 1 / -1;
  }

  .hero-index a {
    grid-template-columns: 1fr;
    min-height: 130px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .hero-index a:last-child {
    border-right: 0;
  }

  .hero-index-claim {
    display: none;
  }

  .hero-index-cta {
    justify-self: start;
    margin-top: 12px;
    font-size: 0.65rem;
  }

  .brand-world {
    min-height: 660px;
  }

  .brand-world-content {
    grid-template-columns: minmax(180px, 0.55fr) minmax(420px, 1.2fr);
  }

  .card-shi .brand-world-content,
  .card-media .brand-world-content {
    grid-template-columns: minmax(180px, 0.5fr) minmax(420px, 1.25fr);
  }

  .card-media .brand-side {
    grid-column: 1 / -1;
  }

  .brand-side {
    grid-column: 1 / -1;
  }

  .fit-section {
    grid-template-columns: 1fr;
  }

  .fit-intro {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .fit-intro h2 {
    font-size: clamp(3rem, 6.8vw, 4.6rem);
  }

  .routing-list a {
    min-height: 150px;
  }

  .company-copy {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 78px;
    padding: 0 20px;
  }

  .group-brand {
    display: inline-block;
  }

  .header-cta {
    display: none;
  }

  .group-logo-header .group-logo-mark {
    width: 46px;
    height: 46px;
    margin-right: 6px;
  }

  .group-logo-header .group-logo-name {
    font-size: 1.18rem;
  }

  .group-logo-header .group-logo-divider,
  .group-logo-header .group-logo-descriptor {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .mobile-menu nav {
    position: absolute;
    top: 54px;
    right: 0;
    width: min(82vw, 300px);
    display: grid;
    padding: 10px;
    color: var(--ink);
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  }

  .mobile-menu nav a {
    padding: 14px;
    font-weight: 680;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 132px 20px 96px;
  }

  .hero-grid {
    min-height: 0;
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.4vw, 3.45rem);
    line-height: 0.94;
    letter-spacing: -0.062em;
  }

  .hero-lead {
    margin-top: 28px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-index {
    grid-template-columns: 1fr;
  }

  .hero-index a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    min-height: 92px;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-index a:last-child {
    border-bottom: 0;
  }

  .hero-index-logo {
    width: 100%;
    height: 40px;
  }

  .hero-index-logo img {
    max-height: 40px;
  }

  .hero-index-logo-shi {
    gap: 10px;
  }

  .hero-index-logo-shi img:first-child {
    width: 38px;
    height: 38px;
  }

  .hero-index-shi-wordmark,
  .hero-index-logo-shi .hero-index-shi-wordmark img {
    height: 38px;
  }

  .hero-index-logo-media img {
    width: min(209px, 100%);
  }

  .hero-index-logo-dispoboxx img {
    width: min(171px, 100%);
  }

  .hero-index-logo-solutions img {
    width: min(248px, 100%);
  }

  .hero-index-cta {
    justify-self: end;
    margin-top: 0;
  }

  .hero-marquee {
    gap: 12px;
    min-height: 42px;
    font-size: 0.54rem;
    letter-spacing: 0.11em;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .brand-world {
    min-height: 720px;
  }

  .brand-world-content {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 54px 24px;
  }

  .card-shi .brand-world-content,
  .card-media .brand-world-content {
    grid-template-columns: 1fr;
  }

  .shi-poster h3 {
    font-size: clamp(3.35rem, 15.6vw, 4.4rem);
    line-height: 0.82;
  }

  .card-media {
    background-position: 52% center;
  }

  .media-photo-overlay {
    background: rgba(11, 19, 17, 0.74);
  }

  .card-media .brand-message h3 {
    font-size: clamp(3.3rem, 14.5vw, 5rem);
  }

  .brand-identity {
    gap: 18px;
  }

  .brand-message h3 {
    font-size: clamp(3rem, 12.5vw, 4.8rem);
  }

  .shi-logo img:last-child {
    width: 144px;
  }

  .fit-intro {
    min-height: 0;
    padding: 88px 24px;
  }

  .fit-intro h2 {
    font-size: clamp(2.25rem, 9.5vw, 3.7rem);
  }

  .routing-list a {
    grid-template-columns: 1fr auto;
    gap: 16px;
    min-height: 140px;
    padding: 26px 24px;
  }

  .routing-brand {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 200px);
    max-width: 200px;
    height: 42px;
    margin-top: 8px;
  }

  .routing-brand-shi {
    width: min(100%, 190px);
  }

  .routing-brand-shi > img {
    width: 32px;
    height: 32px;
  }

  .routing-shi-wordmark {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: 34px;
  }

  .routing-shi-wordmark img {
    width: 100%;
    height: 34px;
    object-fit: contain;
    object-position: left center;
  }

  .routing-brand-media > img,
  .routing-brand-dispoboxx > img,
  .routing-brand-solutions > img {
    width: auto;
    max-width: 100%;
    max-height: 38px;
  }

  .routing-list .arrow {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .regional-overlay {
    background: rgba(7, 35, 39, 0.84);
  }

  .regional-logo {
    max-width: 250px;
  }

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

  .facts-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts-grid > div:last-child {
    border-bottom: 0;
  }

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

  .contact-section {
    min-height: 580px;
  }

  .contact-section h2 {
    font-size: clamp(3.9rem, 16vw, 6.4rem);
  }

  .contact-actions {
    display: grid;
    width: min(100%, 420px);
  }

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

  .group-logo-footer .group-logo-mark {
    width: 46px;
    height: 46px;
  }

  .group-logo-footer .group-logo-name {
    font-size: 1.16rem;
  }

  .group-logo-footer .group-logo-divider,
  .group-logo-footer .group-logo-descriptor {
    display: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-legal {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
