:root {
  --ink: #171a18;
  --ink-soft: #2b302d;
  --paper: #f7f6f1;
  --paper-deep: #ebe9e1;
  --white: #fff;
  --muted: #68706b;
  --line: rgba(23, 26, 24, 0.14);
  --brand: #f4b72f;
  --brand-strong: #de9614;
  --green: #2f7350;
  --green-dark: #183b2a;
  --shadow: 0 24px 70px rgba(18, 23, 20, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100vw - 40px));
  --header-height: 82px;
  --font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

::selection {
  background: var(--brand);
  color: var(--ink);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 800;
}

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

.service-bar {
  position: relative;
  z-index: 30;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-bar p {
  margin: 0;
}

.service-bar p span {
  color: var(--brand);
}

.service-bar__links {
  display: flex;
  gap: 28px;
}

.service-bar__links a {
  transition: color 180ms ease;
}

.service-bar__links a:hover {
  color: var(--brand);
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(23, 26, 24, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(15, 19, 17, 0.09);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(205px, 21vw, 300px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.site-nav > a:not(.button) {
  position: relative;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--brand-strong);
  transition: transform 200ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 11px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  width: 26px;
  display: grid;
  gap: 5px;
}

.menu-toggle__icon i {
  height: 2px;
  display: block;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #ffc950;
  background: #ffc950;
}

.button--small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.8rem;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--brand);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.hero {
  position: relative;
  min-height: min(810px, calc(100svh - 38px));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink) url("../images/hero.jpg") center 44% / cover no-repeat;
  color: var(--white);
}

.hero__backdrop {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 82% 40%, rgba(244, 183, 47, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(12, 15, 13, 0.9) 0%, rgba(12, 15, 13, 0.68) 48%, rgba(12, 15, 13, 0.38) 100%);
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  right: -13vw;
  bottom: -32vw;
  width: 58vw;
  aspect-ratio: 1;
  border: clamp(22px, 4vw, 68px) solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08), 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: end;
  gap: clamp(50px, 8vw, 120px);
  padding-block: 110px 130px;
}

.hero__content {
  max-width: 780px;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 28px;
  font-size: clamp(3.55rem, 8.3vw, 7.8rem);
  font-weight: 860;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--brand);
  font-style: normal;
}

.hero__lead {
  max-width: 660px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__fact {
  align-self: end;
  display: grid;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(17, 21, 18, 0.56);
  backdrop-filter: blur(12px);
}

.hero__fact-number {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 4.3rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero__fact-copy {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero__fact-rule {
  width: 100%;
  height: 1px;
  margin-block: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.hero__fact-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__scroll i {
  width: 18px;
  height: 28px;
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.hero__scroll i::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: var(--brand);
  animation: scroll-dot 1.8s ease infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 9px); }
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-strip__grid > div {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px clamp(18px, 2.5vw, 36px);
  border-left: 1px solid var(--line);
}

.trust-strip__grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-strip strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.75rem;
}

.section {
  padding-block: clamp(90px, 11vw, 150px);
}

.section--about {
  overflow: hidden;
}

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

.section-copy .lead {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.6;
}

.section-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.text-link span {
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--white);
}

.image-stack {
  position: relative;
  min-height: 590px;
}

.image-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9d8d1;
  box-shadow: var(--shadow);
}

.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack__main {
  position: absolute;
  inset: 0 13% 14% 0;
}

.image-stack__small {
  width: 48%;
  height: 38%;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 8px solid var(--paper);
}

.image-stack__badge {
  width: 138px;
  aspect-ratio: 1;
  position: absolute;
  top: 8%;
  right: 1%;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 44px rgba(26, 24, 17, 0.18);
}

.image-stack__badge::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(23, 26, 24, 0.45);
  border-radius: inherit;
}

.image-stack__badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.image-stack__badge span {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 750px;
}

.section-heading--center {
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

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

.benefit-card {
  min-height: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(23, 26, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.benefit-card:hover {
  transform: translateY(-7px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 20px;
  background: rgba(244, 183, 47, 0.2);
}

.benefit-card__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.benefit-card__number {
  position: absolute;
  top: 32px;
  right: 34px;
  color: #5f6661;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.benefit-card h3 {
  margin-top: 42px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.image-banner {
  min-height: 500px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: var(--white);
  text-align: center;
}

.image-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 20, 18, 0.42), rgba(17, 20, 18, 0.8));
}

.image-banner--disposal {
  background-image: url("../images/altreifen.jpg");
}

.image-banner__inner {
  max-width: 850px;
}

.image-banner__inner .eyebrow {
  justify-content: center;
}

.image-banner h2 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7.5vw, 7rem);
}

