/* ============================================================
   waltertemmer.com — Karriere-Landingpage
   Externes Stylesheet (Cloudflare Pages, Auto-Deploy bei git push).
   PREMIUM DARK — Fraunces-Display + Montserrat, Gold auf Schwarz.
   Mobile-first (80% mobile). Alles unter .kt-page gescoped.
   ============================================================ */

@import url("./tokens.css");

/* ---------- Reset (gescoped) ---------- */
.kt-page, .kt-page * , .kt-page *::before, .kt-page *::after { box-sizing: border-box; }
.kt-page { margin: 0; }

/* ---------- Canvas + Atmosphäre ---------- */
.kt-page {
  position: relative;
  font-family: var(--wt-font);
  color: var(--wt-text-on-dark);
  background-color: var(--wt-dark-near-black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: clip;
  font-size: 17px;
}
.kt-page::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(90% 50% at 50% -8%, rgba(214,172,95,.18), transparent 60%),
    radial-gradient(70% 50% at 90% 12%, rgba(214,172,95,.07), transparent 55%),
    var(--wt-dark-gradient);
}
.kt-page::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; mix-blend-mode: overlay; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.kt-page > * { position: relative; z-index: 1; }

.kt-page img { max-width: 100%; height: auto; display: block; }
.kt-page a { color: var(--wt-gold); text-decoration: none; }
.kt-page p { margin: 0 0 1rem; }
/* WICHTIG: auf .kt-page begrenzt — sonst wird die native Webflow-Collection-List (career13) auf
   display:block gezwungen und verliert ihren grid row-gap (Abstände zwischen den Job-Karten). */
.kt-page .w-dyn-list .w-dyn-items, .kt-page .w-embed { display: block; }

/* ---------- Layout ---------- */
.kt-container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 24px; }
.kt-section { padding-block: clamp(54px, 7vw, 112px); }
.kt-center { text-align: center; }
.kt-center .kt-lead, .kt-center .kt-eyebrow { margin-inline: auto; }
.kt-head { max-width: 720px; margin-inline: auto; }

/* ---------- Typografie ---------- */
.kt-page h1, .kt-page h2, .kt-page h3 {
  font-family: var(--wt-display);
  font-weight: 700; line-height: 1.1; margin: 0 0 .35em;
  color: var(--wt-text-on-dark); letter-spacing: -.01em;
}
.kt-h1 { font-size: clamp(2.3rem, 5.9vw, 3.95rem); font-weight: 800; line-height: 1.08; }
.kt-h2 { font-size: clamp(1.95rem, 4.6vw, 3rem); }
.kt-h3 { font-size: clamp(1.35rem, 3vw, 1.7rem); }
.kt-accent { color: var(--wt-gold); }
/* Eyebrow = identisches Pill wie .kt-tagline (einheitlicher Tag-Style) */
.kt-eyebrow {
  display: inline-block; color: var(--wt-gold); background-color: var(--wt-gold-15);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(214,172,95,.3); border-radius: var(--wt-pill-radius);
  padding: .55rem 1.1rem; margin-bottom: 1.2rem;
  font-family: var(--wt-font); font-weight: 600; font-size: .78rem; letter-spacing: .08em; line-height: 1; text-transform: uppercase;
}
.kt-lead { font-family: var(--wt-font); font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.65; color: var(--wt-text-on-dark-secondary); max-width: 58ch; }

/* ---------- Buttons ---------- */
.kt-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--wt-font); font-weight: 600; font-size: 1.05rem;
  border-radius: var(--wt-radius); padding: .95rem 1.7rem; border: 0; cursor: pointer;
  background: var(--wt-gold-shine);
  box-shadow: 0 10px 34px rgba(214,172,95,.28), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.kt-page a.kt-btn { color: #1a1206; }                 /* dunkler Text auf Gold (Spezifität schlägt .kt-page a) */
.kt-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(214,172,95,.42), inset 0 1px 0 rgba(255,255,255,.4); }
.kt-btn .kt-arrow { transition: transform .18s ease; }
.kt-btn:hover .kt-arrow { transform: translateX(4px); }
.kt-btn--ghost { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.28); box-shadow: none; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.kt-page a.kt-btn--ghost { color: var(--wt-text-on-dark); }
.kt-btn--ghost:hover { border-color: var(--wt-gold); color: var(--wt-gold); transform: translateY(-2px); box-shadow: none; }
.kt-page a.kt-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--wt-gold); font-family: var(--wt-font); font-weight: 600; padding: .3rem 0; border-bottom: 1px solid transparent; }
.kt-page a.kt-link:hover { border-bottom-color: rgba(214,172,95,.5); }
.kt-link .kt-arrow { transition: transform .18s ease; }
.kt-link:hover .kt-arrow { transform: translateX(4px); }
.kt-btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.kt-center .kt-btn-row { justify-content: center; }

