/* ==========================================================
   Kainrath Transport – Landingpage
   ========================================================== */

:root {
  --ink: #171613;
  --ink-2: #1f1d19;
  --ink-3: #22201b;
  --line-d: #36332c;
  --paper: #eeebe3;
  --paper-2: #e4e0d5;
  --line-l: #c9c4b8;
  --mute: #5b574e;
  --mute-2: #45423b;
  --mute-d: #a39e92;
  --mute-dd: #8d887c;
  --acc: #C0392B;
  --acc-2: #9B2E23;

  --f-disp: 'Big Shoulders Display', 'Arial Narrow', Impact, sans-serif;
  --f-body: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  --pad: clamp(20px, 4.5vw, 64px);
  --sec: clamp(88px, 11vw, 136px);
  --ease: cubic-bezier(.2, .75, .1, 1);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, dl, dd, ol, ul, figure, blockquote { margin: 0; }
ol, ul { list-style: none; padding: 0; }

.disp {
  font-family: var(--f-disp);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 800;
  line-height: 0.9;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.wrap {
  max-width: 1408px;
  margin: 0 auto;
  padding-inline: var(--pad);
}

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

.skip {
  position: fixed;
  left: 16px; top: -60px;
  z-index: 100;
  background: var(--acc);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
}
.skip:focus { top: calc(16px + env(safe-area-inset-top, 0px)); }

/* ---------- Icons & Buttons ---------- */
.ico { width: 20px; height: 20px; flex: none; }
.ico--xl { width: 40px; height: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
  transition: transform .25s var(--ease), background-color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--acc { background: var(--acc); color: #fff; }
.btn--acc:hover { background: var(--acc-2); }
.btn--ghost { border: 1.5px solid #5a564c; color: var(--paper); }
.btn--ghost:hover { border-color: var(--paper); }
.btn--lg { font-size: 17px; padding: 18px 28px; }
.btn--block { display: flex; width: 100%; font-size: 17px; padding: 18px 24px; }

/* ---------- Logo / Brand ---------- */
.brand { display: flex; align-items: center; gap: 14px; color: var(--paper); }

.logo {
  --logo-size: 26px;
  display: inline-flex;
  align-items: center;
  gap: calc(var(--logo-size) * 0.32);
  color: #fff;
  line-height: 1;
  max-width: 100%;
}
.logo__mark {
  display: block;
  width: calc(var(--logo-size) * 1.42);
  height: auto;
  flex: none;
  aspect-ratio: 113.65 / 100;
}
.logo__type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(var(--logo-size) * 0.1);
  min-width: 0;
}
.logo__name {
  font-family: 'Montserrat', var(--f-body);
  font-weight: 800;
  font-size: var(--logo-size);
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo__tag {
  font-family: 'Montserrat', var(--f-body);
  font-weight: 500;
  font-size: calc(var(--logo-size) * 0.265);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand .logo { --logo-size: clamp(22px, 4.2vw, 28px); }
.brand--lg .logo { --logo-size: clamp(30px, 4.8vw, 40px); }

.logo--mark .logo__type { display: none; }
.logo--mark { gap: 0; }
.logo--mark .logo__mark { width: 100%; }

.logo--watermark {
  --logo-size: clamp(72px, 12vw, 160px);
  opacity: .12;
  pointer-events: none;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid #2e2c26;
  padding-top: env(safe-area-inset-top, 0px);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links > a:not(.btn) {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .72;
  transition: opacity .2s;
}
.nav__links > a:not(.btn):hover { opacity: 1; }
.nav__toggle { display: none; }
.nav__phone {
  display: none;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--paper);
  white-space: nowrap;
}
.nav__tel {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--paper);
  white-space: nowrap;
  opacity: .85;
  transition: opacity .2s, color .2s;
}
.nav__tel:hover { opacity: 1; color: var(--acc); }
.nav__cta {
  white-space: nowrap;
  flex-shrink: 0;
}
@media (min-width: 901px) and (max-width: 1280px) {
  .nav__links { gap: 18px; }
  .nav__cta { padding-left: 14px; padding-right: 14px; font-size: 14px; }
}

.progress {
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 3px;
  background: var(--acc);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(48px, 7vw, 88px);
  overflow: hidden;
}
.grain {
  position: absolute; inset: 0;
  opacity: .09;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero .wrap { position: relative; }

.hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line-d);
  padding-bottom: 20px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute-d);
}

.hero__title {
  margin-top: clamp(28px, 4vw, 44px);
  font-size: clamp(64px, 12.4vw, 184px);
  line-height: .84;
  font-weight: 900;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: block; }
.hero__title .acc { color: var(--acc); }

.hero__lead {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}
.hero__lead p { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.5; color: #c9c4b8; max-width: 540px; }
.hero__lead strong { color: var(--paper); font-weight: 600; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__media { position: relative; margin-top: clamp(64px, 7vw, 96px); }

/* Bild-Container */
.media {
  position: relative;
  overflow: hidden;
  background: var(--ink-3);
  border-radius: 2px;
}
.media img {
  position: absolute;
  left: 0;
  top: -8%;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.media figcaption {
  position: absolute;
  left: 20px; bottom: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ink);
  padding: 7px 10px;
}
.media--hero { height: clamp(360px, 48vw, 680px); }
.corner { position: absolute; width: 26px; height: 26px; border: 0 solid var(--acc); z-index: 2; }
.corner.tl { top: 22px; left: 22px; border-top-width: 2px; border-left-width: 2px; }
.corner.tr { top: 22px; right: 22px; border-top-width: 2px; border-right-width: 2px; }
.corner.bl { bottom: 22px; left: 22px; border-bottom-width: 2px; border-left-width: 2px; }
.corner.br { bottom: 22px; right: 22px; border-bottom-width: 2px; border-right-width: 2px; }

/* rotierender Stempel */
.badge {
  position: absolute;
  left: clamp(16px, 4vw, 56px);
  top: calc(clamp(120px, 13vw, 184px) / -2);
  width: clamp(120px, 13vw, 184px);
  aspect-ratio: 1;
  z-index: 3;
}
.badge__ring { width: 100%; height: 100%; will-change: transform; }
.badge__bg { fill: var(--acc); }
.badge text { font-family: var(--f-mono); font-size: 12px; font-weight: 500; fill: #fff; letter-spacing: 3px; }
.badge__mark {
  position: absolute;
  inset: 28%;
  width: 44%;
  height: 44%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge__mark .logo__mark {
  width: 100%;
  height: auto;
}

/* Kennzahlen */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(48px, 5vw, 64px) 0 clamp(64px, 7vw, 88px);
}
.stat {
  border-left: 1px solid var(--line-d);
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat__num { font-size: clamp(44px, 4.6vw, 64px); line-height: 1; }
.stat__txt { font-size: 15px; color: var(--mute-d); line-height: 1.45; }

/* ---------- TICKER ---------- */
.ticker {
  background: var(--acc);
  color: #fff;
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid var(--ink);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
}
.ticker__track i { width: 14px; height: 14px; background: var(--ink); flex: none; }
@keyframes marquee { to { transform: translateX(calc(-50% - 20px)); } }

/* ---------- SEKTIONEN ---------- */
.sec { padding-block: var(--sec); }
.sec--tight { padding-top: 0; }
.sec--paper { background: var(--paper); color: var(--ink); }
.sec--ink { background: var(--ink); color: var(--paper); }

.kicker {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before { content: ""; width: 24px; height: 2px; background: var(--acc); }
.kicker--d { color: var(--mute-dd); }
.kicker--w { color: #fff; }
.kicker--w::before { background: #fff; }

.h2 { font-size: clamp(60px, 8.4vw, 120px); line-height: .86; font-weight: 900; }
.h3 { font-size: clamp(48px, 6vw, 88px); line-height: .9; font-weight: 900; }

.sec__head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.sec__intro { font-size: 19px; line-height: 1.55; color: var(--mute); max-width: 460px; justify-self: end; }

/* Leistungen */
.services { border-bottom: 1.5px solid var(--ink); }
.service {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.1fr) minmax(0, 1.3fr) 48px;
  gap: 28px;
  align-items: center;
  padding: 34px 16px;
  border-top: 1.5px solid var(--ink);
  position: relative;
  isolation: isolate;
}
.service::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform .45s var(--ease);
  z-index: -1;
}
.service:hover::before,
.service:focus-visible::before { transform: scaleY(1); }
.service:hover, .service:focus-visible { color: var(--paper); }
.service:hover .service__txt, .service:focus-visible .service__txt { color: var(--mute-d); }
.service__ico { width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: square; }
.service__title { font-size: clamp(34px, 3.3vw, 46px); line-height: 1; }
.service__txt { font-size: 17px; line-height: 1.5; color: var(--mute-2); transition: color .3s; }
.service__arr { width: 36px; height: 36px; justify-self: end; transition: transform .35s var(--ease), color .3s; }
.service:hover .service__arr { transform: translateX(8px); color: var(--acc); }

/* Ablauf */
.rule { display: block; width: 100%; height: 4px; margin: 64px 0 44px; stroke: var(--acc); stroke-width: 4; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px; }
.step { display: flex; flex-direction: column; gap: 22px; }
.step__num {
  font-size: clamp(110px, 10vw, 150px);
  font-weight: 900;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--paper);
}
.step__ico { width: 48px; height: 48px; fill: none; stroke: var(--acc); stroke-width: 2; stroke-linecap: square; }
.step h3 { font-size: 40px; }
.step p { font-size: 17px; line-height: 1.55; color: var(--mute-d); max-width: 36ch; }

/* Bildband */
.band {
  position: relative;
  height: clamp(420px, 70vh, 760px);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.band__media { position: absolute; inset: 0; }
.band__media img { position: absolute; left: 0; top: -15%; width: 100%; height: 130%; object-fit: cover; will-change: transform; }
.band__media::after { content: ""; position: absolute; inset: 0; background: rgba(23, 22, 19, .42); }
.band__txt { position: relative; width: 100%; padding-bottom: clamp(40px, 6vw, 72px); }
.band__line { font-size: clamp(44px, 8vw, 132px); font-weight: 900; line-height: .86; }

/* Über */
.about {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
.media--tall { height: clamp(480px, 52vw, 740px); }
.about__media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about__body { display: flex; flex-direction: column; gap: 26px; }
.about__body .kicker { margin-bottom: -8px; }
.about__lead { font-size: 20px; line-height: 1.6; color: #2e2c26; max-width: 620px; }
.about__note {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--mute);
}

.press-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 48px;
  margin-top: clamp(40px, 5vw, 72px);
  border-top: 1.5px solid var(--ink);
}
.press {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px 20px;
  align-items: center;
  padding: 22px 0 0;
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--ease);
}
.press + .press {
  border-top: none;
  border-left: 1px solid var(--line-l);
  padding-left: 48px;
}
.press__src {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--acc);
  white-space: nowrap;
}
.press__txt {
  font-size: 15px;
  line-height: 1.45;
  color: var(--mute-2);
}
.press__txt strong {
  display: block;
  font-family: var(--f-disp);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.press__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.press__go .ico { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.press:hover .press__txt strong { color: var(--acc); }
.press:hover .press__go .ico { transform: translateX(6px); }

.facts { margin-top: 10px; border-top: 1.5px solid var(--ink); }
.facts > div {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-l);
  align-items: baseline;
}
.facts dt { font-size: 28px; }
.facts dd { font-size: 16px; line-height: 1.5; color: var(--mute-2); }

/* Galerie */
.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  border-top: 1.5px solid var(--ink);
  padding-top: 28px;
  margin-bottom: 48px;
}
.gallery__meta { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 338px 338px;
  gap: 24px;
}
.g-tall { grid-column: 1 / span 5; grid-row: 1 / span 2; }
.g-wide { grid-column: 6 / span 7; grid-row: 1; }
.g-sq { grid-column: 6 / span 4; grid-row: 2; }
.g-quote { grid-column: 10 / span 3; grid-row: 2; }
.gallery .media img { height: 120%; top: -10%; }

.quote {
  background: var(--ink);
  color: var(--paper);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 2px;
}
.quote__label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute-dd); }
.quote p { font-size: clamp(26px, 2.3vw, 34px); line-height: 1.05; }
.quote cite { font-style: normal; font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--acc); }

/* Preise */
.pricing {
  display: block;
  max-width: 1100px;
}
.pricing__main { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.pricing__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px 48px;
  width: 100%;
  flex-wrap: wrap;
}
.pricing__top .h2 { margin: 0; }
.pricing__cta--desk {
  flex-shrink: 0;
  font-size: 20px;
  min-height: 72px;
  padding: 22px 36px;
}
.pricing__cta--desk .ico { width: 22px; height: 22px; }
.pricing__cta--mob { display: none; }
.rate-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  width: 100%;
}
.rate { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.rate__num { font-size: clamp(72px, 12vw, 180px); line-height: .8; font-weight: 900; color: var(--acc); }
.rate__unit { font-size: clamp(32px, 3vw, 44px); color: var(--mute-d); }
.rate-cta__arrow {
  display: none;
  color: var(--acc);
  flex-shrink: 0;
}
.rate-cta__arrow .ico {
  width: 36px;
  height: 36px;
  animation: rate-nudge 1.6s var(--ease) infinite;
}
@keyframes rate-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .rate-cta__arrow .ico { animation: none; }
}
.terms { border-top: 1px solid var(--line-d); margin-top: 12px; width: 100%; }
.terms > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-d);
  font-size: 17px;
}
.terms dd { color: var(--mute-d); text-align: right; }

