/* ABRISS PROFI, Abbruchroboter mieten
   Alles kantig: kein Radius, keine weichen Schatten. Farbe traegt die Struktur. */

/* ------------------------------------------------------------------ Marken */
:root {
  --black: #0b0c0c;
  --ink: #131516;
  --panel: #1b1e1e;
  --grey: #e7e7e7;
  --grey-2: #dcdcdc;
  --white: #fff;

  /* Gruen in drei Stufen, damit jeder Kontrast sitzt:
     green   nur auf Dunkel (7,8:1)
     mid     Flaechen mit grossem weissem oder dunklem Text
     deep    Buttonfuellung mit weissem Text (4,7:1) und Text auf Hell */
  --green: #35c05a;
  --green-mid: #23a247;
  --green-deep: #17853a;
  --green-text: #14682a; /* kleiner gruener Text auf Hellgrau, 5,1:1 */
  --green-dark: #0f5b28;

  --on-dark: #e6e9e7;
  --muted-dark: #a7aeab;
  --muted-light: #5c6260;
  --line-dark: rgba(255, 255, 255, .13);
  --line-green: rgba(53, 192, 90, .45);

  --wrap: 1320px;
  --gap: clamp(16px, 2.2vw, 30px);
  --pad: clamp(18px, 4vw, 40px);
  --head: 'Oxanium', 'Trebuchet MS', system-ui, sans-serif;
  --body: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

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

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

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font: 400 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

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

.wrap {
  width: min(100% - 2 * var(--pad), var(--wrap));
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--green-deep); color: #fff; padding: 10px 18px;
  font-weight: 600; transition: top .18s var(--ease);
}
.skip:focus { top: 12px; }

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

