@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy-950: #0c1c2e;
  --navy-900: #0e2034;
  --navy-850: #112338;
  --navy-700: #153456;
  --blue-deep: #08284f;
  --blue: #1469f1;
  --blue-bright: #287eff;
  --ink: #191f29;
  --ink-soft: #323943;
  --muted: #676d77;
  --paper: #f6f7f9;
  --surface: #ffffff;
  --line: #dcdfe5;
  --line-dark: rgba(255, 255, 255, 0.16);
  --hero-copy: #f8f9fb;
  --header-h: 96px;
  --container: 1304px;
  --wide-container: 1384px;
  --shadow-focus: 0 0 0 4px rgba(20, 105, 241, 0.22);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
ul,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: white;
  background: var(--blue);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--hero,
.eyebrow--light {
  color: var(--blue-bright);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(18, 27, 39, 0.08);
  background: rgba(255, 255, 255, 0.975);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) auto minmax(180px, 0.9fr);
  align-items: center;
  width: min(calc(100% - 64px), var(--wide-container));
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  width: 270px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  color: #090a0d;
  font-size: 49px;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1;
}

.wordmark__ring {
  width: 0.92em;
  height: 0.92em;
  flex: 0 0 auto;
  margin: 0 0.055em 0 -0.01em;
  border: 0.19em solid var(--blue);
  border-radius: 50%;
}

.header-panel {
  display: contents;
}

.primary-nav {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: clamp(28px, 3.25vw, 52px);
}

.primary-nav a {
  position: relative;
  padding: 36px 0 34px;
  color: #0c0e12;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--blue);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.language-nav {
  display: flex;
  grid-column: 3;
  justify-content: flex-end;
  gap: 20px;
}

