/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('../fonts/NeueHaasDisplay-Bold.eot');
  src: url('../fonts/NeueHaasDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasDisplay-Bold.woff') format('woff'),
        url('../fonts/NeueHaasDisplay-Bold.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: url('../fonts/NeueHaasDisplay-Mediu.eot');
  src: url('../fonts/NeueHaasDisplay-Mediu.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasDisplay-Mediu.woff') format('woff'),
        url('../fonts/NeueHaasDisplay-Mediu.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Mediu.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('../fonts/NeueHaasTextPro-Roman.eot');
  src: url('../fonts/NeueHaasTextPro-Roman.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasTextPro-Roman.woff') format('woff'),
        url('../fonts/NeueHaasTextPro-Roman.woff2') format('woff2'),
        url('../fonts/NeueHaasTextPro-Roman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('../fonts/NeueHaasTextPro-Mediu.eot');
  src: url('../fonts/NeueHaasTextPro-Mediu.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasTextPro-Mediu.woff') format('woff'),
        url('../fonts/NeueHaasTextPro-Mediu.woff2') format('woff2'),
        url('../fonts/NeueHaasTextPro-Mediu.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('../fonts/NeueHaasTextPro-Bold.eot');
  src: url('../fonts/NeueHaasTextPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasTextPro-Bold.woff') format('woff'),
        url('../fonts/NeueHaasTextPro-Bold.woff2') format('woff2'),
        url('../fonts/NeueHaasTextPro-Bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

html {
  scroll-padding-top: 26px;
  scroll-snap-type: y proximity;
      scroll-behavior: smooth;
  scroll-padding-top: var(--snap-header-offset);
  zoom: 90%;
}

body {
  font-family: 'Neue Haas Grotesk Text Pro', system-ui, sans-serif;
  line-height: 1.5;
  font-weight: normal;
  background: var(--color-grey);
  color: var(--color-white);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Neue Haas Grotesk Display Pro', system-ui, sans-serif;
}

h2 {
  font-size: 100px;
  line-height: 100px;
  color: var(--color-white);
  font-weight: bold;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 36px;
  line-height: 38px;
  color: var(--color-white);
  font-weight: bold;
  letter-spacing: -0.01em;
}

p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  text-wrap: balance;
}

.button {
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
  padding: 5px;
  display: inline-block;
  margin-top: 26px;
  text-decoration: none;
  transition: all 200ms ease;
}

.button:hover {
  color: var(--color-white);
  border: 1px solid var(--color-white);
}


/* ===== GRID SYSTEM ===== */
:root {
  --columns: 12;
  --col-width: 90px;
  --gutter: 24px;
  --row-height: 52px;
  --color-dark-grey: #2B2E34;
  --color-grey: #595B60;
  --color-light-grey: #AFB0B3;
  --color-lightest-grey: #E2E2E3;
  --color-orange: #FF6A36;
  --color-white: #ffffff;
  --snap-header-offset: 52px;

  --container-width: calc(
    (var(--columns) * var(--col-width)) +
    ((var(--columns) - 1) * var(--gutter))
  );
}

.grid {
  display: grid;
  grid-template-columns: repeat(var(--columns), var(--col-width));
  column-gap: var(--gutter);
  grid-auto-rows: var(--row-height);
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

.section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.section-snap {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}


/* ===== GENERIC COLUMNS ===== */
.col--6 {
  grid-column: span 6;
}

.col--4 {
  grid-column: span 4;
}

.col--3 {
  grid-column: span 3;
}


/* ===== SECTIONS ===== */

/* .section {
  padding: calc(var(--row-height) * 2) 0;
} */

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


/* ===== HEADER ===== */
.header {
  background: var(--color-dark-grey);
  top: 0;
  position: sticky;
  z-index: 100;
}

.header.mobile {
    display: none;

  }

.header__inner {
  align-items: center;
}

.header__nav {
  grid-column: 2 / 6;
  display: flex;
  gap: 24px;
  justify-content: flex-start;
}

.header__nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.header__nav a.is-active {
  color: var(--color-orange);
}

.header__icons {
  grid-column: 12;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.header__icons a img {
  display: block;
}

/* ===== HERO ===== */
.section.section--hero {
  padding-top: 0 !important;
  margin-top: -260px;
}

.hero__logo {
  grid-column: 1;
  grid-row: 3 / 5;
  margin-top: 16px;
}

.header__logo img.white {
  display: none;
}

.hero__title {
  grid-column: 2 / 9;
  grid-row: 3 / 13;
  font-size: 137px;
  line-height: 137px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: bold;
  z-index: 1;
  margin-left: -4px;
  margin-top: -13px;
}

.hero__text {
  grid-column: 2 / 5;
  grid-row: 13 / 19;
  margin-top: 36px;
  line-height: 20px;
}

.hero__text span {
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 20px;
  font-weight: 600;
}

.hero__text p {
  padding-right: 20px;
  padding-top: 8px;
  line-height: 26px;
}

.hero__subtitle {
  grid-column: 7 / 13;
  grid-row: 14 / 17;
  font-size: 67px;
  line-height: 71px;
  letter-spacing: -0.01em;
  font-weight: bold;
  z-index: 1;
  text-align: right;
  margin-top: 25px;
  color: var(--color-light-grey);
}

.hero__image {
  grid-column: 6 / 12;
  grid-row: 1 / span 14;
  background: var(--color-dark-grey);
}

.hero__image img {
  opacity: 0.4;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.section--logo {
  position: sticky;
  top: 0;
  padding-bottom: 0;
  pointer-events: none;
}


/* ===== SECOND SECTION - SYSTEM BEHIND BRAND MEANING ===== */
.section--system .system__background {
  background: var(--color-orange);
  grid-column: 2 / 12;
  grid-row: 2 / 9;
  transform: translateY(-13px);
  z-index: 0;
  height: calc(100% - 8px);
}

.section--system .system__headline {
  grid-column: 2 / 7;
  grid-row: 1 / 9;
  z-index: 1;
  margin-top: 20px;
  margin-left: -12px;
}

.section--system .system__text_one {
  grid-column: 6 / 9;
  grid-row: 2 / 8;
  z-index: 1;
  margin-top: 34px;
}

.section--system .system__text_two {
  grid-column: 9 / 12;
  grid-row: 2 / 8;
  z-index: 1;
  margin-top: 34px;
}


/* ===== THIRD SECTION - THE THREE NON-NEGOTIABLES ===== */
.section--negotiables {
 padding-bottom: 0;
}

.section--negotiables .negotiables__text {
  grid-column: 2 / 6;
  grid-row: 1 / 8;
  text-align: right;
}

.section--negotiables .negotiables__text h3 {
  margin-top: 20px;
}

.section--negotiables .negotiables__text p {
  margin-top: 42px;
}

.section--negotiables .negotiables__column_one {
  grid-column: 6 / 8;
  grid-row: 1 / 11;
}

.section--negotiables .negotiables__column_two {
  grid-column: 8 / 10;
  grid-row: 1 / 11;
}

.section--negotiables .negotiables__column_three {
  grid-column: 10 / 12;
  grid-row: 1 / 11;
}

.section--negotiables [class^="negotiables__column_"] {
  display: grid;
  grid-template-columns: repeat(2, var(--col-width));
  column-gap: var(--gutter);
  grid-auto-rows: var(--row-height);
  width: min(100%, var(--container-width));
}

.section--negotiables [class^="negotiables__column_"] p {
  grid-column: 1 / 3;
  grid-row: 7 / 10;
  margin-top: 34px;
}

.section--negotiables [class^="negotiables__column_"] b {
  display: block;
}

.section--negotiables [class^="negotiables__column_"] .negotiables__img {
  overflow: hidden;
  grid-column: 1 / 3;
  grid-row: 1 / 7;
  transform: translateY(10px);
}

.section--negotiables [class^="negotiables__column_"] img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section--negotiables .negotiables__column_one img {
  object-position: left center;
}

.section--negotiables .negotiables__column_two img {
  object-position: center;
}

.section--negotiables .negotiables__column_three img {
  object-position: right center;
}


/* ===== FOURTH SECTION - BRANDS WE SUPPORT ===== */

.section--brands .brands__headline {
  grid-column: 2 / 6;
  grid-row: 1 / 7;
  z-index: 10;
  pointer-events: none;
}

.section--brands .brands__headline h2 {
  margin-top: 20px;
}

.section--brands .brands__projects {
  grid-column: 4 / 12;
  grid-row: 1 / 19;
  display: grid;
  grid-template-columns: repeat(9, var(--col-width));
  column-gap: var(--gutter);
  row-gap: var(--gutter);
  grid-auto-rows: 31px;
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

.section--brands .project {
  overflow: hidden;
    transition:
    opacity 280ms ease,
    transform 280ms ease,
    box-shadow 280ms ease,
    filter 280ms ease;
    cursor: pointer;
    z-index: 1;
}

.section--brands .project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--brands .project.project__reebok {
  grid-column: 3 / 7;
  grid-row: 1 / 5;
}

.section--brands .project.project__morenutrition {
  grid-column: 7 / 9;
  grid-row: 1 / 5;
}

.section--brands .project.project__arizona {
  grid-column: 1 / 3;
  grid-row: 5 / 9;
}

.section--brands .project.project__paulaner {
  grid-column: 3 / 7;
  grid-row: 5 / 13;
}

.section--brands .project.project__daxsports img {
  object-position: top center;
}

.section--brands .project.project__kaweco {
  grid-column: 7 / 9;
  grid-row: 5 / 13;
}

.section--brands .project.project__gardeningpack {
  grid-column: 1 / 3;
  grid-row: 9 / 13;
}

.section--brands .project.project__defender {
  grid-row: 13 / 17;
  grid-column: 1 / 5;
}

.section--brands .project.project__daxsports {
  grid-row: 13 / 17;
  grid-column: 5 / 7;
}

.section--brands .project.project__adidasaruku {
  grid-row: 13 / 17;
  grid-column: 7 / 9;
}

.section--brands .project .project__overlay {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: all 280ms ease;
}

.section--brands .project .project__overlay span {
  font-weight: bold;
}

.section--brands .project .project__overlay p {
  font-size: 12px;
  line-height: 25px;
}

/* ===== NUR WENN EINE KACHEL GEHOVERT IST ===== */
.section--brands .brands__projects:has(.project:hover) .project {
  opacity: 0.3;
}

/* ===== GEHOVERTE KACHEL ===== */
.section--brands .brands__projects:has(.project:hover) .project:hover {
  opacity: 1;
  z-index: 5;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section--brands .brands__projects:has(.project:hover) .project:hover .project__overlay {
  opacity: 1;
  visibility: visible;
}


/* ===== FIFTH SECTION - WHAT WE SUPPLY ===== */
.section.section--supply {
  padding-bottom: calc(2 * var(--row-height));
}

.section--supply .supply__background {
  grid-column: 2 / 5;
  grid-row: 2 / 6;
  background: var(--color-dark-grey);
}

.section--supply .supply__headline {
  grid-column: 2 / 6;
  grid-row: 1 / 7;
  margin-top: 20px;
  margin-left: -5px;
}

.section--supply .supply__text {
  grid-column: 2 / 5;
  grid-row: 8 / 13;
  color: var(--color-light-grey);
  margin-top: 8px;
  margin-left: -3px;
}

.section--supply .supply__text.tablet,
.section--supply .supply__text.mobile {
  display: none;
}

.section--supply .supply__column_one {
  grid-column: 6 / 8;
  grid-row: 1 / 13;
}

.section--supply .supply__column_two {
  grid-column: 8 / 10;
  grid-row: 1 / 13;
}

.section--supply .supply__column_three {
  grid-column: 10 / 12;
  grid-row: 1 / 13;
}

.section--supply .supply__explanation {
  grid-column: 8 / 12;
  grid-row: 11 / 13;
}

.section--supply .supply__explanation p {
  font-size: 11px;
  line-height: 26px;
  color: var(--color-light-grey);
  text-align: right;
  margin-top: 10px;
}



.section--supply .column__headline {
  font-weight: bold;
  display: block;
  border-bottom: 13px solid var(--color-orange);
  font-size: 14px;
  padding-left: 8px;
  line-height: 10px;
  margin-top: 42px;
  margin-bottom: 48px;
}

.section--supply [class^="supply__column_"] p {
  font-size: 14px;
  line-height: 26px;
  padding-left: 8px;
}

.section--supply [class^="supply__column_"] p span {
  font-size: 12px;
  line-height: 25px;
}

.section--supply [class^="supply__column_"] b {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-orange);
  line-height: 25px;
}

/* SECTION CONTACT */
.section--contact {
  min-height: calc(100vh - (var(--row-height)) - (var(--row-height)));
}

.section--contact .contact__background {
  grid-column: 2 / 12;
  grid-row: 1 / 6;
  background-color: var(--color-dark-grey);
}

.section--contact .contact__headline {
    grid-column: 2 / 5;
    grid-row: 1 / 5;
}

.section--contact .contact__headline h2 {
    margin-top: 20px;
    margin-left: -7px;
}

.section--contact .contact__column_one {
    grid-row: 2 / 3;
    grid-column: 6 / 8;
}

.section--contact .contact__column_two {
    grid-row: 2 / 4;
    grid-column: 8 / 10;
}

.section--contact .contact__column_three {
    grid-row: 3 / 4;
    grid-column: 6 / 8;
}

.section--contact .contact__column_four {
    grid-column: 10 / 11;
    grid-row: 2 / 4;
}

.section--contact [class^="contact__column_"] span {
    font-size: 14px;
    line-height: 25px;
    font-weight: 600;
}

.section--contact [class^="contact__column_"] .column__headline {
    margin-top: 9px;
}

.section--contact .contact__column_three .column__headline {
    margin-top: 34px;
}


.section--contact [class^="contact__column_"] a,
.section--contact [class^="contact__column_"] p {
    font-size: 14px;
    line-height: 25px;
    color: var(--color-white);
    text-decoration: none;
}

.section--contact [class^="contact__column_"] a {
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all 200ms ease-in-out;
}

.section--contact [class^="contact__column_"] a:hover {
  border-bottom: 1px solid var(--color-orange);
  transition: all 200ms ease-in-out;
}

.section--hero:has(.rights_text) .grid.hero {
  grid-auto-rows: minmax(var(--row-height), auto);
}

.rights_text p a {
  color: var(--color-white);
}



/* ===== FOOTER ===== */
.footer {
  scroll-snap-align: start;
  background-color: var(--color-dark-grey);
  /* margin-top: var(--row-height); */
}

.footer .grid {
    align-items: center;
}

.footer p {
  grid-column: 2 / 4;
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.footer .footer__menu {
  grid-column: 9 / 13;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.footer .footer__menu a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}


/* IMPRINT */
.hero__title.rights {
  grid-column: 2 / 9;
  grid-row: 3 / 8;
}

.rights_text {
  grid-row: 9 / 33;
  grid-column: 2 / 8;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 984px) {
  :root {
    --columns: 8;
    --col-width: 90px;
    --gutter: 24px;
    --row-height: 42px;
    --snap-header-offset: 42px;
  }

  p {
    font-size: 12px;
    line-height: 21px;
  }

  .button {
    font-size: 10px;
    line-height: 13px;
    margin-top: 20px;
  }

  .header__nav a {
    font-size: 12px;
    line-height: 14px;
  }

  .header__icons {
    grid-column: 8;
    justify-content: flex-end;
  }

  .hero__logo {
    grid-row: 2 / 5;
    margin-top: 40px;
  }

  .section.section--hero {
    padding-bottom: 0;
  }

  .hero__title {
    grid-column: 2 / 7;
    grid-row: 4 / 13;
    font-size: 93px;
    line-height: 89px;
    margin-top: 7px;
  }

  .hero__image {
    grid-column: 4 / 8;
    grid-row: 1 / span 14;
    transform: translateY(-19px);
  }

  .hero__text {
    margin-top: 26px;
  }

  .hero__text span {
    font-size: 12px;
    line-height: 17px;
  }

  .hero__text p {
    padding-top: 3px;
    line-height: 21px;
  }

  .hero__subtitle {
    grid-column: 4 / 9;
    grid-row: 14 / 17;
    font-size: 45px;
    line-height: 48px;
    margin-top: 3px;
  }

  .section--system .system__background {
    grid-column: 2 / 9;
    grid-row: 2 / 14;
    transform: none;
    height: auto;
    width: calc(100% + 12px);
    margin-left: -12px;
  }

  .section--system .system__headline {
    grid-column: 2 / 7;
    grid-row: 2 / 8;
    margin-top: -13px;
    margin-left: 0;
  }

  .section--system .system__text_one {
    grid-column: 2 / 5;
    grid-row: 8 / 14;
    margin-top: 27px;
  }

  .section--system .system__text_two {
    grid-column: 5 / 8;
    grid-row: 8 / 14;
    margin-top: 27px;
  }

  h2 {
    font-size: 68px;
    line-height: 65px;
  }

  h3 {
    font-size: 24px;
    line-height: 26px;
  }

  .section--negotiables .negotiables__text {
    text-align: left;
  }

  .section--negotiables .negotiables__text p {
    margin-top: 39px;
  }

  .section--negotiables .negotiables__column_one {
    grid-column: 2 / 4;
    grid-row: 9 / 21;
  }

  .section--negotiables .negotiables__column_two {
    grid-column: 4 / 6;
    grid-row: 9 / 20;
  }

  .section--negotiables .negotiables__column_three {
    grid-column: 6 / 9;
    grid-row: 9 / 20;
  }

  .section--negotiables [class^="negotiables__column_"] .negotiables__img {
    grid-column: 1 / 3;
    grid-row: 1 / 9;
    transform: none;
  }

  .section--negotiables [class^="negotiables__column_"] p {
    grid-column: 1 / 3;
    grid-row: 9 / 13;
    margin-top: 27px;
  }

  .section--brands .brands__projects {
    grid-column: 2 / 9;
    grid-row: ;
    column-gap: 17px;
    row-gap: 17px;
    grid-auto-rows: 42px;
    grid-template-columns: repeat(18, 27px);
  }

  .section--brands .project.project__reebok {
    grid-column: 9 / 13;
  }

  .section--brands .project.project__morenutrition {
    grid-column: 13 / 17;
  }

  .section--brands .project.project__arizona {
    grid-column: 1 / 5;
    grid-row: 4 / 7;
  }

  .section--brands .project.project__paulaner {
    grid-column: 5 / 13;
    grid-row: 4 / 10;
}

.section--brands .project.project__kaweco {
    grid-column: 13 / 17;
    grid-row: 4 / 10;
}

.section--brands .project.project__gardeningpack {
    grid-column: 1 / 5;
    grid-row: 7 / 10;
}

.section--brands .project.project__defender {
    grid-row: 10 / 13;
    grid-column: 1 / 9;
}

.section--brands .project.project__daxsports {
    grid-row: 10 / 13;
    grid-column: 9 / 13;
}

.section--brands .project.project__adidasaruku {
    grid-row: 10 / 13;
    grid-column: 13 / 17;
}

  .section.section--system {
    overflow: hidden;
  }

  .section.section--system .grid {
    margin-left: auto;
    margin-right: 0;
    width: calc(min(100%, var(--container-width)) + ((100vw - min(100%, var(--container-width)))) / 2);
  }

  .section.section--system .system__background {
    width: calc(100% + ((100vw - min(100%, var(--container-width)))) / 2);
  }

  .section--supply .supply__text {
    display: none;
  }

  .section--supply .supply__text.tablet {
    display: block;
    grid-column: 6 / 9;
    grid-row: 2 / 10;
    margin-top: 0;
    margin-left: 0;
  }

  .section--supply .supply__column_one {
    grid-column: 2 / 4;
    grid-row: 9 / 20;
  }

  .section--supply .supply__column_two {
    grid-column: 4 / 6;
    grid-row: 9 / 20;
  }

  .section--supply .supply__column_three {
    grid-column: 6 / 8;
    grid-row: 9 / 21;
  }

  .section--supply .column__headline {
    margin-top: 32px;
    margin-bottom: 35px;
  }

  .section--supply [class^="supply__column_"] p {
    font-size: 12px;
    line-height: 21px;
  }

  .section--supply [class^="supply__column_"] b {
    font-size: 12px;
    line-height: 21px;
  }

  .section--supply [class^="supply__column_"] p span {
    font-size: 10px;
    line-height: 20px;
  }

  .section--supply .supply__explanation {
    grid-column: 4 / 8;
    grid-row: 19 / 21;
  }

  .section--supply .supply__explanation p {
    font-size: 10px;
    line-height: 25px;
    margin-top: -7px;
  }

  .section--contact .contact__headline {
    z-index: 1;
    position: relative;
    margin-top: 10px;
  }

  .section--contact .contact__background {
    grid-column: 2 / 9;
    grid-row: 5 / 10;
    transform: translateY(-21px);
    margin-left: -12px;
    z-index: -1;
  }

  .section--contact .contact__column_one {
    grid-column: 2 / 4;
    grid-row: 5 / 7;
  }

  .section--contact .contact__column_two {
    grid-column: 4 / 6;
    grid-row: 5 / 8;
  }

  .section--contact .contact__column_three {
    grid-column: 2 / 4;
    grid-row: 7 / 9;
  }

  .section--contact .contact__column_four {
    grid-column: 6 / 7;
    grid-row: 5 / 8;
  }

  .section--contact [class^="contact__column_"] .column__headline {
    margin-top: 24px;
  }

  .footer .footer__menu {
    grid-column: 7 / 9;
  }

  .footer p,
  .footer .footer__menu a {
    font-size: 12px;
  }

}

@media only screen and (max-width: 550px) {
    :root {
    --columns: 4;
    --col-width: 90px;
    --gutter: 24px;
    --row-height: 50px;
    --snap-header-offset: 42px;
  }

  h2 {
    font-size: 38px;
    line-height: 36px;
  }

  .header {
    display: none;
  }

  .header.mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
  }

  .header.mobile .grid {
    grid-auto-rows: auto;
    align-items: center;
  }

  .header.mobile .header__logo {
    grid-column: 1 / 1;
    background-color: var(--color-orange);
    padding: 10%;
  }

  .header.mobile .header__logo img {
    margin: 0 auto;
    display: block;
  }

  .header.mobile .header__logo img.grey {
    display: none;
  }

  .header.mobile .header__menu {
    position: relative;
    z-index: 2;
  }

  .header.mobile .header__menu_trigger {
    grid-column: 4 / 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .header.mobile .header__inside {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background: var(--color-dark-grey);
    padding: 32px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  }

  .header.mobile.open .header__inside {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden;
    height: 100%;
  }

  /* ===== HAMBURGER TOGGLE ===== */
  .menu-toggle {
    width: 26px;
    height: 18px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-orange);
    transition: transform 250ms ease, opacity 200ms ease;
  }

  .header.mobile.open .menu-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header.mobile.open .menu-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .header.mobile.open .menu-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* ===== MOBILE MENU PANEL CONTENT ===== */
  .header__navigation_open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .header__navigation_open a {
    font-family: 'Neue Haas Grotesk Display Pro', system-ui, sans-serif;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: -0.01em;
    color: var(--color-white);
    text-decoration: none;
    transition: color 200ms ease;
  }

  .header__navigation_open a:hover,
  .header__navigation_open a:active {
    color: var(--color-orange);
  }

  .header__icons_open {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .header__icons_open a img {
    width: 22px;
    height: 22px;
    display: block;
    margin: 0 auto;
  }

  .header__icons_open .lang-switch {
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  .section--logo {
    display: none;
  }

  .section.section--hero {
    margin-top: 0;
  }

  .hero__title {
    grid-column: 1 / 4;
    grid-row: 4 / 8;
    font-size: 52px;
    line-height: 55px;
    margin-top: 7px;
  }

  .hero__image {
    grid-column: 2 / 5;
    grid-row: 1 / span 8;
    transform: none;
    width: calc((100vw - var(--container-width)) / 2 + 100%);
    height: calc(100% + 20px);
  }

  .hero__text {
    grid-column: 1 / 4;
    grid-row: 9 / 14;
    margin-top: 34px;
  }

  .hero__text p {
    padding-top: 11px;
  }

  .hero__subtitle {
    grid-column: 2 / 5;
    grid-row: 9 / 10;
    font-size: 25px;
    line-height: 27px;
    margin-top: 2px;
  }

  .section.section--system .grid {
    width: min(100%, var(--container-width));
    margin-left: auto;
    margin-right: auto;
  }

  .section.section--system .system__background {
    width: 100vw;
    grid-column: 1 / 4;
    margin-left: calc((-100vw + var(--container-width)) / 2);
  }

  .section--system .system__headline {
    grid-column: 1 / 3;
    grid-row: 2 / 5;
    margin-top: -7px;
  }

  .section--system .system__text_one {
    grid-column: 1 / 5;
    grid-row: 5 / 10;
  }

  .section--system .system__text_two {
    grid-column: 1 / 5;
    grid-row: 10 / 14;;
  }

  .section--negotiables .negotiables__text {
    grid-column: 1 / 5;
    grid-row: 1 / 8;
  }

  .section--negotiables .negotiables__column_one {
    grid-column: 1 / 5;
    grid-row: 8 / 11;
  }

  .section--negotiables [class^="negotiables__column_"] .negotiables__img {
    grid-column: 1 / 3;
    grid-row: 1/ 4;
  }

  .section--negotiables .negotiables__column_one img {
    object-position: center top;
  }

  .section--negotiables .negotiables__column_two img {
    object-position: center center;
  }

  .section--negotiables .negotiables__column_three img {
    object-position: center bottom;
  }

  .section--negotiables [class^="negotiables__column_"] p {
    grid-column: 3 / 5;
    grid-row: 1 / 4;
    margin-top: 35px;
  }

  .section--negotiables .negotiables__column_two {
    grid-column: 1 / 5;
    grid-row: 12 / 16;
  }

  .section--negotiables .negotiables__column_three {
    grid-column: 1 / 5;
    grid-row: 16 / 19;
  }

  .section--brands .brands__headline {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
  }

    .section--brands .brands__projects {
    grid-column: 1 / 5;
    grid-row: 1 / 11;
    column-gap: 15px;
    row-gap: 15px;
    grid-auto-rows: 44px;
    grid-template-columns: repeat(12, 22px);
  }

  .section--brands .project.project__reebok {
    grid-row: 7 / 9;
    grid-column: 1 / 7;
  }

  .section--brands .project.project__morenutrition {
    grid-column: 10 / 13;
    grid-row: 1 / 3;
  }

  .section--brands .project.project__arizona {
    grid-column: 10 / 13;
    grid-row: 7 / 9;
  }

  .section--brands .project.project__paulaner {
    grid-column: 4 / 10;
    grid-row: 3 / 7;
}

.section--brands .project.project__kaweco {
    grid-column: 1 / 4;
    grid-row: 3 / 7;
}

.section--brands .project.project__gardeningpack {
    grid-column: 10 / 13;
    grid-row: 5 / 7;
}

.section--brands .project.project__defender {
    grid-row: 3 / 5;
    grid-column: 10 / 13;
}

.section--brands .project.project__daxsports {
    grid-row: 7 / 9;
    grid-column: 7 / 10;
}

.section--brands .project.project__adidasaruku {
    grid-column: 7 / 10;
    grid-row: 1 / 3;
}

.section--brands .project .project__overlay span {
  font-size: 12px;
}

.section--supply .supply__headline {
  grid-column: 1 / 3;
  grid-row: 1 / 4;
}

.section--supply .supply__background {
    margin-top: 20px;
    transform: translateY(10px);
    z-index: -1;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.section--supply .supply__text.tablet {
  display: none;
}

.section--supply .supply__text.mobile {
  display: block;
  grid-column: 1 / 5;
  grid-row: 4 / 10;
  margin-left: 0;
  margin-top: 14px;
}

.section--supply .column__headline {
  margin-top: -10px;
  margin-bottom: 22px;
}

.section--supply .supply__column_one {
  grid-column: 1 / 5;
  grid-row: 9 / 18;
}

.section--supply .supply__column_two {
  grid-column: 1 / 5;
  grid-row: 19 / 25;
}

.section--supply .supply__column_three {
  grid-column: 1 / 5;
  grid-row: 26 / 32;
}

.section--supply .supply__explanation {
  grid-column: 1 / 5;
  grid-row: 33 / 35;
  text-align: left;
}

.section--supply .supply__explanation p {
  text-align: left;
  margin-top: 0;
}

.section.section--supply {
  padding-bottom: var(--row-height);
}

.section--contact {
  min-height: auto;
}

.section--contact .contact__background {
  width: 100vw;
  margin-left: calc((-100vw + var(--container-width)) / 2);
  grid-column: 1 / 5;
  grid-row: 3 / 13;
}

.section--contact .contact__headline {
  grid-columN: 1 / 5;
  grid-row: 1 / 4;
}

.section--contact .contact__column_one {
    grid-column: 1 / 4;
    grid-row: 3 / 5;
}

.section--contact .contact__column_two {
    grid-column: 1 / 5;
    grid-row: 5 / 8;
}

.section--contact .contact__column_three {
    grid-column: 1 / 4;
    grid-row: 8 / 10;
}

.section--contact .contact__column_four {
    grid-column: 1 / 5;
    grid-row: 10 / 12;
}

.footer p {
  grid-column: 1 / 3;
}

.footer .footer__menu {
  grid-column: 3 / 5;
}

.rights_text {
    grid-row: 7 / 33;
    grid-column: 1 / 5;
}


}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.lang-switch button {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-light-grey);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 200ms ease;
}

.lang-switch button:hover {
  color: var(--color-white);
}

.lang-switch button.is-active {
  color: var(--color-orange);
}

.lang-switch__divider {
  color: var(--color-light-grey);
  font-size: 12px;
}

.header__icons_open .lang-switch {
  margin-left: 0;
  margin-top: 12px;
}
