/*!
Theme Name: Jaeger Karriere
Theme URI: https://www.jaeger-ausbau.de/
Author: UNICA Marketing
Author URI: https://unica-marketing.de/
Description: Recruiting-Theme für Jaeger Ausbau GmbH + Co KG Paderborn. Enthält die Karriere-Landingpage „Werde ein Jaeger.", Stellen-Unterseiten als eigenen Beitragstyp, eine Kontaktseite und den siebenstufigen Bewerbungsfunnel mit Versand per E-Mail.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jaeger-karriere
Tags: custom-menu, custom-logo, translation-ready, block-styles

Schriften: Helvetica Neue Condensed Bold / Light gehören dem Kunden bzw. dem
Lizenzgeber. Die Webfont-Dateien liegen NICHT im Theme – siehe
assets/fonts/README.md. Ohne sie greift ein condensed System-Fallback.
*/

/* ==========================================================================
   1. Design-Tokens
   ========================================================================== */
:root {
  --blue: #0069b4;
  --blue-dark: #00558f;
  --blue-soft: #93c3e4;
  --blue-tint: #e8f2f9;
  --black: #2f2e2c;
  --yellow: #fab600;
  --grey-50: #f4f4f2;
  --grey-100: #ececeb;
  --grey-200: #dcdcda;
  --grey-500: #6e6e68;
  --white: #ffffff;

  --display: "Helvetica Neue Condensed", "HelveticaNeue-CondensedBold",
    "Helvetica Neue", "Arial Narrow", "Liberation Sans Narrow", Helvetica,
    Arial, sans-serif;
  --text: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --content: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

svg { flex: none; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--text);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }

a { color: inherit; }

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

.wrap {
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) { .wrap { padding-inline: 40px; } }
@media (min-width: 1280px) { .wrap { padding-inline: 48px; } }

.h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.625rem);
  line-height: 1.08;
  color: var(--blue);
}
.lead { font-size: 1.0625rem; max-width: 34em; }

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 22px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.btn:hover { background: var(--blue-dark); }
.btn svg { width: 15px; height: 15px; fill: var(--yellow); flex: none; }
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.btn--ghost:hover { background: var(--white); color: var(--blue); }
.btn--ghost:hover svg { fill: var(--yellow); }
.btn--soft { background: var(--blue-soft); }
.btn--soft:hover { background: var(--blue); }
.btn--lg { min-height: 48px; padding: 14px 28px; font-size: 1rem; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* --- Header ------------------------------------------------------------ */
header.site {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 56px;
  background: var(--white);
}
.logo-tile svg { width: 26px; height: 24px; fill: var(--blue); }
@media (min-width: 640px) {
  .logo-tile { width: 96px; height: 80px; }
  .logo-tile svg { width: 34px; height: 31px; }
}
.burger {
  margin: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  cursor: pointer;
}
.burger:hover { background: rgba(255, 255, 255, 0.15); }
.burger svg { width: 20px; height: 22px; fill: currentColor; }
@media (min-width: 768px) { .burger { width: 56px; height: 56px; } }

#menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--blue);
  color: var(--white);
  padding: 24px 0;
}
#menu[hidden] { display: none; }
#menu .inner { display: flex; flex-direction: column; height: 100%; }
#menu .top { display: flex; align-items: center; justify-content: space-between; }
#menu .top svg.mark { width: 34px; height: 31px; fill: var(--white); }
#menu nav { margin-top: 48px; flex: 1; min-height: 0; overflow-y: auto; padding-bottom: 32px; }
.m-block { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.25); }
.m-label { font-family: var(--display); font-weight: 700; font-size: 1.125rem; letter-spacing: .06em; text-transform: uppercase; }
.m-cols { display: grid; gap: 16px 32px; margin-top: 14px; }
@media (min-width: 640px) { .m-cols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .m-cols { grid-template-columns: repeat(3, 1fr); } }
.m-cat {
  display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 3px;
  border: 1px solid rgba(255,255,255,.6); font-family: var(--display); font-weight: 700;
  font-size: .625rem; letter-spacing: .12em; text-transform: uppercase; line-height: 1;
  color: rgba(255,255,255,.9); padding: 3px 8px;
}
.m-links { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.2); }
/* Spezifität muss über "#menu nav a" liegen */
#menu .m-links a {
  display: block; font-family: var(--display); font-weight: 700; font-size: .875rem;
  line-height: 1.3; letter-spacing: .02em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,.9);
}
#menu .m-links a:hover { color: var(--yellow); }
#menu nav ul { display: flex; flex-direction: column; gap: 20px; }
#menu nav a {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.75rem, 6vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}
#menu nav a:hover { color: var(--yellow); }
.icon-btn {
  width: 48px; height: 48px; display: flex; align-items: center;
  justify-content: center; border: 0; border-radius: 999px;
  background: transparent; color: inherit; cursor: pointer;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.15); }