.language-nav a {
  display: inline-flex;
  align-items: center;
  opacity: 0.66;
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-nav a:hover,
.language-nav a[aria-current="page"] {
  opacity: 1;
  transform: translateY(-1px);
}

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

.flag {
  position: relative;
  display: block;
  width: 24px;
  height: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.flag--pl {
  background: linear-gradient(to bottom, #fff 0 50%, #dc143c 50% 100%);
}

.flag--de {
  background: linear-gradient(to bottom, #171717 0 33.33%, #db1f26 33.33% 66.66%, #f8d343 66.66% 100%);
}

.flag--gb {
  background:
    linear-gradient(33deg, transparent 42%, #fff 42% 47%, #d32033 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(-33deg, transparent 42%, #fff 42% 47%, #d32033 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(to right, transparent 38%, #fff 38% 44%, #d32033 44% 56%, #fff 56% 62%, transparent 62%),
    linear-gradient(to bottom, transparent 34%, #fff 34% 41%, #d32033 41% 59%, #fff 59% 66%, transparent 66%),
    #17356f;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 28px 0 31px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 190ms ease, color 190ms ease, border-color 190ms ease, transform 190ms ease;
}

.button svg,
.text-link svg,
.map-card > span:last-child svg {
  width: 28px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  transition: transform 190ms ease;
}

.button:hover svg,
.text-link:hover svg,
.map-card:hover > span:last-child svg {
  transform: translateX(5px);
}

.button--primary {
  min-width: 233px;
  color: white;
  background: var(--blue);
}

.button--primary:hover {
  background: #0b55c8;
  transform: translateY(-2px);
}

.button--light {
  color: var(--navy-950);
  background: white;
}

.button--light:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.button--dark {
  color: white;
  background: var(--navy-950);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 700;
}

.text-link--light {
  color: white;
}

.home-hero {
  position: relative;
  color: var(--hero-copy);
  background: var(--navy-950);
}

.hero-stage {
  position: relative;
  height: min(calc(100svh - var(--header-h)), max(588px, calc(4420px - 375vh)));
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 41.5% 100%);
}

.hero-slide__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 28, 46, 0.15), transparent 65%);
  content: "";
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.hero-slide__wedge {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b3466, #08284f);
  clip-path: polygon(51.6% 0, 55.1% 0, 44.2% 100%, 40.6% 100%);
}

.hero-slide::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 28% 46%, rgba(18, 66, 111, 0.26), transparent 34%),
    linear-gradient(107deg, #0b1b2c 0%, #10263c 48%, #0e2237 48%);
  content: "";
}

.hero-copy-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(calc(100% - 64px), var(--wide-container));
  height: 100%;
  align-items: center;
  margin-inline: auto;
}

.hero-copy {
  width: min(46vw, 620px);
  padding-left: 4px;
}

.eyebrow--hero {
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.hero-title {
  margin-bottom: 27px;
  color: var(--hero-copy);
  font-size: clamp(2.8rem, 3.45vw, 3.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero-title .accent {
  color: var(--blue-bright);
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 34px;
  color: #e4e9ef;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-pagination {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-50%);
}

.hero-pagination button {
  width: 22px;
  height: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-pagination button::before {
  display: block;
  width: 10px;
  height: 1px;
  margin-left: auto;
  background: rgba(56, 132, 255, 0.7);
  content: "";
  transition: width 180ms ease, background 180ms ease;
}

.hero-pagination button:hover::before,
.hero-pagination button[aria-current="true"]::before {
  width: 18px;
  background: #fff;
}

.offer-preview,
.product-proof,
.catalogue-section,
.people-section,
.office-section,
.legal-content,
.direct-contact {
  background: var(--paper);
}

.offer-preview {
  padding: 51px 0 78px;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-intro h2 {
  max-width: 720px;
}

.section-intro--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: end;
  gap: clamp(52px, 9vw, 150px);
  margin-bottom: 32px;
}

.section-intro--split h2 {
  max-width: 570px;
  font-size: clamp(2rem, 2.5vw, 2.35rem);
}

.section-intro--split > p {
  max-width: 470px;
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.75;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 126px;
  align-items: center;
  gap: 15px;
  padding: 20px 16px 22px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  transition: border-color 190ms ease, transform 190ms ease, box-shadow 190ms ease;
}

.offer-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(16, 45, 82, 0.07);
  transform: translateY(-2px);
}

.category-icon {
  width: 47px;
  min-width: 47px;
  height: 47px;
  color: var(--blue);
}

.offer-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.offer-card__copy strong {
  overflow-wrap: anywhere;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.25;
  text-transform: uppercase;
}

.offer-card__copy > span {
  color: #777d86;
  font-size: 0.73rem;
  line-height: 1.3;
}

.offer-card__line {
  position: absolute;
  bottom: -1px;
  left: 24px;
  width: 22px;
  height: 2px;
  background: var(--blue);
  transition: width 190ms ease;
}

.offer-card:hover .offer-card__line {
  width: 52px;
}

.catalogue-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.catalogue-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.company-snapshot {
  position: relative;
  overflow: hidden;
  padding: 118px 0 126px;
  color: white;
  background:
    radial-gradient(circle at 83% 42%, rgba(30, 112, 241, 0.17), transparent 29%),
    linear-gradient(118deg, var(--navy-950) 0 62%, #0a2747 62% 100%);
}

.company-snapshot::after {
  position: absolute;
  top: -40%;
  right: 27%;
  width: 1px;
  height: 180%;
  background: linear-gradient(transparent, rgba(52, 133, 255, 0.55), transparent);
  content: "";
  transform: rotate(15deg);
}

.company-snapshot__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(70px, 10vw, 160px);
}

.company-snapshot__grid > * {
  min-width: 0;
}

.company-snapshot h2,
.company-snapshot h3 {
  color: white;
}

.company-snapshot__intro h2 {
  margin-bottom: 28px;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.company-snapshot__intro > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
}

.company-snapshot__facts {
  display: grid;
  align-content: center;
  gap: 48px;
}

.company-snapshot__facts article {
  position: relative;
  padding: 0 0 0 44px;
}

.fact-mark {
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 4px solid var(--blue-bright);
  border-radius: 50%;
}

.company-snapshot__facts h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.company-snapshot__facts p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
}

.product-proof {
  padding: 108px 0 116px;
}

.product-proof--soft {
  background: #f0f3f7;
}

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

.product-strip figure {
  min-width: 0;
  margin-bottom: 0;
}

.product-strip__image {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.product-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-strip figcaption {
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.forwarding-snapshot {
  position: relative;
  display: grid;
  min-height: 540px;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

.forwarding-snapshot::before {
  position: absolute;
  inset: 0;
  background-image: url("/images/hero-transport.webp");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.forwarding-snapshot__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 34, 0.98) 0 34%, rgba(7, 20, 34, 0.78) 49%, rgba(7, 20, 34, 0.06) 78%);
}

.forwarding-snapshot__overlay::after {
  position: absolute;
  inset: 0;
  background: rgba(12, 55, 99, 0.52);
  clip-path: polygon(44% 0, 49% 0, 39% 100%, 34% 100%);
  content: "";
}

.forwarding-snapshot__content {
  position: relative;
  z-index: 2;
}

.forwarding-snapshot__content h2 {
  max-width: 620px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
}

.forwarding-snapshot__content > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-snapshot {
  padding: 92px 0;
  background: white;
}

.contact-snapshot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 100px;
  align-items: center;
}

.contact-snapshot h2 {
  max-width: 650px;
}

.contact-snapshot__grid > div:last-child > p {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  margin-top: 25px;
}

.contact-actions > a:not(.text-link) {
  font-size: 0.9rem;
  font-weight: 700;
}

.inner-hero {
  position: relative;
  display: grid;
  height: calc(100svh - var(--header-h));
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--navy-950);
}

.inner-hero__media {
  position: absolute;
  inset: 0;
  clip-path: polygon(57% 0, 100% 0, 100% 100%, 47% 100%);
}

.inner-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

.inner-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 27, 45, 0.45), transparent 55%);
  content: "";
}