/* ---------- Hero ---------- */
.kt-hero { position: relative; min-height: min(92vh, 760px); display: flex; align-items: center; overflow: hidden;
  /* mehr Tiefe: Spotlight hinter Walter, warmer Schein oben links, Vignette unten (alles halbtransparent → globales Grain bleibt sichtbar)
     + Office-Bild ganz dezent als Hintergrund-Textur (dunkler Schleier ~88 % darüber) */
  background:
    radial-gradient(58% 72% at 72% 60%, rgba(214,172,95,.20), rgba(214,172,95,.05) 40%, transparent 66%),
    radial-gradient(70% 60% at 16% 6%, rgba(214,172,95,.10), transparent 55%),
    radial-gradient(125% 115% at 50% 122%, rgba(0,0,0,.55), transparent 58%),
    linear-gradient(rgba(14,11,5,.88), rgba(14,11,5,.90)),
    url("https://cdn.prod.website-files.com/66d6af6d37c4ab002cb15179/66d824ec21a9f979301ae82f_Karriere-1.avif");
  background-repeat: no-repeat;
  background-position: center, center, center, center, center;
  background-size: auto, auto, auto, auto, cover;
}
/* Scrim links → Text lesbar, Walter rechts im Licht */
.kt-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(95deg, rgba(14,11,5,.97) 0%, rgba(14,11,5,.92) 32%, rgba(14,11,5,.6) 45%, rgba(14,11,5,.15) 55%, transparent 62%); }
/* Feiner Lichtstaub: ein 2px-Pseudo, viele box-shadow-Punkte, langsames Aufsteigen (kein DOM nötig) */
.kt-hero::after { content: ""; position: absolute; top: 0; left: 0; width: 2px; height: 2px; border-radius: 50%; z-index: 1; pointer-events: none; background: transparent;
  box-shadow:
    180px 90px 0 0 rgba(214,172,95,.22), 320px 240px 0 0 rgba(255,238,205,.18), 70px 380px 0 0 rgba(214,172,95,.20),
    480px 140px 0 0 rgba(255,238,205,.16), 600px 200px 0 0 rgba(255,238,205,.16), 760px 80px 0 0 rgba(255,238,205,.30),
    900px 220px 0 0 rgba(214,172,95,.26), 680px 330px 0 0 rgba(214,172,95,.20), 1040px 120px 0 0 rgba(255,238,205,.30),
    1180px 300px 0 0 rgba(214,172,95,.24), 1320px 70px 0 0 rgba(255,238,205,.28), 1280px 200px 0 0 rgba(214,172,95,.20),
    1460px 260px 0 0 rgba(255,238,205,.26), 1500px 380px 0 0 rgba(214,172,95,.18), 1560px 110px 0 0 rgba(214,172,95,.30),
    1660px 330px 0 0 rgba(255,238,205,.22), 1760px 180px 0 0 rgba(214,172,95,.26), 1880px 90px 0 0 rgba(255,238,205,.24);
  animation: kt-dust 16s ease-in-out infinite alternate;
}
@keyframes kt-dust { from { transform: translateY(0); opacity: .55; } to { transform: translateY(-26px); opacity: 1; } }
/* Cutout: Walter freigestellt, unten verankert, an zentriertes Band gebunden (stabil auf breiten Screens),
   Breite gedeckelt, linke Kante ausgefadet (kein harter Sideboard-Schnitt) */
