/* ═══════════════════════════════════════════════════════════
   Bauunternehmung Jordan — Bau. Wege. Terrassen.
   Palette aus dem Logo: Gelb #F5B800/#FCCF00, Schwarz, Beton
   ═══════════════════════════════════════════════════════════ */

:root {
  --yellow: #f5b800;
  --yellow-bright: #fccf00;
  --yellow-deep: #d99e00;
  --ink: #141414;
  --ink-soft: #3c3c3a;
  --cream: #f4f4f2;
  --concrete: #e3e3e1;
  --concrete-deep: #ccccca;
  --dark: #121212;
  --dark-warm: #1a1a1a;
  --font: "Archivo", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wide {
  font-stretch: 125%;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ══════════ PRELOADER ══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: radial-gradient(120% 120% at 50% 40%, #1e1e1e 0%, #0d0d0d 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__logo {
  width: min(260px, 56vw);
  background: var(--cream); border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}
.preloader__bar {
  width: min(300px, 60vw); height: 3px; background: rgba(245,184,0,0.18);
  border-radius: 2px; overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: var(--yellow); border-radius: 2px;
}
.preloader__count {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,245,243,0.65);
}

/* ══════════ NAV ══════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 22px 44px; gap: 24px;
  color: #fff; mix-blend-mode: normal;
  transition: color 0.4s;
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,8,8,0.55), rgba(8,8,8,0));
  transition: opacity 0.4s; 
}
.nav.is-dark-on-light::before { opacity: 0; }
.nav.is-dark-on-light { color: var(--ink); }
.nav__links { display: flex; gap: 30px; }
.nav__links a, .nav__contact a {
  font-size: 15px; font-weight: 600;
  opacity: 0.92; transition: opacity 0.2s;
}
.nav__links a:hover, .nav__contact a:hover { opacity: 1; color: var(--yellow); }
.nav__brand {
  font-stretch: 125%; font-weight: 800; font-size: 19px; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.nav__brand span { font-weight: 400; font-stretch: 100%; text-transform: none; letter-spacing: 0; opacity: 0.8; font-size: 15px; }
.nav__contact { display: flex; gap: 30px; justify-content: flex-end; }

/* ══════════ CTA-PILL ══════════ */
.cta-pill {
  position: fixed; z-index: 100; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 999px; padding: 4px;
  box-shadow: 0 10px 30px rgba(18,18,18,0.25);
}
.cta-pill__label {
  background: #fff; color: var(--ink); border-radius: 999px;
  padding: 14px 26px; font-weight: 700; font-size: 16px;
  transition: background 0.25s, color 0.25s;
}
.cta-pill__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--ink);
  display: grid; place-items: center;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.cta-pill__icon svg { width: 21px; height: 21px; }
.cta-pill:hover .cta-pill__label { background: var(--yellow); }
.cta-pill:hover .cta-pill__icon { background: var(--yellow); transform: rotate(-12deg); }

/* ══════════ HERO ══════════ */
.hero { height: 480vh; position: relative; background: #0d0d0d; }
.hero__stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
/* Entsättigung ist direkt in die Frames gebacken (Performance:
   ein CSS-Filter auf Retina-Canvas kostet pro Scroll-Frame GPU-Zeit) */
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__window { position: absolute; inset: 0; }
.hero__mask { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 58% at 50% 50%, rgba(20,20,20,0) 55%, rgba(8,8,8,0.55) 100%);
}
.hero__wordmark {
  position: absolute; top: 26%; left: 50%; transform: translate(-50%, -50%);
  color: rgba(250,250,248,0.85); font-size: 15px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 300; white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.hero__wordmark strong { font-weight: 800; font-stretch: 125%; }

.hero__fade {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 30%, rgba(10,10,10,0.88) 100%);
}