.inner-hero__wedge {
  position: absolute;
  inset: 0;
  background: var(--blue-deep);
  clip-path: polygon(54.5% 0, 58% 0, 49.5% 100%, 46% 100%);
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(23, 91, 153, 0.28), transparent 36%),
    linear-gradient(110deg, #0a1b2d, #10263c 58%, transparent 58%);
  content: "";
}

.inner-hero__content {
  position: relative;
  z-index: 2;
}

.inner-hero__content h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(2.7rem, 4.4vw, 4.7rem);
  text-transform: uppercase;
}

.inner-hero__content > p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.76);
}

.editorial-section {
  padding: 112px 0;
  background: white;
}

.editorial-section--soft {
  background: var(--paper);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  gap: clamp(60px, 9vw, 150px);
}

.editorial-grid h2 {
  max-width: 600px;
}

.prose {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.82;
}

.prose p {
  margin-bottom: 24px;
}

.pillar-section,
.directions-section {
  padding: 108px 0 118px;
  background: var(--paper);
}

.pillar-lines {
  border-top: 1px solid var(--line);
}

.pillar-lines article {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1.25fr) auto;
  align-items: center;
  gap: 55px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.pillar-lines article > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillar-lines article p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.registration-section,
.capacity-section,
.sales-contact {
  padding: 92px 0;
  color: white;
  background:
    radial-gradient(circle at 83% 40%, rgba(35, 122, 255, 0.22), transparent 27%),
    var(--navy-950);
}

.registration-grid,
.capacity-grid,
.sales-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  gap: 90px;
  align-items: center;
}

.registration-section h2,
.capacity-section h2,
.sales-contact h2 {
  color: white;
}