.kt-hero__media {
  position: absolute;
  /* etwas angehoben (Sideboard wird angeschnitten, aber nicht zu tief) */
  bottom: -120px;
  /* Finger bleibt fix bei 50% − 31px (Subtraktions-Term = 0,546 × 1800px = 983px) */
  left: calc(50% - 31px - 983px);
  /* feste Größe: Walter ändert auf Desktop seine Größe NICHT mehr (kein Schrumpfen über/unter 1500px) */
  width: 1800px;
  z-index: 0; pointer-events: none;
  /* links UND rechts weich nach transparent (kein harter Schnitt) */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 86%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 16%, #000 86%, transparent 100%);
}
.kt-hero__media img { width: 100%; height: auto; display: block; }
.kt-hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(44px, 7vw, 92px); }
.kt-hero__col { max-width: 520px; }
.kt-hero .kt-h1 { margin-top: 1.3rem; text-shadow: 0 2px 40px rgba(0,0,0,.4); }
.kt-hero .kt-lead { margin-top: 1.25rem; color: #e9e2d4; }
.kt-hero .kt-btn-row { margin-top: 2rem; }
.kt-hero__count { margin-top: 1.4rem; color: var(--wt-text-on-dark-secondary); font-size: .95rem; display: flex; align-items: center; gap: .55rem; }
.kt-count__meta::before { content: "·\00a0"; }   /* Trenner Desktop (einzeilig) */
/* Status-Zeile ist ein Link zu den offenen Stellen — Sekundärfarbe beibehalten (nicht Gold-Link) */
.kt-page a.kt-hero__count { color: var(--wt-text-on-dark-secondary); cursor: pointer; text-decoration: none; transition: color .2s; }
.kt-page a.kt-hero__count:hover { color: var(--wt-text-on-dark); }
html:has(.kt-page) { scroll-behavior: smooth; }   /* sanftes Scrollen für #jobs/#warum */
.kt-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--wt-gold); box-shadow: 0 0 0 0 rgba(214,172,95,.6); animation: kt-pulse 2s infinite; flex: none; }
@keyframes kt-pulse { 0%{box-shadow:0 0 0 0 rgba(214,172,95,.5);} 70%{box-shadow:0 0 0 10px rgba(214,172,95,0);} 100%{box-shadow:0 0 0 0 rgba(214,172,95,0);} }

/* ---------- Tagline / Eyebrow-Pill ---------- */
.kt-tagline {
  display: inline-block; color: var(--wt-gold); background-color: var(--wt-gold-15);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(214,172,95,.3);
  border-radius: var(--wt-pill-radius); padding: .55rem 1.1rem;
  font-family: var(--wt-font); font-weight: 600; font-size: .78rem; letter-spacing: .08em; line-height: 1; text-transform: uppercase;
}

/* ---------- "Bekannt aus" Presse-Leiste ---------- */
.kt-press { border-block: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.25); }
.kt-press__label { text-align: center; color: var(--wt-text-on-dark-secondary); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.6rem; opacity: .8; }
.kt-press__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(1.8rem, 5vw, 4rem); }
.kt-press__item { display: inline-flex; align-items: center; opacity: .72; transition: opacity .25s; }
.kt-press__item:hover { opacity: 1; }
.kt-press__item img { height: clamp(22px, 3.2vw, 30px); width: auto; max-width: 160px; object-fit: contain; display: block; filter: grayscale(1); }

/* ---------- Split (Founder / Bild+Text) ---------- */
.kt-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.kt-split--rev .kt-split__media { order: 2; }
.kt-media-frame { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid rgba(214,172,95,.18); box-shadow: 0 40px 90px rgba(0,0,0,.55); }
.kt-media-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(0,0,0,.35); pointer-events: none; }
.kt-media-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.kt-media-frame--wide img { aspect-ratio: 3/2; }