.hero__title {
  position: absolute; color: #fafaf8;
  font-size: clamp(52px, 6.6vw, 122px); line-height: 0.98; font-weight: 640;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero__title--tl { top: 17vh; left: 44px; }
.hero__title--br { bottom: 12vh; right: 44px; text-align: right; }

.hero__aside { position: absolute; left: 44px; bottom: 12vh; max-width: 300px; color: #f0f0ee; }
.hero__aside-lead { font-size: 24px; font-weight: 650; line-height: 1.15; font-stretch: 115%; }
.hero__aside-rule { display: block; width: 34px; height: 2px; background: var(--yellow); margin: 18px 0; }
.hero__aside-copy { font-size: 14.5px; line-height: 1.55; opacity: 0.85; }

.hero__scrollhint {
  position: absolute; right: 44px; bottom: 5vh; width: min(460px, 40vw);
  display: flex; align-items: center; gap: 14px;
  color: #f0f0ee; font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase;
  border-top: 1px solid rgba(240,240,238,0.4); padding-top: 16px;
}
.hero__scrollhint-arrow { animation: bob 1.6s ease-in-out infinite; font-size: 16px; letter-spacing: 0; }
.hero__scrollhint-right { margin-left: auto; }
@keyframes bob { 50% { transform: translateY(5px); } }

/* ══════════ ÜBER UNS ══════════
   Kein Overlap, keine Ebenen: die Sektion steht starr hinter dem Hero.
   Der Verlauf ist direkt ins Hintergrundbild GEBACKEN (uebergang-blend.jpg):
   oben das letzte Video-Bild, das sich nach unten in Marcels Foto auflöst. */
.about {
  position: relative;
  padding: 20vh 44px 14vh;
  overflow: hidden;
}
.about__bg { position: absolute; inset: 0; background: var(--cream); }
.about__inner { position: relative; z-index: 2; max-width: 1560px; margin: 0 auto; }
.about__reveal {
  color: var(--ink);
  font-size: clamp(34px, 3.9vw, 72px); line-height: 1.12; font-weight: 620;
  font-stretch: 118%; letter-spacing: -0.015em;
  max-width: 24ch;
}
.about__reveal .ch { opacity: 0.14; }
.about__cards {
  margin-top: 16vh;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.about__card {
  background: rgba(252,252,250,0.94); backdrop-filter: blur(8px);
  border-radius: 6px; padding: 34px 30px 40px;
  box-shadow: 0 18px 50px rgba(18,18,18,0.12);
}
.about__card h3 { font-size: 25px; line-height: 1.08; margin-bottom: 48px; }
.about__card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* ══════════ UNSERE ARBEIT ══════════ */
.arbeit {
  height: 400vh; position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--concrete) 30%, var(--concrete-deep) 60%, var(--cream) 100%);
}
.arbeit__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.arbeit__headline {
  position: absolute; top: 42vh; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 44px;
  font-size: clamp(64px, 9vw, 170px); font-weight: 660; line-height: 0.95;
  color: var(--ink);
}
.arbeit__sub {
  position: absolute; top: 62vh; left: 44px;
  font-size: 24px; font-weight: 640; line-height: 1.2; font-stretch: 115%;
}
.arbeit__figure {
  position: absolute; left: 50%; top: 50%;
  width: min(420px, 30vw); aspect-ratio: 3 / 4;
  transform: translate(-50%, 120vh);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(18,18,18,0.35);
}
.arbeit__figure img { width: 100%; height: 100%; object-fit: cover; }

.arbeit__sheet {
  position: absolute; inset: 0; padding: 16vh 44px 10vh;
  display: grid; grid-template-columns: 1fr minmax(300px, 460px) 1fr;
  opacity: 0; pointer-events: none;
}
.arbeit__sheet-left { grid-column: 1; }
.arbeit__sheet-right { grid-column: 3; text-align: left; justify-self: end; max-width: 380px; }
.arbeit__sheet-kicker { font-size: 26px; font-weight: 640; }
.arbeit__sheet-model {
  font-size: clamp(56px, 5.6vw, 104px); font-weight: 680; line-height: 0.95;
  font-stretch: 122%; margin-top: 2px;
}
.arbeit__specs { margin-top: 9vh; max-width: 430px; }
.arbeit__specs div {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 18px;
  padding: 11px 0; border-top: 1px solid rgba(18,18,18,0.18);
}
.arbeit__specs dt { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(18,18,18,0.55); font-weight: 700; padding-top: 2px; }
.arbeit__specs dd { font-size: 15px; font-weight: 600; }
.arbeit__sheet-title { font-size: clamp(30px, 2.4vw, 44px); font-weight: 650; line-height: 1.05; }
.arbeit__sheet-label { margin-top: 7vh; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: rgba(18,18,18,0.6); }
.arbeit__sheet-copy { margin-top: 18px; font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); }