.registration-section dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.registration-section dl > div {
  min-height: 92px;
  padding: 20px 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.registration-section dt {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.registration-section dd {
  margin-bottom: 0;
  color: white;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.5;
}

.capacity-number {
  display: flex;
  align-items: baseline;
  color: white;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.capacity-number i {
  margin-inline: 16px;
  color: var(--blue-bright);
  font-style: normal;
  font-weight: 400;
}

.capacity-number small {
  margin-left: 9px;
  color: var(--blue-bright);
  font-size: 0.27em;
  letter-spacing: 0;
}

.capacity-grid > div:last-child > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.direction-lines {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  margin-top: 60px;
}

.direction-lines::before {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), #80b2ff);
  content: "";
}

.direction-lines article {
  position: relative;
  padding-top: 42px;
}

.route-dot {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.direction-lines h3 {
  margin-bottom: 15px;
}

.direction-lines p {
  color: var(--muted);
  font-size: 0.9rem;
}

.direct-contact {
  padding: 106px 0 116px;
}

.contact-people {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.contact-people article {
  min-height: 210px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.contact-people h3 {
  margin-bottom: 11px;
}

.contact-people p {
  min-height: 52px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.contact-people a {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 0.81rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.catalogue-section {
  padding: 100px 0 118px;
}

.catalogue-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 62px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.catalogue-index > a {
  display: flex;
  min-width: 0;
  min-height: 106px;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition: color 170ms ease, background 170ms ease;
}

.catalogue-index > a:hover {
  color: var(--blue);
  background: #fafdff;
}

.catalogue-index .category-icon {
  width: 43px;
  min-width: 43px;
  height: 43px;
}

.catalogue-index span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.catalogue-index strong {
  font-size: 0.76rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.catalogue-index small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.catalogue-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px 28px;
  align-items: end;
  margin-bottom: 28px;
}

.catalogue-tools label {
  grid-column: 1;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.catalogue-search {
  position: relative;
  grid-column: 1;
  max-width: 680px;
}

.catalogue-search > svg {
  position: absolute;
  top: 50%;
  left: 19px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  transform: translateY(-50%);
}

.catalogue-search input {
  width: 100%;
  height: 58px;
  padding: 0 56px 0 55px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: white;
}

.catalogue-search input:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: var(--shadow-focus);
}

.catalogue-search button {
  position: absolute;
  top: 50%;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 160ms ease;
}

.catalogue-search button.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.catalogue-count {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.catalogue-groups {
  border-top: 1px solid var(--ink);
}

.catalogue-group {
  scroll-margin-top: calc(var(--header-h) + 25px);
  border-bottom: 1px solid var(--line);
  background: white;
}

.catalogue-group > summary {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px 16px 12px;
  cursor: pointer;
  list-style: none;
}

.catalogue-group > summary::-webkit-details-marker {
  display: none;
}

.catalogue-group > summary > span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 19px;
}

.catalogue-group > summary > span:first-child {
  flex: 1 1 auto;
}

.catalogue-group > summary strong {
  min-width: 0;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.catalogue-group > summary > span:last-child {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.76rem;
}

.catalogue-group > summary i {
  position: relative;
  width: 22px;
  height: 22px;
  margin-left: 15px;
}

.catalogue-group > summary i::before,
.catalogue-group > summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: translate(-50%, -50%);
}

.catalogue-group > summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 170ms ease;
}

.catalogue-group[open] > summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.catalogue-group__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  padding: 0 24px 46px 83px;
}

.catalogue-subgroup {
  padding: 26px 0 12px;
  border-top: 1px solid var(--line);
}

.catalogue-subgroup h3 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalogue-subgroup ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalogue-subgroup li {
  padding: 13px 0 14px 18px;
  border-bottom: 1px solid #e9ebef;
  border-left: 2px solid #dbe6f7;
}

.catalogue-subgroup li strong,
.catalogue-subgroup li span {
  display: block;
}

.catalogue-subgroup li strong {
  font-size: 0.8rem;
  line-height: 1.45;
}

.catalogue-subgroup li span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.catalogue-subgroup[hidden],
.catalogue-group[hidden],
.catalogue-subgroup li[hidden] {
  display: none;
}

.sales-contact__grid > div:first-child > p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
}

.sales-contact__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.sales-contact__actions > a:not(.button) {
  color: white;
  font-size: 0.94rem;
  font-weight: 650;
}

.sales-contact__actions .button {
  margin-top: 14px;
}

.contact-hero,
.legal-hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 76% 20%, rgba(33, 119, 255, 0.24), transparent 28%),
    var(--navy-950);
}

.contact-hero {
  display: grid;
  height: calc(100svh - var(--header-h));
  min-height: 0;
  align-items: center;
  padding: 0;
}

.contact-hero__shape {
  position: absolute;
  inset: -80% 20% -80% auto;
  width: 260px;
  background: linear-gradient(180deg, rgba(31, 117, 255, 0), rgba(31, 117, 255, 0.35), rgba(31, 117, 255, 0));
  transform: rotate(17deg);
}

.contact-hero__visual,
.legal-hero__visual {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: max(5vw, 42px);
  width: min(38vw, 560px);
  height: min(58vh, 520px);
  color: #277eff;
  opacity: 0.78;
  transform: translateY(-50%);
}

.contact-hero__visual svg,
.legal-hero__visual svg {
  width: 100%;
  height: 100%;
}

.legal-hero__visual {
  right: max(9vw, 70px);
  width: min(31vw, 470px);
  opacity: 0.62;
}

.contact-hero h1,
.legal-hero h1 {
  max-width: 920px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  text-transform: uppercase;
}

.contact-hero .container,
.legal-hero .container {
  position: relative;
  z-index: 1;
}

.contact-hero .container > p:last-child,
.legal-hero .container > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.office-section {
  padding: 108px 0;
}

.office-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 90px;
  align-items: stretch;
}

.office-grid address {
  margin: 28px 0 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.75;
}

.office-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.office-links a {
  color: var(--blue);
  font-weight: 650;
}

.office-links span {
  color: var(--muted);
  font-size: 0.82rem;
}

.map-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: visible;
  padding: 34px;
  color: white;
  background: var(--navy-950);
}