/* ---------- Stat-Band ---------- */
.kt-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2.5rem); padding: clamp(2rem,4vw,3rem) 0; border-top: 1px solid rgba(214,172,95,.18); border-bottom: 1px solid rgba(214,172,95,.18); }
.kt-stat { text-align: center; position: relative; }
.kt-stat + .kt-stat::before { content: ""; position: absolute; left: calc(clamp(1rem,3vw,2.5rem) / -2); top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,.1); }
.kt-stat__num { font-family: var(--wt-display); font-weight: 900; font-size: clamp(1.9rem, 4.6vw, 3.3rem); line-height: 1; white-space: nowrap; background: var(--wt-gold-shine); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kt-stat__label { margin-top: .6rem; color: var(--wt-text-on-dark-secondary); font-size: .82rem; letter-spacing: .04em; }

/* ---------- Benefit-Grid ---------- */
.kt-grid { display: grid; gap: 1.2rem; }
.kt-grid--3 { grid-template-columns: repeat(3, 1fr); }
.kt-grid--2 { grid-template-columns: repeat(2, 1fr); }
.kt-card {
  position: relative; background: linear-gradient(180deg, rgba(214,172,95,.10), rgba(214,172,95,.04));
  border: 1px solid rgba(214,172,95,.16); border-radius: 18px; padding: clamp(1.6rem, 2.6vw, 2.2rem);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.kt-card:hover { transform: translateY(-4px); border-color: rgba(214,172,95,.5); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.kt-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(214,172,95,.14); border: 1px solid rgba(214,172,95,.25); color: var(--wt-gold); margin-bottom: 1.25rem; }
.kt-card__icon svg { width: 26px; height: 26px; }
.kt-card h3 { font-family: var(--wt-font); font-weight: 700; font-size: 1.22rem; letter-spacing: -.01em; margin-bottom: .5rem; }
.kt-card p { color: var(--wt-text-on-dark-secondary); margin: 0; font-size: 1rem; line-height: 1.6; }
.kt-card__teaser { color: var(--wt-text-on-dark-secondary); margin: .5rem 0 1.25rem; }
.kt-card__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.kt-card__meta-item { display: inline-flex; align-items: center; gap: .5rem; }
.kt-card__meta-item svg { color: var(--wt-gold); flex: none; }
.kt-highlight { color: var(--wt-gold); font-weight: 700; }

/* ---------- Team-/Office-Galerie ---------- */
.kt-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.kt-tile { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(214,172,95,.16); }
.kt-tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform .5s ease; }
.kt-tile:hover img { transform: scale(1.05); }
.kt-tile__cap { position: absolute; inset: auto 0 0 0; padding: 1.3rem; background: linear-gradient(180deg, transparent, rgba(0,0,0,.85)); }
.kt-tile__cap b { display: block; font-family: var(--wt-display); font-weight: 600; font-size: 1.2rem; }
.kt-tile__cap span { color: var(--wt-text-on-dark-secondary); font-size: .85rem; }
.kt-gallery--wide .kt-tile img { aspect-ratio: 4/3; }

/* ---------- Prozess-Schritte ---------- */
.kt-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.kt-step { position: relative; padding: 1.8rem; border-radius: 18px; background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0)); border: 1px solid rgba(255,255,255,.08); }
.kt-step__n { font-family: var(--wt-display); font-weight: 900; font-size: 2.4rem; line-height: 1; background: var(--wt-gold-shine); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: .8rem; }
.kt-step h3 { font-family: var(--wt-font); font-weight: 700; font-size: 1.15rem; margin-bottom: .4rem; }
.kt-step p { color: var(--wt-text-on-dark-secondary); margin: 0; font-size: .98rem; }

