/* Holz Gade Karriere — Landingpage v2
   Designorientierung: feuerholz-direkt.de  ·  RevSlider-Stil Hero + Bewegung
*/

:root {
  --c-red:       #cf2e2e;
  --c-red-dark:  #a50d00;
  --c-red-deep:  #1a1519;
  --c-cream:     #fdf9f0;
  --c-cream-2:   #f4ede0;
  --c-forst:     #31503c;
  --c-forst-2:   #1e3024;
  --c-ink:       #1e1e1e;
  --c-muted:     #707070;
  --c-line:      #e6dccd;
  --f-head:      'Fira Sans', system-ui, sans-serif;
  --f-body:      'Titillium Web', system-ui, sans-serif;
  --shadow-card: 0 1px 2px rgba(0,0,0,.05), 0 16px 40px -20px rgba(26,21,25,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-cream);
  overflow-x: hidden;
}
a { color: var(--c-red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ── DEV-BANNER ───────────────────────────── */
.dev-banner {
  background: #1a1519;
  color: #ffd7d2;
  text-align: center;
  font-family: var(--f-head);
  font-size: 13px;
  letter-spacing: .04em;
  padding: 6px 16px;
  text-transform: uppercase;
}

/* ── MARQUEE ─────────────────────────────── */
.marquee {
  background: var(--c-red);
  color: #fff;
  overflow: hidden;
  border-bottom: 2px solid #1a1519;
}
.marquee__track {
  display: flex;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
  padding: 10px 0;
  animation: marq 38s linear infinite;
  font-family: var(--f-head);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 14px;
  text-transform: uppercase;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track .dot {
  width: 6px; height: 6px; background: #ffd7d2; border-radius: 50%;
  flex: 0 0 6px;
}
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO SLIDER ─────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  color: var(--c-cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__slides {
  position: relative;
  height: 80vh;
  min-height: 580px;
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}
/* Ken-Burns Zoom auf aktivem Slide */
.hero__slide.is-active .hero__bg {
  transform: scale(1.08);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: var(--bg), linear-gradient(135deg, #2a3e30 0%, #1a2a20 100%);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 12s ease-out;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(26,21,25,.86) 0%, rgba(26,21,25,.55) 55%, rgba(26,21,25,.3) 100%),
    linear-gradient(0deg, rgba(26,21,25,.55) 0%, transparent 45%);
}
.hero__overlay::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(98deg, rgba(255,255,255,.02) 0 2px, transparent 2px 9px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__brand {
  font-family: var(--f-head);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 14px;
  color: #f4ede0;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1.5px solid rgba(244,237,224,.32);
  border-radius: 100px;
  backdrop-filter: blur(4px);
  background: rgba(26,21,25,.18);
}
.hero__divider { color: var(--c-red); }
.hero__sub { color: #f4ede0cc; }

/* Plakat-Style Brush-Tag (rote diagonale Pinselstrich-Lasche oben) */
.hero__brushtag {
  display: inline-block;
  background: var(--c-red);
  color: #fff;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 22px 9px 18px;
  margin-bottom: 22px;
  transform: skew(-8deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,.45);
  position: relative;
}
.hero__brushtag::before,
.hero__brushtag::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 18px;
  background: var(--c-red);
}
.hero__brushtag::before {
  left: -10px;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 30% 100%);
}
.hero__brushtag::after {
  right: -14px;
  clip-path: polygon(0 0, 70% 0, 40% 100%, 0 100%);
}

.hero__h1 {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 26px;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
  text-transform: uppercase;
}
.hero__h1 em {
  font-style: normal;
  color: var(--c-red);
  text-shadow: 0 2px 0 rgba(0,0,0,.3), 0 4px 24px rgba(207,46,46,.4);
}
.hero__lead {
  font-size: clamp(18px, 1.9vw, 22px);
  max-width: 620px;
  color: #f4ede0;
  margin: 0 0 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero slide content animation */
.hero__slide.is-active .hero__brand   { animation: slideIn .9s .15s both; }
.hero__slide.is-active .hero__h1      { animation: slideIn 1s   .3s  both; }
.hero__slide.is-active .hero__lead    { animation: slideIn 1s   .45s both; }
.hero__slide.is-active .hero__cta     { animation: slideIn 1s   .6s  both; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero Controls */
.hero__controls {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
.hero__dot {
  width: 36px; height: 4px;
  background: rgba(255,255,255,.3);
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: background .2s ease;
}
.hero__dot:hover { background: rgba(255,255,255,.5); }
.hero__dot.is-active {
  background: rgba(255,255,255,.25);
}
.hero__dot.is-active::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 100%;
  background: var(--c-red);
  animation: progress 7s linear forwards;
}
@keyframes progress { from { width: 0; } to { width: 100%; } }

.hero__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 56px; height: 56px;
  background: rgba(26,21,25,.4);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
  backdrop-filter: blur(8px);
}
.hero__arrow:hover { background: var(--c-red); transform: translateY(-50%) scale(1.06); }
.hero__arrow--prev { left: 24px; }
.hero__arrow--next { right: 24px; }
@media (max-width: 1299px) {
  .hero__arrow { display: none; }
}

.hero__scrollhint {
  position: absolute;
  left: 50%; bottom: 90px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--f-head);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,237,224,.8);
  opacity: 0;
  animation: fadeIn 1.5s 1.5s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.hero__scrollhint-arrow {
  width: 1px; height: 32px;
  background: rgba(244,237,224,.5);
  position: relative;
}
.hero__scrollhint-arrow::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 1px; height: 12px;
  background: #fff;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { top: 0; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}
@media (max-width: 1299px) {
  .hero__scrollhint { display: none; }
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
  padding: 15px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  text-decoration: none;
  position: relative;
}
.btn--primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 4px 16px -6px rgba(207,46,46,.7);
}
.btn--primary:hover {
  background: var(--c-red-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -6px rgba(207,46,46,.85);
}
.btn--ghost {
  background: rgba(26,21,25,.18);
  color: var(--c-cream);
  border-color: var(--c-cream);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: var(--c-cream);
  color: var(--c-red-deep);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn--small { font-size: 14px; padding: 11px 18px; }
.btn--large { font-size: 18px; padding: 18px 38px; }

/* Megafon-Icon im Plakat-Stil (für CTAs) */
.megafon {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 11v2c0 .55.45 1 1 1h1l3 4h2v-12h-2l-3 4h-1c-.55 0-1 .45-1 1zm9-8.5v19l8-4v-11l-8-4zm10 6.5v6h1c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-1z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 11v2c0 .55.45 1 1 1h1l3 4h2v-12h-2l-3 4h-1c-.55 0-1 .45-1 1zm9-8.5v19l8-4v-11l-8-4zm10 6.5v6h1c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-1z'/></svg>") center/contain no-repeat;
  transform: rotate(-12deg);
}
.btn--large .megafon { width: 26px; height: 26px; }

/* ── STATS ─────────────────────────────── */
.stats {
  background: var(--c-red-deep);
  color: #f4ede0;
  padding: 56px 0;
  border-top: 4px solid var(--c-red);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stats__num {
  font-family: var(--f-head);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--c-red);
  text-shadow: 0 2px 12px rgba(207,46,46,.35);
}
.stats__label {
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  color: #b8a89a;
  margin-top: 10px;
}

/* ── WHY ─────────────────────────────────── */
.why {
  padding: 100px 0 80px;
  background: var(--c-cream);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(180deg, var(--c-red-deep), transparent);
  opacity: .03;
}
.kicker {
  font-family: var(--f-head);
  font-weight: 800;
  color: var(--c-red);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 10px;
}
.h2 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--c-red-deep);
  margin: 0 0 60px;
  max-width: 840px;
}
.h2 strong { color: var(--c-red); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why__card {
  background: #fff;
  padding: 36px 28px 30px;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.why__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 4px;
  width: 0;
  background: var(--c-red);
  transition: width .35s ease;
}
.why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 28px 56px -22px rgba(26,21,25,.32);
}
.why__card:hover::after { width: 100%; }

.why__art {
  width: 140px; height: 140px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.why__card:hover .why__art { transform: scale(1.06) rotate(-2deg); }
.why__art svg { width: 100%; height: 100%; filter: drop-shadow(0 6px 14px rgba(26,21,25,.15)); }

.why__card h3 {
  font-family: var(--f-head);
  font-weight: 800;
  margin: 8px 0 12px;
  color: var(--c-red-deep);
  font-size: 22px;
}
.why__card p {
  margin: 0;
  color: var(--c-muted);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ── STELLEN ─────────────────────────────── */
.stellen {
  padding: 100px 0 110px;
  background: var(--c-cream-2);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.stellen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}
.stellenkarte {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--c-line);
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
  position: relative;
}
.stellenkarte::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-red);
  border-radius: 10px 10px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.stellenkarte:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 28px 56px -22px rgba(26,21,25,.32);
}
.stellenkarte:hover::before { transform: scaleX(1); }
.stellenkarte__tag {
  display: inline-block;
  background: var(--c-red);
  color: #fff;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 14px;
}
.stellenkarte h3 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-red-deep);
  margin: 0 0 6px;
}
.stellenkarte__meta {
  color: var(--c-forst);
  font-size: 14px;
  margin: 0 0 16px;
  font-weight: 600;
}
.stellenkarte p {
  margin: 0 0 16px;
  color: var(--c-ink);
  font-size: 15.5px;
}
.stellenkarte__intro {
  color: var(--c-ink);
  font-size: 15.5px;
  margin: 0 0 18px;
}
.stellenkarte__sub {
  font-family: var(--f-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: var(--c-red);
  margin: 8px 0 6px;
}
.stellenkarte__sub--soft {
  color: var(--c-muted);
  border-top: 1px dashed var(--c-line);
  padding-top: 14px;
  margin-top: 14px;
}
.stellenkarte__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 14.5px;
  color: var(--c-muted);
}
.stellenkarte__list--soft {
  color: var(--c-muted);
  opacity: .85;
}
.stellenkarte__list li {
  padding: 5px 0 5px 22px;
  position: relative;
}
.stellenkarte__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 2px;
  background: var(--c-red);
}
.stellenkarte .btn { margin-top: auto; }