.sec { padding: clamp(56px, 7vw, 96px) 0; }
.sec--dark { background: var(--ink); color: var(--on-dark); }
.sec--black { background: var(--black); color: var(--on-dark); }
.sec--light { background: var(--grey); color: var(--ink); }
.sec--white { background: #fff; color: var(--ink); }

.sec__title {
  font-size: clamp(28px, 4.4vw, 54px);
  text-align: center;
}
.sec--dark .sec__title, .sec--black .sec__title { color: #fff; }
.sec--light .sec__title { color: var(--green-deep); }
.sec__title--ink { color: var(--ink); }
.sec--white .sec__title--ink { color: var(--ink); }
.note-small { margin-top: 22px; font-size: 13px; }

.lede { color: var(--muted-light); max-width: 62ch; }
.sec--dark .lede, .sec--black .lede { color: var(--muted-dark); }

/* Knopf: die Fuellung wischt beim Hover von unten hoch */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 30px;
  border: 2px solid transparent;
  background: var(--green-deep);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
}
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: var(--green-dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .32s var(--ease);
}
@media (hover: hover) {
  .btn:hover::after { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .btn::after { transition: none; }
}

.btn--ghost {
  background: transparent;
  border-color: var(--green-mid);
  color: var(--green-text);
}
.btn--ghost::after { background: var(--green-deep); }
@media (hover: hover) { .btn--ghost:hover { color: #fff; border-color: var(--green-deep); } }

.btn--ghost-dark {
  background: transparent;
  border-color: var(--line-green);
  color: var(--on-dark);
}
.btn--ghost-dark::after { background: var(--green-deep); }
@media (hover: hover) { .btn--ghost-dark:hover { color: #fff; border-color: var(--green-deep); } }

.btn--wide { width: 100%; }

/* Eckwinkel-Marke, ersetzt runde Aufzaehlungspunkte */
.mark {
  flex: none;
  width: 26px;
  height: 26px;
  background: var(--green-mid);
  clip-path: polygon(0 0, 100% 0, 100% 34%, 34% 34%, 34% 100%, 0 100%);
}

/* ------------------------------------------------------------------ Kopf */
.head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
}
.head__inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 40px);
  min-height: 68px;
}

.logo {
  flex: none;
  display: block;
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: .94;
  letter-spacing: .06em;
  color: var(--green);
  text-transform: uppercase;
  text-decoration: none;
}
.logo span { display: block; }
.logo span + span { padding-left: .12em; }
@media (hover: hover) { .logo:hover { color: #46d76c; } }

.nav { display: flex; gap: clamp(12px, 1.6vw, 28px); margin-right: auto; }
.nav a {
  position: relative;
  padding: 6px 0;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s var(--ease);
}
@media (hover: hover) { .nav a:hover::after { transform: scaleX(1); } }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.head__tel {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}
@media (hover: hover) { .head__tel:hover { text-decoration: underline; text-underline-offset: 4px; } }

.head__icons { display: flex; gap: 8px; }
.icon-sq {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  text-decoration: none;
  transition: transform .2s var(--ease), filter .2s var(--ease);
}
.icon-sq svg { width: 18px; height: 18px; fill: currentColor; }
.icon-sq--wa { background: #1fa855; }
.icon-sq--mail { background: #d4501f; }
.icon-sq--tel { background: #1f6fa8; }
@media (hover: hover) { .icon-sq:hover { transform: translateY(-2px); filter: brightness(1.12); } }

.burger {
  display: none;
  width: 44px; height: 40px;
  background: none; border: 1px solid var(--line-dark);
  color: #fff;
}
.burger span {
  display: block; width: 20px; height: 2px; margin: 4px auto;
  background: currentColor; transition: transform .25s var(--ease), opacity .2s;
}
.head--open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.head--open .burger span:nth-child(2) { opacity: 0; }
.head--open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .burger { display: block; order: 3; }
  .nav {
    order: 10;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin: 0;
    display: none;
    border-top: 1px solid var(--line-dark);
  }
  .head--open .nav { display: flex; }
  .nav a { padding: 13px 2px; border-bottom: 1px solid var(--line-dark); }
  .head__inner { flex-wrap: wrap; padding-bottom: 0; }
  .head__tel { margin-left: auto; }
}
@media (max-width: 620px) {
  .head__icons { display: none; }
}

/* ------------------------------------------------------------------ Start */
.hero {
  position: relative;
  background: var(--grey);
  overflow: hidden;
}
.hero__panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: 36%;
  background: var(--grey-2);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  grid-template-areas:
    "head note"
    "left stock";
  align-items: start;
  column-gap: var(--gap);
  padding-block: clamp(38px, 5vw, 68px) clamp(140px, 20vw, 240px);
}

/* „ABBRUCHROBOTER" ist ein einziges, nicht trennbares Wort. Deshalb wird die
   Groesse an der tatsaechlich verfuegbaren Breite gemessen: unter 1000 px steht
   die ganze Spalte zur Verfuegung, darueber nur die linke Rasterspalte. */
.hero__h1 {
  grid-area: head;
  font-size: clamp(28px, 8.6vw, 60px);
  color: var(--green-deep);
  margin-bottom: clamp(26px, 3.4vw, 46px);
}
@media (min-width: 1000px) {
  .hero__h1 { font-size: min(72px, 5.7vw); }
}
.hero__h1 span { display: block; }
.hero__left { grid-area: left; }

.hero__usp { display: grid; gap: 22px; max-width: 340px; }
.hero__usp h2 {
  font-size: 19px;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.hero__usp p { font-size: 15px; color: var(--muted-light); }

.hero__actions { margin-top: clamp(26px, 3vw, 38px); display: grid; gap: 20px; max-width: 340px; }

/* Videovorschau mit gezeichnetem Abspielknopf */
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--ink);
  overflow: hidden;
  line-height: 0;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.video-thumb::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11, 60, 28, .55), rgba(11, 60, 28, .55));
}
.video-thumb__play {
  position: absolute; z-index: 2;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border: 2px solid rgba(255, 255, 255, .85);
  padding: 8px;
}
.video-thumb__play i {
  display: block;
  width: 100%; height: 100%;
  background: var(--green-mid);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
}
.video-thumb__play i::after {
  content: "";
  position: absolute; left: 52%; top: 50%; transform: translate(-50%, -50%);
  border-left: 13px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
@media (hover: hover) {
  .video-thumb:hover img { transform: scale(1.06); }
  .video-thumb:hover .video-thumb__play { border-color: var(--green); }
}
@media (prefers-reduced-motion: reduce) { .video-thumb img { transition: none; } }

.hero__note {
  grid-area: note;
  display: flex;
  align-items: stretch;
  margin: 0 0 clamp(22px, 3vw, 40px);
  justify-self: end;
  max-width: 400px;
}
.hero__note img { width: 128px; height: 96px; object-fit: cover; flex: none; }
.hero__note figcaption {
  display: grid;
  align-items: center;
  padding: 10px 20px 10px 16px;
  border: 2px solid var(--green-mid);
  border-left: 0;
  font-size: 14px;
  line-height: 1.35;
  background: rgba(255, 255, 255, .5);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

.hero__stock {
  grid-area: stock;
  justify-self: end;
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--green-deep);
  text-align: right;
  max-width: 12ch;
}

.hero__robot {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: clamp(52px, 8vw, 88px);
  width: clamp(520px, 58vw, 900px);
  transform: translateX(-42%);
  pointer-events: none;
}

/* gruene Ecke unten rechts mit Hinweis */
.hero__corner {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: clamp(52px, 8vw, 88px);
  width: min(320px, 30vw);
  padding: 18px 20px 18px 44px;
  background: var(--green-mid);
  color: #08210f;
  font-size: 13px;
  line-height: 1.35;
  clip-path: polygon(38px 0, 100% 0, 100% 100%, 0 100%);
}
.hero__corner svg { width: 26px; height: 26px; margin-bottom: 8px; fill: none; stroke: #08210f; stroke-width: 1.6; }

/* schwarzes Band mit gruener Fahne */
.hero__band {
  position: relative;
  z-index: 4;
  background: var(--black);
  color: #fff;
  min-height: clamp(52px, 6vw, 74px);
  display: flex;
  align-items: center;
}
/* Volle Breite, damit sich der linke Rand am Raster ausrichten laesst, ohne 100vw
   zu benutzen: die Prozentangabe rechnet gegen die echte Seitenbreite, der
   Scrollbalken faellt also nicht ins Gewicht. */
.hero__band-inner { display: flex; align-items: center; width: 100%; padding-right: var(--pad); }
.hero__flag {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px clamp(40px, 5vw, 70px) 14px max(var(--pad), calc((100% - var(--wrap)) / 2));
  background: var(--green-mid);
  color: #08210f;
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 22px);
  letter-spacing: .08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 26px) 100%, 0 100%);
}
.hero__band-tail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: clamp(16px, 2vw, 34px);
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 22px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
}
.hero__band-tail svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; flex: none; }