.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: clamp(64px, 8vw, 104px); }
.plan {
  border: 1px solid var(--line-d);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 2px;
  transition: border-color .3s, transform .35s var(--ease);
}
.plan:hover { border-color: var(--mute-dd); transform: translateY(-4px); }
.plan--hl { border: 1.5px solid var(--acc); background: var(--ink-2); }
.plan--hl:hover { border-color: var(--acc); }
.plan__tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute-dd); }
.plan--hl .plan__tag { color: var(--acc); }
.plan h3 { font-size: 38px; }
.plan p { font-size: 16px; line-height: 1.55; color: var(--mute-d); flex-grow: 1; }
.plan__price {
  font-size: 32px;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid var(--acc);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.plan__price:hover {
  color: var(--acc);
  border-color: var(--paper);
}

/* Kontakt */
.contact { position: relative; background: var(--acc); color: #fff; overflow: hidden; }
.contact__mark {
  position: absolute;
  right: -40px;
  bottom: -60px;
  z-index: 0;
}
.contact .wrap { position: relative; }
.contact__title { font-size: clamp(72px, 13.6vw, 196px); line-height: .82; font-weight: 900; margin: 0 0 72px; }
.contact__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.cta {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-radius: 2px;
  transition: transform .35s var(--ease);
}
.cta:hover { transform: translateY(-4px); }
.cta--dark { background: var(--ink); color: var(--paper); }
.cta--dark .cta__top .ico:first-child { color: var(--acc); }
.cta--light { background: var(--paper); color: var(--ink); }
.cta__top { display: flex; justify-content: space-between; align-items: center; }
.cta__arr { transition: transform .35s var(--ease); }
.cta:hover .cta__arr { transform: translateX(10px); }
.cta__label { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .7; margin-bottom: -18px; }
.cta__value { font-size: clamp(34px, 3.9vw, 56px); line-height: 1; overflow-wrap: anywhere; }
.contact__note { margin-top: 32px; font-size: 17px; }

/* Footer */
.footer { background: var(--ink); color: var(--mute-dd); padding: 64px 0 40px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; flex-wrap: wrap; }
.footer__nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer__nav a { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--paper); opacity: .72; }
.footer__nav a:hover { opacity: 1; }
.footer__soon { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--paper); opacity: .45; cursor: default; }
.footer__bottom {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  border-top: 1px solid #2e2c26;
  padding-top: 24px;
  font-size: 13px;
}
.footer__bottom div { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer__bottom a:hover { color: var(--paper); }
.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__moess {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  vertical-align: middle;
}
.footer__moess img {
  height: 26px;
  width: auto;
  display: block;
  /* Weißes Logo → Transport-Rot (--acc #C0392B) */
  filter: invert(24%) sepia(79%) saturate(2802%) hue-rotate(346deg) brightness(88%) contrast(87%);
  transition: filter .25s var(--ease), opacity .25s var(--ease);
}
.footer__moess:hover img {
  filter: invert(95%) sepia(12%) saturate(400%) hue-rotate(330deg) brightness(105%);
}

/* Legal pages */
.legal-page { background: var(--paper); }
.legal-page .nav { background: var(--ink); }
.nav__links.is-legal { display: flex; }
.nav__links a[aria-current="page"] { color: var(--acc); }
.legal {
  padding: calc(var(--nav-h) + 48px) 0 var(--sec);
  background: var(--paper);
  color: var(--ink);
  min-height: 70vh;
}
.legal__wrap { max-width: 760px; }
.legal__title {
  font-size: clamp(56px, 10vw, 120px);
  line-height: .88;
  font-weight: 900;
  margin: 12px 0 20px;
}
.legal__lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--mute);
  margin: 0 0 48px;
  max-width: 540px;
}
.legal__block {
  padding: 28px 0;
  border-top: 1px solid var(--line-l);
}
.legal__block h2 { margin: 0 0 12px; font-size: clamp(28px, 3vw, 36px); }
.legal__block p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--mute-2);
}
.legal__block p:last-child { margin-bottom: 0; }
.legal__block a { color: var(--acc); text-decoration: underline; text-underline-offset: 3px; }
.legal__block a:hover { color: var(--acc-2); }
.legal-page .footer { margin-top: 0; }
.legal-page .footer__bottom { margin-top: 0; border-top: none; padding-top: 0; }