/* ── BEWERBUNG ──────────────────────────── */
.bewerbung {
  padding: 100px 0 110px;
  background: var(--c-cream);
}
.bewerbung__lead {
  font-size: 17px;
  color: var(--c-muted);
  margin: 0 0 40px;
}
.form { display: grid; gap: 20px; }
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row--fieldset { border: 0; padding: 0; margin: 0; }
.form__row legend {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-red-deep);
  padding: 0;
  margin-bottom: 6px;
}
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 540px) { .form__grid { grid-template-columns: 1fr; } }
.form label {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-red-deep);
}
.req { color: var(--c-red); }
.hint { color: var(--c-muted); font-weight: 400; font-size: 13px; }
.form input, .form select, .form textarea {
  font-family: var(--f-body);
  font-size: 16px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: 6px;
  color: var(--c-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 4px rgba(207,46,46,.12);
}
.form textarea { resize: vertical; min-height: 88px; }
.form input[type="file"] { padding: 8px; font-size: 14px; background: var(--c-cream-2); }
.checkgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 18px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid var(--c-line);
  border-radius: 6px;
}
.checkgrid label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-weight: 400; font-size: 15px;
  color: var(--c-ink); cursor: pointer;
}
.checkgrid input[type="checkbox"] { accent-color: var(--c-red); width: 18px; height: 18px; }
.form__row--check { padding-top: 6px; }
.check {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--f-body); font-weight: 400; font-size: 14.5px;
  color: var(--c-muted); line-height: 1.5; cursor: pointer;
}
.check input[type="checkbox"] { accent-color: var(--c-red); width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.check a { color: var(--c-red); text-decoration: underline; }
.form__submit { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 12px; }
.form__hint { color: var(--c-muted); font-size: 14px; margin: 0; }
.form__feedback { margin-top: 12px; padding: 14px 18px; border-radius: 6px; font-family: var(--f-head); font-weight: 600; display: none; }
.form__feedback.is-success { display: block; background: #e8f5e8; color: var(--c-forst-2); border: 1.5px solid #b9d5b9; }
.form__feedback.is-error { display: block; background: #fbe5e3; color: var(--c-red-dark); border: 1.5px solid #f0b3ad; }

/* ── FOOTER ────────────────────────────── */
.footer {
  background:
    linear-gradient(0deg, rgba(26,21,25,.92), rgba(26,21,25,.95)),
    radial-gradient(ellipse at top, #2a1a18 0%, #1a1519 60%);
  color: #b8a89a;
  text-align: center;
  padding: 70px 24px 30px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-red);
}
.footer__top {
  max-width: 720px;
  margin: 0 auto 50px;
}
.footer__logo {
  display: block;
  width: clamp(90px, 12vw, 130px);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.footer__tagline {
  font-size: 15px;
  color: #b8a89a;
  margin: 0 0 28px;
  line-height: 1.7;
}

.footer__contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2c2520;
}
.footer__contact a,
.footer__contact span:not(.footer__icon) {
  color: #f4ede0;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__contact a:hover { color: var(--c-red); text-decoration: none; }
.footer__icon { font-size: 16px; opacity: .85; }

.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14px;
}
.footer__nav a {
  color: #f4ede0;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .15s ease;
}
.footer__nav a:hover { color: var(--c-red); text-decoration: none; }
.footer__nav .sep { color: #4a3e36; }
.footer__bottom {
  padding-top: 26px;
  border-top: 1px solid #2c2520;
  font-size: 13px;
  color: #6b5d52;
  font-family: var(--f-head);
  letter-spacing: .04em;
}

/* ── Animate on scroll ─────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Slider-Controls/Arrows ausblenden wenn nur 1 Slide */
/* Slider-Controls/Arrows aktiv (multi-slide) */


/* === Hero v2 (2026-05-17): Video + Logo fix, nur Text-Slider === */

.hero {
  position: relative;
  min-height: 88vh;
  color: var(--c-cream);
  overflow: hidden;
  isolation: isolate;
}

/* Video: füllt die KOMPLETTE hero-Fläche, ganz unten im Stack */
.hero > .hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Logo: oben links, dezent */
.hero > .hero__logo {
  position: absolute;
  top: 22px;
  left: 28px;
  height: clamp(72px, 11vh, 130px);
  width: auto;
  z-index: 5;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.55));
}
@media (max-width: 720px) {
  .hero > .hero__logo {
    top: 14px;
    left: 16px;
    width: 110px;
  }
}

/* Overlay über Video, unter Text */
.hero > .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(26,21,25,.78) 0%, rgba(26,21,25,.45) 55%, rgba(26,21,25,.25) 100%),
    linear-gradient(0deg, rgba(26,21,25,.55) 0%, transparent 45%);
  pointer-events: none;
}
.hero > .hero__overlay::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(98deg, rgba(255,255,255,.02) 0 2px, transparent 2px 9px);
  pointer-events: none;
}

