/* ============================================================
   MXX DFI — Direkt von Italien
   Arbeitswerte nach Superprompt vom 17.09.2026
   ============================================================ */

:root{
  --schwarz:      #101211;
  --schwarz-tief: #0a0b0a;
  --flaeche:      #181b19;
  --weiss:        #F7F8F5;
  --gruen:        #008653;
  --gruen-dunkel: #006B43;
  --gruen-hell:   #00A868;
  --rot:          #D52B32;
  --grau:         #B8C0BB;
  --linie:        rgba(255,255,255,.10);
  --linie-hell:   rgba(16,18,17,.12);

  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --breit: 1320px;
  --schmal: 760px;
  --rund: 6px;
  --ease: cubic-bezier(.16,1,.3,1);
}

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

html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body{
  margin:0;
  background:var(--schwarz);
  color:var(--weiss);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.62;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img,video{ max-width:100%; display:block; }
a{ color:inherit; }

/* Ein Element mit hidden bleibt verborgen — auch wenn eine Klasse display:flex/grid setzt */
[hidden]{ display:none !important; }

::selection{ background:rgba(0,134,83,.35); }

.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--gruen); color:#fff; padding:12px 20px; border-radius:0 0 var(--rund) 0;
}
.skip:focus{ left:0; }

:focus-visible{ outline:2px solid var(--gruen-hell); outline-offset:3px; }

/* ---------- Bausteine ---------- */

.mitte{ width:100%; max-width:var(--breit); margin:0 auto; padding-inline:24px; }
.mitte.schmal{ max-width:var(--schmal); }

.eyebrow{
  font-size:12px; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  color:var(--gruen-hell); margin:0 0 18px;
}
.abschnitt--hell .eyebrow{ color:var(--gruen-dunkel); }

.h1{
  font-size:clamp(2.1rem, 5.6vw, 4.6rem);
  line-height:1.02; letter-spacing:-.025em; font-weight:800;
  margin:0 0 22px; max-width:15ch;
}
.h1 .zeile{ display:block; }
.h1 .zeile--gruen{ color:var(--gruen-hell); }

.h2{
  font-size:clamp(1.65rem, 3.4vw, 3rem);
  line-height:1.1; letter-spacing:-.02em; font-weight:800;
  margin:0 0 22px;
}