/* ---------- FAQ ---------- */
.kt-faq { max-width: 820px; margin-inline: auto; }
.kt-faq__item { border-bottom: 1px solid rgba(255,255,255,.1); }
.kt-faq__q { list-style: none; text-align: left; color: var(--wt-text-on-dark); font-family: var(--wt-font); font-size: 1.15rem; font-weight: 600; padding: 1.4rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.kt-faq__q::-webkit-details-marker { display: none; }
.kt-faq__q .kt-faq__plus { color: var(--wt-gold); font-size: 1.6rem; line-height: 1; flex: none; transition: transform .25s; }
.kt-faq__item[open] .kt-faq__plus { transform: rotate(45deg); }
.kt-faq__a { color: var(--wt-text-on-dark-secondary); padding: 0 0 1.4rem; max-width: 68ch; line-height: 1.65; }
.kt-faq__item[open] .kt-faq__a { animation: kt-faqopen .4s cubic-bezier(.2,.7,.2,1) both; }
@keyframes kt-faqopen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Final CTA ---------- */
.kt-cta { position: relative; text-align: center; border-radius: 28px; padding: clamp(2.8rem, 7vw, 5.5rem); overflow: hidden;
  background: radial-gradient(120% 130% at 50% 0%, rgba(214,172,95,.16), transparent 60%), var(--wt-dark-gradient-2);
  border: 1px solid rgba(214,172,95,.28); box-shadow: 0 40px 100px rgba(0,0,0,.5); }

/* ---------- Team-Karussell (Galerie) ---------- */
.kt-carousel { position: relative; max-width: 1000px; margin-inline: auto; }
.kt-carousel__viewport { overflow: hidden; border-radius: 22px; border: 1px solid rgba(214,172,95,.18); box-shadow: 0 40px 90px rgba(0,0,0,.55);
  cursor: grab; touch-action: pan-y; -webkit-user-select: none; user-select: none; }
.kt-carousel.is-dragging .kt-carousel__viewport { cursor: grabbing; }
.kt-carousel__track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.kt-carousel__track img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.kt-slide { position: relative; min-width: 100%; }
.kt-slide img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.kt-slide__cap { position: absolute; inset: auto 0 0 0; padding: clamp(1.5rem,4vw,2.6rem); text-align: center; background: linear-gradient(180deg, transparent, rgba(8,6,2,.92)); }
.kt-slide__cap h3 { font-size: clamp(1.35rem,3.2vw,2rem); margin: 0 0 .5rem; }
.kt-slide__cap p { color: #ece4d4; max-width: 62ch; margin: 0 auto; font-size: clamp(1rem,1.5vw,1.15rem); }
.kt-carousel__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(214,172,95,.4); background: rgba(8,6,2,.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: var(--wt-gold); font-size: 1.5rem; line-height: 1; display: grid; place-items: center; cursor: pointer; z-index: 2; transition: background .2s, color .2s; }
.kt-carousel__btn:hover { background: var(--wt-gold); color: #1a1206; }
.kt-carousel__btn--prev { left: -22px; } .kt-carousel__btn--next { right: -22px; }
.kt-carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.6rem; }
.kt-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.25); cursor: pointer; padding: 0; transition: background .25s, width .25s; }
.kt-dot.is-active { background: var(--wt-gold); width: 26px; border-radius: 5px; }

/* ---------- Job-Liste (gestylt) ---------- */
.kt-joblist { display: grid; gap: 1rem; max-width: 940px; margin-inline: auto; text-align: left; }
.kt-job { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(1.3rem,2.5vw,1.7rem) clamp(1.4rem,2.5vw,1.9rem); border-radius: 16px; background: linear-gradient(180deg, rgba(214,172,95,.10), rgba(214,172,95,.04)); border: 1px solid rgba(214,172,95,.16); transition: transform .2s ease, border-color .2s ease; }
.kt-job:hover { transform: translateY(-2px); border-color: rgba(214,172,95,.45); }
.kt-job__main { min-width: 0; }
.kt-job__main h3 { font-size: 1.25rem; margin: 0 0 .55rem; }
.kt-job__meta { display: flex; flex-wrap: wrap; gap: 1.1rem; color: var(--wt-text-on-dark-secondary); font-size: .92rem; }
.kt-job__meta span { display: inline-flex; align-items: center; gap: .45rem; }
.kt-job__meta svg { color: var(--wt-gold); flex: none; }
.kt-job .kt-btn { flex: none; }
.kt-joblist__note { text-align: center; color: var(--wt-text-on-dark-secondary); font-size: .85rem; margin-top: 1.6rem; opacity: .8; }
@media (max-width: 640px) { .kt-job { flex-direction: column; align-items: stretch; } .kt-job .kt-btn { width: 100%; justify-content: center; } .kt-carousel__btn--prev{left:8px} .kt-carousel__btn--next{right:8px} .kt-slide img{aspect-ratio:4/5} }

/* ============================================================
   BOLDER (V4) — markentreue Akzente
   ============================================================ */
/* Hero-Gold-Sweep + glühende Headline */
.kt-hero__beam { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(105deg, transparent 35%, rgba(214,172,95,.22) 49%, transparent 62%); transform: translateX(-75%); animation: kt-sweep 1.8s cubic-bezier(.2,.6,.2,1) .35s both; }
@keyframes kt-sweep { to { transform: translateX(75%); } }
.kt-hero .kt-h1 { text-shadow: 0 2px 50px rgba(0,0,0,.45), 0 0 70px rgba(214,172,95,.10); }