.mobile-cta { display: none; }

/* ==========================================================
   Animationen
   ========================================================== */

/* Hero – Page-Load */
.hero__title .line > span { animation: rise 1.1s var(--ease) both; }
.hero__title .line:nth-child(2) > span { animation-delay: .12s; }
.load-fade { animation: fadeUp 1s var(--ease) .45s both; }
.hero__lead.load-fade { animation-delay: .6s; }
@keyframes rise { from { transform: translateY(105%); } to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Scroll-Reveals (nur wenn JS aktiv) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity .9s var(--ease), transform 1s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal="left"] { transform: translateX(-56px); }
.js [data-reveal="clip"] {
  opacity: 1;
  transform: none;
  clip-path: inset(12% 8% 12% 8%);
  transition: clip-path 1.3s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal="clip"].is-in { clip-path: inset(0 0 0 0); }

/* SVG-Linien zeichnen */
.js .draw :is(path, line, circle, rect, polyline) {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.4s var(--ease) .15s;
}
.js .draw.is-drawn :is(path, line, circle, rect, polyline) { stroke-dashoffset: 0; }
.js .rule.draw line { transition-duration: 1.8s; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1100px) {
  .service { grid-template-columns: 64px minmax(0, 1fr) 40px; row-gap: 10px; }
  .service__ico { grid-row: span 2; }
  .service__txt { grid-column: 2; grid-row: 2; }
  .service__arr { grid-column: 3; grid-row: 1 / span 2; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .gallery { grid-template-rows: 300px 300px; }
  .g-sq { grid-column: 6 / span 7; }
  .g-quote { display: none; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav__inner { justify-content: center; gap: 12px; }
  .logo__type { display: none; }
  .nav__phone {
    display: inline-flex;
    align-items: center;
    margin: 0;
  }
  .nav__toggle {
    display: grid;
    place-content: center;
    gap: 7px;
    width: 48px; height: 48px;
    background: none;
    border: 1.5px solid var(--line-d);
    border-radius: 2px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav__toggle span { display: block; width: 22px; height: 2px; background: var(--paper); transition: transform .3s var(--ease); }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .nav__links {
    position: fixed;
    inset: calc(var(--nav-h) + env(safe-area-inset-top, 0px)) 0 0 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px var(--pad) calc(24px + env(safe-area-inset-bottom, 0px));
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, transform .3s var(--ease), visibility .3s;
  }
  .nav__links.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav__links > a:not(.btn) {
    font-family: var(--f-disp);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 0;
    opacity: 1;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-d);
  }
  .nav__cta { margin-top: 28px; min-height: 56px; padding: 12px 20px; font-size: 17px; white-space: normal; }
  .nav__tel { display: none; }

  .hero__lead { grid-template-columns: 1fr; gap: 28px; }
  .sec__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
  .sec__intro { justify-self: start; }
  .steps { grid-template-columns: 1fr; gap: 56px; }
  .about { grid-template-columns: 1fr; }
  .media--tall { height: clamp(420px, 110vw, 620px); }
  .pricing { max-width: none; }
  .pricing__cta--desk { display: none; }
  .pricing__cta--mob { display: inline-flex; }
  .rate-cta__arrow { display: inline-flex; }
  .plans { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .facts > div { grid-template-columns: 1fr; gap: 6px; }
  .press-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .press {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0;
  }
  .press + .press {
    border-left: none;
    border-top: 1px solid var(--line-l);
    padding-left: 0;
  }
  .press__go { justify-self: start; }

  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-tall { grid-column: 1; grid-row: 1 / span 2; height: 100%; min-height: 440px; }
  .g-wide, .g-sq { grid-column: 2; grid-row: auto; height: 208px; }

  .mobile-cta {
    display: flex;
    position: fixed;
    left: 12px; right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 40;
    min-height: 56px;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    transform: translateY(140%);
    transition: transform .45s var(--ease);
  }
  .mobile-cta.is-visible { transform: none; }
  .footer { padding-bottom: 110px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero__meta { flex-direction: column; gap: 6px; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .badge { top: -52px; width: 104px; }
  .stat { padding: 0 14px; }
  .stat__num { font-size: 38px; }
  .plan { padding: 26px; }
  .plan h3 { font-size: 32px; }
  .step h3 { font-size: 34px; }
  .service { grid-template-columns: 44px minmax(0, 1fr); column-gap: 16px; padding: 26px 4px; }
  .service__ico { width: 40px; height: 40px; }
  .service__arr { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .g-tall { grid-column: 1; grid-row: auto; min-height: 0; height: 460px; }
  .g-wide, .g-sq { grid-column: 1; height: 240px; }
  .terms > div { flex-direction: column; gap: 4px; }
  .terms dd { text-align: left; }
  .contact__mark { --logo-size: 96px; right: -80px; bottom: -80px; }
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js [data-reveal], .js [data-reveal="clip"] { opacity: 1; transform: none; clip-path: none; }
  .js .draw :is(path, line, circle, rect, polyline) { stroke-dashoffset: 0; }
}