.fliess{ color:var(--grau); font-size:clamp(1rem,1.25vw,1.18rem); margin:0 0 26px; max-width:56ch; }
.fliess--breit{ max-width:64ch; }
.abschnitt--hell .fliess{ color:#4b524d; }

.vorspann{ color:var(--grau); font-size:clamp(1rem,1.35vw,1.22rem); margin:0 0 30px; max-width:46ch; }

/* ---------- Knöpfe ---------- */

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:inherit; font-size:15.5px; font-weight:600; line-height:1;
  padding:17px 30px; border-radius:var(--rund); text-decoration:none;
  border:1.5px solid transparent; cursor:pointer;
  transition:background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
  min-height:52px;
}
.btn--voll{ background:var(--gruen); color:#fff; }
.btn--voll:hover{ background:var(--gruen-hell); transform:translateY(-2px); }
.btn--umriss{ border-color:var(--linie); color:var(--weiss); }
.btn--umriss:hover{ border-color:var(--gruen-hell); color:var(--gruen-hell); }
.btn--klein{ padding:11px 20px; font-size:14px; min-height:42px; }
.btn--breit{ width:100%; }
.btn--text{
  padding:17px 4px; color:var(--weiss); border-bottom:1.5px solid var(--linie); border-radius:0;
}
.btn--text:hover{ border-bottom-color:var(--gruen-hell); color:var(--gruen-hell); }
.abschnitt--hell .btn--text{ color:var(--schwarz); border-bottom-color:var(--linie-hell); }

.knopfreihe{ display:flex; flex-wrap:wrap; gap:14px 26px; align-items:center; margin-bottom:34px; }

/* ---------- Navigation ---------- */

.nav{
  position:fixed; inset:0 0 auto 0; z-index:100;
  background:rgba(16,18,17,.72);
  backdrop-filter:saturate(140%) blur(14px);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid var(--linie);
  transition:background .4s var(--ease);
}
.nav__in{
  max-width:var(--breit); margin:0 auto; padding:14px 24px;
  display:flex; align-items:center; gap:28px;
}
.marke{ display:flex; align-items:center; gap:12px; text-decoration:none; flex:0 0 auto; }
.marke__logo{ height:26px; width:auto; }
.marke__trenner{ width:1px; height:22px; background:var(--linie); display:block; }
.marke__dfi{ font-size:17px; font-weight:700; letter-spacing:.06em; }

.nav__links{ display:flex; gap:30px; margin-left:auto; }
.nav__links a{
  font-size:15px; color:var(--grau); text-decoration:none; padding:6px 0;
  border-bottom:1.5px solid transparent; transition:color .25s, border-color .25s;
}
.nav__links a:hover{ color:var(--weiss); border-bottom-color:var(--gruen-hell); }

.nav__rechts{ display:flex; align-items:center; gap:16px; }

.flagge{ display:flex; width:34px; height:7px; overflow:hidden; border-radius:1px; }
.flagge i{ flex:1; }
.flagge i:nth-child(1){ background:var(--gruen); }
.flagge i:nth-child(2){ background:var(--weiss); }
.flagge i:nth-child(3){ background:var(--rot); }

.burger{
  display:none; margin-left:auto; background:none; border:0; cursor:pointer;
  width:46px; height:46px; padding:12px; flex-direction:column; justify-content:center; gap:6px;
}
.burger span{ display:block; height:2px; background:var(--weiss); transition:transform .3s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ transform:translateY(-4px) rotate(-45deg); }

.mobilnav{ display:none; flex-direction:column; border-top:1px solid var(--linie); }
.mobilnav a{
  padding:17px 24px; text-decoration:none; color:var(--weiss);
  border-bottom:1px solid var(--linie); font-size:16.5px;
}
.mobilnav.offen{ display:flex; }

/* ---------- Bühne (Hero + Box) ---------- */

.buehne{ position:relative; height:300vh; }
.buehne__fix{
  position:sticky; top:0; height:100vh; height:100svh;
  overflow:hidden; display:flex; align-items:center;
  background:
    radial-gradient(120% 90% at 74% 52%, #1b1e1c 0%, var(--schwarz) 58%, var(--schwarz-tief) 100%);
}

.buehne__bild{
  position:absolute; inset:0; z-index:0;
  display:flex; align-items:center; justify-content:flex-end;
}
.buehne__bild img,
.buehne__bild video{
  width:min(72%, 1280px);
  height:auto; max-height:88%;
  object-fit:contain; object-position:center;
  margin-right:-4%;
  /* Keine CSS-Maske noetig: der Bildgrund ist auf die Seitenfarbe gezogen
     (siehe box-geschlossen.jpg — Randfarbe entspricht --schwarz). */
}
.buehne__bild video{ position:absolute; right:-4%; top:50%; transform:translateY(-50%); opacity:0; transition:opacity .4s ease; }
.buehne__bild.hatvideo video{ opacity:1; }
.buehne__bild.hatvideo img{ opacity:0; }

.buehne__bild::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(90deg, var(--schwarz) 4%, rgba(16,18,17,.92) 26%, rgba(16,18,17,.30) 46%, rgba(16,18,17,0) 62%),
    linear-gradient(180deg, rgba(16,18,17,.55) 0%, rgba(16,18,17,0) 26%, rgba(16,18,17,0) 70%, rgba(16,18,17,.70) 100%);
}

.buehne__text{ position:relative; z-index:2; width:100%; }
.buehne__text .mitte{ transition:opacity .5s var(--ease), transform .5s var(--ease); }

.nutzen{
  display:flex; flex-wrap:wrap; gap:8px 14px; align-items:center;
  font-size:14px; color:var(--grau); margin:0; letter-spacing:.01em;
}
.nutzen b{ color:var(--gruen-hell); font-weight:400; }

/* Kapiteltexte beim Scrollen */
.kapitel{
  position:absolute; inset:0; display:flex; align-items:center;
  pointer-events:none;
}
.kapitel p{
  position:absolute; left:0; right:0;
  max-width:var(--breit); margin:0 auto; padding-inline:24px;
  font-size:clamp(1.5rem,3.2vw,2.9rem); font-weight:800; letter-spacing:-.02em; line-height:1.12;
  max-width:18ch; opacity:0; transform:translateY(18px);
  transition:opacity .45s var(--ease), transform .45s var(--ease);
}
.kapitel p.an{ opacity:1; transform:none; }

.scrollhinweis{
  position:absolute; left:0; right:0; bottom:34px; z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:7px;
  font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--grau);
  transition:opacity .4s ease;
}
.scrollhinweis svg{ animation:wippen 2.4s var(--ease) infinite; }
@keyframes wippen{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(7px);} }

/* ---------- Abschnitte ---------- */

.abschnitt{ padding:clamp(72px,10vw,140px) 0; position:relative; }
.abschnitt--hell{ background:var(--weiss); color:var(--schwarz); }
.abschnitt--hell .h2{ color:var(--schwarz); }
.abschnitt--ruhig{ padding-block:clamp(90px,12vw,170px); text-align:center; }
.abschnitt--ruhig .fliess{ margin-inline:auto; }
.abschnitt--kontakt{ background:var(--flaeche); border-top:1px solid var(--linie); }

/* Schritte */
.schritte{
  list-style:none; margin:54px 0 0; padding:0;
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:1px;
  background:var(--linie); border:1px solid var(--linie);
}
.schritte li{ background:var(--schwarz); padding:34px 28px 38px; }
.schritte .nr{
  display:block; font-size:13px; font-weight:700; letter-spacing:.14em;
  color:var(--gruen-hell); margin-bottom:20px;
}
.schritte h3{ font-size:1.16rem; font-weight:700; margin:0 0 10px; letter-spacing:-.01em; }
.schritte p{ margin:0; color:var(--grau); font-size:15.5px; }

/* Zwei Spalten */
.zwei{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:clamp(34px,5vw,74px); align-items:center; }
.zwei__bild{ margin:0; }
.zwei__bild img{ width:100%; height:auto; border-radius:var(--rund); }
.zwei__bild figcaption{
  margin-top:14px; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:#6c736e;
}
.leistungen{ list-style:none; margin:0 0 32px; padding:0; }
.leistungen li{
  padding:15px 0 15px 34px; border-top:1px solid var(--linie-hell); position:relative; font-size:16.5px;
}
.leistungen li:last-child{ border-bottom:1px solid var(--linie-hell); }
.leistungen li::before{
  content:""; position:absolute; left:2px; top:50%; width:15px; height:8px;
  border-left:2px solid var(--gruen); border-bottom:2px solid var(--gruen);
  transform:translateY(-70%) rotate(-45deg);
}