/* Slider-Wrapper — füllt die Hero-Höhe */
.hero .hero__slides {
  position: relative;
  z-index: 2;
  height: 88vh;
  min-height: 580px;
}

/* Jede Text-Slide: absolute, Inhalt nur Text. Top-aligned damit Logo immer Platz hat. */
.hero .hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  padding: max(170px, 22vh) 0 110px;
}
.hero .hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}
/* Alte .hero__bg-Regeln + .hero__slide.is-active .hero__bg-Zoom ausschalten — kein BG mehr in Slides */
.hero .hero__slide .hero__bg { display: none !important; }

/* Wenn nur 1 Slide existiert (oder JS Slider nicht initialisiert): Text-Animationen
   sollen NICHT fadeout-en. Wir lassen sie laufen, aber slide bleibt active. */

/* Controls-Position: unten zentriert */
.hero__controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

/* Pfeile: links/rechts vertikal mittig */
.hero__arrow {
  z-index: 4;
}


/* === Mobile/Tablet Responsive (2026-05-17) === */

/* Tablet (≤ 1024px): Logo kleiner, Slide-Content oben startend (kein Overlap mit Logo) */
@media (max-width: 1024px) {
  .hero {
    min-height: 82vh;
  }
  .hero .hero__slides {
    height: 82vh;
    min-height: 560px;
  }
  .hero > .hero__logo {
    top: 18px;
    left: 22px;
    width: clamp(95px, 11vw, 115px);
  }
  .hero .hero__slide {
    align-items: flex-start;
    padding: 160px 0 110px;
  }
  .hero__inner {
    padding: 0 28px;
  }
  .hero__h1 {
    font-size: clamp(34px, 5.2vw, 56px);
  }
}

