/* ===========================================================
   Karlson Entrümpelungen
   Design: "Räumungsschein" — ehrliches Handwerk, Karton-Material
   Palette: Flaschengrün · Kraftpapier · Klebeband-Amber · Tinte
   Type: Bricolage Grotesque (Display) · Inter (Text) · Spline Sans Mono (Label)
   =========================================================== */

:root {
  --green-900: #15271D;   /* tiefster Grund: Header, Hero, Footer */
  --green-800: #1C3326;
  --green-700: #244031;
  --green-600: #335A45;
  --green-line:#34503f;

  --kraft:     #DAC39C;   /* Karton — Signature-Material */
  --kraft-2:   #E7D6B6;
  --kraft-line:#c2a978;

  --paper:     #F1EDE2;   /* warmer Grund der hellen Sektionen */
  --paper-2:   #FBF9F3;   /* Karten */
  --line:      #E2D9C5;

  --ink:       #20231D;
  --ink-soft:  #595B4E;

  --amber:     #D98A36;   /* Klebeband — einziger Signalakzent */
  --amber-dk:  #BE7325;

  --on-green:  #E8EFE6;   /* Text auf Grün */
  --on-green-soft: #A9BBAB;

  --r:   10px;
  --r-sm: 7px;
  --maxw: 1180px;

  --display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--display); line-height: 1.06; margin: 0 0 .5em;
  letter-spacing: -.02em; font-weight: 700; overflow-wrap: break-word; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.18rem; letter-spacing: -.01em; }
p  { margin: 0 0 1rem; }
a  { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(22px, 6vw, 44px); }
.container--narrow { max-width: 760px; }
.amber, .accent { color: var(--amber); }

/* ---------- Mono-Label (Beschriftung) ---------- */
.label, .eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .76rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--amber-dk);
  margin: 0 0 1rem;
}
.label::before, .eyebrow::before {
  content: ""; width: 9px; height: 9px; background: var(--amber);
  flex: none; transform: rotate(0deg);
}
.label--light, .section__head--light .eyebrow { color: var(--amber); }
.label--light::before { background: var(--amber); }