.icon-btn svg { width: 22px; height: 22px; fill: currentColor; }

/* --- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 33rem;
  overflow: hidden;
  background: var(--black);
}
@media (min-width: 768px) { .hero { min-height: 38rem; } }
@media (min-width: 1024px) { .hero { min-height: 43rem; height: min(86svh, 50rem); } }
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 34%;
}
@media (min-width: 768px) { .hero img { object-position: center 32%; } }
.hero .veil { position: absolute; inset: 0; background: rgba(47, 46, 44, 0.35); }
.hero .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(47, 46, 44, 0.85),
    rgba(47, 46, 44, 0.25) 55%,
    rgba(47, 46, 44, 0.1)
  );
}
.hero .wrap { position: relative; z-index: 2; padding-top: 112px; padding-bottom: 40px; }
@media (min-width: 768px) { .hero .wrap { padding-bottom: 56px; padding-right: 96px; } }
.hero h1 { color: var(--white); }
.hero .kicker {
  display: block;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero .big {
  display: block;
  margin-top: 4px;
  font-size: clamp(3.75rem, 15vw, 10.5rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  paint-order: stroke fill;
}
@media (min-width: 768px) { .outline { -webkit-text-stroke-width: 3px; } }
.hero .below {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 640px) { .hero .below { flex-direction: row; align-items: center; gap: 24px; } }
.hero .sub {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 32em;
}
/* Rechte Einheit im Hero: Menü-Button (im Header) + vertikale Schrift */
.right-unit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 68px;
  display: none;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
@media (min-width: 768px) { .right-unit { display: flex; } }
.right-unit .spacer { display: block; width: 100%; height: 56px; }
.vert {
  margin-top: 24px;
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.75);
}
@media (min-width: 1024px) { .vert { margin-top: 32px; font-size: 4rem; letter-spacing: 0.3em; } }

/* --- Flächen ----------------------------------------------------------- */
section.band { padding: 64px 0; }
@media (min-width: 640px) { section.band { padding: 80px 0; } }
@media (min-width: 1024px) { section.band { padding: 96px 0; } }
.bg-grey { background: var(--grey-50); }
.bg-grey2 { background: var(--grey-100); }
.bg-blue { background: var(--blue); color: var(--white); }
.bg-blue .h2 { color: var(--white); }
.pattern { position: relative; overflow: hidden; }
.pattern.intro-band { overflow: visible; }
.pattern > .wrap { position: relative; z-index: 1; }
.pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ja);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 16%, transparent 58%);
  mask-image: linear-gradient(to right, #000 0%, #000 16%, transparent 58%);
}
.ja-blue { --ja: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='p' width='104' height='104' patternUnits='userSpaceOnUse' patternTransform='rotate(-8)'%3E%3Cg fill='%230069b4' fill-opacity='0.05' font-family='Arial Narrow,Helvetica,sans-serif' font-size='32' font-weight='700'%3E%3Ctext x='4' y='34'%3EJA%3C/text%3E%3Ctext x='56' y='86'%3EJA%3C/text%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23p)'/%3E%3C/svg%3E"); }
.ja-white { --ja: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='p' width='104' height='104' patternUnits='userSpaceOnUse' patternTransform='rotate(-8)'%3E%3Cg fill='%23000000' fill-opacity='0.055' font-family='Arial Narrow,Helvetica,sans-serif' font-size='32' font-weight='700'%3E%3Ctext x='4' y='34'%3EJA%3C/text%3E%3Ctext x='56' y='86'%3EJA%3C/text%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23p)'/%3E%3C/svg%3E"); }