/* Marken-Laufband */
.kt-marquee { overflow: hidden; border-block: 1px solid rgba(214,172,95,.18); padding-block: clamp(1.2rem,2.5vw,1.7rem); background: rgba(0,0,0,.22); -webkit-mask-image: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); mask-image: linear-gradient(90deg,transparent,#000 10%,#000 90%,transparent); }
.kt-marquee__track { display: flex; align-items: center; gap: 2.6rem; width: max-content; animation: kt-marq 26s linear infinite; }
.kt-marquee__track > span { font-family: var(--wt-display); font-weight: 800; font-size: clamp(1.3rem,3vw,2.1rem); letter-spacing: -.01em; color: var(--wt-text-on-dark); white-space: nowrap; display: inline-flex; align-items: center; gap: 2.6rem; }
.kt-marquee__track > span::after { content: "\2726"; color: var(--wt-gold); font-size: .55em; }
@keyframes kt-marq { to { transform: translateX(-50%); } }

/* Vollbild-Zitat-Band */
.kt-quoteband { position: relative; overflow: hidden; text-align: center; padding-block: clamp(4.5rem,11vw,9rem); }
.kt-quoteband__bg { position: absolute; inset: 0; z-index: 0; }
.kt-quoteband__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .16; }
.kt-quoteband__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(75% 80% at 50% 50%, transparent, var(--wt-dark-near-black) 85%); }
.kt-quoteband__inner { position: relative; z-index: 1; max-width: 980px; margin-inline: auto; padding-inline: 24px; }
.kt-quoteband__mark { display: block; font-family: var(--wt-display); font-weight: 900; font-size: clamp(4rem,12vw,8.5rem); line-height: .5; color: var(--wt-gold); opacity: .3; margin-bottom: .15em; }
.kt-quoteband blockquote { margin: 0; border: 0; padding: 0; background: none; font-family: var(--wt-display); font-weight: 700; font-size: clamp(1.7rem,4.4vw,3.2rem); line-height: 1.2; letter-spacing: -.01em; }
.kt-quoteband cite { display: block; margin-top: 1.7rem; font-style: normal; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; color: var(--wt-gold); }

/* ---------- Reveal-Animation (robust: ohne JS sichtbar) ---------- */
.kt-page.kt-js .kt-reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.kt-page.kt-js .kt-reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   NATIVE WEBFLOW JOB-LISTE (Relume "career4") — ans Dark-Theme angleichen.
   ANLEITUNG: In Webflow der äußeren SECTION der Job-Liste die Klasse
   "kt-jobs" geben. Dann greift dieses Theming automatisch.
   (Dieses Stylesheet wird nur auf /karriere geladen → keine Seiteneffekte.)
   ============================================================ */
.kt-jobs { background-color: var(--wt-dark-near-black); background-image: var(--wt-dark-gradient); color: var(--wt-text-on-dark); }
.kt-jobs h1, .kt-jobs h2, .kt-jobs h3, .kt-jobs [class*="heading-style"] { color: var(--wt-text-on-dark) !important; font-family: var(--wt-display); }
.kt-jobs p, .kt-jobs [class*="text-color-secondary"] { color: var(--wt-text-on-dark-secondary) !important; }
.kt-jobs .career4_item {
  background: linear-gradient(180deg, rgba(214,172,95,.10), rgba(214,172,95,.04)) !important;
  border: 1px solid rgba(214,172,95,.18) !important; border-radius: 16px !important;
  box-shadow: none !important; transition: transform .2s ease, border-color .2s ease;
}
.kt-jobs .career4_item:hover { transform: translateY(-2px); border-color: rgba(214,172,95,.45) !important; }

/* ============================================================
   RESPONSIVE — mobile-first Korrekturen
   ============================================================ */