/* ══════════ LEISTUNGEN ══════════ */
.leistungen { padding: 15vh 44px 16vh; max-width: 1560px; margin: 0 auto; }
.leistungen__kicker { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: rgba(18,18,18,0.55); border-top: 1px solid rgba(18,18,18,0.2); padding-top: 18px; }
.leistungen__title { font-size: clamp(54px, 6vw, 110px); font-weight: 670; margin: 5vh 0 7vh; }
.leistungen__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 44px;
  counter-reset: leistung;
}
.leistungen__grid li {
  counter-increment: leistung;
  border-top: 1px solid rgba(18,18,18,0.18);
  padding: 20px 4px 22px; font-size: 21px; font-weight: 640; font-stretch: 112%;
  display: flex; align-items: baseline; gap: 16px;
  transition: color 0.2s, transform 0.2s;
}
.leistungen__grid li::before {
  content: counter(leistung, decimal-leading-zero);
  font-size: 12px; font-weight: 700; color: var(--yellow-deep);
  letter-spacing: 0.08em;
}
.leistungen__grid li:hover { color: var(--yellow-deep); transform: translateX(6px); }

/* ══════════ CONDENSED-DISPLAY (Summit-Stil, passt zur Logo-Typo) ══════════ */
.display-head {
  font-stretch: 62.5%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.88;
}
.display-head span { color: var(--yellow); }

/* ══════════ REFERENZEN ══════════ */
.referenzen { background: var(--concrete); padding: 14vh 44px 16vh; }
.referenzen__kicker {
  max-width: 1560px; margin: 0 auto;
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: rgba(18,18,18,0.55); border-top: 1px solid rgba(18,18,18,0.2); padding-top: 18px;
}
.referenzen__kicker::before {
  content: ""; display: block; width: 30px; height: 4px;
  background: var(--yellow); margin-bottom: 14px;
}
.referenzen__title {
  max-width: 1560px; margin: 5vh auto 8vh;
  font-size: clamp(58px, 7vw, 128px);
}
.referenzen__item {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(240px, 330px) minmax(320px, 560px) 1fr;
  gap: 5vw; align-items: center;
  border-top: 1px solid rgba(18,18,18,0.22); padding: 44px 0;
}
.referenzen__item:last-child { border-bottom: 1px solid rgba(18,18,18,0.22); }
.referenzen__item figure { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px; }
.referenzen__item figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.referenzen__item:hover figure img { transform: scale(1.04); }
.referenzen__text h3 { font-size: clamp(24px, 2vw, 34px); margin-bottom: 16px; }
.referenzen__text p { font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); }
.referenzen__num {
  justify-self: end;
  font-size: clamp(110px, 12vw, 210px); font-weight: 700; font-stretch: 110%;
  line-height: 1; color: rgba(18,18,18,0.14);
}

