/* ===== Tokens ===== */
:root {
  --ink: #1a1a1a;
  --red: #c1272d;
  --red-dark: #98151a;
  --concrete: #efede8;
  --concrete-dim: #e3e0d8;
  --steel: #6e7276;
  --yellow: #f2b705;
  --white: #ffffff;

  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap-max: 1160px;
  --radius: 4px;
  --shadow: 0 12px 32px -16px rgba(26, 26, 26, 0.35);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--concrete);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--red-dark); }

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

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin: 0 0 8px;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); }
.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--small { padding: 8px 16px; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ===== Header ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--concrete-dim);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header__logo { height: 32px; width: auto; }

.site-header__nav {
  display: none;
  gap: 28px;
}
.site-header__nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.site-header__nav a:hover { color: var(--red); }
@media (min-width: 860px) {
  .site-header__nav { display: flex; }
}

.accent { color: var(--red); }

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 20px 64px;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    padding: 64px 20px 80px;
    gap: 56px;
  }
}
.hero__col--media { order: -1; }
@media (min-width: 900px) {
  .hero__col--media { order: 2; }
}
.hero__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--concrete-dim);
  border-radius: 999px;
  padding: 6px 16px 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--steel);
  margin: 0 0 20px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex: 0 0 auto;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 1.05rem;
  max-width: 48ch;
  color: var(--steel);
  margin: 0 0 24px;
}

.hero__quickcard {
  margin-top: 8px;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.hero__quickcard-eyebrow {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin: 0 0 8px;
}
.hero__quickcard-question {
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 14px;
}
.hero__quickcard-btns {
  display: flex;
  gap: 10px;
}
.hero__quickcard-btns .btn { flex: 1 1 auto; padding: 10px 14px; font-size: 0.85rem; }

.hero__tags {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--steel);
  font-size: 0.9rem;
}

/* ===== Signature: hazard divider ===== */
.hazard-divider {
  height: 14px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ink),
    var(--ink) 18px,
    var(--yellow) 18px,
    var(--yellow) 36px
  );
}
.hazard-divider--rev {
  background-image: repeating-linear-gradient(
    45deg,
    var(--ink),
    var(--ink) 18px,
    var(--red) 18px,
    var(--red) 36px
  );
}

/* ===== Über uns ===== */
.about {
  padding: 56px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 780px) {
  .about { grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
}
.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about__photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}
.about__photo--2 { margin-top: 28px; transform: translateX(-35px); }
.about__text { color: var(--steel); margin: 0 0 20px; }

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.checklist__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 1px;
}

/* ===== Deine Vorteile ===== */
.highlights { padding: 8px 20px 56px; }
.highlights__grid {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .highlights__grid { grid-template-columns: 1fr 1fr; }
}
.highlight {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.highlight__icon { font-size: 1.6rem; }
.highlight h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 10px 0 6px;
}
.highlight p { margin: 0; color: var(--steel); font-size: 0.95rem; }

/* ===== Das bringst du mit ===== */
.requirements {
  padding: 8px 20px 56px;
  max-width: var(--wrap-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 780px) {
  .requirements { grid-template-columns: 1fr 1fr; align-items: center; }
}
.requirements__sub { color: var(--steel); margin: 0 0 20px; }
.requirements__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== Benefits ===== */
.benefits { padding: 56px 20px 48px; }
.benefits__grid {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.benefit {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.benefit__icon { font-size: 1.6rem; }
.benefit h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 10px 0 6px;
}
.benefit p { margin: 0; color: var(--steel); font-size: 0.95rem; }

@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: 1fr 1fr; }
}

.benefits__intro {
  color: var(--steel);
  max-width: 60ch;
  margin: 0 0 28px;
}

.perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}
.perk__check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.perk--placeholder {
  background: transparent;
  border: 1px dashed var(--steel);
  box-shadow: none;
  color: var(--steel);
  font-style: italic;
}
.perk--placeholder .perk__check {
  background: transparent;
  border: 1px dashed var(--steel);
  color: var(--steel);
}

@media (min-width: 640px) {
  .perks { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .perks { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Bewerbungsprozess ===== */
.process { padding: 8px 20px 64px; text-align: center; }

.process__heading { margin: 0 0 32px; }
.process__badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--concrete-dim);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 16px;
}
.process .section-title { text-align: center; margin: 0 0 16px; }
.process__underline {
  display: inline-block;
  width: 56px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

.process__list {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.process__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.process__number {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
}
.process__row-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 6px;
}
.process__row-text p {
  margin: 0;
  color: var(--steel);
  font-size: 0.95rem;
}
.process__note {
  color: var(--steel);
  font-size: 0.85rem;
  margin: 0 0 24px;
}

/* ===== Galerie ===== */
.gallery { padding: 8px 20px 56px; }
.gallery__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (min-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery__grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== Photo strip ===== */
.photo-strip {
  background: var(--ink);
  padding: 4px 0;
}
.photo-strip__track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.photo-strip__track img {
  scroll-snap-align: start;
  height: 220px;
  width: auto;
  flex: 0 0 auto;
  object-fit: cover;
}

/* ===== Videos ===== */
.videos { padding: 56px 20px 8px; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
}
.video-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 14px 0 6px;
}
.video-card p { margin: 0; color: var(--steel); font-size: 0.95rem; }

.video-card__play {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}
.video-card__play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.video-card__play:hover img { opacity: 1; }
.video-card__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
}
.video-card__icon::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(193, 39, 45, 0.9);
  z-index: -1;
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius);
}
.videos__note {
  margin: 24px 0 0;
  color: var(--steel);
  font-size: 0.85rem;
  text-align: center;
}