/* ---------- Buttons (kantig, Kisten-Welt) ---------- */
.btn {
  --bg: var(--green-800); --fg: var(--on-green);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.4rem; border-radius: var(--r-sm); border: 1.5px solid transparent;
  background: var(--bg); color: var(--fg); font-family: var(--body); font-weight: 600;
  font-size: .98rem; cursor: pointer; transition: transform .12s ease, background .2s, box-shadow .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.btn--amber, .btn--primary { --bg: var(--amber); --fg: #20140a;
  box-shadow: 0 10px 0 -4px rgba(190,115,37,.35); }
.btn--amber:hover, .btn--primary:hover { background: var(--amber-dk); }
.btn--green { --bg: var(--green-800); --fg: var(--on-green); }
.btn--green:hover { background: var(--green-700); }
.btn--phone { --bg: var(--green-700); --fg: #fff; }
.btn--phone:hover { background: var(--green-600); }
.btn--wa { --bg: #25D366; --fg: #06351b; box-shadow: 0 10px 0 -4px rgba(37,211,102,.3); }
.btn--wa:hover { background: #1eb959; }
.btn--wa svg { flex: none; }
/* Symbol-Button (z. B. Anrufen) */
.iconbtn {
  display: grid; place-items: center; width: 44px; height: 44px; flex: none;
  border: 1.5px solid var(--green-line); background: transparent; color: var(--on-green);
  border-radius: var(--r-sm); cursor: pointer; transition: border-color .2s, background .2s;
}
.iconbtn:hover { border-color: rgba(232,239,230,.5); background: rgba(232,239,230,.06); }
.iconbtn svg { width: 20px; height: 20px; }
.btn--line, .btn--ghost { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn--line:hover, .btn--ghost:hover { background: var(--green-800); color: var(--on-green); }
.btn--line-light { background: transparent; color: var(--on-green); border-color: rgba(232,239,230,.4); }
.btn--line-light:hover { background: rgba(232,239,230,.1); border-color: var(--on-green); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--green-900);
  border-bottom: 1px solid var(--green-line);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark { display: inline-grid; place-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: var(--display); font-size: 1.14rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.brand__text span { font-family: var(--mono); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--on-green-soft); margin-top: 3px; }

.nav { display: flex; gap: 1.5rem; margin-left: auto; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--on-green-soft); padding: .3rem 0; position: relative; }
.nav a:hover { color: #fff; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--amber); transition: width .2s; }
.nav a:hover::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: .6rem; }

/* ---------- Sprachumschalter ---------- */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: .4rem; height: 40px; padding: 0 .55rem;
  border: 1.5px solid var(--green-line); background: transparent; color: var(--on-green);
  border-radius: var(--r-sm); cursor: pointer; font-family: var(--mono); font-size: .8rem; letter-spacing: .06em;
  transition: border-color .2s, background .2s;
}
.lang__btn:hover { border-color: rgba(232,239,230,.5); }
.lang__btn svg { width: 18px; height: 18px; flex: none; }
.lang__chev { width: 12px; height: 12px; opacity: .65; transition: transform .2s; }
.lang__btn[aria-expanded="true"] .lang__chev { transform: rotate(180deg); }
.lang__menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 178px; z-index: 60;
  background: var(--green-800); border: 1px solid var(--green-line); border-radius: var(--r-sm);
  box-shadow: 0 20px 44px -20px rgba(0,0,0,.75); padding: .35rem; margin: 0; list-style: none;
}
.lang__menu[hidden] { display: none; }
.lang__menu li { margin: 0; }
.lang__menu button {
  display: flex; width: 100%; align-items: center; gap: .6rem; padding: .6rem .7rem;
  background: transparent; border: none; color: var(--on-green); font-family: var(--body);
  font-size: .96rem; text-align: left; border-radius: 6px; cursor: pointer;
}
.lang__menu button:hover { background: rgba(232,239,230,.08); }
.lang__menu button[aria-current="true"] { color: var(--amber); font-weight: 600; }
.lang__menu .tick { margin-left: auto; opacity: 0; }
.lang__menu button[aria-current="true"] .tick { opacity: 1; }

/* ---------- Rechts-nach-links (Arabisch) ---------- */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .lang__menu { right: auto; left: 0; }
[dir="rtl"] .lang__menu button { text-align: right; }
[dir="rtl"] .lang__menu .tick { margin-left: 0; margin-right: auto; }
[dir="rtl"] .hero__lead, [dir="rtl"] .section__head p, [dir="rtl"] .ticket__rows dd { text-align: right; }
[dir="rtl"] .nav a::after { left: auto; right: 0; }
[dir="rtl"] .hero__facts li::before { content: "+"; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] .hero__title, [dir="rtl"] .ticket__title, [dir="rtl"] .legal h1, [dir="rtl"] .legal h2 {
  font-family: "Noto Naskh Arabic", "Geeza Pro", "Segoe UI", Tahoma, "Bricolage Grotesque", sans-serif;
}
[dir="rtl"] .label, [dir="rtl"] .eyebrow, [dir="rtl"] .ticket__rows dt,
[dir="rtl"] .field label, [dir="rtl"] .contact-list strong, [dir="rtl"] .hero__facts, [dir="rtl"] .ticket__fine {
  font-family: "Noto Naskh Arabic", "Geeza Pro", "Segoe UI", Tahoma, "Spline Sans Mono", monospace;
  letter-spacing: 0;
}

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1.5px solid var(--green-line);
  background: transparent; border-radius: var(--r-sm); cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--on-green); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================================================
   Hero (Thesis: voll → leer → besenrein)
   =========================================================== */
.hero {
  position: relative; color: var(--on-green);
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(217,138,54,.16), transparent 60%),
    var(--green-900);
  border-bottom: 1px solid var(--green-line);
  overflow: hidden;
}
.hero::before { /* feine "Wellpappe"-Riffelung, sehr dezent */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background: repeating-linear-gradient(90deg, #fff 0 1px, transparent 1px 14px);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 3rem; align-items: center;
  padding-top: clamp(3rem, 6vw, 5.5rem); padding-bottom: clamp(3.5rem, 6vw, 6rem);
}
.hero__inner > * { min-width: 0; }

.hero__title {
  font-size: clamp(3.4rem, 9vw, 6rem); font-weight: 800; line-height: .94;
  letter-spacing: -.035em; margin: .2rem 0 1.4rem; color: #fff;
}
.hero__title .amber { color: var(--amber); }
.hero__lead { font-size: 1.12rem; color: var(--on-green-soft); max-width: 42ch; margin-bottom: 1.8rem; }
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero__facts {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.6rem;
  margin: 1.8rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid var(--green-line);
  font-family: var(--mono); font-size: .8rem; letter-spacing: .04em; color: var(--on-green-soft);
}
.hero__facts li { display: flex; align-items: center; gap: .5rem; }
.hero__facts li::before { content: "+"; color: var(--amber); font-weight: 700; }

/* ---------- Signature: Räumungsschein-Ticket ---------- */
.hero__ticket { display: flex; justify-content: center; }
.ticket {
  position: relative; width: 100%; max-width: 380px;
  background: var(--kraft);
  color: var(--ink);
  border-radius: var(--r-sm);
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: 0 26px 50px -24px rgba(0,0,0,.55);
  transform: rotate(-1.4deg);
  transition: transform .25s ease;
}
.ticket:hover { transform: rotate(0deg); }
.ticket__perf { /* Perforation oben (Abriss) */
  position: absolute; left: 0; right: 0; top: -1px; height: 12px;
  background-image: radial-gradient(circle at 8px 0, var(--green-900) 0 4px, transparent 4.5px);
  background-size: 16px 12px; background-repeat: repeat-x;
}
.ticket__head { display: flex; align-items: center; justify-content: space-between; margin-top: .4rem; }
.ticket__head .label { margin: 0; color: var(--amber-dk); }
.ticket__no { font-family: var(--mono); font-size: .78rem; color: var(--ink-soft); }
.ticket__title { font-family: var(--display); font-weight: 700; font-size: 1.3rem; line-height: 1.1; margin: 1rem 0 1.1rem; }
.ticket__rows { margin: 0 0 1.3rem; display: grid; gap: 0; }
.ticket__rows div { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem;
  padding: .6rem 0; border-bottom: 1px dotted var(--kraft-line); }
.ticket__rows dt { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin: 0; }
.ticket__rows dd { margin: 0; font-weight: 600; font-size: .92rem; text-align: right; }
.ticket__barcode { height: 40px; margin: 1.2rem 0 .7rem;
  background-image: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 7px, transparent 7px 9px,
    var(--ink) 9px 10px, transparent 10px 13px, var(--ink) 13px 16px, transparent 16px 18px);
  opacity: .85; }