/* Mobile (≤ 720px): nochmal kleineres Logo, gestapelte CTA, kompakte Typo */
@media (max-width: 720px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero .hero__slides {
    height: auto;
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero > .hero__logo {
    top: 14px;
    left: 16px;
    width: 90px;
  }
  .hero .hero__slide {
    padding: 130px 0 110px;
    align-items: flex-start;
  }
  .hero__inner {
    padding: 0 18px;
    max-width: 100%;
  }
  .hero__brushtag {
    font-size: 11px;
    padding: 7px 16px 7px 14px;
  }
  .hero__h1 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.1;
  }
  .hero__lead {
    font-size: 15px;
    line-height: 1.55;
  }
  .hero__cta {
    flex-direction: column;
    gap: 10px;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  /* Slider-Pfeile auf Mobile kleiner & weiter weg vom Rand */
  .hero__arrow {
    font-size: 24px;
    width: 36px;
    height: 36px;
  }
  /* Scrollhint näher an den unteren Rand */
  .hero__scrollhint {
    bottom: 16px;
    font-size: 10px;
  }
  /* Dots etwas kleiner */
  .hero__controls {
    bottom: 60px;
    gap: 8px;
  }
}

/* Sehr kleine Phones (≤ 360px) — Eskalation */
@media (max-width: 360px) {
  .hero > .hero__logo {
    width: 78px;
  }
  .hero .hero__slide {
    padding: 130px 0 110px;
  }
  .hero__h1 {
    font-size: 26px;
  }
}
