@font-face {
  font-family: "Site Sans";
  src: url("/fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Site Sans";
  src: url("/fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --gold: #cfab4b;
  --gold-dark: #bd983a;
  --black: #050505;
  --text: #111;
  --paper: #f7f6f5;
  --white: #fff;
  --max: 1140px;
  font-family: "Site Sans", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.topbar {
  height: 39px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.topbar__inner {
  width: min(calc(100% - 32px), 1125px);
  height: 39px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 38px;
}

.topbar a {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.topbar__form {
  justify-self: end;
}

.nav-wrap {
  background: #fff;
  border-bottom: 1px solid #eee6d5;
}

.nav-inner {
  width: min(calc(100% - 32px), 1148px);
  height: 132px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 172px 1fr;
  align-items: center;
  gap: 36px;
}

.logo {
  display: grid;
  place-items: center;
  align-self: stretch;
}

.logo img {
  width: 136px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  min-width: 0;
  min-height: 76px;
  align-items: center;
  justify-content: flex-end;
  align-content: center;
  gap: 8px 10px;
  flex-wrap: wrap;
  padding: 7px 0 7px 28px;
  border-left: 1px solid #eadfca;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: #1e1b17;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  overflow-wrap: anywhere;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.main-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: #f6eedb;
  color: #5f4919;
  box-shadow: inset 0 0 0 1px rgba(207, 171, 75, 0.25);
  outline: 0;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 526px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("/images/ankauf-lagerbestand-hero.jpg") center center / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.47);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 980px);
  margin-top: 8px;
  text-align: center;
}

.hero h1 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero p {
  max-width: 870px;
  margin: 0 auto 25px;
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
}

.hero--subpage {
  min-height: 526px;
}

.hero--subpage .hero__content {
  margin-top: 0;
}

.hero--automation {
  min-height: 526px;
  background-image: url("/images/automatisierungstechnik-hero.jpg");
  background-position: center center;
}

.hero--industrieelektronik {
  background-image: url("/images/industrieelektronik-hero.jpg");
  background-position: center center;
}

.hero--servomotoren {
  background-image: url("/images/servomotoren-hero.jpg");
  background-position: center center;
}

.hero--industrie-ersatzteile {
  background-image: url("/images/industrie-ersatzteile-hero.jpg");
  background-position: center center;
}

.hero--schaltschraenke {
  background-image: url("/images/schaltschraenke-hero.jpg");
  background-position: center center;
}

.hero--motorsteuerungen {
  background-image: url("/images/motorsteuerungen-hero.jpg");
  background-position: center center;
}

.hero--laborgeraete {
  background-image: url("/images/laborgeraete-hero.jpg");
  background-position: center center;
}

.hero--mess-und-prueftechnik {
  background-image: url("/images/mess-und-prueftechnik-hero.jpg");
  background-position: center center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 10px 24px;
  border: 0;
  border-radius: 3px;
  background: var(--gold);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--gold-dark);
}

.intro {
  padding: 56px 0 18px;
  background: #fff;
  text-align: center;
}

.intro__inner {
  max-width: 1110px;
}

.intro h2 {
  margin: 0 0 14px;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

.intro p {
  max-width: 1090px;
  margin: 0 auto;
  color: #000;
  font-size: 18px;
  line-height: 1.45;
}

.subpage-section {
  padding: 72px 0;
  background: #fff;
}

.subpage-grid {
  display: grid;
  min-width: 0;
  max-width: 950px;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.subpage-copy,
.subpage-list-box {
  min-width: 0;
}

.subpage-copy h2,
.faq-section h2 {
  margin: 0 0 18px;
  color: #000;
  font-weight: 600;
  line-height: 1.24;
}

.subpage-copy h2 {
  font-size: 28px;
}

.subpage-copy h3 {
  margin: 28px 0 12px;
  color: #000;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.25;
}

.faq-section h2 {
  font-size: 34px;
}

.subpage-copy p,
.subpage-list-box p,
.faq-section p {
  margin: 0 0 16px;
  color: #000;
  font-size: 17px;
  line-height: 1.58;
}

.subpage-list-box {
  padding: 28px 0 0;
  border-top: 1px solid #ece5d7;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 8px;
  background: transparent;
}

.subpage-list-box h3 {
  margin: 0 0 12px;
  color: #000;
  font-size: 25px;
  font-weight: 600;
}

.subpage-list-box h3:not(:first-child) {
  margin-top: 26px;
}

.subpage-copy h2,
.subpage-copy h3,
.subpage-list-box h3,
.subpage-copy p,
.subpage-list-box p,
.check-list li {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.category-box h4 {
  margin: 18px 0 8px;
  color: #0c2035;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.subpage-note {
  margin-top: 18px;
  padding: 15px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(207, 171, 75, 0.1);
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #000;
  font-size: 16px;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.check-list--muted li::before {
  background: #9a8d6b;
}

.section {
  padding: 48px 0 34px;
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: 38px;
}

.split > div {
  max-width: 620px;
}

.section h2 {
  margin: 0 0 17px;
  color: #000;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0;
}

.section p {
  margin: 0 0 17px;
  color: #000;
  font-size: 17px;
}

.section-img {
  justify-self: end;
  width: 100%;
  max-height: 455px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 5px;
}

.focus {
  padding: 50px 0 0;
  background: var(--paper);
  overflow: hidden;
}

.focus__grid {
  display: grid;
  grid-template-columns: 37.5% 62.5%;
  align-items: end;
  min-height: 410px;
}

.focus__copy {
  align-self: start;
  margin-top: 48px;
  margin-bottom: 0;
}

.eyebrow {
  margin: 0 0 -8px;
  color: #000;
  font-size: 21px;
}

.focus h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 62px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.focus p:not(.eyebrow) {
  margin: 0 0 18px;
  color: #000;
  font-size: 17px;
}

.cabinet-img {
  justify-self: end;
  align-self: end;
  width: min(520px, 66%);
  max-height: 620px;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.steps {
  padding: 50px 0 30px;
  background: var(--gold);
  color: #fff;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.steps article {
  min-width: 0;
}

.steps span {
  display: block;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
}

.steps h3 {
  margin: -7px 0 7px;
  color: #fff;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0;
}

.steps p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

.form-section {
  padding: 23px 0 80px;
  background: var(--paper);
  text-align: center;
}

.form-box {
  max-width: 692px;
}

.form-logo {
  width: 104px;
  max-width: 104px;
  max-height: 92px;
  height: auto;
  margin: 0 auto 4px;
  object-fit: contain;
}

.form-kicker {
  margin: 0;
  color: #000;
  font-size: 19px;
  letter-spacing: 0.3px;
}

.form-section h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 62px;
  font-weight: 600;
  letter-spacing: 0;
}

.contact-form {
  margin-top: 22px;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  min-width: 0;
  gap: 16px;
  border: 1px solid rgba(207, 171, 75, 0.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(30, 28, 22, 0.12);
  text-align: left;
}

.contact-form__head {
  display: grid;
  gap: 5px;
  margin-top: 30px;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #ece6d8;
  text-align: left;
}

.contact-form__head span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form__head strong {
  color: #151515;
  font-size: 23px;
  line-height: 1.25;
}

.contact-form__head p {
  max-width: 590px;
  margin: 0;
  color: #5f594d;
  font-size: 14px;
  line-height: 1.55;
}

.contact-form .ia-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form .contact-form__field {
  display: grid;
  gap: 7px;
  color: #332c1a;
  font-size: 14px;
  font-weight: 600;
}

.contact-form .contact-form__full,
.contact-form .ia-upload-group,
.contact-form .ia-form-actions,
.contact-form .ia-form-feedback {
  grid-column: 1 / -1;
}

.contact-form .field-hint {
  color: #776f61;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8d2c5;
  border-radius: 7px;
  padding: 10px 12px;
  background: #fbfaf8;
  color: #111;
  font: inherit;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(207, 171, 75, 0.18);
  outline: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(31, 27, 22, 0.48);
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

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

.contact-form .ia-upload-group {
  display: grid;
  gap: 7px;
  color: #332c1a;
  font-size: 14px;
  font-weight: 600;
}

.contact-form .ia-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-form .ia-upload-main {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 7px;
  border: 1px solid #d8d2c5;
  border-radius: 7px;
  background: #fbfaf8;
}

.contact-form .ia-upload-label {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  background: rgba(207, 171, 75, 0.18);
  color: #241d0f;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.contact-form .ia-upload-input:focus-visible ~ .ia-upload-main {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(207, 171, 75, 0.18);
}

.contact-form .ia-upload-status {
  min-width: 0;
  overflow: hidden;
  color: #5f594d;
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-form .ia-upload-note {
  margin: -2px 0 0;
  color: #776f61;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-form .ia-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
  flex-wrap: wrap;
}

.contact-form .ia-turnstile-shell:empty {
  display: none;
}

.contact-form .ia-turnstile-shell[data-unavailable="true"] {
  display: none;
}

.contact-form .ia-turnstile-shell {
  display: flex;
  min-height: 50px;
  align-items: center;
}

.contact-form .ia-turnstile-shell iframe {
  max-width: min(300px, 100%);
}

.contact-form .ia-submit-button {
  position: relative;
  display: inline-flex;
  width: auto;
  min-width: 220px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, #cfab4b 0%, #e1bf62 100%);
  color: #fff;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(207, 171, 75, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-form .ia-submit-button:hover,
.contact-form .ia-submit-button:focus-visible {
  background: linear-gradient(135deg, #bd983a 0%, #d4b14f 100%);
  box-shadow: 0 14px 28px rgba(207, 171, 75, 0.3);
  outline: 0;
  transform: translateY(-1px);
}

.contact-form .ia-submit-button:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.contact-form__response-note {
  max-width: 260px;
  margin: 0;
  color: #776f61;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
}

.contact-form .ia-form-feedback {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 7px;
  font-size: 14px;
  line-height: 1.45;
}

.contact-form .ia-form-feedback.is-visible {
  display: block;
}

.contact-form .ia-form-feedback.is-success {
  border: 1px solid rgba(45, 128, 78, 0.22);
  background: #edf8f1;
  color: #1f6a3d;
}

.contact-form .ia-form-feedback.is-error {
  border: 1px solid rgba(168, 63, 45, 0.22);
  background: #fff1ee;
  color: #973926;
}

.faq-section {
  padding: 62px 0 74px;
  background: #fff;
}

.faq-section__inner {
  min-width: 0;
  max-width: 930px;
}

.faq-section h2 {
  text-align: center;
}

.faq-section details {
  border-top: 1px solid #ece5d7;
}

.faq-section details:last-of-type {
  border-bottom: 1px solid #ece5d7;
}

.faq-section summary {
  cursor: pointer;
  padding: 18px 0;
  color: #000;
  font-size: 19px;
  font-weight: 600;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.faq-section details[open] summary {
  color: #5f4919;
}

.faq-section details p {
  max-width: 820px;
  margin-bottom: 20px;
}

.faq-section .button {
  margin-top: 26px;
}

.sustainability {
  padding: 50px 0;
  background: #fff;
}

.sustainability__grid {
  width: min(calc(100% - 32px), 1250px);
  display: grid;
  grid-template-columns: 59.5% 40.5%;
  align-items: center;
  gap: 0;
}

.sustainability__copy {
  padding-right: 36px;
}

.sustainability h3 {
  margin: 0 0 16px;
  color: #000;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
}

.sustainability p {
  margin: 0 0 16px;
  color: #000;
  font-size: 17px;
  line-height: 1.55;
}

.sustainability ul {
  margin: 0 0 18px;
  padding: 0;
  color: #000;
  font-size: 17px;
  line-height: 1.5;
  list-style: none;
}

.benefit-list {
  display: grid;
  gap: 10px;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.benefit-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(207, 171, 75, 0.16);
  color: #83651c;
}

.benefit-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sustainability li + li {
  margin-top: 0;
}

.sustainability a {
  color: #000;
  font-weight: 600;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.sustainability img {
  justify-self: end;
  width: 90%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 5px;
}

.shop-footer {
  padding: 50px 0 0;
  background: var(--paper);
  text-align: center;
  overflow: hidden;
}

.shop-footer h2 {
  margin: 0;
  color: var(--gold);
  font-size: 33px;
  font-weight: 600;
  line-height: 1.25;
}

.shop-footer img {
  width: min(620px, 76%);
  height: auto;
  aspect-ratio: 1024 / 488;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin: 22px auto 0;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.shop-footer a:hover img {
  transform: translateY(-3px);
}

.legal-footer {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 28px 0 24px;
  background: var(--gold);
  color: #fff;
  text-align: center;
}

.legal-footer nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 10px;
}

.legal-footer a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.legal-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-footer p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.legal-page-hero {
  padding: 68px 0 54px;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid rgba(207, 171, 75, 0.2);
  text-align: center;
}

.legal-page-hero__inner {
  max-width: 920px;
}

.legal-page-hero p {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: 15px;
  font-weight: 600;
}

.legal-page-hero h1 {
  margin: 0;
  color: #000;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.08;
}

.legal-page-section {
  padding: 58px 0 82px;
  background: #fff;
}

.legal-page-content {
  max-width: 930px;
}

.legal-page-content h2 {
  margin: 38px 0 14px;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.22;
}

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

.legal-page-content h3 {
  margin: 28px 0 10px;
  color: #000;
  font-size: 21px;
  font-weight: 600;
}

.legal-page-content p,
.legal-page-content address {
  margin: 0 0 16px;
  color: #111;
  font-size: 17px;
  font-style: normal;
  line-height: 1.66;
}

.legal-page-content a {
  color: #8c6a19;
  font-weight: 600;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-footer--solo {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 48px), var(--max));
  }

  .topbar__inner {
    width: min(calc(100% - 48px), 1125px);
  }

  .nav-inner {
    width: min(calc(100% - 48px), 1148px);
    height: auto;
    padding: 18px 0;
    grid-template-columns: 150px 1fr;
    gap: 18px;
  }

  .hero__content {
    width: min(calc(100% - 48px), 980px);
  }

  .sustainability__grid {
    width: min(calc(100% - 48px), 1250px);
  }

  .main-nav {
    justify-content: flex-end;
    gap: 8px;
    padding-left: 20px;
  }

  .main-nav a {
    padding-inline: 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 430px;
  }

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

}

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

  .topbar {
    height: auto;
    font-size: 12px;
  }

  .topbar__inner {
    width: min(calc(100% - 40px), 1125px);
    height: auto;
    padding: 8px 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 5px;
  }

  .topbar a {
    gap: 7px;
  }

  .topbar__form {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .nav-inner {
    width: min(calc(100% - 40px), 1148px);
    height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 0 14px;
  }

  .logo img {
    width: 96px;
  }

  .form-logo {
    width: 108px !important;
    max-width: 108px !important;
    max-height: 92px !important;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 0 0 4px;
    border-left: 0;
    gap: 7px;
  }

  .main-nav a {
    min-height: 36px;
    padding: 7px 8px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 390px;
    padding: 58px 0;
    background-position: center center;
  }

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

  .hero--subpage {
    min-height: 380px;
  }

  .hero h1 {
    font-size: clamp(27px, 7.2vw, 30px);
    overflow-wrap: break-word;
  }

  .hero p {
    max-width: 38rem;
    font-size: 16px;
    line-height: 1.45;
  }

  .button {
    max-width: 100%;
    padding: 10px 18px;
    text-align: center;
  }

  .legal-page-hero {
    padding: 48px 0 42px;
  }

  .legal-page-hero h1 {
    font-size: 38px;
  }

  .legal-page-section {
    padding: 42px 0 60px;
  }

  .legal-page-content h2 {
    font-size: 24px;
  }

  .split,
  .focus__grid,
  .steps__grid,
  .sustainability__grid {
    grid-template-columns: 1fr;
  }

  .section-img,
  .cabinet-img,
  .sustainability img {
    justify-self: center;
    width: 100%;
    margin: 18px 0 0;
  }

  .split,
  .focus__grid,
  .sustainability__grid {
    gap: 26px;
  }

  .subpage-section {
    padding: 44px 0;
  }

  .subpage-list-box {
    padding-top: 24px;
  }

  .subpage-copy h2,
  .faq-section h2 {
    font-size: 28px;
  }

  .subpage-copy h3,
  .subpage-list-box h3 {
    font-size: 22px;
  }

  .subpage-copy p,
  .subpage-list-box p,
  .faq-section p,
  .check-list li {
    font-size: 16px;
  }

  .steps {
    padding: 36px 0 34px;
  }

  .steps__grid {
    gap: 24px;
  }

  .steps span {
    font-size: 42px;
  }

  .steps h3 {
    font-size: 25px;
  }

  .sustainability__copy {
    padding-right: 0;
  }

  .focus__copy {
    margin: 0;
  }

  .focus__grid {
    min-height: 0;
  }

  .cabinet-img {
    border-radius: 5px 5px 0 0;
  }

  .focus h2,
  .form-section h2 {
    font-size: clamp(38px, 12vw, 46px);
  }

  .form-section {
    padding: 18px 0 58px;
  }

  .form-kicker {
    font-size: 15px;
  }

  .contact-form {
    margin-top: 18px;
    padding: 22px;
  }

  .contact-form__head {
    margin-top: 0;
  }

  .contact-form__head strong {
    font-size: 20px;
  }

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

  .contact-form .ia-upload-main {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form .ia-upload-label {
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .contact-form .ia-upload-status {
    white-space: normal;
  }

  .contact-form .ia-form-actions {
    align-items: stretch;
  }

  .contact-form .ia-submit-button {
    width: 100%;
  }

  .contact-form__response-note {
    max-width: none;
  }

  .faq-section {
    padding: 46px 0 58px;
  }

  .faq-section summary {
    font-size: 17px;
    line-height: 1.35;
  }

  .shop-footer h2 {
    max-width: 320px;
    margin-inline: auto;
    font-size: 25px;
    line-height: 1.18;
  }

  .shop-footer img {
    width: min(88vw, 420px);
    max-width: calc(100vw - 40px);
    max-height: 255px;
    margin-top: 18px;
    border-radius: 6px 6px 0 0;
  }

  .legal-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .container,
  .topbar__inner,
  .nav-inner,
  .hero__content {
    width: min(calc(100% - 36px), var(--max));
  }

  .topbar__inner {
    width: min(calc(100% - 36px), 1125px);
  }

  .nav-inner {
    width: min(calc(100% - 36px), 1148px);
  }

  .hero__content {
    width: min(calc(100% - 36px), 980px);
  }

  .main-nav {
    gap: 6px;
  }

  .main-nav a {
    min-height: 34px;
    padding: 7px 6px;
    font-size: 12.5px;
  }

  .hero,
  .hero--subpage {
    min-height: 360px;
  }

  .hero p {
    font-size: 15.5px;
  }

  .intro h2,
  .section h2,
  .subpage-copy h2,
  .faq-section h2 {
    font-size: 25px;
  }

  .focus h2,
  .form-section h2 {
    font-size: 38px;
  }

  .contact-form {
    padding: 18px;
  }
}