.ticket__fine { font-family: var(--mono); font-size: .68rem; letter-spacing: .03em; color: var(--ink-soft); text-align: center; margin: 0; }

/* ===========================================================
   Sektionen
   =========================================================== */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--kraft); }
.section--alt .label, .section--alt .eyebrow { color: var(--green-700); }
.section--alt .label::before, .section--alt .eyebrow::before { background: var(--green-700); }
.section--dark { background: var(--green-900); color: var(--on-green); }
.section__head { max-width: 680px; margin: 0 0 2.8rem; }
.section__head h2 { color: var(--ink); }
.section--dark .section__head h2, .section--dark h3 { color: #fff; }
.section__head p { color: var(--ink-soft); font-size: 1.06rem; max-width: 58ch; }
.section__head--light p { color: var(--on-green-soft); }

/* ---------- Leistungen ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.card { background: var(--paper-2); padding: 1.7rem 1.5rem 1.6rem; transition: background .2s; }
.card:hover { background: #fff; }
.card__icon { width: 46px; height: 46px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--green-900); color: var(--amber); margin-bottom: 1.1rem; }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .35rem; color: var(--ink); }
.card p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* ---------- Vorher / Nachher ---------- */
.ba-carousel {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px; max-width: 620px; margin: 0; box-shadow: 0 24px 44px -30px rgba(21,39,29,.5);
}
.ba-carousel__viewport { position: relative; }
.ba-slide { margin: 0; }
.ba-slide[hidden] { display: none; }
.ba { position: relative; border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 16 / 11;
  user-select: none; touch-action: pan-y; background: var(--kraft); }
.ba__layer { position: absolute; inset: 0; }
.ba__layer svg { width: 100%; height: 100%; }
.ba__layer--after { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__badge {
  position: absolute; top: 14px; padding: .4rem .8rem; border-radius: 4px;
  font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: #fff;
}
.ba__badge--before { right: 14px; background: rgba(21,39,29,.92); }
.ba__badge--after  { left: 14px;  background: var(--amber); color: #20140a; }
.ba__divider { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px;
  margin-left: -1.5px; background: #fff; pointer-events: none; }
.ba__handle {
  position: absolute; top: 50%; left: var(--pos, 50%); width: 50px; height: 50px;
  transform: translate(-50%, -50%); border-radius: 50%; border: 3px solid #fff;
  background: var(--green-900); color: #fff; display: grid; place-items: center;
  cursor: ew-resize; box-shadow: 0 8px 20px -6px rgba(0,0,0,.5); z-index: 3;
}
.ba__handle:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 2; }

.ba-carousel__caption { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem .5rem .5rem; flex-wrap: wrap; }
.ba-carousel__caption h3 { margin: 0; font-size: 1.25rem; color: var(--ink); }
.ba-carousel__caption p  { margin: .2rem 0 0; color: var(--ink-soft); font-family: var(--mono); font-size: .82rem; }
.ba-carousel__nav { display: flex; align-items: center; gap: .7rem; }
.ba-carousel__dots { display: flex; gap: .4rem; margin-right: .3rem; }
.ba-carousel__dots button { width: 24px; height: 7px; border-radius: 2px; border: none; padding: 0; background: var(--line); cursor: pointer; transition: background .2s, width .2s; }
.ba-carousel__dots button[aria-selected="true"] { background: var(--amber); width: 32px; }
.round-btn { width: 48px; height: 48px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--paper-2); color: var(--green-800); display: grid; place-items: center; cursor: pointer; transition: transform .12s, background .2s, color .2s; }
.round-btn:hover { transform: translateY(-2px); }
.round-btn--accent { background: var(--green-900); color: #fff; border-color: var(--green-900); }
.round-btn--accent:hover { background: var(--green-700); }

/* Vorher/Nachher steht neben einer Einleitung */
#vorher-nachher .container { display: grid; grid-template-columns: 1fr 620px; gap: 3rem; align-items: center; }
#vorher-nachher .section__head { margin: 0; }

/* ---------- Ablauf (echte Sequenz → Stencil-Nummern) ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: s; }
.step { position: relative; padding-top: 1.6rem; border-top: 2px solid var(--green-900); }
.step__num { font-family: var(--mono); font-size: 2.2rem; font-weight: 600; color: var(--amber); line-height: 1; display: block; margin-bottom: .9rem; }
.step h3 { margin-bottom: .35rem; color: var(--ink); }
.step p { color: var(--ink-soft); margin: 0; font-size: .94rem; }

/* ---------- Warum (dunkel) ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--green-line); border: 1px solid var(--green-line); border-radius: var(--r); overflow: hidden; }
.feature { background: var(--green-800); padding: 1.7rem 1.5rem; }
.feature__icon { width: 46px; height: 46px; border-radius: var(--r-sm); display: grid; place-items: center; background: rgba(217,138,54,.16); color: var(--amber); margin-bottom: 1.1rem; }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { color: #fff; }
.feature p { color: var(--on-green-soft); margin: 0; font-size: .94rem; }

/* ---------- Kundenstimmen ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.testimonial { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; margin: 0; }
.testimonial p { font-size: .98rem; color: var(--ink); }
.testimonial cite { font-family: var(--mono); color: var(--ink-soft); font-style: normal; font-size: .82rem; letter-spacing: .03em; }
.stars { color: var(--amber); letter-spacing: .15em; margin-bottom: .6rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq__item { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--mono); font-size: 1.4rem; color: var(--amber); font-weight: 400; transition: transform .2s; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq__body p { margin: 0; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1.35fr .9fr; gap: 1.4rem; align-items: start; }
.contact__form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem; transition: box-shadow .3s ease; }
.contact__form.is-highlight { box-shadow: 0 0 0 3px rgba(217,138,54,.5); }
.field { margin-bottom: 1.05rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-family: var(--mono); font-weight: 500; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; padding: .8rem .9rem; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(217,138,54,.18); }
.field textarea { resize: vertical; }
.field__error { color: #b3261e; font-size: .82rem; margin-top: .35rem; }
.field input.is-invalid, .field textarea.is-invalid { border-color: #b3261e; }
.field--check { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: .55rem; }
.field--check input { margin-top: .25rem; }
.field--check label { font-family: var(--body); text-transform: none; letter-spacing: 0; font-weight: 400; font-size: .9rem; color: var(--ink-soft); flex: 1; }
.field--check a { color: var(--amber-dk); text-decoration: underline; }
.field--check .field__error { flex-basis: 100%; }
.form-note { font-family: var(--mono); font-size: .72rem; color: var(--ink-soft); margin: .9rem 0 0; }

/* Bild-Upload */
.filedrop { display: flex; align-items: center; gap: .9rem; padding: .95rem 1.1rem;
  border: 1.5px dashed var(--kraft-line); border-radius: var(--r-sm); background: #fff;
  cursor: pointer; transition: border-color .15s, background .15s; }
.filedrop:hover { border-color: var(--amber); background: #fffdf7; }
.filedrop:focus-within { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(217,138,54,.18); }
.filedrop input[type="file"] { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.filedrop__ico { width: 28px; height: 28px; color: var(--amber-dk); flex: none; }
.filedrop__txt { display: flex; flex-direction: column; }
.filedrop__txt strong { font-weight: 600; font-size: .95rem; color: var(--ink); }
.filedrop__txt small { font-family: var(--mono); font-size: .7rem; color: var(--ink-soft); margin-top: 2px; }
.filelist { list-style: none; margin: .7rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.filelist li { display: flex; align-items: center; gap: .5rem; background: var(--paper); border: 1px solid var(--line);
  border-radius: 8px; padding: .35rem .5rem; font-size: .82rem; max-width: 100%; }
.filelist img { width: 36px; height: 36px; object-fit: cover; border-radius: 5px; flex: none; }
.filelist .name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 130px; }
.filelist .size { color: var(--ink-soft); font-size: .74rem; flex: none; }
.filelist .rm { border: none; background: transparent; cursor: pointer; color: var(--ink-soft);
  font-size: 1.15rem; line-height: 1; padding: 0 .15rem; flex: none; }
.filelist .rm:hover { color: #b3261e; }
.hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); border: 0; white-space: nowrap; }
.form-status { border-radius: var(--r-sm); padding: .9rem 1.1rem; margin-bottom: 1rem; font-weight: 600; font-size: .95rem; display: flex; align-items: center; gap: .6rem; }
.form-status::before { content: ""; width: 20px; height: 20px; flex: none; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: .8rem; }
.form-status--success { background: rgba(36,64,49,.1); color: var(--green-700); border: 1px solid rgba(36,64,49,.25); }
.form-status--success::before { content: "✓"; background: var(--green-700); }
.form-status--error { background: #fdecea; color: #b3261e; border: 1px solid #f3c0bb; }
.form-status--error::before { content: "!"; background: #b3261e; }

.contact__info { background: var(--green-900); color: var(--on-green); border-radius: var(--r); padding: 1.8rem; }
.contact__info h3 { color: #fff; }
.contact-list { list-style: none; margin: 1.3rem 0 1.6rem; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list__ico { width: 40px; height: 40px; border-radius: var(--r-sm); flex: none; display: grid; place-items: center; background: rgba(217,138,54,.16); color: var(--amber); }
.contact-list__ico svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--on-green-soft); margin-bottom: .15rem; }
.contact-list a, .contact-list span { color: #fff; }
.contact-list a:hover { color: var(--amber); }
.contact__cta { border-top: 1px solid var(--green-line); padding-top: 1.2rem; }
.contact__cta p { margin: 0 0 .6rem; color: var(--on-green-soft); }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: var(--green-900); color: var(--on-green-soft); border-top: 1px solid var(--green-line); }
.site-footer__inner { display: flex; justify-content: space-between; gap: 2rem; padding: 3.4rem 24px; flex-wrap: wrap; }
.site-footer__brand { max-width: 360px; }
.brand--light .brand__text strong { color: #fff; }
.brand--light .brand__text span { color: var(--on-green-soft); }
.site-footer__brand p { margin-top: 1rem; font-size: .92rem; color: var(--on-green-soft); }
.site-footer__nav { display: grid; gap: .7rem; align-content: start; }
.site-footer__nav a { font-size: .95rem; color: var(--on-green-soft); }
.site-footer__nav a:hover { color: var(--amber); }
.site-footer__bottom { border-top: 1px solid var(--green-line); }
.site-footer__bottom p { margin: 0; padding: 1.1rem 0; font-family: var(--mono); font-size: .76rem; color: var(--on-green-soft); text-align: center; }

/* ===========================================================
   Rechtsseiten / Danke
   =========================================================== */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.legal h1 { font-family: var(--display); margin-bottom: 1.5rem; }
.legal h2 { font-family: var(--display); font-size: 1.3rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal .placeholder { background: #fff6e6; border: 1px dashed var(--amber); border-radius: 6px; padding: .2rem .5rem; color: var(--amber-dk); font-weight: 600; }
.legal a { color: var(--amber-dk); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; font-family: var(--mono); font-size: .82rem; color: var(--ink-soft); }
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 3rem 24px; }
.thanks__card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); box-shadow: 0 24px 44px -28px rgba(21,39,29,.5); padding: 3rem 2.4rem; max-width: 520px; }
.thanks__check { width: 72px; height: 72px; margin: 0 auto 1.4rem; border-radius: 50%; background: rgba(36,64,49,.12); color: var(--green-700); display: grid; place-items: center; }
.thanks__check svg { width: 38px; height: 38px; }
.thanks h1 { font-family: var(--display); }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__ticket { order: 1; justify-content: flex-start; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  #vorher-nachher .container { grid-template-columns: 1fr; gap: 2rem; }
  .ba-carousel { max-width: 100%; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--green-900); border-bottom: 1px solid var(--green-line);
    padding: .5rem 24px 1.2rem; transform: translateY(-130%); transition: transform .28s ease;
    margin: 0; max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--green-line); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .site-header__actions { gap: .45rem; }
  .btn--wa .btn__label { display: none; }
  .btn--wa { padding: 0; width: 44px; height: 44px; }
  .ba-carousel__caption { justify-content: center; text-align: center; }
  .ba-carousel__nav { justify-content: center; }
}

@media (max-width: 540px) {
  .section { padding: 3rem 0; }
  .section__head { margin-bottom: 2rem; }
  .cards, .steps, .features { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__inner { padding-top: 2.2rem; }
  .hero__title { font-size: clamp(3rem, 18vw, 4.2rem); margin-bottom: 1.1rem; }
  .hero__lead { font-size: 1.02rem; }
  .hero__cta { gap: .6rem; }
  .hero__cta .btn { flex: 1 1 100%; }
  .ticket { transform: none; max-width: 100%; }
  .ticket:hover { transform: none; }
  .contact__form, .contact__info { padding: 1.4rem; }
  .site-footer__inner { padding: 2.6rem 18px; gap: 1.8rem; }
}

/* ===========================================================
   Motion — ein orchestrierter Hero-Moment + dezente Reveals
   =========================================================== */
@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes ticketIn { from { opacity: 0; transform: translateY(30px) rotate(-7deg); } to { opacity: 1; transform: translateY(0) rotate(-1.4deg); } }
@keyframes wipeIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Hero-Titel: Zeilen als eigene Reihen, dritte Zeile mit Amber-Linie */
.hero__title .line { display: block; }
.hero__title .line.amber { display: inline-block; position: relative; }
.hero__title .line.amber::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .07em;
  background: var(--amber); border-radius: 2px; transform: scaleX(0); transform-origin: left;
}

/* Hero-Einblendsequenz (nur mit JS aktiv, sonst sofort sichtbar) */
.js .hero .label   { animation: riseIn .6s cubic-bezier(.2,.7,.2,1) .05s both; }
.js .hero__title .line { opacity: 0; animation: riseIn .7s cubic-bezier(.2,.7,.2,1) both; }
.js .hero__title .line:nth-child(1) { animation-delay: .16s; }
.js .hero__title .line:nth-child(2) { animation-delay: .29s; }
.js .hero__title .line:nth-child(3) { animation-delay: .42s; }
.js .hero__title .line.amber::after { animation: wipeIn .55s ease 1.05s both; }
.js .hero__lead    { animation: riseIn .6s cubic-bezier(.2,.7,.2,1) .56s both; }
.js .hero__cta     { animation: riseIn .6s cubic-bezier(.2,.7,.2,1) .66s both; }
.js .hero__facts   { animation: riseIn .6s cubic-bezier(.2,.7,.2,1) .74s both; }
.js .hero__ticket  { animation: ticketIn .85s cubic-bezier(.2,.8,.2,1) .46s both; }

/* Scroll-Reveals */
.js .reveal { opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .65s cubic-bezier(.2,.7,.2,1); transition-delay: var(--d, 0ms); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* Header-Schatten beim Scrollen */
.site-header { transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(0,0,0,.7); }

/* Karten-/Step-Hover etwas lebendiger */
.card { transition: background .2s, transform .2s ease; }
.card:hover { transform: translateY(-3px); }
.feature { transition: background .2s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .ticket { transform: none; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .js .hero .label, .js .hero__title .line, .js .hero__lead,
  .js .hero__cta, .js .hero__facts, .js .hero__ticket { opacity: 1 !important; transform: none !important; }
  .hero__title .line.amber::after { transform: scaleX(1); }
}