@media (max-width: 991px) {
  .kt-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .kt-steps { grid-template-columns: repeat(2, 1fr); }
  .kt-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .kt-stat:nth-child(3)::before { display: none; }
}
/* Hero stapelt schon früh: ab hier wird Walters Gesicht im Overlay-Layout angeschnitten */
@media (max-width: 1120px) {
  /* Hero stapelt: Text oben, Walter-Cutout darunter */
  .kt-hero { min-height: 0; flex-direction: column; align-items: stretch; }
  .kt-hero::before { display: none; }
  .kt-hero__inner { order: 0; padding-block: 34px 8px; }
  /* Walter im Stack: zentriert, sinnvoll gedeckelt (kein Riesen-Bild auf Tablet) */
  .kt-hero__media { position: static; order: 1; width: 100%; max-width: 480px; margin-inline: auto; left: auto; right: auto; bottom: auto; -webkit-mask-image: none; mask-image: none; }
  .kt-hero__media img { width: 100%; height: auto; filter: none; }
}
@media (max-width: 720px) {
  .kt-page { font-size: 16px; }
  .kt-container { padding-inline: 20px; }
  /* Headline auf Mobile fix (skaliert NICHT mehr mit der Breite, läuft auf schmalen Phones nicht raus) */
  .kt-hero .kt-h1 { font-size: 2rem; line-height: 1.12; }
  .kt-hero__inner { padding-block: 28px 6px; }
  /* Status-Zeile: Umbruch vor Leibnitz, erster Teil fett, enger Zeilenabstand */
  .kt-hero__count { flex-wrap: wrap; row-gap: 3px; line-height: 1.3; }
  .kt-count__lead { font-weight: 700; color: var(--wt-text-on-dark); }
  .kt-count__meta { flex-basis: 100%; padding-left: 1.1rem; }
  .kt-count__meta::before { content: none; }
  .kt-split { grid-template-columns: 1fr; gap: 2rem; }
  .kt-split__media, .kt-split--rev .kt-split__media { order: -1; }
  .kt-grid--3, .kt-grid--2 { grid-template-columns: 1fr; }
  .kt-gallery { grid-template-columns: 1fr; }
  .kt-steps { grid-template-columns: 1fr; }
  .kt-stats { grid-template-columns: repeat(2, 1fr); }
  .kt-stat::before { display: none !important; }
  .kt-media-frame img, .kt-media-frame--wide img { aspect-ratio: 3/2; }
  .kt-btn, .kt-btn--ghost { width: 100%; justify-content: center; }
  .kt-hero .kt-btn-row { gap: .75rem; }
}
@media (prefers-reduced-motion: reduce) {
  .kt-page.kt-js .kt-reveal { transition: none; opacity: 1; transform: none; }
  .kt-pulse, .kt-marquee__track, .kt-hero__beam, .kt-hero::after { animation: none; }
  .kt-hero__beam { display: none; }
  .kt-faq__item[open] .kt-faq__a { animation: none; }
  .kt-tile img { transition: none; }
}

/* ============================================================
   JOB-DETAILSEITEN — Dark-Brand über native Webflow-Klassen.
   Greift nur unter .kt-page (CSS lädt nur auf /karriere + Job-Template).
   ============================================================ */
/* Grauen Header-Balken neutralisieren (Footer NICHT anfassen!) */
.kt-page .section_header50 { background-color: transparent !important; background-image: none !important; }
/* Standort-Karte als dezente Gold-Karte (spezifisch, damit Footer NICHT betroffen ist) */
.kt-page .section-karriere,
.kt-page .layout141_component.section-karriere {
  background: linear-gradient(180deg, rgba(214,172,95,.10), rgba(214,172,95,.04)) !important;
  border: 1px solid rgba(214,172,95,.18) !important;
  border-radius: 22px !important; box-shadow: none !important;
}
/* Bewerben-Button (native .button) → Gold-CI, nur in den Job-Inhaltssektionen (nicht Nav/Footer) */
.kt-page .section_header50 .button,
.kt-page .section_content10 .button,
.kt-page #bewerben-button {
  background: var(--wt-gold-shine) !important; color: #1a1206 !important; border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 32px rgba(214,172,95,.30), inset 0 1px 0 rgba(255,255,255,.4) !important;
  transition: transform .18s ease, box-shadow .2s ease !important;
}
.kt-page .section_header50 .button:hover,
.kt-page .section_content10 .button:hover,
.kt-page #bewerben-button:hover { transform: translateY(-2px) !important; }
.kt-page .section_header50 .button *, .kt-page .section_content10 .button *,
.kt-page #bewerben-button * { color: #1a1206 !important; fill: #1a1206 !important; }
/* Footer wird auf Job-Seiten NICHT angefasst (bleibt Original) */
/* Rich-Text-Listen: goldene Marker, etwas Luft */
.kt-page .text-rich-text-stellenanzeige ul { list-style: none; padding-left: 0; }
.kt-page .text-rich-text-stellenanzeige li { position: relative; padding-left: 1.6rem; margin-bottom: .5rem; }
.kt-page .text-rich-text-stellenanzeige li::before { content: "◆"; position: absolute; left: 0; color: var(--wt-gold); font-size: .8em; top: .15em; }