/* ══════════ ABLAUF ══════════ */
.ablauf { background: var(--dark); color: #f0f0ee; padding: 16vh 44px; }
.ablauf__title {
  max-width: 1560px; margin: 0 auto 10vh;
  font-size: clamp(58px, 7vw, 128px);
}
.ablauf__steps { max-width: 1300px; margin: 0 auto; display: grid; gap: 9vh; }
.ablauf__step {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center;
  position: relative;
}
.ablauf__step figure { aspect-ratio: 16 / 9.5; overflow: hidden; border-radius: 4px; }
.ablauf__step figure img { width: 100%; height: 100%; object-fit: cover; }
.ablauf__step--rev figure { order: 2; }
.ablauf__step--rev div { order: 1; }
.ablauf__num {
  display: inline-block; font-size: 15px; font-weight: 800; color: var(--yellow);
  border: 1px solid rgba(245,184,0,0.5); border-radius: 999px; padding: 6px 14px;
  margin-bottom: 20px; letter-spacing: 0.1em;
}
.ablauf__step h3 { font-size: clamp(26px, 2.4vw, 40px); margin-bottom: 16px; }
.ablauf__step p { font-size: 15.5px; line-height: 1.65; color: rgba(240,240,238,0.78); max-width: 46ch; }

/* ══════════ VORTEILE ══════════ */
.vorteile { background: var(--cream); padding: 10vh 44px 14vh; }
.vorteile__kicker {
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: rgba(18,18,18,0.55); border-top: 1px solid rgba(18,18,18,0.2); padding-top: 18px;
  max-width: 1560px; margin: 0 auto;
}
.vorteile__grid {
  max-width: 1560px; margin: 8vh auto 0;
  display: grid; grid-template-columns: minmax(380px, 520px) 1fr; gap: 7vw;
  align-items: start;
}
.vorteile__acc details { border-bottom: 1px solid rgba(18,18,18,0.2); }
.vorteile__acc summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: clamp(26px, 2.4vw, 40px); font-weight: 650; font-stretch: 118%;
  padding: 26px 4px;
}
.vorteile__acc summary::-webkit-details-marker { display: none; }
.vorteile__acc summary span::before { content: "+"; font-weight: 400; font-size: 30px; color: var(--ink); }
.vorteile__acc details[open] summary span::before { content: "–"; }
.vorteile__acc details p {
  padding: 0 4px 30px; font-size: 15.5px; line-height: 1.62; color: var(--ink-soft);
  max-width: 46ch;
}
.vorteile__img {
  border-radius: 6px; overflow: hidden; aspect-ratio: 4 / 3.4;
  box-shadow: 0 30px 70px rgba(18,18,18,0.18);
}
.vorteile__img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s; }

/* ══════════ DATEN-STRIP ══════════ */
.daten {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 40px;
  padding: 26px 44px 30px; border-top: 1px solid rgba(18,18,18,0.16);
  background: var(--cream);
}
.daten div { display: flex; flex-direction: column; gap: 6px; }
.daten div:nth-child(2) { align-items: center; text-align: center; }
.daten div:nth-child(3) { align-items: end; text-align: right; flex-direction: row; justify-content: flex-end; align-items: baseline; gap: 18px; }
.daten__label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: rgba(18,18,18,0.5); }
.daten__value { font-size: 17px; font-weight: 700; }
.daten__value--xl { font-size: clamp(40px, 3.4vw, 60px); font-weight: 680; font-stretch: 122%; line-height: 0.9; }

/* ══════════ REGION ══════════ */
.region { height: 300vh; position: relative; background: var(--dark); color: #f0f0ee; }
.region__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.region__sticky::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(18,18,18,0) 55%, rgba(6,6,6,0.75) 100%);
}
.region__bgword {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%);
  font-size: 34vw; font-weight: 700; font-stretch: 125%; line-height: 1;
  color: #0a0a0a; text-shadow: 0 1px 0 rgba(255,255,255,0.03);
  user-select: none;
}
.region__globe { position: absolute; left: 50%; top: 58%; transform: translate(-50%, 12%); width: 1350px; height: 1350px; max-width: 170vw; }
.region__globe canvas { display: block; }