.image-banner p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.section--service {
  background: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 130px);
}

.service-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  align-self: start;
}

.service-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.service-intro__image {
  margin: 36px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-intro__image img {
  width: 100%;
  aspect-ratio: 4 / 2.6;
  object-fit: cover;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.service-item > span {
  color: #8a5a00;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section--process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
}

.section--process::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -300px;
  right: -240px;
  width: 620px;
  aspect-ratio: 1;
  border: 90px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(50px, 7vw, 90px) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-grid li {
  min-height: 245px;
  position: relative;
  padding: 28px clamp(20px, 2.5vw, 38px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.process-grid li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.process-grid li::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: -7px;
  left: 28px;
  border: 3px solid var(--green-dark);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.process-grid span {
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 850;
}

.process-grid h3 {
  margin-top: 58px;
  font-size: 1.65rem;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
}

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

.export-grid {
  display: grid;
  grid-template-columns: minmax(400px, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.export-photo {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.export-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 16, 14, 0.78));
}

.export-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.export-photo > span {
  position: absolute;
  z-index: 1;
  right: 36px;
  bottom: 34px;
  left: 36px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.92rem;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 950;
}

.export-banner {
  min-height: 420px;
  position: relative;
  display: grid;
  place-items: end center;
  isolation: isolate;
  background: var(--ink) url("../images/export.jpg") center / cover no-repeat;
  color: var(--white);
}

.export-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 16, 15, 0.25), rgba(14, 16, 15, 0.77));
}

.export-banner__inner {
  padding-block: 70px;
}

.export-banner p {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.8vw, 5.5rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.section--faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 150px);
}

.faq-layout .section-heading > p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  width: 18px;
  height: 2px;
  position: absolute;
  top: 36px;
  right: 6px;
  background: var(--ink);
  transition: transform 200ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: -4px 50px 25px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(90px, 11vw, 150px);
  background: var(--ink);
  color: var(--white);
}