@media (max-width: 1000px) {
  .hero__panel { display: none; }
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "left" "note" "stock";
    padding-bottom: 30px;
  }
  .hero__note, .hero__stock { justify-self: start; }
  .hero__note { margin-top: clamp(22px, 4vw, 34px); margin-bottom: 0; }
  .hero__stock { text-align: left; margin-top: 22px; }
  .hero__robot { position: static; transform: none; width: 100%; margin-inline: auto; }
  .hero__corner { position: static; width: 100%; clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%); }
  .hero__actions, .hero__usp { max-width: none; }
}
@media (max-width: 620px) {
  .hero__band-tail { font-size: 12px; letter-spacing: .04em; }
  .hero__flag { padding-right: 26px; }
}

/* --------------------------------------------- Firmen und Privatkunden */
.audience { text-align: center; }
.audience__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 46px);
  margin-top: clamp(28px, 4vw, 46px);
  text-align: left;
}
.audience__list li { display: flex; gap: 14px; font-size: 15px; color: var(--on-dark); }

.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 60px);
}
.trio__img { position: relative; overflow: hidden; min-height: 420px; }
.trio__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
@media (hover: hover) { .trio__img:hover img { transform: scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .trio__img img { transition: none; } }

.trio__panel {
  background: var(--green-mid);
  color: #08210f;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  text-align: left;
}
.trio__panel h3 { font-size: clamp(20px, 2.2vw, 28px); color: #06210e; }
.trio__body { display: flex; gap: clamp(14px, 2vw, 26px); margin-top: clamp(18px, 2.4vw, 30px); flex: 1; }
.trio__letter { width: 46%; max-width: 190px; align-self: flex-start; }
.trio__what { font-family: var(--head); font-weight: 700; letter-spacing: .14em; font-size: 13px; text-transform: uppercase; margin-bottom: 12px; }
.trio__list { display: grid; gap: 10px; font-size: 14.5px; }
.trio__list li { display: flex; gap: 10px; align-items: flex-start; }
.trio__list i { flex: none; width: 14px; height: 14px; margin-top: 4px; background: #0d3d1d; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.trio__more {
  align-self: flex-start;
  margin-top: 20px;
  color: #06210e;
  font-weight: 600;
  text-underline-offset: 5px;
}
@media (hover: hover) { .trio__more:hover { text-decoration-thickness: 2px; } }

@media (max-width: 900px) {
  .audience__list { grid-template-columns: 1fr; gap: 16px; }
  .trio { grid-template-columns: 1fr; }
  .trio__img { min-height: 260px; }
}

/* ---------------------------------------------------------------- Ablauf */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 34px);
  margin-top: clamp(30px, 4vw, 50px);
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--panel);
  overflow: hidden;
}
.step__head { display: flex; gap: 16px; padding: clamp(20px, 2.4vw, 30px); }
.step__nr {
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 50px);
  line-height: .85;
  color: var(--green);
  flex: none;
}
.step__head h3 { font-size: clamp(16px, 1.5vw, 19px); color: var(--green); line-height: 1.2; text-transform: none; letter-spacing: .01em; }
.step__text { padding: 0 clamp(20px, 2.4vw, 30px) clamp(20px, 2.4vw, 30px); color: var(--on-dark); font-size: 15px; }
.step__img { position: relative; margin-top: auto; aspect-ratio: 16 / 11; overflow: hidden; }
.step__img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.35) brightness(.55); transition: filter .45s var(--ease), transform .6s var(--ease); }
.step__img::after { content: ""; position: absolute; inset: 0; background: rgba(23, 133, 58, .34); mix-blend-mode: multiply; }
@media (hover: hover) {
  .step:hover .step__img img { filter: saturate(.7) brightness(.8); transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) { .step__img img { transition: none; } }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- Technik */
.spec { background: var(--black); }
.spec__grid {
  display: grid;
  grid-template-columns: minmax(0, 250px) minmax(0, 1fr) minmax(0, 250px);
  gap: 12px;
  align-items: stretch;
}
.spec__col { display: flex; flex-direction: column; gap: 12px; }

.spec__robot { background: var(--green-mid); display: grid; place-items: center; padding: 18px; flex: 0 0 33%; }
.spec__robot img { max-height: 220px; width: auto; object-fit: contain; }

.spec__data { background: #fff; color: var(--ink); padding: clamp(20px, 2vw, 28px); flex: 1; }
.spec__data h3 { font-size: 19px; text-transform: none; letter-spacing: 0; margin-bottom: 16px; }
.spec__data ul { display: grid; gap: 12px; font-size: 13.5px; line-height: 1.45; }
.spec__data li { display: flex; gap: 10px; align-items: flex-start; }
.spec__data li svg { flex: none; width: 15px; height: 15px; margin-top: 3px; stroke: var(--green-deep); fill: none; stroke-width: 2; }

.spec__stage {
  position: relative;
  background: #060707;
  padding: clamp(26px, 3vw, 46px) clamp(18px, 2.4vw, 40px) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.spec__stage h2 { font-size: clamp(20px, 2.6vw, 34px); color: #fff; }
.spec__stage .sub { margin-top: 18px; color: var(--muted-dark); font-size: 15px; }
.spec__spark { display: block; margin: 14px auto 0; width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.spec__hammer { margin-top: auto; padding-top: 20px; }
.spec__hammer img { width: 100%; object-fit: contain; }

.spec__note { background: #fff; color: var(--ink); padding: clamp(20px, 2vw, 28px); flex: 1; display: flex; flex-direction: column; gap: 18px; }
.spec__note h3 { font-size: 18px; text-transform: none; letter-spacing: 0; line-height: 1.25; }
.spec__note p { font-size: 13.5px; color: var(--green-deep); font-weight: 600; margin-top: auto; }
.spec__building { flex: 0 0 40%; position: relative; overflow: hidden; min-height: 190px; }
.spec__building img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.spec__band { display: flex; align-items: center; margin-top: 12px; background: var(--black); min-height: 62px; }
.spec__band-a {
  padding: 14px clamp(34px, 4vw, 60px) 14px clamp(18px, 2.4vw, 34px);
  background: var(--green-mid);
  color: #08210f;
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 22px);
  letter-spacing: .08em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
}
.spec__band-b {
  display: flex; align-items: center; gap: 14px;
  padding-left: clamp(14px, 2vw, 30px);
  font-family: var(--head);
  font-weight: 800;
  font-size: clamp(15px, 1.7vw, 22px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
}
.spec__band-b svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; flex: none; }

@media (max-width: 1000px) {
  .spec__grid { grid-template-columns: 1fr; }
  .spec__col { flex-direction: row; flex-wrap: wrap; }
  .spec__col > * { flex: 1 1 260px; }
  .spec__robot { min-height: 220px; }
  .spec__building { min-height: 220px; }
  .spec__stage { order: -1; }
}
@media (max-width: 620px) {
  .spec__col { flex-direction: column; }
  .spec__band-b { font-size: 12px; letter-spacing: .04em; }
}

/* --------------------------------------------------------------- Anfrage */
.request { background: var(--black); }
.request__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.request__media { position: relative; display: flex; flex-direction: column; background: var(--ink); }
.request__poster { position: relative; flex: 1; min-height: 320px; overflow: hidden; }
.request__poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.request__poster::after { content: ""; position: absolute; inset: 0; background: rgba(8, 44, 22, .6); }
.request__play {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; padding: 9px;
  border: 2px solid rgba(255, 255, 255, .85); background: none;
}
.request__play i { display: block; width: 100%; height: 100%; background: var(--green-mid); position: relative; }
.request__play i::after {
  content: ""; position: absolute; left: 53%; top: 50%; transform: translate(-50%, -50%);
  border-left: 16px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
}
@media (hover: hover) { .request__play:hover { border-color: var(--green); } }

.request__strip { display: grid; grid-template-columns: minmax(0, 1fr) 120px 64px; align-items: stretch; }
.request__price {
  background: var(--grey);
  color: var(--green-text);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.35;
  display: flex;
  align-items: center;
}
.request__strip img { width: 100%; height: 100%; object-fit: cover; }
.request__arrow {
  display: grid; place-items: center;
  background: var(--green-mid); color: #08210f;
  text-decoration: none;
}
.request__arrow svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
@media (hover: hover) { .request__arrow:hover { background: var(--green); } }

.request__form { background: var(--ink); padding: clamp(26px, 3.4vw, 54px); }
.request__form h2 { font-size: clamp(22px, 2.8vw, 38px); color: #fff; }
.request__form > p { margin-top: 14px; color: var(--muted-dark); font-size: 15px; }

.field { margin-top: 16px; }
.field input, .field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid transparent;
  background: var(--grey);
  color: var(--ink);
  font-size: 15px;
}
.field input::placeholder, .field textarea::placeholder { color: #6d7371; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ff6b57; }
.field .err { display: none; margin-top: 6px; color: #ff9c8c; font-size: 13.5px; }
.field input[aria-invalid="true"] ~ .err, .field textarea[aria-invalid="true"] ~ .err { display: block; }

.hint { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; color: var(--muted-dark); font-size: 13.5px; }
.hint svg { flex: none; width: 16px; height: 16px; margin-top: 3px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; color: var(--muted-dark); font-size: 13px; line-height: 1.45; }
.consent input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green-deep); }
.consent a { color: var(--green); }

@media (max-width: 900px) {
  .request__grid { grid-template-columns: 1fr; }
  .request__poster { min-height: 260px; }
}

/* ------------------------------------------------------------ Leistungen */
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(28px, 4vw, 46px);
}
.service {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.service__img { position: relative; aspect-ratio: 9 / 7; overflow: hidden; }
.service__img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.4) brightness(.6); transition: filter .4s var(--ease), transform .6s var(--ease); }
.service__img::after { content: ""; position: absolute; inset: 0; background: rgba(23, 133, 58, .3); mix-blend-mode: multiply; transition: opacity .4s var(--ease); }
.service__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 20px; min-height: 78px;
  font-weight: 600; font-size: 15px; line-height: 1.3;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.service__bar svg { flex: none; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; opacity: 0; transform: translateX(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.service__go { display: none; }
@media (hover: hover) {
  .service:hover .service__img img { filter: saturate(1) brightness(1); transform: scale(1.05); }
  .service:hover .service__img::after { opacity: 0; }
  .service:hover .service__bar { background: var(--green-deep); }
  .service:hover .service__bar svg { opacity: 1; transform: none; }
  .service:hover .service__name { display: none; }
  .service:hover .service__go { display: block; }
}
.service:focus-visible .service__bar { background: var(--green-deep); }
@media (prefers-reduced-motion: reduce) { .service__img img { transition: none; } }
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

.services__more { display: flex; justify-content: center; margin-top: clamp(20px, 2.6vw, 32px); }
.services__more .btn { width: min(100%, 760px); }

/* ------------------------------------------------------ gruener Trenner */
.divider {
  position: relative;
  background: var(--black);
  height: clamp(46px, 6vw, 74px);
  display: flex;
  align-items: center;
}
.divider__bar {
  flex: 1;
  height: 100%;
  background: var(--green-mid);
  clip-path: polygon(38px 0, calc(100% - 38px) 0, 100% 100%, 0 100%);
  margin-inline: clamp(60px, 8vw, 130px);
}
.divider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  stroke: var(--green); fill: none; stroke-width: 1.6;
}
.divider__arrow--l { left: clamp(14px, 3vw, 46px); }
.divider__arrow--r { right: clamp(14px, 3vw, 46px); }

/* ------------------------------------------------------------ Stimmen */
.quotes { position: relative; }
.quotes__box { position: relative; padding-inline: 56px; margin-top: clamp(28px, 4vw, 44px); }
.quotes__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * var(--gap)) / 3);
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.quotes__rail::-webkit-scrollbar { display: none; }
.quote {
  scroll-snap-align: start;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
}
.quote h3 {
  padding: 20px 18px;
  border-bottom: 1px solid var(--line-dark);
  text-align: center;
  font-family: var(--body);
  font-weight: 700;
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
}
.quote p { padding: 24px 20px; color: var(--muted-dark); font-size: 14.5px; }
.quote p + p { padding-top: 0; }

.rail-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px; height: 44px;
  display: grid; place-items: center;
  border: 0;
  background: var(--green-mid);
  color: #08210f;
}
.rail-btn--prev { left: 0; }
.rail-btn--next { right: 0; }
.rail-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.rail-btn[disabled] { opacity: .35; cursor: default; }
@media (hover: hover) { .rail-btn:not([disabled]):hover { background: var(--green); } }

@media (max-width: 1000px) { .quotes__rail { grid-auto-columns: calc((100% - var(--gap)) / 2); } }
@media (max-width: 760px) {
  .quotes__box { padding-inline: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
  .quotes__rail { flex: 1 0 100%; order: -1; min-width: 0; grid-auto-columns: 86%; }
  .rail-btn { position: static; transform: none; }
}

/* -------------------------------------------------------------- Galerie */
.gallery-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(28px, 4vw, 44px);
}
.gallery-videos .video-thumb { aspect-ratio: 16 / 10; }
.gallery-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(12px, 1.6vw, 22px);
}
.gallery-photos figure { margin: 0; position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink); }
.gallery-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
@media (hover: hover) { .gallery-photos figure:hover img { transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .gallery-photos img { transition: none; } }
@media (max-width: 760px) {
  .gallery-videos, .gallery-photos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .gallery-videos, .gallery-photos { grid-template-columns: 1fr; }
}
.gallery__more { display: flex; justify-content: center; margin-top: clamp(20px, 2.6vw, 32px); }
.gallery__more .btn { width: min(100%, 760px); }

/* ------------------------------------------------------------------ FAQ */
.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(28px, 4vw, 44px);
}
.faq details { border: 1px solid var(--green-mid); background: #fff; }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  flex: none;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--green-mid);
  transition: background .25s var(--ease);
}
.faq summary i::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid #08210f;
  border-bottom: 2px solid #08210f;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s var(--ease);
}
.faq details[open] summary i::after { transform: translateY(2px) rotate(-135deg); }
.faq details p { padding: 0 22px 20px; color: var(--muted-light); font-size: 14.5px; }
@media (hover: hover) { .faq summary:hover i { background: var(--green-deep); } }
@media (hover: hover) { .faq summary:hover i::after { border-color: #fff; } }
@media (max-width: 800px) { .faq { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- Kontakt */
.contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 46px);
  margin-top: clamp(28px, 4vw, 46px);
}
.contact h3 {
  font-family: var(--head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
}
.contact__big { margin-top: 10px; font-family: var(--head); font-weight: 800; font-size: clamp(19px, 2vw, 25px); color: #fff; text-decoration: none; display: inline-block; }
@media (hover: hover) { .contact__big:hover { color: var(--green); } }
.contact address, .contact p { margin-top: 10px; font-style: normal; color: var(--muted-dark); font-size: 15px; }
.contact .btn { margin-top: 16px; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- Fuss */
.foot { background: var(--black); color: var(--on-dark); padding: clamp(36px, 4vw, 56px) 0 26px; }
.foot__top { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 40px); flex-wrap: wrap; }
.foot .nav a { color: var(--on-dark); }
.foot__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(16px, 3vw, 40px);
  margin-top: clamp(26px, 3vw, 40px);
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  color: var(--muted-dark);
}
.foot__meta a { color: var(--muted-dark); }
@media (hover: hover) { .foot__meta a:hover { color: var(--green); } }
.foot__legal { margin-top: 14px; font-size: 12.5px; color: #7f8785; max-width: 100ch; }
.foot__addr { margin-top: 18px; font-size: 13.5px; color: var(--muted-dark); font-style: normal; }

/* ------------------------------------------------------------- nach oben */
.totop {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 80;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--green-mid);
  color: var(--green-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.totop svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.totop.is-on { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) { .totop:hover { background: var(--green-deep); color: #fff; border-color: var(--green-deep); } }

/* ---------------------------------------------------------------- Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(5, 8, 6, .82);
}
.modal.is-open { display: grid; }
.modal__box {
  position: relative;
  width: min(100%, 560px);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--ink);
  color: var(--on-dark);
  border: 1px solid var(--line-green);
  padding: clamp(24px, 3vw, 40px);
}
.modal__box h2 { font-size: clamp(20px, 2.4vw, 28px); color: #fff; }
.modal__box p { margin-top: 12px; font-size: 14.5px; color: var(--muted-dark); }
.modal__x {
  position: absolute; right: 10px; top: 10px;
  width: 40px; height: 40px;
  background: none; border: 1px solid var(--line-dark); color: #fff;
  font-size: 20px; line-height: 1;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
@media (hover: hover) { .modal__x:hover { transform: rotate(90deg); border-color: var(--green); } }
.modal__actions { display: grid; gap: 12px; margin-top: 24px; }
.modal__summary {
  margin-top: 20px;
  padding: 16px;
  background: var(--panel);
  border-left: 3px solid var(--green-mid);
  font-size: 14px;
  color: var(--on-dark);
  white-space: pre-line;
}
.modal__media { margin-top: 18px; }
.modal__media img { width: 100%; }

/* ------------------------------------------------------------ Unterseiten */
.page-head { background: var(--ink); color: #fff; padding: clamp(40px, 5vw, 70px) 0 clamp(34px, 4vw, 56px); }
.page-head h1 { font-size: clamp(28px, 4.4vw, 52px); color: var(--green); }
.page-head p { margin-top: 16px; color: var(--muted-dark); max-width: 70ch; }
.crumbs { font-size: 13px; color: var(--muted-dark); margin-bottom: 16px; }
.crumbs a { color: var(--muted-dark); }
@media (hover: hover) { .crumbs a:hover { color: var(--green); } }

.detail { border-top: 1px solid rgba(0, 0, 0, .12); padding: clamp(28px, 3.4vw, 46px) 0; }
.detail:first-of-type { border-top: 0; }
.detail__grid { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: clamp(18px, 3vw, 44px); align-items: start; }
.detail__grid img { width: 100%; aspect-ratio: 9 / 7; object-fit: cover; }
.detail h2 { font-size: clamp(20px, 2.4vw, 30px); color: var(--green-deep); }
.detail p { margin-top: 14px; color: var(--muted-light); }
.detail ul { margin-top: 16px; display: grid; gap: 8px; }
.detail ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.detail ul li i { flex: none; width: 12px; height: 12px; margin-top: 6px; background: var(--green-mid); }
.detail .btn { margin-top: 22px; }
@media (max-width: 760px) { .detail__grid { grid-template-columns: 1fr; } }

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}
.tiles--gap { margin-top: clamp(12px, 1.6vw, 22px); }
.tiles figure { margin: 0; position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--ink); }
.tiles img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tiles figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  background: rgba(11, 12, 12, .82);
  color: #fff;
  font-size: 14px;
}
@media (hover: hover) { .tiles figure:hover img { transform: scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .tiles img { transition: none; } }

/* -------------------------------------------------------------- Einblenden */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}