/* --- Intro ------------------------------------------------------------- */
.intro-inner { position: relative; }
.intro-col { max-width: 42rem; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.arrow-down {
  width: 44px; height: 44px; border-radius: 999px; display: flex;
  align-items: center; justify-content: center; color: var(--blue);
  text-decoration: none;
}
.arrow-down:hover { background: var(--white); }
.arrow-down svg { width: 20px; height: 24px; fill: currentColor; }
.badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; width: 140px; height: 140px; border-radius: 999px;
  background: var(--blue); color: var(--white); border: 0; cursor: pointer;
  text-align: center; box-shadow: 0 10px 24px rgba(0, 85, 143, 0.28);
  transform: rotate(-8deg); flex: none; padding: 0 12px;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}
.badge:hover { transform: rotate(-8deg) scale(1.05); background: var(--blue-dark); }
.badge svg { width: 20px; height: 20px; fill: var(--yellow); }
.badge span { font-family: var(--display); font-weight: 700; font-size: 1.1875rem; line-height: 1.12; letter-spacing: .01em; }
@media (min-width: 640px) {
  .badge { width: 160px; height: 160px; }
  .badge svg { width: 24px; height: 24px; }
  .badge span { font-size: 1.375rem; }
}
@media (min-width: 1024px) {
  .badge { width: 184px; height: 184px; }
  .badge svg { width: 28px; height: 28px; }
  .badge span { font-size: 1.5625rem; }
}
.badge-wrap { margin-top: 40px; }
@media (min-width: 768px) {
  /* ragt bewusst leicht ueber die untere Sektionskante hinaus */
  .badge-wrap { position: absolute; right: 0; bottom: -144px; margin-top: 0; z-index: 2; }
}
@media (min-width: 1024px) {
  .badge-wrap { right: 16px; bottom: -160px; }
}
@media (min-width: 1280px) {
  .badge-wrap { right: 272px; bottom: -192px; }
}