.region__fly {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 22px; white-space: nowrap;
  font-size: clamp(28px, 2.6vw, 44px); font-weight: 400;
}
.region__fly-fixed { opacity: 0.95; }
.region__fly-line { width: 70px; height: 1px; background: rgba(240,240,238,0.35); }
.region__fly-icon { width: 34px; height: 34px; color: var(--yellow); }
.region__cities { position: relative; height: 1.25em; min-width: 7ch; overflow: visible; }
.region__cities li {
  position: absolute; left: 0; top: 0;
  font-weight: 750; font-stretch: 120%;
  opacity: 0; transform: translateY(0.55em);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.region__cities li.is-active { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.region__cities li.is-leaving { opacity: 0; transform: translateY(-0.55em); transition-delay: 0s; }
.region__cities li.is-you { color: var(--yellow); }

.region__card {
  position: absolute; left: 44px; top: 50%;
  width: min(420px, 38vw);
  background: #f7f7f5; color: var(--ink);
  border-radius: 4px; padding: 38px 34px 34px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
  transform: translateY(120vh);
}
.region__card-big { font-size: clamp(46px, 4vw, 72px); font-weight: 680; line-height: 0.98; }
.region__card-barcode {
  position: absolute; top: 34px; right: 30px; width: 44px; height: 150px;
  background: repeating-linear-gradient(180deg, var(--ink) 0 3px, transparent 3px 6px, var(--ink) 6px 11px, transparent 11px 13px);
  opacity: 0.85;
}
.region__card-label { margin-top: 15vh; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; }
.region__card-copy { margin-top: 16px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* ══════════ FOOTER ══════════ */
.footer { background: var(--dark); color: #f0f0ee; padding: 12vh 44px 30px; position: relative; }
.footer__grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(260px, 420px) 1fr auto; gap: 7vw;
  align-items: start;
}
.footer__brand img {
  width: min(270px, 30vw);
  background: var(--cream); border-radius: 14px;
  padding: 18px 22px;
}
.footer__kicker { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: rgba(240,240,238,0.55); }
.footer__mail {
  display: block; margin-top: 26px;
  font-size: clamp(19px, 1.6vw, 28px); font-weight: 650; font-stretch: 115%;
  color: var(--yellow); word-break: break-word;
}
.footer__mail:hover { color: var(--yellow-bright); }
.footer__tel { display: block; margin-top: 12px; font-size: 19px; font-weight: 600; }
.footer__note { margin-top: 30px; font-size: 14px; opacity: 0.7; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; font-size: 15px; font-weight: 600; }
.footer__nav a:hover { color: var(--yellow); }
.footer__legal {
  max-width: 1560px; margin: 10vh auto 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  border-top: 1px solid rgba(240,240,238,0.18); padding-top: 22px;
  font-size: 13px; opacity: 0.7;
}
.footer__credit { margin-left: auto; }
.footer__credit a {
  color: var(--yellow); font-weight: 650;
  border-bottom: 1px solid rgba(245,184,0,0.35);
  transition: color 0.2s, border-color 0.2s;
}
.footer__credit a:hover { color: var(--yellow-bright); border-color: var(--yellow-bright); }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  /* Nav — kompakt: nur Marke + eine Aktion, mit deckendem Balken
     (transparent lief der Seiten-Text auf 390px durch die Nav) */
  .nav {
    padding: 12px 18px; grid-template-columns: auto 1fr; gap: 12px;
    background: rgba(12,12,12,0.82); backdrop-filter: blur(10px);
  }
  .nav.is-dark-on-light { background: rgba(244,244,242,0.9); }
  .nav__links { display: none; }
  .nav__contact { justify-content: flex-end; gap: 0; }
  .nav__contact a:not(.nav__mail) { display: none; }
  .nav__contact a { font-size: 13.5px; font-weight: 700; }
  .nav__brand { font-size: 15px; }
  .nav__brand span { display: block; font-size: 11px; line-height: 1.1; }

  /* CTA-Pill: einzeilig, kompakter */
  .cta-pill { bottom: 18px; }
  .cta-pill__label { padding: 12px 18px; font-size: 14.5px; white-space: nowrap; }
  .cta-pill__icon { width: 42px; height: 42px; }

  /* Hero */
  .hero { height: 400vh; }
  .hero__title { font-size: clamp(38px, 11vw, 64px); }
  .hero__title--tl { top: 13vh; left: 20px; }
  .hero__title--br { bottom: 21vh; right: 20px; }
  .hero__aside { display: none; }
  .hero__wordmark { display: none; }
  /* ueber den CTA-Button heben — der lag vorher drauf */
  .hero__scrollhint { right: 20px; left: 20px; width: auto; bottom: 13vh; font-size: 10.5px; letter-spacing: 0.14em; gap: 10px; }

  /* Über uns */
  .about { padding: 15vh 20px 10vh; }
  .about__reveal { font-size: clamp(27px, 7.4vw, 40px); max-width: none; }
  .about__cards { grid-template-columns: 1fr; gap: 18px; margin-top: 10vh; }
  .about__card h3 { margin-bottom: 26px; }

  /* Unsere Arbeit: Kino-Choreo aus — statisch gestapelt.
     (Die GSAP-Timeline läuft via matchMedia nur ≥1025px.) */
  .arbeit { height: auto; background: var(--concrete); }
  .arbeit__sticky {
    position: static; height: auto; overflow: visible;
    padding: 12vh 20px 8vh;
    display: flex; flex-direction: column; gap: 26px;
  }
  .arbeit__headline {
    position: static; display: block; padding: 0;
    font-size: clamp(46px, 12.5vw, 76px);
  }
  .arbeit__headline-l, .arbeit__headline-r { display: inline; }
  .arbeit__sub { display: none; }
  .arbeit__figure {
    position: static; transform: none !important;
    width: 100%; max-width: 460px; aspect-ratio: 4 / 3;
    margin: 0;
  }
  .arbeit__sheet {
    position: static; opacity: 1 !important; pointer-events: auto;
    display: flex; flex-direction: column; gap: 34px; padding: 0;
  }
  .arbeit__sheet-model { font-size: clamp(44px, 11vw, 72px); }
  .arbeit__specs { margin-top: 24px; max-width: none; }
  .arbeit__sheet-right { max-width: none; }
  .arbeit__sheet-label { margin-top: 0; }

  /* Leistungen */
  .leistungen { padding: 10vh 20px; }
  .leistungen__grid { grid-template-columns: 1fr; }
  .leistungen__grid li { font-size: 18px; padding: 16px 2px 17px; }

  /* Referenzen */
  .referenzen { padding: 9vh 20px 10vh; }
  .referenzen__title { margin: 3vh auto 5vh; }
  .referenzen__item { position: relative; grid-template-columns: 1fr; gap: 18px; padding: 30px 0 34px; }
  .referenzen__num {
    position: absolute; top: 24px; right: 0;
    font-size: 56px; color: rgba(18,18,18,0.16);
  }
  .referenzen__text h3 { padding-right: 90px; }

  /* Ablauf */
  .ablauf { padding: 10vh 20px; }
  .ablauf__steps { gap: 7vh; }
  .ablauf__step { grid-template-columns: 1fr; gap: 20px; }
  .ablauf__step--rev figure { order: 0; }
  .ablauf__step--rev div { order: 1; }

  /* Vorteile */
  .vorteile { padding: 8vh 20px 9vh; }
  .vorteile__grid { grid-template-columns: 1fr; gap: 34px; }
  .vorteile__acc summary { padding: 20px 2px; }

  /* Daten-Strip — drei Spalten nebeneinander, Label ueber Wert */
  .daten { grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 24px 20px 26px; }
  .daten div,
  .daten div:nth-child(2),
  .daten div:nth-child(3) {
    display: flex; flex-direction: column; align-items: flex-start;
    text-align: left; justify-content: flex-start; gap: 5px;
  }
  .daten__label { font-size: 9.5px; letter-spacing: 0.1em; }
  .daten__value { font-size: 15px; }
  .daten__value--xl { font-size: 17px; line-height: 1.1; font-stretch: 112%; }

  /* Region */
  .region { height: 260vh; }
  .region__fly {
    flex-direction: column; align-items: center; justify-content: center;
    white-space: normal; gap: 10px; width: 100%; padding: 0 20px;
    font-size: clamp(22px, 6vw, 30px); top: 40%;
  }
  .region__fly-icon { width: 30px; height: 30px; }
  .region__fly-line { display: none; }
  .region__cities { min-width: 9ch; text-align: center; }
  .region__cities li { left: 50%; transform: translate(-50%, 0.55em); }
  .region__cities li.is-active { transform: translate(-50%, 0); }
  .region__cities li.is-leaving { transform: translate(-50%, -0.55em); }
  /* Zeichenflaeche schmaler als der Screen: sonst ragt die Kugel seitlich
     raus und die Canvas-Kante schneidet die Silhouette rechteckig ab */
  .region__globe { width: 88vw; height: 88vw; max-width: none; top: 66%; }
  /* Hintergrundwort mobil aus — auf 390px passt "Region" nie ohne
     Beschneidung und es stoert nur die Lesbarkeit */
  .region__bgword { display: none; }
  .region__card {
    left: 20px; width: calc(100vw - 40px); padding: 28px 24px 26px;
  }
  .region__card-big { font-size: clamp(38px, 10.5vw, 56px); }
  .region__card-label { margin-top: 8vh; }
  .region__card-barcode { width: 32px; height: 110px; top: 26px; right: 22px; }

  /* Footer */
  .footer { padding: 9vh 20px 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand img { width: min(240px, 60vw); }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 7vh; }
  .footer__credit { margin-left: 0; }
}

/* ══════════ RECHTSTEXTE (Impressum / Datenschutz) ══════════ */
.legal-body { background: var(--cream); color: var(--ink); }
.nav--legal {
  position: static; background: var(--dark); color: #f0f0ee;
  grid-template-columns: auto 1fr;
}
.nav--legal .nav__contact a { font-weight: 600; }
.legal {
  max-width: 860px; margin: 0 auto; padding: 12vh 44px 14vh;
}
.legal__kicker {
  font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: rgba(18,18,18,0.55);
  border-top: 1px solid rgba(18,18,18,0.2); padding-top: 18px;
}
.legal__kicker::before {
  content: ""; display: block; width: 30px; height: 4px;
  background: var(--yellow); margin-bottom: 14px;
}
.legal__title { font-size: clamp(52px, 7vw, 104px); margin: 4vh 0 7vh; }
.legal__block { margin-bottom: 44px; }
.legal__block h2 {
  font-size: clamp(19px, 1.8vw, 24px); font-weight: 700; font-stretch: 112%;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(18,18,18,0.16);
}
.legal__block p, .legal__block li {
  font-size: 15.5px; line-height: 1.7; color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal__block ul { margin: 0 0 14px 0; }
.legal__block li { position: relative; padding-left: 20px; margin-bottom: 6px; }
.legal__block li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 6px; height: 6px; background: var(--yellow);
}
.legal__block a { color: var(--yellow-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal__block a:hover { color: var(--ink); }
.legal__block strong { color: var(--ink); font-weight: 700; }
.legal__back {
  margin-top: 8vh; padding-top: 24px; border-top: 1px solid rgba(18,18,18,0.2);
  font-size: 15px; font-weight: 650;
}
.footer--legal { padding: 5vh 44px 26px; }
.footer--legal .footer__legal { margin-top: 0; }

@media (max-width: 1024px) {
  .legal { padding: 8vh 20px 10vh; }
  .legal__title { font-size: clamp(42px, 13vw, 68px); margin: 3vh 0 5vh; }
  .nav--legal { padding: 14px 20px; }
  .footer--legal { padding: 4vh 20px 22px; }
}