.map-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.78;
  background-image:
    linear-gradient(rgba(54, 125, 220, 0.19) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 125, 220, 0.19) 1px, transparent 1px),
    radial-gradient(circle at 64% 45%, rgba(28, 119, 255, 0.55), transparent 6%);
  background-size: 48px 48px, 48px 48px, auto;
}

.map-grid::before,
.map-grid::after {
  position: absolute;
  content: "";
}

.map-grid::before {
  top: 0;
  left: 32%;
  width: 9%;
  height: 100%;
  border-right: 3px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid rgba(255, 255, 255, 0.16);
  transform: rotate(12deg);
}

.map-grid::after {
  top: 44%;
  left: 63%;
  width: 17px;
  height: 17px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(20, 105, 241, 0.18);
}

.map-card strong,
.map-card > span:last-child {
  position: relative;
  z-index: 1;
}

.map-card strong {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.map-card > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 700;
}

.people-section {
  padding: 108px 0 118px;
  background: var(--paper);
}

.legal-hero {
  display: grid;
  height: calc(100svh - var(--header-h));
  align-items: center;
  padding: 0;
}

.legal-hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
}

.legal-content {
  padding: 100px 0 120px;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: 0 90px;
}

.legal-grid article {
  display: contents;
}

.legal-grid h2,
.legal-grid p {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-grid h2 {
  font-size: 1.1rem;
  line-height: 1.35;
}

.legal-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.site-footer {
  padding: 74px 0 0;
  color: rgba(255, 255, 255, 0.64);
  background: #071522;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.76fr);
  gap: 58px;
  padding-bottom: 60px;
}

.footer-brand .wordmark {
  margin-bottom: 24px;
  color: white;
  font-size: 38px;
}

.footer-brand .wordmark__ring {
  border-color: white;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: white;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  font-size: 0.78rem;
  line-height: 1.75;
}

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

.footer-grid a:hover,
.footer-bottom a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.7rem;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
  font-size: 0.7rem;
}