/* --- Job-Accordion ----------------------------------------------------- */
.cat {
  display: inline-flex; align-items: center; padding: 5px 10px;
  border: 1px solid var(--blue); border-radius: 3px; color: var(--blue);
  font-family: var(--display); font-weight: 700; font-size: 0.6875rem;
  letter-spacing: 0.12em; text-transform: uppercase; line-height: 1;
}
.bg-blue .cat { border-color: rgba(255, 255, 255, 0.7); color: var(--white); }
.acc { border-top: 1px solid var(--grey-200); margin-top: 16px; }
.bg-blue .acc { border-top-color: rgba(255, 255, 255, 0.35); }
.acc li { border-bottom: 1px solid var(--grey-200); }
.bg-blue .acc li { border-bottom-color: rgba(255, 255, 255, 0.35); }
.acc-btn {
  display: flex; align-items: center; gap: 16px; width: 100%;
  padding: 20px 0; background: none; border: 0; text-align: left;
  color: inherit; cursor: pointer; font: inherit; text-decoration: none;
}
@media (min-width: 640px) { .acc-btn { gap: 32px; padding: 24px 0; } }
.acc-btn .t {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 1.0625rem; line-height: 1.15; letter-spacing: 0.03em;
  text-transform: uppercase;
}
@media (min-width: 640px) { .acc-btn .t { font-size: 1.25rem; } }
.acc-btn .d { display: block; margin-top: 6px; font-size: 0.9375rem; color: rgba(47, 46, 44, 0.75); }
.bg-blue .acc-btn .d { color: rgba(255, 255, 255, 0.85); }
.acc-btn .txt { flex: 1; min-width: 0; }
.plus {
  flex: none; width: 40px; height: 40px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue); color: var(--white);
  transition: background-color 0.2s var(--ease);
}
.plus svg { width: 14px; height: 16px; fill: currentColor; }
.acc-btn:hover .plus { background: var(--blue-dark); }
.bg-blue .plus { background: transparent; border: 1px solid var(--white); }
.bg-blue .acc-btn:hover .plus { background: var(--white); color: var(--blue); }
.panel { display: none; padding-bottom: 28px; max-width: 52rem; }
.panel.open { display: block; }
.panel ul { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.panel li { display: flex; gap: 12px; align-items: flex-start; border: 0; }
.panel li svg { width: 13px; height: 15px; margin-top: 5px; flex: none; fill: var(--blue); }
.bg-blue .panel li svg { fill: var(--yellow); }
.panel .actions { margin-top: 28px; }

/* --- Zweispalter ------------------------------------------------------- */
.two { display: grid; gap: 32px; align-items: start; }
@media (min-width: 1024px) { .two { grid-template-columns: 1fr 1fr; gap: 56px; } }
.shot { position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden; }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story { display: flex; flex-direction: column; gap: 16px; }
.story p { font-size: 0.9375rem; line-height: 1.7; }

.bene { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .bene { grid-template-columns: 1fr 1.05fr; gap: 64px; } }
.bene h2 {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--black);
}
.checks { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.checks li { display: flex; align-items: flex-start; gap: 14px; font-weight: 700; line-height: 1.35; }
.checks svg { width: 14px; height: 16px; margin-top: 3px; flex: none; fill: var(--blue); }
.bene .frame { border-radius: 6px; overflow: hidden; aspect-ratio: 16 / 9; }
.bene .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Testimonial ------------------------------------------------------- */
.quote-box { position: relative; overflow: hidden; background: var(--blue); margin-top: 48px; }
.quote-grid { display: grid; }
@media (min-width: 1024px) { .quote-grid { grid-template-columns: 1.1fr 0.9fr; } }
.quote-body { padding: 40px 24px; }
@media (min-width: 640px) { .quote-body { padding: 56px 40px; } }
.quote-body p.q {
  color: var(--white);
  font-size: clamp(1.125rem, 2.2vw, 1.75rem);
  line-height: 1.25;
}
.quote-body .who { margin-top: 32px; color: var(--white); }
.quote-body .who b { display: block; font-family: var(--display); font-size: 1rem; }
.quote-body .who span { font-size: 0.875rem; color: rgba(255, 255, 255, 0.85); }
.portrait { position: relative; min-height: 18rem; }
@media (min-width: 640px) { .portrait { min-height: 22rem; } }
@media (min-width: 1024px) { .portrait { min-height: 26rem; } }
.portrait .plate {
  position: absolute; top: 32px; bottom: 0; left: 16px; right: 33%;
  background: rgba(255, 255, 255, 0.06);
}
@media (min-width: 640px) { .portrait .plate { left: 32px; } }
.portrait img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 10%;
}