/* Geschäftsmodelle */
.modelle{ margin-top:46px; }
.modelle__reiter{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }
.modelle__reiter button{
  font-family:inherit; font-size:15px; font-weight:600; cursor:pointer;
  padding:13px 24px; min-height:48px; border-radius:var(--rund);
  background:transparent; color:var(--grau); border:1.5px solid var(--linie);
  transition:all .28s var(--ease);
}
.modelle__reiter button:hover{ color:var(--weiss); border-color:rgba(255,255,255,.28); }
.modelle__reiter button[aria-selected="true"]{ background:var(--gruen); color:#fff; border-color:var(--gruen); }
.modelle__inhalt{ border:1px solid var(--linie); border-radius:var(--rund); padding:clamp(26px,3.6vw,46px); }
.modelle__inhalt h3{ font-size:1.5rem; font-weight:800; margin:0 0 12px; letter-spacing:-.015em; }
.modelle__inhalt p{ margin:0; color:var(--grau); font-size:1.05rem; max-width:52ch; }

/* Clips */
.clips{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:22px; margin-top:48px; }
.clip{ margin:0; }
.clip__flaeche{
  position:relative; display:block; width:100%; padding:0; border:0; cursor:pointer;
  background:var(--flaeche); border-radius:var(--rund); overflow:hidden; aspect-ratio:9/13;
}
.clip__flaeche img{ width:100%; height:100%; object-fit:cover; transition:transform .55s var(--ease), opacity .4s; }
.clip__flaeche:hover img{ transform:scale(1.045); opacity:.86; }
.clip__play{
  position:absolute; left:50%; top:50%; width:64px; height:64px; margin:-32px 0 0 -32px;
  border-radius:50%; background:rgba(16,18,17,.62); border:1.5px solid rgba(255,255,255,.55);
  backdrop-filter:blur(3px); transition:background .3s, transform .3s var(--ease);
}
.clip__play::after{
  content:""; position:absolute; left:52%; top:50%; transform:translate(-50%,-50%);
  border-left:16px solid #fff; border-top:10px solid transparent; border-bottom:10px solid transparent;
}
.clip__flaeche:hover .clip__play{ background:var(--gruen); transform:scale(1.07); }
.clip figcaption{ margin-top:14px; font-size:15.5px; font-weight:600; }

.tiktoklink{ margin-top:36px; font-size:15px; color:var(--grau); }
.tiktoklink a{ color:var(--gruen-hell); text-decoration:none; border-bottom:1px solid currentColor; }

/* Waren */
.waren{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:22px; margin-top:46px; }
.waren figure{ margin:0; }
.waren img{ width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:var(--rund); }
.waren figcaption{ margin-top:12px; font-size:14px; color:var(--grau); }

/* FAQ */
.faq{ margin-top:40px; border-top:1px solid var(--linie); }
.faq details{ border-bottom:1px solid var(--linie); }
.faq summary{
  cursor:pointer; list-style:none; padding:24px 44px 24px 0; position:relative;
  font-size:1.08rem; font-weight:600; min-height:56px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:""; position:absolute; right:6px; top:50%; width:11px; height:11px;
  border-right:2px solid var(--gruen-hell); border-bottom:2px solid var(--gruen-hell);
  transform:translateY(-70%) rotate(45deg); transition:transform .3s var(--ease);
}
.faq details[open] summary::after{ transform:translateY(-30%) rotate(-135deg); }
.faq p{ margin:0 0 26px; color:var(--grau); max-width:62ch; }

/* Formular */
.formular{
  margin-top:42px; display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:22px 26px;
}
.feld{ display:flex; flex-direction:column; gap:9px; }
.feld--voll{ grid-column:1 / -1; }
.feld label{ font-size:14px; font-weight:600; letter-spacing:.01em; }
.feld .opt{ font-weight:400; color:var(--grau); }
/* Nicht nur type="text": Bei „E-Mail" wechselt das Feld auf type="email" und stand dann ungestaltet da */
.feld input:not([type="checkbox"]), .feld select, .feld textarea{
  font-family:inherit; font-size:16px; color:var(--weiss);
  background:var(--schwarz); border:1.5px solid var(--linie); border-radius:var(--rund);
  padding:14px 16px; min-height:52px; width:100%;
  transition:border-color .25s;
}
.feld textarea{ resize:vertical; min-height:96px; }
.feld input:focus, .feld select:focus, .feld textarea:focus{ border-color:var(--gruen-hell); outline:none; }
.feld--haken{ flex-direction:row; align-items:flex-start; gap:12px; flex-wrap:wrap; }
.feld--haken input{ width:22px; height:22px; margin-top:2px; accent-color:var(--gruen); flex:0 0 auto; }
.feld--haken label{ font-weight:400; font-size:14.5px; color:var(--grau); flex:1; min-width:200px; }
.feld--haken label a{ color:var(--gruen-hell); }
.fehler{ font-size:13px; color:#ff8a8a; min-height:1px; }
.feld--fehlt input, .feld--fehlt select{ border-color:#ff8a8a; }
.hinweis{ margin:16px 0 0; font-size:14.5px; color:var(--grau); }
.hinweis.gut{ color:var(--gruen-hell); }
.hinweis.schlecht{ color:#ff8a8a; }

/* Fuß */
.fuss{ background:var(--schwarz-tief); border-top:1px solid var(--linie); padding:58px 0 0; }
.fuss__in{ display:flex; flex-wrap:wrap; gap:34px; justify-content:space-between; align-items:flex-start; }
.fuss__marke{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.fuss__marke p{ width:100%; margin:8px 0 0; font-size:13px; color:#6c736e; letter-spacing:.1em; text-transform:uppercase; }
.fuss__links{ display:flex; flex-wrap:wrap; gap:10px 26px; }
.fuss__links a{ font-size:15px; color:var(--grau); text-decoration:none; }
.fuss__links a:hover{ color:var(--weiss); }
.fuss__recht{ font-size:14px; color:#6c736e; margin:0; }
.fuss__recht a{ color:var(--grau); text-decoration:none; }
.fuss__vorschau{
  margin:44px 0 0; padding:16px 24px; text-align:center;
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color:#6c736e;
  border-top:1px solid var(--linie);
}

/* Modal */
.modal{
  position:fixed; inset:0; z-index:150; background:rgba(8,9,8,.9);
  display:flex; align-items:center; justify-content:center; padding:24px;
}
.modal[hidden]{ display:none; }
.modal__box{ position:relative; width:min(430px,100%); }
.modal__box video{ width:100%; border-radius:var(--rund); background:#000; }
.modal__zu{
  position:absolute; right:-6px; top:-52px; width:44px; height:44px;
  background:none; border:0; color:#fff; font-size:34px; line-height:1; cursor:pointer;
}

/* ---------- Wow beim Öffnen: Reveal, ohne Ladeintro ---------- */

@keyframes einfahren{ from{ opacity:0; transform:translateY(26px);} to{ opacity:1; transform:none;} }
@keyframes boxauf{ from{ opacity:0; transform:scale(1.045) translateX(26px);} to{ opacity:1; transform:none;} }
@keyframes glanzzug{
  0%  { transform:translateX(-60%) skewX(-16deg); opacity:0; }
  18% { opacity:1; }
  82% { opacity:1; }
  100%{ transform:translateX(260%) skewX(-16deg); opacity:0; }
}
@keyframes filmauf{ from{ opacity:0;} to{ opacity:.30;} }

.buehne.im-blick .buehne__text .eyebrow{ animation:einfahren .8s var(--ease) .10s both; }
.buehne.im-blick .buehne__text .h1 .zeile:nth-of-type(1){ display:block; animation:einfahren .95s var(--ease) .20s both; }
.buehne.im-blick .buehne__text .h1 .zeile:nth-of-type(2){ display:block; animation:einfahren .95s var(--ease) .36s both; }
.buehne.im-blick .buehne__text .h1 .zeile:nth-of-type(3){ display:block; animation:einfahren .95s var(--ease) .52s both; }
.buehne.im-blick .buehne__text .vorspann{ animation:einfahren .9s var(--ease) .52s both; }
.buehne.im-blick .buehne__text .knopfreihe{ animation:einfahren .9s var(--ease) .64s both; }
.buehne.im-blick .buehne__text .nutzen{ animation:einfahren .9s var(--ease) .74s both; }
.buehne.im-blick .buehne__bild img{ animation:boxauf 1.5s var(--ease) both; }

/* Ein einziger Lichtzug über die Box — nicht wiederholt, kein Glitzern */
.glanz{
  /* nur über der Box: läuft von ~48 % bis ~90 % der Breite, nicht über die Überschrift */
  position:absolute; top:22%; bottom:22%; left:56%; width:13%; opacity:0;
  pointer-events:none; z-index:1; border-radius:50%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.085), transparent);
  filter:blur(22px);
}
.buehne.im-blick .glanz{ animation:glanzzug 2.1s var(--ease) .75s 1 both; }

/* Kino-Film hinter der Box */
.buehne__film{ position:absolute; inset:0; z-index:-1; overflow:hidden; }
.buehne__film video{
  width:100%; height:100%; object-fit:cover; opacity:0;
  animation:filmauf 2.4s ease 1.1s both;
  filter:grayscale(.35) contrast(1.05);
}
.buehne__film::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, var(--schwarz) 12%, rgba(16,18,17,.86) 40%, rgba(16,18,17,.70) 100%);
}

/* ---------- Einstieg: Kino-Auftakt ---------- */

@keyframes kinoauf{ from{ opacity:0; transform:scale(1.08);} to{ opacity:1; transform:scale(1);} }
@keyframes nurauf{ from{ opacity:0;} to{ opacity:1;} }

.fahrt--opener{ background:#000; }
.fahrt--opener .fahrt__film{ animation:kinoauf 2.6s cubic-bezier(.2,.7,.2,1) both; }
.fahrt--opener .eyebrow{ animation:einfahren .8s var(--ease) .45s both; }
.fahrt--opener .fahrt__h2{ animation:einfahren 1s var(--ease) .6s both; }
.fahrt--opener .fahrt__text{ animation:einfahren .9s var(--ease) .8s both; }
.fahrt--opener .fahrt__knoepfe{ animation:einfahren .9s var(--ease) .95s both; margin-bottom:0; }
.fahrt--opener .fahrt__fuss,
.fahrt--opener .fahrt__kachel{ animation:nurauf 1.1s ease 1.3s both; }
/* Kapitel sind mit translateY zentriert — nur einblenden, nicht verschieben */
.fahrt--opener .fahrt__kapitel{ animation:nurauf 1.1s ease 1.3s both; }

.js .buehne:not(.im-blick) .buehne__text .mitte > *,
.js .buehne:not(.im-blick) .buehne__bild img,
.js .buehne:not(.im-blick) .glanz,
.js .buehne:not(.im-blick) .reise{ opacity:0; }

/* ---------- Fortschritt der Reise im Hero ---------- */

.reise{
  position:absolute; left:0; right:0; bottom:26px; z-index:3;
  max-width:var(--breit); margin:0 auto; padding-inline:24px;
}
.buehne.im-blick .reise{ animation:einfahren 1s var(--ease) .9s both; }
.reise__leiste{ height:2px; background:var(--linie); border-radius:2px; overflow:hidden; }
.reise__leiste span{
  display:block; height:100%; width:8%; background:var(--gruen-hell);
  transition:width .25s linear;
}
.reise__marken{
  list-style:none; display:flex; justify-content:space-between;
  margin:14px 0 0; padding:0; font-size:13px; color:#6f766f;
}
.reise__marken li{ display:flex; gap:9px; align-items:baseline; transition:color .4s var(--ease); }
.reise__marken li b{ font-weight:700; letter-spacing:.06em; }
.reise__marken li.an{ color:var(--weiss); }
.reise__marken li.an b{ color:var(--gruen-hell); }

.scrollhinweis{
  position:static; display:flex; flex-direction:row; align-items:center; justify-content:center;
  gap:9px; margin-top:16px;
  font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:#6f766f;
}
.scrollhinweis svg{ animation:wippen 2.4s var(--ease) infinite; }

/* ---------- Mitfahren durch Prato: bildschirmfüllend ---------- */

.fahrt{ position:relative; background:var(--schwarz); }
.fahrt__fix{
  position:relative; height:100vh; height:100svh; min-height:560px; overflow:hidden;
  display:flex; align-items:center;
}
.fahrt__film{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
}
.fahrt__schleier{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(90deg, rgba(16,18,17,.90) 0%, rgba(16,18,17,.58) 38%, rgba(16,18,17,.12) 66%, rgba(16,18,17,.34) 100%),
    linear-gradient(180deg, rgba(16,18,17,.74) 0%, rgba(16,18,17,0) 22%, rgba(16,18,17,0) 52%, rgba(16,18,17,.62) 80%, rgba(16,18,17,.94) 100%);
}
.fahrt__inhalt{ position:relative; z-index:2; width:100%; }
.fahrt__h2{ font-size:clamp(2rem,4.9vw,4.2rem); line-height:1.02; max-width:19ch; margin-bottom:20px; }
.fahrt__h2 .zeile{ display:block; }
.fahrt__text{ color:#dfe4e0; max-width:38ch; }
.fahrt__link{ color:var(--weiss); border-bottom-color:rgba(255,255,255,.4); }
.fahrt__link svg{ margin-left:2px; }

.fahrt__kapitel{
  position:absolute; right:26px; top:50%; transform:translateY(-50%); z-index:3;
  list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:18px;
  font-size:13px; color:rgba(255,255,255,.66); letter-spacing:.06em;
  text-shadow:0 1px 10px rgba(0,0,0,.75);
}
.fahrt__kapitel > *{ position:relative; color:inherit; text-decoration:none; padding:2px 4px; transition:color .3s; }
.fahrt__kapitel > * + *::before{
  content:""; position:absolute; left:50%; top:-14px; width:1px; height:9px;
  background:rgba(255,255,255,.3);
}
.fahrt__kapitel > .an{ color:var(--gruen-hell); }
.fahrt__kapitel a:hover{ color:#fff; }

.fahrt__fuss{
  position:absolute; left:0; right:0; bottom:30px; z-index:3;
  display:flex; align-items:center; gap:22px;
  max-width:var(--breit); margin:0 auto; padding-inline:24px;
  font-size:11.5px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.88);
  text-shadow:0 1px 10px rgba(0,0,0,.7);
}
.fahrt__leiste{ flex:1; height:2px; background:rgba(255,255,255,.32); border-radius:2px; overflow:hidden; }
.fahrt__leiste span{ display:block; height:100%; width:0%; background:var(--gruen-hell); }

.fahrt__kachel{
  position:absolute; right:26px; bottom:70px; z-index:3; margin:0;
  width:150px; border:1px solid rgba(255,255,255,.28); border-radius:var(--rund);
  overflow:hidden; box-shadow:0 12px 34px rgba(0,0,0,.45);
}
.fahrt__kachel img{ width:100%; height:auto; display:block; }

/* ---------- Film im Agentin-Abschnitt ---------- */

.zwei__bild--film{ position:relative; border-radius:var(--rund); overflow:hidden; }
.zwei__bild--film video{
  width:100%; height:auto; aspect-ratio:16/10; object-fit:cover; display:block;
  background:var(--schwarz);
}
.zwei__bild--film figcaption{
  position:absolute; left:14px; bottom:14px; margin:0;
  background:rgba(16,18,17,.76); color:#fff; backdrop-filter:blur(4px);
  padding:8px 14px; border-radius:4px;
  font-size:11px; letter-spacing:.15em; text-transform:uppercase;
}

/* Pfeil-Liste nach dem Entwurf */
.leistungen--pfeil li{ padding-left:0; padding-right:34px; }
.leistungen--pfeil li::before{
  left:auto; right:6px; width:8px; height:8px;
  border-left:0; border-bottom:2px solid var(--gruen);
  border-right:2px solid var(--gruen);
  transform:translateY(-50%) rotate(-45deg);
}

/* ---------- Band ---------- */

.band{ background:var(--schwarz); padding:clamp(56px,7vw,92px) 0; border-top:1px solid var(--linie); }
.band__in{ display:flex; flex-wrap:wrap; gap:28px 48px; align-items:flex-end; justify-content:space-between; }
.band__satz{ margin:0; max-width:18ch; }
.band__marke{ margin:0; color:var(--grau); font-size:15px; line-height:1.7; }
.band__marke b{ color:var(--gruen-hell); font-size:12px; letter-spacing:.2em; text-transform:uppercase; font-weight:600; }

/* ============================================================
   EINKAUFSWEG (19.09.) — Sortiment, Agentinnen, Kundenbereich
   ============================================================ */

/* Sprungziele nicht unter der festen Kopfleiste verstecken; kein Fokusrahmen um ganze Abschnitte */
main section[id]{ scroll-margin-top:60px; }
[tabindex="-1"]:focus{ outline:none; }

.nav__links{ gap:26px; }
.nav__login{
  display:inline-flex; align-items:center; gap:7px; white-space:nowrap;
  font-size:15px; color:var(--grau); text-decoration:none; padding:6px 0;
  transition:color .25s;
}
.nav__login:hover{ color:var(--weiss); }
.nav__rechts .btn{ white-space:nowrap; }

/* Zweiter Knopf über Film und in der Handy-Leiste */
.btn--glas{
  background:rgba(16,18,17,.38); color:#fff; border-color:rgba(255,255,255,.55);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
}
.btn--glas:hover{ border-color:var(--gruen-hell); color:var(--gruen-hell); }

.abschnitt--linie{ border-top:1px solid var(--linie); }
.abschnitt--flaeche{ background:var(--flaeche); border-top:1px solid var(--linie); }

/* Kopf eines Abschnitts mit Knöpfen rechts */
.kopfzeile{ display:flex; flex-wrap:wrap; gap:8px 40px; align-items:flex-end; justify-content:space-between; }
.kopfzeile__text{ min-width:0; max-width:62ch; }
.kopfzeile__knoepfe{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:26px; }

/* Artikel live aus X-Sale */
.ware-chips{ display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 26px; }
.chip{
  font:inherit; font-size:14px; font-weight:500; padding:9px 17px; min-height:40px;
  border-radius:999px; border:1.5px solid var(--linie); background:none; color:var(--grau); cursor:pointer;
  transition:background .25s, border-color .25s, color .25s;
}
.chip:hover{ color:var(--weiss); border-color:rgba(255,255,255,.3); }
.chip[aria-pressed="true"]{ background:var(--gruen); border-color:var(--gruen); color:#fff; }
.ware-raster{ display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:26px 22px; }
.ware-karte{ display:block; text-decoration:none; color:inherit; min-width:0; }
.ware-karte__bild{ aspect-ratio:4/5; background:var(--flaeche); border-radius:var(--rund); overflow:hidden; }
.ware-karte__bild img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.ware-karte:hover .ware-karte__bild img{ transform:scale(1.04); }
.ware-karte__name{ margin:12px 0 4px; font-size:15.5px; font-weight:600; line-height:1.35; overflow-wrap:anywhere; }
.ware-karte__meta{ display:flex; flex-wrap:wrap; gap:4px 10px; font-size:13.5px; color:var(--grau); }
.ware-karte__meta .frei{ color:var(--gruen-hell); }

/* Kategorien: echte Hallenfotos, führen zur Anfrage oder — wenn es Ware gibt — in den Shop */
.kategorien{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:22px; margin-top:38px; }
.ware-live:not([hidden]) + .kategorien{ margin-top:56px; }
.kategorie{
  position:relative; display:block; border-radius:var(--rund); overflow:hidden;
  text-decoration:none; color:#fff; isolation:isolate;
}
.kategorie img{ width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; transition:transform .6s var(--ease); }
.kategorie::after{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(16,18,17,0) 42%, rgba(16,18,17,.9) 100%);
}
.kategorie:hover img{ transform:scale(1.045); }
/* Motiv mit Person: Ausschnitt nach oben, damit der Kopf nicht angeschnitten wird */
.kategorie img.oben{ object-position:50% 10%; }
.kategorie__text{ position:absolute; left:22px; right:22px; bottom:20px; z-index:1; display:flex; flex-direction:column; gap:4px; }
.kategorie__text b{ font-size:1.32rem; font-weight:800; letter-spacing:-.01em; line-height:1.2; }
.kategorie__tun{ font-size:14.5px; font-weight:600; color:var(--gruen-hell); }
.kategorie__tun::after{ content:" \2192"; }

.konto-zeile{ margin:30px 0 0; font-size:15px; color:var(--grau); }
.konto-zeile a{ color:var(--gruen-hell); text-underline-offset:4px; }
.konto-zeile span{ margin:0 10px; }

/* Ablauf in fünf Schritten */
.schritte--fuenf{ grid-template-columns:repeat(5, minmax(0,1fr)); }

/* Agentinnen mit Porträt */
.team{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:24px;
  margin-top:clamp(48px,6vw,84px); align-items:stretch;
}
.team__karte{
  background:#fff; border:1px solid var(--linie-hell); border-radius:var(--rund);
  overflow:hidden; display:flex; flex-direction:column; min-width:0;
}
.team__karte img{ width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; }
.team__text{ padding:22px 24px 26px; }
.team__text h3{ margin:0 0 4px; font-size:1.4rem; font-weight:800; letter-spacing:.02em; }
.team__rolle{
  margin:0 0 12px; font-size:12.5px; font-weight:600; letter-spacing:.13em;
  text-transform:uppercase; color:var(--gruen-dunkel);
}
.team__text p:last-child{ margin:0; color:#4b524d; font-size:15.5px; }
.team__weg{
  background:var(--schwarz); color:var(--weiss); border-radius:var(--rund);
  padding:32px 30px; display:flex; flex-direction:column; min-width:0;
}
.team__weg h3{ margin:0 0 20px; font-size:1.3rem; font-weight:800; letter-spacing:-.01em; }
.team__weg ol{ list-style:none; margin:0 0 28px; padding:0; counter-reset:weg; display:flex; flex-direction:column; gap:16px; }
.team__weg li{ counter-increment:weg; position:relative; padding-left:40px; color:var(--grau); font-size:15.5px; }
.team__weg li::before{
  content:counter(weg, decimal-leading-zero); position:absolute; left:0; top:1px;
  font-size:13px; font-weight:700; letter-spacing:.1em; color:var(--gruen-hell);
}
.team__weg li b{ color:var(--weiss); font-weight:600; }
.team__weg .btn{ margin-top:auto; }

/* Sechs Wege zu bestellen */
.wege{
  list-style:none; margin:34px 0 0; padding:0;
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:1px;
  background:var(--linie); border:1px solid var(--linie);
}
.wege li{ background:var(--schwarz); padding:22px 24px 24px; display:flex; flex-direction:column; gap:6px; min-width:0; }
.wege b{ font-weight:700; font-size:1.03rem; }
.wege span{ color:var(--grau); font-size:15px; }

/* Kundenbereich */
.zwei--oben{ align-items:start; }
.bereich{ list-style:none; margin:0; padding:0; border-top:1px solid var(--linie); }
.bereich li{
  position:relative; padding:18px 0 18px 38px; border-bottom:1px solid var(--linie);
  display:flex; flex-direction:column; gap:3px;
}
.bereich li::before{
  content:""; position:absolute; left:4px; top:25px; width:13px; height:7px;
  border-left:2px solid var(--gruen-hell); border-bottom:2px solid var(--gruen-hell);
  transform:rotate(-45deg);
}
.bereich b{ font-weight:600; }
.bereich span{ color:var(--grau); font-size:15px; }
.kleingedruckt{ margin:0; font-size:13.5px; color:#8a918c; }

/* Falle für Spam-Programme — für Menschen unsichtbar */
.feld--falle{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

/* Handy-Leiste — nur auf schmalen Bildschirmen, siehe unten */
.schnellleiste{ display:none; }

/* ============================================================
   HANDY UND TABLET — ans Dateiende, wie es die Hausregel verlangt
   ============================================================ */

@media (max-width: 1100px){
  .schritte{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .clips{ grid-template-columns:repeat(3, minmax(0,1fr)); gap:16px; }
}

@media (max-width: 860px){
  .nav__links, .nav__rechts{ display:none; }
  .burger{ display:flex; }

  .buehne{ height:220vh; }
  .buehne__fix{ align-items:flex-start; }
  .buehne__bild{ align-items:flex-start; justify-content:center; }
  .buehne__bild img, .buehne__bild video{
    width:100%; max-width:100%; height:40vh; max-height:40vh;
    object-fit:contain; object-position:center;
    margin-right:0; margin-top:9vh;
    position:static; transform:none;
  }
  .buehne__bild video{ position:absolute; left:0; right:0; top:0; }
  .buehne__bild::after{
    background:
      linear-gradient(180deg, rgba(16,18,17,.5) 0%, rgba(16,18,17,0) 20%, rgba(16,18,17,.4) 42%, var(--schwarz) 54%);
  }
  .buehne__text{ padding-top:47vh; }
  .h1{ max-width:100%; font-size:clamp(1.85rem,8.2vw,2.6rem); }
  .vorspann{ max-width:100%; font-size:1rem; margin-bottom:22px; }
  .knopfreihe{ flex-direction:column; align-items:stretch; gap:10px; margin-bottom:20px; }
  .knopfreihe .btn{ width:100%; }
  .btn--text{ border-bottom:0; text-decoration:underline; text-underline-offset:5px; padding:12px 4px; }
  .nutzen{ font-size:12.5px; }

  .kapitel{ align-items:flex-start; }
  .kapitel p{ top:46vh; max-width:100%; font-size:clamp(1.4rem,6.6vw,2rem); }

  /* Auf dem Handy ist der Platz zu knapp — der Hinweis würde auf dem Knopf liegen */
  .scrollhinweis{ display:none; }

  /* Auf dem Handy nur der dünne Fortschrittsbalken ganz unten — die Beschriftung
     läge sonst auf der Nutzenzeile (am 18.09. im Live-Beleg bei 390 px gesehen). */
  .glanz{ display:none; }
  .reise{ bottom:0; padding-inline:0; }
  .reise__marken{ display:none; }
  .reise__leiste{ border-radius:0; }

  /* Einstieg auf dem Handy: Film füllt die oberen zwei Drittel, der Text steht darunter.
     Im Hochformat würde "cover" nur ein Viertel der Breite zeigen — dann fehlt eine der beiden. */
  .fahrt__fix{ height:auto; min-height:100vh; min-height:100svh; align-items:flex-end; }
  .fahrt__film{ height:66%; object-position:66% 42%; }
  .fahrt__inhalt{ padding-top:44svh; padding-bottom:56px; }
  .fahrt--opener .h1{ font-size:clamp(1.75rem,8.4vw,2.4rem); }
  .fahrt__knoepfe{ flex-direction:column; align-items:stretch; gap:10px; }
  .fahrt__knoepfe .btn{ width:100%; }
  .fahrt__h2{ max-width:100%; }
  .fahrt__text{ max-width:100%; }
  .fahrt__schleier{
    background:linear-gradient(180deg, rgba(16,18,17,.62) 0%, rgba(16,18,17,.08) 22%, rgba(16,18,17,.55) 52%, rgba(16,18,17,.95) 88%);
  }
  .fahrt__kapitel{ display:none; }
  .fahrt__kachel{ display:none; }
  .fahrt__fuss{ bottom:18px; gap:12px; font-size:10px; }
  .fahrt__tun{ display:none; }

  .zwei__bild--film video{ aspect-ratio:4/3; }
  .band__in{ flex-direction:column; align-items:flex-start; gap:22px; }
  .band__satz{ max-width:100%; }

  .zwei{ grid-template-columns:minmax(0,1fr); gap:32px; }
  .waren{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .waren figure:last-child{ grid-column:1 / -1; }
  .waren figure:last-child img{ aspect-ratio:16/9; }
  .formular{ grid-template-columns:minmax(0,1fr); }

  .clips{
    grid-template-columns:none;
    grid-auto-flow:column; grid-auto-columns:78%;
    overflow-x:auto; scroll-snap-type:x mandatory;
    padding-bottom:12px; margin-inline:-24px; padding-inline:24px;
    scrollbar-width:thin;
  }
  .clip{ scroll-snap-align:center; }
}

@media (max-width: 560px){
  body{ font-size:16.5px; }
  .mitte{ padding-inline:20px; }
  .clips{ margin-inline:-20px; padding-inline:20px; grid-auto-columns:82%; }
  .schritte{ grid-template-columns:minmax(0,1fr); }
  .schritte li{ padding:26px 22px 30px; }
  .fuss__in{ flex-direction:column; gap:26px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .glanz{ display:none; }
  .buehne__film{ display:none; }
  .fahrt{ height:auto; }
  .fahrt__fix{ position:relative; height:auto; min-height:auto; padding-block:90px; }
  .fahrt__film{ position:relative; height:52vh; }
  .fahrt__inhalt{ padding-top:36px; }
  .fahrt__kachel, .fahrt__kapitel{ display:none; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .buehne{ height:auto; }
  .buehne__fix{ position:relative; height:auto; min-height:auto; padding-block:120px 80px; }
  .buehne__bild{ position:relative; height:46vh; }
  .buehne__text{ padding-top:44px; }
  .kapitel{ display:none; }
  .scrollhinweis{ display:none; }
}

/* ============================================================
   EINKAUFSWEG — Tablet und Handy (bleibt am Dateiende)
   ============================================================ */

@media (max-width: 1100px){
  .nav__in{ gap:20px; }
  .nav__links{ gap:20px; }
  .nav__rechts{ gap:14px; }
  .nav__rechts .flagge{ display:none; }
  /* fünf Schritte: zwei Spalten, der letzte über die volle Breite — keine leere Zelle */
  .schritte--fuenf li:last-child{ grid-column:1 / -1; }
  .ware-raster{ grid-template-columns:repeat(3, minmax(0,1fr)); }
  .team{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .team__weg{ grid-column:1 / -1; }
  .team__weg .btn{ align-self:flex-start; }
}

@media (max-width: 860px){
  .kopfzeile__knoepfe{ width:100%; flex-direction:column; margin-bottom:8px; }
  .kopfzeile__knoepfe .btn{ width:100%; }
  .ware-raster{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:22px 14px; }
  .kategorien{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px; }
  .kategorie:last-child{ grid-column:1 / -1; }
  .kategorie:last-child img{ aspect-ratio:16/9; }
  .kategorie__text{ left:16px; right:16px; bottom:14px; }
  .kategorie__text b{ font-size:1.12rem; }
  .kategorie__tun{ font-size:13.5px; }
  .wege{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .team__weg .btn{ align-self:stretch; }

  /* Die zwei Einstiege bleiben auf dem Handy immer erreichbar */
  .schnellleiste{
    display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:10px;
    position:fixed; left:0; right:0; bottom:0; z-index:90;
    padding:10px 14px calc(10px + env(safe-area-inset-bottom));
    background:rgba(16,18,17,.92);
    -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
    border-top:1px solid var(--linie);
    transform:translateY(110%); transition:transform .35s var(--ease);
  }
  .schnellleiste.sichtbar{ transform:none; }
  .schnellleiste .btn{ min-height:48px; padding:12px 10px; font-size:15px; }
  /* damit die Leiste nie die letzte Zeile der Seite verdeckt */
  .fuss{ padding-bottom:76px; }
}

@media (max-width: 560px){
  .wege{ grid-template-columns:minmax(0,1fr); }
  .team{ grid-template-columns:minmax(0,1fr); gap:16px; }
  .team__karte{ display:grid; grid-template-columns:118px minmax(0,1fr); align-items:stretch; }
  .team__karte img{ height:100%; aspect-ratio:auto; min-height:150px; }
  .team__text{ padding:16px 16px 18px; }
  .team__text h3{ font-size:1.18rem; }
  .team__rolle{ font-size:11px; margin-bottom:8px; }
  .team__text p:last-child{ font-size:14.5px; }
  .team__weg{ padding:26px 20px; }
  .konto-zeile span{ display:block; height:4px; margin:0; overflow:hidden; color:transparent; }
}