.not-found {
  padding: 110px 0;
  background: white;
}

.not-found h1 {
  margin-bottom: 32px;
}

@media (max-width: 1180px) {
  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-card {
    height: 116px;
  }

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

@media (max-width: 1080px) {
  :root {
    --header-h: 76px;
  }

  .header-inner {
    display: flex;
    width: min(calc(100% - 44px), var(--wide-container));
    justify-content: space-between;
  }

  .brand {
    width: 225px;
  }

  .brand .wordmark {
    font-size: 39px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 0 10px 10px;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .menu-toggle__lines {
    display: grid;
    width: 28px;
    gap: 5px;
  }

  .menu-toggle__lines i {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-panel {
    position: fixed;
    z-index: 90;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    padding: 40px 24px 34px;
    border-top: 1px solid var(--line);
    background: white;
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .header-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .primary-nav {
    display: grid;
    grid-column: auto;
    min-width: 0;
    gap: 0;
  }

  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-nav a::after {
    right: auto;
    bottom: 0;
    width: 42px;
  }

  .language-nav {
    grid-column: auto;
    min-width: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  .language-nav a {
    gap: 8px;
    min-width: 82px;
    padding: 10px;
    border: 1px solid var(--line);
  }

  .language-code {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .hero-stage {
    height: calc(100svh - var(--header-h));
  }

  .hero-slide__media {
    clip-path: polygon(61% 0, 100% 0, 100% 100%, 50% 100%);
  }

  .hero-slide__wedge {
    clip-path: polygon(58.5% 0, 62% 0, 53% 100%, 49.5% 100%);
  }

  .hero-copy-wrap {
    width: min(calc(100% - 48px), var(--wide-container));
  }

  .hero-copy {
    width: 53vw;
  }

  .hero-title {
    font-size: clamp(2.45rem, 4.9vw, 3.15rem);
  }

  .registration-grid,
  .capacity-grid,
  .sales-contact__grid,
  .office-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .catalogue-group__content {
    padding-left: 24px;
  }
}

@media (max-width: 900px) {
  .section-intro--split,
  .company-snapshot__grid,
  .editorial-grid,
  .contact-snapshot__grid,
  .registration-grid,
  .capacity-grid,
  .sales-contact__grid,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    height: calc(100svh - var(--header-h));
  }

  .hero-slide::before {
    background: linear-gradient(180deg, var(--navy-950) 0 64%, #0f2740 64% 100%);
  }

  .hero-slide__media {
    inset: auto 0 0;
    height: clamp(285px, 42svh, 420px);
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-slide__media::after {
    background: linear-gradient(180deg, rgba(12, 28, 46, 0.5), transparent 45%);
  }

  .hero-slide__wedge {
    inset: auto 0 245px;
    height: 70px;
    clip-path: polygon(0 68%, 100% 0, 100% 30%, 0 100%);
  }

  .hero-copy-wrap {
    align-items: flex-start;
  }

  .hero-copy {
    width: min(100%, 670px);
    padding-top: 62px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 7vw, 3.6rem);
  }

  .hero-lead {
    max-width: 610px;
  }

  .hero-pagination {
    top: auto;
    right: 24px;
    bottom: 22px;
    flex-direction: row;
    transform: none;
  }

  .hero-pagination button {
    width: 30px;
  }

  .hero-pagination button::before {
    width: 18px;
  }

  .hero-pagination button:hover::before,
  .hero-pagination button[aria-current="true"]::before {
    width: 28px;
  }

  .section-intro--split {
    gap: 24px;
  }

  .section-intro--split > p {
    max-width: 620px;
  }

  .company-snapshot__grid {
    gap: 70px;
  }

  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }

  .forwarding-snapshot__overlay {
    background: linear-gradient(90deg, rgba(7, 20, 34, 0.96) 0 60%, rgba(7, 20, 34, 0.4) 90%);
  }

  .contact-snapshot__grid {
    gap: 36px;
  }

  .inner-hero {
    height: calc(100svh - var(--header-h));
    align-items: start;
  }

  .inner-hero::before {
    background: linear-gradient(180deg, var(--navy-950) 0 61%, #10263c 61% 100%);
  }

  .inner-hero__media {
    inset: auto 0 0;
    height: clamp(285px, 42svh, 420px);
    clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 100%);
  }

  .inner-hero__wedge {
    inset: auto 0 clamp(245px, calc(42svh - 40px), 380px);
    height: 70px;
    clip-path: polygon(0 68%, 100% 0, 100% 30%, 0 100%);
  }

  .inner-hero__content {
    padding-top: 70px;
  }

  .inner-hero__content h1 {
    max-width: 760px;
    font-size: clamp(2.55rem, 7.2vw, 4.1rem);
  }

  .editorial-grid {
    gap: 40px;
  }

  .pillar-lines article {
    grid-template-columns: minmax(160px, 0.42fr) 1fr;
    gap: 35px;
  }

  .pillar-lines article .text-link {
    grid-column: 2;
  }

  .registration-grid,
  .capacity-grid,
  .sales-contact__grid,
  .office-grid {
    gap: 48px;
  }

  .direction-lines {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .direction-lines::before {
    top: 0;
    bottom: 0;
    left: 8px;
    width: 1px;
    height: auto;
  }

  .direction-lines article {
    padding: 0 0 0 45px;
  }

  .route-dot {
    top: 3px;
  }

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

  .catalogue-group__content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  :root {
    --header-h: 70px;
  }

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

  .header-inner {
    width: calc(100% - 40px);
  }

  .brand {
    width: 190px;
  }

  .brand .wordmark {
    font-size: 33px;
  }

  .menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .hero-stage {
    height: calc(100svh - var(--header-h));
  }

  .hero-copy-wrap {
    width: calc(100% - 40px);
  }

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

  .eyebrow--hero {
    margin-bottom: 15px;
    font-size: 0.72rem;
  }

  .hero-title {
    margin-bottom: 18px;
    font-size: clamp(2rem, 9.8vw, 2.55rem);
    line-height: 1.08;
  }

  html[lang="de"] .hero-title {
    font-size: clamp(1.8rem, 8.35vw, 2.35rem);
  }

  .hero-lead {
    margin-bottom: 23px;
    font-size: 0.91rem;
    line-height: 1.55;
  }

  .button {
    min-height: 54px;
    padding-inline: 22px;
  }

  .button--primary {
    min-width: 210px;
  }

  .hero-slide__media {
    height: clamp(258px, 38svh, 330px);
  }

  .hero-slide__media img {
    object-position: right top;
  }

  .hero-slide__wedge {
    bottom: clamp(155px, calc(38svh - 103px), 227px);
  }

  .offer-preview,
  .product-proof,
  .catalogue-section,
  .people-section,
  .office-section,
  .legal-content,
  .direct-contact,
  .editorial-section,
  .pillar-section,
  .directions-section {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .offer-card {
    height: 146px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 18px;
  }

  .offer-card__copy strong {
    font-size: 0.68rem;
  }

  .offer-card__line {
    left: 18px;
  }

  .catalogue-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-snapshot {
    padding: 70px 0 78px;
  }

  .company-snapshot__intro h2 {
    font-size: 2.45rem;
  }

  .company-snapshot__facts {
    gap: 38px;
  }

  .company-snapshot__facts article {
    padding-left: 37px;
  }

  html[lang="de"] .company-snapshot h2,
  html[lang="de"] .company-snapshot h3,
  html[lang="de"] .company-snapshot p {
    overflow-wrap: anywhere;
  }

  .product-strip {
    gap: 28px 12px;
  }

  .product-strip figcaption {
    font-size: 0.7rem;
  }

  .forwarding-snapshot {
    min-height: 500px;
    align-items: end;
  }

  .forwarding-snapshot::before {
    background-position: center top;
  }

  .forwarding-snapshot__overlay {
    background: linear-gradient(180deg, rgba(7, 20, 34, 0.15) 0 28%, rgba(7, 20, 34, 0.96) 68% 100%);
  }

  .forwarding-snapshot__overlay::after {
    display: none;
  }

  .forwarding-snapshot__content {
    padding-bottom: 56px;
  }

  .forwarding-snapshot__content h2 {
    font-size: 2.55rem;
  }

  .contact-snapshot {
    padding: 62px 0 68px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-hero {
    height: calc(100svh - var(--header-h));
  }

  .inner-hero__content {
    padding-top: 42px;
  }

  .inner-hero__content h1 {
    margin-bottom: 18px;
    max-width: 100%;
    font-size: clamp(1.85rem, 8.4vw, 2.25rem);
    line-height: 1.05;
  }

  .inner-hero__content > p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .inner-hero__media {
    height: clamp(260px, 38svh, 330px);
  }

  .inner-hero__wedge {
    bottom: clamp(221px, calc(38svh - 39px), 291px);
  }

  .inner-hero__media img {
    object-position: right top;
  }

  .editorial-grid {
    gap: 30px;
  }

  .prose {
    font-size: 0.94rem;
  }

  .pillar-lines article {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .pillar-lines article .text-link {
    grid-column: auto;
  }

  .registration-section,
  .capacity-section,
  .sales-contact {
    padding: 68px 0 72px;
  }

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

  .registration-section dl > div {
    border-right: 0;
  }

  .capacity-number {
    font-size: 4rem;
  }

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

  .contact-people article {
    min-height: 0;
    padding: 27px;
  }

  .contact-people p {
    min-height: 0;
  }

  .catalogue-index {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 42px;
  }

  .catalogue-index > a {
    min-height: 88px;
  }

  .catalogue-tools {
    grid-template-columns: 1fr;
  }

  .catalogue-count {
    grid-column: 1;
    grid-row: auto;
    margin-bottom: 0;
  }

  .catalogue-group > summary {
    min-height: 78px;
    padding: 13px 6px;
  }

  .catalogue-group > summary .category-icon {
    width: 37px;
    min-width: 37px;
  }

  .catalogue-group > summary > span {
    gap: 12px;
  }

  .catalogue-group > summary > span:last-child {
    font-size: 0;
  }

  .catalogue-group > summary i {
    margin-left: 0;
  }

  .catalogue-group__content {
    padding: 0 4px 36px;
  }

  .catalogue-subgroup h3 {
    font-size: 0.72rem;
  }

  .contact-hero {
    min-height: 0;
    padding: 0;
  }

  .contact-hero .container,
  .legal-hero .container {
    align-self: start;
    padding-top: 52px;
  }

  .contact-hero__visual,
  .legal-hero__visual {
    top: auto;
    right: 20px;
    bottom: 24px;
    width: calc(100% - 40px);
    height: min(34svh, 250px);
    opacity: 0.46;
    transform: none;
  }

  .contact-hero h1,
  .legal-hero h1 {
    font-size: 2.55rem;
  }

  .office-grid {
    gap: 42px;
  }

  .map-card {
    min-height: 280px;
    padding: 24px;
  }

  .legal-hero {
    padding: 0;
  }

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

  .legal-grid article {
    display: block;
    padding: 26px 0;
    border-top: 1px solid var(--line);
  }

  .legal-grid h2,
  .legal-grid p {
    padding: 0;
    border: 0;
  }

  .legal-grid h2 {
    margin-bottom: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .brand {
    width: 174px;
  }

  .brand .wordmark {
    font-size: 31px;
  }

  .hero-title {
    font-size: 1.92rem;
  }

  .hero-lead {
    font-size: 0.85rem;
  }

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

  .offer-card {
    height: 104px;
    flex-direction: row;
    justify-content: flex-start;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