/* ===== CTA band (index page) ===== */
.cta-band { padding: 56px 20px 72px; text-align: center; }
.cta-band__intro {
  color: var(--steel);
  max-width: 44ch;
  margin: 0 auto 24px;
}

.cta-band--dark {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0;
}
.cta-band--dark .cta-band__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  margin: 0 0 12px;
}
.cta-band--dark .cta-band__intro {
  color: rgba(255,255,255,0.8);
  margin: 0 auto 28px;
}

.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover { background: var(--concrete-dim); }

/* ===== Apply form ===== */
.apply { padding: 56px 20px 72px; }
.apply__intro { color: var(--steel); margin: 0 0 28px; }

.apply-form { display: flex; flex-direction: column; gap: 32px; }

.apply-form__group {
  border: none;
  margin: 0;
  padding: 0;
}
.apply-form__group legend {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 0 0 14px;
  width: 100%;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 18px;
}

.field { margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }
.field__label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.field__required { color: var(--red); }
.field__optional { color: var(--steel); font-weight: 400; }

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--concrete-dim);
  border-radius: var(--radius);
  padding: 12px 14px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: border-color 0.12s ease, background-color 0.12s ease;
}
.option:hover { border-color: var(--steel); }
.option input {
  margin-top: 2px;
  accent-color: var(--red);
  flex: 0 0 auto;
}
.option:has(input:checked) {
  border-color: var(--red);
  background: #fdf1f1;
}

.text-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--concrete-dim);
  border-radius: var(--radius);
  background: var(--white);
}
.text-input:focus { border-color: var(--red); }

.field__note {
  margin: 10px 0 0;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: var(--radius);
}
.field__note--warn {
  background: #fdf1f1;
  color: var(--red-dark);
}

/* File upload */
.file-drop {
  position: relative;
  border: 2px dashed var(--steel);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px 16px;
  text-align: center;
}
.file-drop.is-dragover { border-color: var(--red); background: #fdf1f1; }
.file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-drop__inner { pointer-events: none; }
.file-drop__icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.file-drop__text { display: block; font-weight: 600; }
.file-drop__meta { display: block; font-size: 0.8rem; color: var(--steel); margin-top: 4px; }
.file-drop__filename {
  margin: 12px 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red-dark);
}

.option--consent { align-items: center; }
.field--consent { margin-top: 4px; }

.form-error {
  background: var(--red);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Bewerbungs-Wizard ===== */
.wizard-body {
  background: var(--concrete);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wizard-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--concrete-dim);
}
.wizard-header__logo { height: 26px; }
.wizard-header__close {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--steel);
  text-decoration: none;
  padding: 4px 8px;
}
.wizard-header__close:hover { color: var(--ink); }

.wizard-progress {
  flex: 1;
  height: 6px;
  background: var(--concrete-dim);
  border-radius: 999px;
  overflow: hidden;
}
.wizard-progress__bar {
  height: 100%;
  width: 10%;
  background: var(--red);
  transition: width 0.3s ease;
}

.wizard-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.wizard-form {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.wizard-step-count {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-dark);
  margin: 0 0 16px;
}

.wizard-question {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 5vw, 1.7rem);
  line-height: 1.2;
  margin: 0 0 24px;
}

.wizard-question__hint {
  margin: -16px 0 20px;
  color: var(--steel);
  font-size: 0.9rem;
}

.step { display: none; }
.step.is-active {
  display: block;
  animation: step-in 0.25s ease;
}
@keyframes step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .step.is-active { animation: none; }
}

.text-input--large {
  font-size: 1.15rem;
  padding: 16px 18px;
}

.wizard-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--concrete-dim);
  position: sticky;
  bottom: 0;
}
.wizard-nav__next { min-width: 140px; }

@media (max-width: 480px) {
  .wizard-nav { flex-direction: row; }
  .wizard-nav .btn--ghost { flex: 0 0 auto; }
  .wizard-nav__next { flex: 1 1 auto; }
}

.wizard-outcome {
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wizard-outcome .eyebrow { text-align: center; }
.wizard-outcome__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.wizard-outcome__divider {
  width: 96px;
  height: 10px;
  margin: 0 0 28px;
  border-radius: 999px;
}
.wizard-outcome__text {
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 42ch;
  margin: 0 0 32px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  padding: 24px 0;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.site-footer__logo { height: 22px; filter: brightness(0) invert(1); opacity: 0.85; }
.site-footer__links { display: flex; gap: 20px; }
.site-footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
}
.site-footer__links a:hover { color: var(--white); }

@media (min-width: 560px) {
  .site-footer__inner { flex-direction: row; justify-content: space-between; }
}