.contact-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(115deg, transparent 0 64%, rgba(244, 183, 47, 0.22) 64% 64.2%, transparent 64.2%),
    radial-gradient(circle at 10% 90%, rgba(47, 115, 80, 0.6), transparent 30%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(60px, 8vw, 110px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 46px;
  font-style: normal;
}

.contact-details a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding-block: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details span {
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.contact-form {
  padding: clamp(30px, 4vw, 50px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 26, 24, 0.2);
  border-radius: 9px;
  background: #fbfaf7;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--brand-strong);
  box-shadow: 0 0 0 3px rgba(244, 183, 47, 0.2);
}

.contact-form .privacy-hint {
  margin-block: 4px 22px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 550;
  line-height: 1.5;
}

.privacy-hint a {
  font-weight: 800;
  text-decoration: underline;
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.site-footer {
  background: #0e100f;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__top {
  min-height: 200px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.brand--footer img {
  max-width: 270px;
}

.site-footer__top p {
  max-width: 330px;
  margin: 0;
  font-size: 0.88rem;
}

.site-footer__top .text-link {
  margin: 0;
}

.site-footer__bottom {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 0.72rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.site-footer__bottom a:hover {
  color: var(--brand);
}

.mobile-actions {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

/* Legal and utility pages */
.legal-body {
  background: var(--white);
}

.legal-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.legal-header__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.legal-header .brand img {
  width: min(250px, 48vw);
}

.legal-back {
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.legal-hero {
  padding-block: clamp(70px, 9vw, 120px) clamp(45px, 6vw, 75px);
  background: var(--paper);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 880;
  letter-spacing: -0.06em;
}

.legal-hero p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
}

.legal-content {
  max-width: 880px;
  margin-inline: auto;
  padding-block: clamp(65px, 9vw, 110px);
}

.legal-content h2 {
  margin: 56px 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

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

.legal-content h3 {
  margin: 34px 0 12px;
  font-size: 1.28rem;
}

.legal-content p,
.legal-content li {
  color: #4f5752;
}

.legal-content a {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-card {
  margin-block: 30px;
  padding: clamp(24px, 4vw, 38px);
  border-left: 5px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--paper);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-note {
  padding: 18px 20px;
  border: 1px solid rgba(47, 115, 80, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(47, 115, 80, 0.07);
  color: var(--green-dark);
  font-size: 0.88rem;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.error-page__inner {
  max-width: 700px;
}

.error-page img {
  width: min(320px, 75vw);
  margin: 0 auto 50px;
}

.error-page strong {
  display: block;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 11rem);
  line-height: 0.8;
}

.error-page h1 {
  margin: 30px 0 16px;
  font-size: clamp(2rem, 6vw, 4rem);
}

.error-page p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.79rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 50px;
  }

  .about-grid,
  .service-layout,
  .export-grid,
  .faq-layout,
  .contact-grid {
    gap: 60px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 20;
    top: calc(38px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 34px max(20px, calc((100vw - 760px) / 2));
    overflow-y: auto;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    pointer-events: none;
    background: var(--white);
    visibility: hidden;
    transition: clip-path 260ms ease, opacity 180ms ease, visibility 260ms ease;
  }

  .site-nav.is-open {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: -0.03em;
  }

  .site-nav .button {
    margin-top: 28px;
  }

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

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

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

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
  }

  .hero__fact {
    max-width: 440px;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px 20px;
  }

  .hero__fact-number {
    grid-row: span 2;
  }

  .hero__fact-rule {
    display: none;
  }

  .hero__fact-note {
    grid-column: 2;
  }

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

  .trust-strip__grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .trust-strip__grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .about-grid,
  .service-layout,
  .export-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-grid {
    gap: 70px;
  }

  .image-stack {
    min-height: 580px;
  }

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

  .benefit-card {
    min-height: 300px;
  }

  .service-intro {
    position: static;
  }

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

  .process-grid li:nth-child(3),
  .process-grid li:nth-child(4) {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .export-grid {
    gap: 70px;
  }

  .export-photo {
    min-height: 540px;
  }

  .contact-grid {
    gap: 70px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    padding-block: 52px;
  }

  .site-footer__top .text-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(calc(100% - 28px), 1180px);
  }

  body {
    padding-bottom: 62px;
  }

  .service-bar__inner {
    justify-content: center;
  }

  .service-bar p {
    display: none;
  }

  .service-bar__links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.66rem;
  }

  .brand img {
    width: min(218px, 58vw);
  }

  .menu-toggle__label {
    display: none;
  }

  .hero {
    min-height: 760px;
    background-position: 61% center;
  }

  .hero__backdrop {
    background: linear-gradient(90deg, rgba(12, 15, 13, 0.92), rgba(12, 15, 13, 0.54));
  }

  .hero__inner {
    gap: 42px;
    padding-block: 86px 110px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__fact {
    padding: 20px;
  }

  .hero__fact-number {
    font-size: 3.4rem;
  }

  .hero__fact-copy {
    font-size: 1.15rem;
  }

  .hero__scroll {
    display: none;
  }

  .trust-strip__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-strip__grid > div {
    min-height: 92px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .image-stack {
    min-height: 430px;
  }

  .image-stack__main {
    inset: 0 8% 14% 0;
  }

  .image-stack__small {
    width: 54%;
    height: 36%;
    border-width: 5px;
  }

  .image-stack__badge {
    width: 104px;
    top: 5%;
  }

  .image-stack__badge strong {
    font-size: 1.5rem;
  }

  .benefit-card {
    min-height: 320px;
  }

  .image-banner {
    min-height: 420px;
  }

  .image-banner h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .service-item {
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

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

  .process-grid li {
    min-height: 180px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-grid h3 {
    margin-top: 32px;
  }

  .export-photo {
    min-height: 430px;
  }

  .export-photo > span {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .export-banner {
    min-height: 360px;
  }

  .field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

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

  .contact-details a {
    grid-template-columns: 70px 1fr;
  }

  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .site-footer__top .text-link {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 28px;
  }

  .site-footer__bottom nav {
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    height: 62px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.16);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-actions a + a {
    background: var(--brand);
    color: var(--ink);
  }

  .legal-header__inner {
    min-height: 70px;
  }

  .legal-header .brand img {
    width: min(205px, 53vw);
  }

  .legal-back {
    font-size: 0;
  }

  .legal-back::before {
    content: "← Zurück";
    font-size: 0.74rem;
  }
}

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

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

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