/* --- Footer ------------------------------------------------------------ */
footer.site { background: var(--grey-500); color: var(--white); padding: 48px 0; }
.f-top { display: flex; flex-direction: column; gap: 32px; }
@media (min-width: 1024px) { .f-top { flex-direction: row; align-items: flex-start; gap: 56px; } }
.f-top svg.mark { width: 62px; height: 57px; fill: var(--white); flex: none; }
.f-name { font-family: var(--display); font-weight: 700; font-size: 1.25rem; }
.f-meta { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; font-size: 0.875rem; }
@media (min-width: 640px) { .f-meta { flex-direction: row; gap: 28px; align-items: center; } }
.f-meta span, .f-meta a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.f-meta a:hover { color: var(--yellow); }
.f-meta svg { width: 14px; height: 16px; fill: currentColor; }
.f-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 1024px) { .f-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.f-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.f-links a {
  font-family: var(--display); font-weight: 700; font-size: 0.8125rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
}
.f-links a:hover { color: var(--yellow); }
.soc {
  width: 40px; height: 40px; border-radius: 999px; display: flex; align-items: center;
  justify-content: center; color: var(--white); text-decoration: none;
}
.soc:hover { background: rgba(255,255,255,.15); color: var(--yellow); }
.soc svg { width: 16px; height: 18px; fill: currentColor; }
.f-note { font-size: 0.75rem; color: rgba(255, 255, 255, 0.75); margin-top: 20px; }

/* --- TODO-Platzhalter -------------------------------------------------- */
.todo {
  margin-top: 24px; padding: 20px; border-radius: 6px;
  border: 2px dashed rgba(0, 105, 180, 0.45); background: var(--grey-50);
}
.todo b {
  display: inline-flex; align-items: center; padding: 4px 8px; border-radius: 3px;
  background: var(--yellow); color: var(--black); font-family: var(--display);
  font-weight: 700; font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase;
  line-height: 1;
}
.todo p { margin-top: 12px; font-size: .9375rem; font-weight: 700; }
.todo p.hint { margin-top: 4px; font-size: .875rem; font-weight: 300; color: rgba(47,46,44,.75); }

/* --- Kontaktformular --------------------------------------------------- */
.form-card { background: var(--white); border-radius: 6px; padding: 24px; }
@media (min-width: 640px) { .form-card { padding: 40px; } }
.form-grid { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-grid label.lbl {
  display: block; margin-bottom: 6px; font-family: var(--display); font-weight: 700;
  font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase;
}
.form-grid label.lbl span.req { color: var(--blue); }
.form-grid label.lbl span.opt {
  margin-left: 8px; font-family: var(--text); font-weight: 300; font-size: .75rem;
  letter-spacing: 0; text-transform: none; color: rgba(47,46,44,.6);
}
.form-grid input, .form-grid textarea {
  width: 100%; padding: 0 16px; font: inherit; font-size: 1rem; color: var(--black);
  background: var(--white); border: 1px solid rgba(0,105,180,.7); border-radius: 6px;
}
.form-grid input { height: 52px; }
.form-grid textarea { padding: 12px 16px; min-height: 150px; resize: vertical; line-height: 1.6; }
.form-grid input:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(250,182,0,.7);
}
.form-grid [aria-invalid="true"] { border-color: #b91c1c; }
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 64px; } }
.contact-meta { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; font-style: normal; }
.contact-meta > span, .contact-meta > a { display: flex; gap: 12px; align-items: flex-start; text-decoration: none; }
.contact-meta svg { width: 16px; height: 18px; margin-top: 3px; flex: none; fill: var(--blue); }
.sent { text-align: center; padding: 32px 24px; border: 1px solid rgba(0,105,180,.3); border-radius: 6px; }
.sent .ring { width: 56px; height: 56px; margin: 0 auto; border-radius: 999px; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.sent .ring svg { width: 24px; height: 26px; fill: var(--yellow); }
.sent h3 { margin-top: 20px; font-size: 1.5rem; color: var(--blue); }
.sent p { margin-top: 12px; font-size: .9375rem; }

/* --- Funnel ------------------------------------------------------------ */
#overlay {
  position: fixed; inset: 0; z-index: 100; display: flex;
  align-items: flex-end; justify-content: center;
}
@media (min-width: 640px) { #overlay { align-items: center; } }
#overlay[hidden] { display: none; }
#overlay .scrim { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.75); }
.modal {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  width: 100%; max-height: 100dvh; overflow: hidden;
  border-radius: 16px 16px 0 0; background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
@media (min-width: 640px) {
  .modal {
    max-width: 52.5rem; max-height: calc(100dvh - 48px);
    min-height: 34rem; border-radius: 20px;
  }
}
@media (min-width: 1024px) { .modal { min-height: 38.5rem; } }
.modal .close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 44px; height: 44px; border: 0; border-radius: 999px;
  background: transparent; color: var(--black); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal .close:hover { background: var(--grey-50); }
.modal .close svg { width: 20px; height: 22px; fill: currentColor; }
@media (min-width: 640px) { .modal .close { top: 20px; right: 20px; } }
.modal .body {
  display: flex; flex-direction: column; flex: 1;
  overflow-y: auto; padding: 28px 20px 32px;
}
@media (min-width: 640px) { .modal .body { padding: 36px 48px 44px; } }
@media (min-width: 1024px) { .modal .body { padding: 36px 68px 44px; } }
.track { height: 5px; border-radius: 999px; background: var(--grey-200); margin-right: 48px; }
@media (min-width: 640px) { .track { margin-right: 40px; } }
.track > i {
  display: block; height: 100%; border-radius: 999px; background: var(--blue);
  transition: width 0.5s var(--ease);
}
.step-area { display: flex; flex-direction: column; justify-content: center; flex: 1; }
.modal h2 {
  margin-top: 32px; text-align: center; color: var(--blue);
  font-size: clamp(2rem, 5vw, 3.125rem); line-height: 1;
}
@media (min-width: 640px) { .modal h2 { margin-top: 40px; } }
.modal .question {
  margin: 12px auto 0; text-align: center; max-width: 36em;
  font-size: 1.0625rem; white-space: pre-line;
}
.opts { display: grid; gap: 12px; margin-top: 32px; }
@media (min-width: 640px) { .opts { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; } }
.opts.g3 { }
@media (min-width: 1024px) { .opts.g3 { grid-template-columns: repeat(3, 1fr); } }
.opts.g2 { max-width: 42rem; margin-inline: auto; }
@media (min-width: 640px) { .opts.g2 { gap: 16px; } }
.opt { position: relative; display: block; cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt > span {
  display: flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 10px 16px; text-align: center;
  border: 1px solid var(--blue); border-radius: 6px; color: var(--blue);
  font-family: var(--display); font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.15;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.opt:hover > span { background: var(--blue-tint); }
.opt input:checked + span {
  border-color: var(--yellow); color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow);
  background: var(--white);
}
.opt input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 2px; }
.opt.wide { grid-column: span 1; }
@media (min-width: 640px) { .opt.wide { grid-column: span 2; } }
.opt.mid { }
@media (min-width: 640px) {
  .opt.mid { grid-column: span 2; width: calc(50% - 8px); margin-inline: auto; }
}
.fields { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
@media (min-width: 640px) { .fields { margin-top: 40px; } }
.fields input[type="text"], .fields input[type="email"], .fields input[type="tel"] {
  height: 52px; width: 100%; padding: 0 16px; font: inherit; font-size: 1rem;
  color: var(--black); background: var(--white);
  border: 1px solid rgba(0, 105, 180, 0.7); border-radius: 6px;
}
.fields input::placeholder { color: rgba(47, 46, 44, 0.45); }
.fields input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(250, 182, 0, 0.7); }
.fields input[aria-invalid="true"] { border-color: #b91c1c; }
.err { color: #b91c1c; font-size: 0.875rem; margin-top: 6px; }
.err.center { text-align: center; margin-top: 16px; }

.drop {
  margin-top: 32px; border: 2px dashed rgba(0, 105, 180, 0.7); border-radius: 6px;
  background: var(--white); transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.drop.hot { border-color: var(--yellow); background: rgba(250, 182, 0, 0.08); }
.drop button {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; width: 100%; padding: 36px 20px; background: none; border: 0;
  cursor: pointer; text-align: center;
}
.drop svg { width: 26px; height: 28px; fill: var(--blue); }
.drop b { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--blue); }
.filelist { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.filelist li {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 12px; border-radius: 6px; background: var(--grey-50); font-size: 0.875rem;
}
.filelist .nm { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filelist .sz { color: rgba(47, 46, 44, 0.7); margin-left: 8px; }
.filelist button {
  flex: none; width: 32px; height: 32px; border: 0; border-radius: 999px;
  background: transparent; color: rgba(47, 46, 44, 0.7); cursor: pointer;
}
.filelist button:hover { background: var(--white); color: var(--blue); }
.filelist button svg { width: 13px; height: 15px; fill: currentColor; }

.privacy { display: flex; align-items: flex-start; gap: 12px; margin-top: 26px; font-size: 0.875rem; }
.privacy input {
  appearance: none; width: 20px; height: 20px; margin-top: 3px; flex: none;
  border: 1px solid rgba(0, 105, 180, 0.7); border-radius: 3px; background: var(--white);
  cursor: pointer;
}
.privacy input:checked {
  background: var(--blue) center / 12px no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5 L6.5 12 L13 4.5'/%3E%3C/svg%3E");
  border-color: var(--blue);
}
.privacy a {
  font-family: var(--display); font-weight: 700; color: var(--blue);
  text-transform: uppercase; text-decoration: underline; text-underline-offset: 2px;
}
.nav {
  display: flex; flex-direction: column-reverse; gap: 12px; margin-top: 36px;
}
@media (min-width: 640px) {
  .nav { flex-direction: row; align-items: center; justify-content: space-between; margin-top: 44px; }
  .nav .btn { min-width: 200px; }
  .nav.only-next { justify-content: center; }
}
.success { display: flex; flex-direction: column; align-items: center; text-align: center; }
.success .ring {
  width: 64px; height: 64px; border-radius: 999px; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.success .ring svg { width: 28px; height: 30px; fill: var(--yellow); }
.success h2 { margin-top: 24px; }
.success p { margin-top: 16px; max-width: 30em; }
.success p.small { margin-top: 8px; font-size: 0.875rem; color: rgba(47, 46, 44, 0.7); }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ==========================================================================
   WordPress-Grundlagen
   ========================================================================== */
.sr-only,
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.screen-reader-text:focus {
  position: static !important;
  width: auto;
  height: auto;
  clip-path: none;
  padding: 12px 20px;
  background: var(--white);
  color: var(--blue);
}
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 200;
}

/* Admin-Bar: Menü-Overlay und Header nach unten schieben */
body.admin-bar #menu { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar #menu { top: 46px; }
}

/* Klassische WordPress-Klassen (Theme-Check) */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text,
.gallery-caption { font-size: 0.875rem; color: rgba(47, 46, 44, 0.75); }
.sticky, .bypostauthor { position: relative; }

/* Inhaltsseiten (Impressum & Co.) und Editor-Inhalte */
.entry-content { max-width: 46rem; }
.entry-content > * + * { margin-top: 20px; }
.entry-content h2 { margin-top: 40px; font-size: 1.5rem; color: var(--blue); }
.entry-content h3 { margin-top: 32px; font-size: 1.1875rem; }
.entry-content ul,
.entry-content ol { padding-left: 24px; list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li + li { margin-top: 8px; }
.entry-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.entry-content img { height: auto; }
.entry-content blockquote {
  border-left: 3px solid var(--blue);
  padding-left: 20px;
  font-style: italic;
}

/* Stellenarchiv / Suche / 404 */
.simple-head { padding-top: 160px; }
.simple-head .h2 { margin-top: 8px; }
.result-list { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.result-list a { font-family: var(--display); font-weight: 700; font-size: 1.125rem; text-decoration: none; color: var(--blue); }
.result-list a:hover { color: var(--black); }

/* Hinweisbox im Backend-Vorschaumodus */
.jaeger-notice {
  margin-top: 24px;
  padding: 16px 20px;
  border-left: 4px solid var(--yellow);
  background: var(--grey-50);
  font-size: 0.9375rem;
}

/* ==========================================================================
   Stellen-Unterseiten
   ========================================================================== */
/* Zwischen-Headline („Das bringst du mit.", „Dein JA lohnt sich.") */
.sub-h {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}
.sub-block { margin-top: 40px; }

/* Badge auf den Stellenseiten: kleiner und oben rechts (wie im Entwurf) */
.badge.badge--sm { width: 104px; height: 104px; padding: 0 10px; gap: 4px; }
.badge.badge--sm svg { width: 16px; height: 16px; }
.badge.badge--sm span { font-size: 0.9375rem; }
@media (min-width: 640px) {
  .badge.badge--sm { width: 120px; height: 120px; }
  .badge.badge--sm svg { width: 18px; height: 18px; }
  .badge.badge--sm span { font-size: 1.0625rem; }
}
@media (min-width: 768px) {
  .badge-wrap--top { top: 8px; right: 0; bottom: auto; }
}
@media (min-width: 1024px) {
  .badge-wrap--top { top: 8px; right: 16px; bottom: auto; }
}
@media (min-width: 1280px) {
  .badge-wrap--top { top: 8px; right: 16px; bottom: auto; }
}
