/* =========================================================================
   Goldenes M – öffentlicher Bereich (Startseite, Filialen, Bewerbung)
   McDonald's-Branding: Gelb #FFC72C, Rot #DA291C, dunkles Anthrazit.
   Eigenständiges Stylesheet, kein Framework, kein CDN.
   ========================================================================= */
:root {
  --mc-gelb: #FFC72C;
  --mc-gelb-d: #e9b200;
  --mc-rot: #DA291C;
  --mc-rot-d: #b21f15;
  --dunkel: #1a1a1a;
  --dunkel-2: #292929;
  --grau-bg: #f5f5f3;
  --karte: #ffffff;
  --rand: #e6e6e2;
  --text: #1f2430;
  --text-dezent: #6b7280;
  --radius: 16px;
  --radius-sm: 10px;
  --schatten: 0 1px 2px rgba(0,0,0,.05), 0 10px 26px rgba(0,0,0,.06);
  --schatten-stark: 0 18px 46px rgba(0,0,0,.16);
  --wrap: 1160px;
}

* { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body.pub {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--grau-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;            /* keine horizontale Scrollleiste auf schmalen Screens */
}
.pub a { color: var(--mc-rot); }
img { max-width: 100%; display: block; }
h1, h2, h3, p, li, summary, .fk-name, .fk-adr, .fakt-txt, .fk-bezirk { overflow-wrap: break-word; }
h2 { letter-spacing: -.02em; }

/* --------------------------------------------------------------- Header */
.pub-head {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 3px solid var(--mc-gelb);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.pub-head-in {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; gap: 1rem;
  padding: .55rem 1.25rem;
}
.pub-logo { height: 46px; width: auto; }
.pub-brand { display: inline-flex; }
.pub-nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.pub-nav a {
  text-decoration: none; color: var(--dunkel); font-weight: 600;
  padding: .55rem .85rem; border-radius: var(--radius-sm); font-size: .98rem;
}
.pub-nav a:hover { background: #f1f1ee; }
.pub-nav a.on { color: var(--mc-rot); }
.pub-nav a.pub-login { background: var(--dunkel); color: #fff; margin-left: .35rem; }
.pub-nav a.pub-login:hover { background: #000; }
.pub-burger {
  margin-left: auto; display: none; font-size: 1.5rem; line-height: 1;
  background: none; border: 0; cursor: pointer; color: var(--dunkel); padding: .25rem .5rem;
}

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-weight: 700; font-size: 1rem; padding: .8rem 1.4rem;
  border-radius: 999px; border: 2px solid transparent;
  transition: transform .05s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-yellow { background: var(--mc-gelb); color: var(--dunkel); box-shadow: 0 6px 18px rgba(255,199,44,.45); }
.btn-yellow:hover { background: var(--mc-gelb-d); color: var(--dunkel); }
.btn-dark { background: var(--dunkel); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-lg { font-size: 1.1rem; padding: .95rem 1.9rem; }

/* ----------------------------------------------------------- Golden Arches */
.arch { display: block; }
.arch path { stroke: var(--mc-gelb); }

/* ------------------------------------------------------------------ Hero */
.hero {
  background: radial-gradient(120% 130% at 82% -10%, #3a3a3a 0%, var(--dunkel) 58%);
  color: #fff;
}
.hero-in {
  max-width: var(--wrap); margin: 0 auto; padding: 4rem 1.25rem;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.5rem; align-items: center;
}
.hero-kicker { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--mc-gelb); margin: 0 0 .6rem; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.04; margin: 0 0 1rem; font-weight: 800; letter-spacing: -.02em; }
.hero-sub { font-size: 1.12rem; max-width: 34em; color: #e9e9e9; margin: 0 0 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-logo { display: flex; justify-content: center; }
.hero-arch { width: min(300px, 78%); height: auto; filter: drop-shadow(0 10px 26px rgba(0,0,0,.45)); }
.hero-mc-logo { width: min(270px, 70%); height: auto; border-radius: 26px; filter: drop-shadow(0 14px 32px rgba(0,0,0,.5)); }

/* ------------------------------------------------------------- Zahlen-Band */
.fakten { background: var(--mc-gelb); }
.fakten-in {
  max-width: var(--wrap); margin: 0 auto; padding: 1.6rem 1.25rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
}
.fakt { display: flex; flex-direction: column; }
.fakt-zahl { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; color: var(--dunkel); letter-spacing: -.02em; }
.fakt-txt { color: #5a4a00; font-weight: 600; font-size: .95rem; }

/* ------------------------------------------------------------------- USP */
.usp { max-width: var(--wrap); margin: 0 auto; padding: 3.5rem 1.25rem 1.5rem; }
.usp-head { text-align: center; margin-bottom: 1.8rem; }
.usp-head h2 { font-size: 1.9rem; margin: 0 0 .35rem; }
.usp-head p { margin: 0; color: var(--text-dezent); }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.usp-card { background: var(--karte); border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.3rem 1.2rem; box-shadow: var(--schatten); }
.usp-ic { font-size: 1.8rem; margin-bottom: .5rem; }
.usp-card h3 { margin: 0 0 .35rem; font-size: 1.06rem; }
.usp-card p { margin: 0; color: var(--text-dezent); font-size: .94rem; }

/* ----------------------------------------------------------------- Über uns */
.ueber { max-width: var(--wrap); margin: 0 auto; padding: 3rem 1.25rem; }
.ueber-in { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; align-items: center; }
.ueber-text h2 { font-size: 1.9rem; margin: 0 0 1rem; }
.ueber-text p { font-size: 1.06rem; color: #374151; margin: 0 0 1rem; }
.ueber-marke { text-align: center; background: var(--dunkel); border-radius: var(--radius); padding: 2rem 1.5rem; color: #fff; }
.ueber-arch { width: 120px; margin: 0 auto .8rem; }
.ueber-mc-logo { width: 132px; height: auto; border-radius: 16px; display: block; margin: 0 auto .9rem; box-shadow: 0 8px 22px rgba(0,0,0,.35); }
.ueber-marke p { margin: 0; color: #d8d8d8; }

/* ------------------------------------------------------------ Arbeitsmodelle */
.modelle { max-width: var(--wrap); margin: 0 auto; padding: 1.5rem 1.25rem 2rem; }
.modelle-head { text-align: center; margin-bottom: 1.6rem; }
.modelle-head h2 { font-size: 1.9rem; margin: 0; }
.modelle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.modell-card { background: var(--karte); border: 1px solid var(--rand); border-top: 4px solid var(--mc-gelb); border-radius: var(--radius); padding: 1.3rem 1.3rem; box-shadow: var(--schatten); }
.modell-card h3 { margin: 0 0 .4rem; font-size: 1.2rem; color: var(--dunkel); }
.modell-card p { margin: 0; color: var(--text-dezent); font-size: .95rem; }

/* ------------------------------------------------------------- Filialen */
.filialen { max-width: var(--wrap); margin: 0 auto; padding: 2.5rem 1.25rem 3.5rem; }
.filialen-head { text-align: center; margin-bottom: 2rem; }
.filialen-head h2 { font-size: 1.9rem; margin: 0 0 .4rem; }
.filialen-head p { margin: 0; color: var(--text-dezent); }
.filial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 1.15rem; }

.fk {
  display: flex; flex-direction: column; text-decoration: none; color: var(--text);
  background: var(--karte); border: 1px solid var(--rand); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--schatten);
  transition: transform .14s ease, box-shadow .25s ease;
}
.fk:hover { transform: translateY(-5px); box-shadow: var(--schatten-stark); }
.fk-top {
  position: relative; min-height: 108px; display: flex; align-items: flex-end;
  padding: .9rem 1.05rem; overflow: hidden;
  background: linear-gradient(135deg, #444, #222);
}
.fk-arch { position: absolute; top: -24px; right: -16px; width: 128px; opacity: .22; }
.fk-arch path { stroke: #fff; }
.fk-bezirk {
  position: relative; z-index: 2; color: #fff; font-weight: 800; font-size: 1.3rem;
  letter-spacing: -.01em; text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.fk-body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.fk-name { font-weight: 800; font-size: 1.12rem; color: var(--dunkel); }
.fk-adr { color: var(--text-dezent); font-size: .94rem; line-height: 1.45; }
.fk-btn { margin-top: .75rem; font-weight: 700; color: var(--mc-rot); font-size: .92rem; }
.fk:hover .fk-btn { text-decoration: underline; }

/* Individuelle Bezirks-Farbverläufe je Kachel (dunkel & hochwertig) */
.filial-grid .fk:nth-child(1)  .fk-top { background: linear-gradient(135deg, #7a1f1f, #3a0f0f); }
.filial-grid .fk:nth-child(2)  .fk-top { background: linear-gradient(135deg, #1f3f63, #0f2036); }
.filial-grid .fk:nth-child(3)  .fk-top { background: linear-gradient(135deg, #1f5a4a, #0f3329); }
.filial-grid .fk:nth-child(4)  .fk-top { background: linear-gradient(135deg, #5a3a1f, #33200f); }
.filial-grid .fk:nth-child(5)  .fk-top { background: linear-gradient(135deg, #4a2a63, #261333); }
.filial-grid .fk:nth-child(6)  .fk-top { background: linear-gradient(135deg, #3f4a1f, #23290f); }
.filial-grid .fk:nth-child(7)  .fk-top { background: linear-gradient(135deg, #1f5a5a, #0f3333); }
.filial-grid .fk:nth-child(8)  .fk-top { background: linear-gradient(135deg, #5a1f3f, #330f20); }
.filial-grid .fk:nth-child(9)  .fk-top { background: linear-gradient(135deg, #2a3a63, #141f3a); }
.filial-grid .fk:nth-child(10) .fk-top { background: linear-gradient(135deg, #5a4a1f, #33290f); }
.filial-grid .fk:nth-child(11) .fk-top { background: linear-gradient(135deg, #1f5a37, #0f3320); }
.filial-grid .fk:nth-child(12) .fk-top { background: linear-gradient(135deg, #3a1f63, #200f33); }
.filial-grid .fk:nth-child(13) .fk-top { background: linear-gradient(135deg, #5a2a1f, #33160f); }
.filial-grid .fk:nth-child(14) .fk-top { background: linear-gradient(135deg, #1f4a5a, #0f2a33); }

/* ------------------------------------------------------------ Bewerbungsablauf */
.prozess { max-width: var(--wrap); margin: 0 auto; padding: 2rem 1.25rem 3rem; }
.prozess-head { text-align: center; margin-bottom: 1.8rem; }
.prozess-head h2 { font-size: 1.9rem; margin: 0; }
.prozess-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.schritt { background: var(--karte); border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.6rem 1.3rem; text-align: center; box-shadow: var(--schatten); }
.schritt-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--mc-gelb); color: var(--dunkel); font-weight: 800; font-size: 1.5rem; margin-bottom: .8rem; }
.schritt h3 { margin: 0 0 .35rem; font-size: 1.15rem; }
.schritt p { margin: 0; color: var(--text-dezent); font-size: .95rem; }

/* --------------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin: 0 auto; padding: 1rem 1.25rem 3.5rem; }
.faq h2 { font-size: 1.9rem; text-align: center; margin: 0 0 1.6rem; }
.faq details { background: var(--karte); border: 1px solid var(--rand); border-radius: var(--radius-sm); margin-bottom: .7rem; box-shadow: var(--schatten); overflow: hidden; }
.faq summary { cursor: pointer; padding: 1rem 1.2rem; font-weight: 700; color: var(--dunkel); list-style: none; position: relative; padding-right: 2.6rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--mc-rot); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0; padding: 0 1.2rem 1.1rem; color: #374151; }

/* ---------------------------------------------------------------- CTA band */
.cta-band { background: var(--mc-gelb); }
.cta-band-in { max-width: var(--wrap); margin: 0 auto; padding: 3rem 1.25rem; text-align: center; }
.cta-band h2 { font-size: 1.9rem; margin: 0 0 .4rem; color: var(--dunkel); }
.cta-band p { margin: 0 0 1.4rem; color: #5a4a00; font-size: 1.05rem; }

/* ----------------------------------------------------------- Seiten-Kopf */
.page-head { background: var(--dunkel); color: #fff; }
.page-head-in { max-width: var(--wrap); margin: 0 auto; padding: 2.8rem 1.25rem; }
.page-head h1 { margin: 0 0 .4rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-head p { margin: 0; color: #d8d8d8; max-width: 46em; }

/* ------------------------------------------------------------- Flash */
.pub-flash-wrap { max-width: var(--wrap); margin: 1rem auto 0; padding: 0 1.25rem; }
.pub-flash { padding: .8rem 1rem; border-radius: var(--radius-sm); margin-bottom: .6rem; font-weight: 600; border: 1px solid; }
.pub-flash-error { background: #fde8e6; border-color: #f3b6af; color: #97160c; }
.pub-flash-success { background: #e7f7ec; border-color: #a6e0b9; color: #156a32; }
.pub-flash-info { background: #fff6da; border-color: #f3dd9a; color: #7a5a00; }

/* ------------------------------------------------------- Bewerbungsformular */
.bw-form { max-width: 920px; margin: 2rem auto 3rem; padding: 0 1.25rem; }
.bw-block { background: var(--karte); border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.4rem 1.5rem; margin: 0 0 1.4rem; box-shadow: var(--schatten); }
.bw-block legend { font-weight: 800; font-size: 1.12rem; padding: 0 .5rem 0 0; color: var(--dunkel); border-bottom: 3px solid var(--mc-gelb); margin-bottom: 1rem; }
.pflicht { color: var(--mc-rot); }
.bw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.2rem; }
.bw-grid-top { align-items: start; margin-top: .8rem; }
.bw-form label { display: flex; flex-direction: column; gap: .3rem; font-weight: 600; font-size: .92rem; color: #344054; }
.bw-form input[type=text], .bw-form input[type=email], .bw-form input[type=tel],
.bw-form input[type=date], .bw-form textarea {
  font: inherit; padding: .6rem .7rem; border: 1px solid var(--rand); border-radius: var(--radius-sm);
  background: #fff; color: var(--text); width: 100%;
}
.bw-form input:focus, .bw-form textarea:focus { outline: 2px solid var(--mc-gelb); border-color: var(--mc-gelb-d); }
.bw-form textarea { resize: vertical; }
.bw-full { display: flex; flex-direction: column; margin-bottom: .9rem; }
.bw-hint { color: var(--text-dezent); font-size: .88rem; margin: .7rem 0 0; }
.bw-radio-row { display: flex; align-items: center; flex-wrap: wrap; gap: .4rem 1rem; }
.bw-q { font-weight: 700; color: var(--dunkel); flex: 1 1 100%; font-size: .96rem; }
.bw-radio { flex-direction: row !important; align-items: center; gap: .4rem; font-weight: 600; cursor: pointer; }
.bw-matrix-scroll { overflow-x: auto; }
.bw-matrix { border-collapse: collapse; width: 100%; min-width: 460px; }
.bw-matrix th, .bw-matrix td { text-align: center; padding: .45rem; }
.bw-matrix thead th { color: var(--dunkel); font-weight: 700; border-bottom: 2px solid var(--mc-gelb); }
.bw-matrix tbody th { text-align: left; font-weight: 600; color: #344054; white-space: nowrap; }
.bw-matrix tbody tr:nth-child(odd) td { background: #faf9f5; }
.bw-cell { display: inline-flex; cursor: pointer; }
.bw-cell input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.bw-cell span { width: 26px; height: 26px; border: 2px solid var(--rand); border-radius: 7px; background: #fff; display: inline-block; transition: all .12s ease; }
.bw-cell input:checked + span { background: var(--mc-gelb); border-color: var(--mc-gelb-d); box-shadow: inset 0 0 0 3px #fff; }
.bw-cell input:focus-visible + span { outline: 2px solid var(--mc-rot); }
.bw-av { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; }
.bw-filialen { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .6rem 1rem; }
.bw-check { flex-direction: row !important; align-items: center; gap: .55rem; cursor: pointer; font-weight: 600; color: #344054; }
.bw-check input[type=checkbox] { width: 20px; height: 20px; accent-color: var(--mc-rot); flex: 0 0 auto; }
.bw-check span small { color: var(--text-dezent); font-weight: 500; }
.bw-check-inline { gap: .5rem; }
.bw-std { max-width: 130px; }
.bw-actions { text-align: center; padding: 1rem 0 0; }
.bw-datenschutz { color: var(--text-dezent); font-size: .88rem; max-width: 40em; margin: 0 auto 1rem; }

/* Infobox: Gesundheitspass / rote Karte */
.bw-info { background: #fff8e6; border: 1px solid #f3dd9a; border-left: 5px solid var(--mc-gelb);
  border-radius: var(--radius-sm); margin-top: 1.1rem; overflow: hidden; }
.bw-info summary { cursor: pointer; font-weight: 700; color: #7a5a00; padding: .9rem 1.1rem;
  list-style: none; position: relative; padding-right: 2.4rem; }
.bw-info summary::-webkit-details-marker { display: none; }
.bw-info summary::after { content: "+"; position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%); font-size: 1.3rem; color: var(--mc-rot); font-weight: 700; }
.bw-info[open] summary::after { content: "–"; }
.bw-info-body { padding: 0 1.1rem 1.1rem; color: #374151; }
.bw-info-body p { margin: .6rem 0; }
.bw-info-fakten, .bw-info-aemter { margin: .5rem 0; padding-left: 1.2rem; }
.bw-info-fakten li, .bw-info-aemter li { margin: .35rem 0; }
.bw-info-cta { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0; }
.bw-info-cta .btn { font-size: .95rem; padding: .6rem 1.1rem; box-shadow: none; }
.bw-info-hinweis { font-size: .92rem; color: var(--text-dezent); }
.btn-ghost-dark { background: transparent; color: var(--dunkel); border-color: var(--dunkel); }
.btn-ghost-dark:hover { background: rgba(0,0,0,.06); color: var(--dunkel); }

/* --------------------------------------------------------------- Danke */
.danke { max-width: 720px; margin: 0 auto; padding: 4rem 1.25rem; text-align: center; }
.danke-ic { width: 78px; height: 78px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--mc-gelb); color: var(--dunkel); font-size: 2.6rem; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.danke h1 { font-size: 2rem; margin: 0 0 .8rem; }
.danke p { font-size: 1.08rem; color: #374151; }
.danke-kontakt { font-size: 1rem; margin: 1rem 0 1.8rem; }
.danke .hero-cta { justify-content: center; }
.danke .btn-ghost { color: var(--dunkel); border-color: var(--dunkel); }
.danke .btn-ghost:hover { background: rgba(0,0,0,.06); color: var(--dunkel); }

/* ------------------------------------------------------------- Rechtstexte */
.rechts { max-width: 820px; margin: 0 auto; padding: 2.2rem 1.25rem 3rem; }
.rechts-in { background: var(--karte); border: 1px solid var(--rand); border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--schatten); }
.rechts h3 { margin: 1.4rem 0 .4rem; font-size: 1.1rem; }
.rechts h3:first-child { margin-top: 0; }
.rechts p, .rechts li { color: #374151; }

/* ------------------------------------------------------------------ Footer */
.pub-foot { background: var(--dunkel); color: #cfcfcf; margin-top: 2rem; }
.pub-foot-in { max-width: var(--wrap); margin: 0 auto; padding: 2.6rem 1.25rem 1.6rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.6rem; }
.pub-foot-logo { height: 42px; background: #fff; border-radius: 8px; padding: 6px 10px; margin-bottom: .8rem; }
.pub-foot h4 { color: #fff; margin: 0 0 .5rem; font-size: 1rem; }
.pub-foot p { margin: 0; font-size: .94rem; line-height: 1.7; }
.pub-foot a { color: var(--mc-gelb); text-decoration: none; }
.pub-foot a:hover { text-decoration: underline; }
.pub-foot-bar { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 1rem; font-size: .85rem; color: #9a9a9a; }

/* ------------------------------------------------------- Inhaltsseiten */
.inhalt { max-width: 880px; margin: 0 auto; padding: 2.6rem 1.25rem 1rem; }
.inhalt-in h2 { font-size: 1.9rem; margin: 0 0 1rem; }
.lead { font-size: 1.12rem; color: #374151; }

.berufe { max-width: var(--wrap); margin: 0 auto; padding: 1.5rem 1.25rem 2rem; }
.berufe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; }
.beruf-card { background: var(--karte); border: 1px solid var(--rand); border-top: 4px solid var(--mc-rot); border-radius: var(--radius); padding: 1.4rem 1.4rem; box-shadow: var(--schatten); }
.beruf-dauer { display: inline-block; background: var(--mc-gelb); color: var(--dunkel); font-weight: 700; font-size: .82rem; padding: .25rem .7rem; border-radius: 999px; margin-bottom: .7rem; }
.beruf-card h3 { margin: 0 0 .4rem; font-size: 1.18rem; color: var(--dunkel); }
.beruf-card p { margin: 0; color: var(--text-dezent); font-size: .96rem; }

.karriereweg { max-width: 880px; margin: 0 auto; padding: 1.5rem 1.25rem 2.5rem; }
.kw-in h2 { font-size: 1.9rem; margin: 0 0 .6rem; }
.kw-steps { list-style: none; counter-reset: kw; margin: 1.2rem 0 0; padding: 0; }
.kw-steps li { display: flex; gap: 1rem; align-items: flex-start; padding: 0 0 1.1rem; position: relative; }
.kw-num { flex: 0 0 auto; min-width: 52px; height: 52px; padding: 0 .5rem; border-radius: 999px; background: var(--dunkel); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.kw-steps li div { padding-top: .25rem; color: #374151; }

.mehr-link { display: inline-block; margin-top: .6rem; font-weight: 700; color: var(--mc-rot); text-decoration: none; }
.mehr-link:hover { text-decoration: underline; }

/* ------------------------------------------------------ Hover & Reveal */
.usp-card, .modell-card, .schritt, .beruf-card { transition: transform .14s ease, box-shadow .25s ease; }
.usp-card:hover, .modell-card:hover, .schritt:hover, .beruf-card:hover { transform: translateY(-4px); box-shadow: var(--schatten-stark); }

.pub.has-js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.pub.has-js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .pub.has-js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .pub-burger { display: inline-block; }
  .pub-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 3px solid var(--mc-gelb); padding: .5rem; gap: .15rem;
    box-shadow: 0 10px 24px rgba(0,0,0,.12); display: none;
  }
  .pub-nav.open { display: flex; }
  .pub-nav a.pub-login { margin: .3rem 0 0; text-align: center; }
}
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-logo { order: -1; justify-content: flex-start; }
  .hero-arch { width: 150px; }
  .hero-mc-logo { width: 132px; }
  .ueber-in { grid-template-columns: 1fr; }
  .prozess-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .fakten-in { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .pub-foot-in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .bw-grid { grid-template-columns: 1fr; }
  .pub-foot-in { grid-template-columns: 1fr; }
  .hero-in { padding: 2.6rem 1.25rem; }
}

/* --------------------------------- Stilisierte Berlin-Karte (hell & bunt) */
.berlin-map-wrap { max-width: 840px; margin: 0 auto 2.2rem; }
.berlin-map { width: 100%; height: auto; display: block;
  background: linear-gradient(160deg, #eaf3fb 0%, #dfeaf6 100%);
  border: 1px solid var(--rand); border-radius: var(--radius); box-shadow: var(--schatten); }
.bm-district { stroke: #ffffff; stroke-width: 2; transition: filter .15s ease; }
.bm-district:hover { filter: brightness(1.08); }
.bm-districts path:nth-child(1)  { fill: #f6c453; }
.bm-districts path:nth-child(2)  { fill: #f49b8b; }
.bm-districts path:nth-child(3)  { fill: #8fd0a6; }
.bm-districts path:nth-child(4)  { fill: #8ec5f0; }
.bm-districts path:nth-child(5)  { fill: #c4a6e8; }
.bm-districts path:nth-child(6)  { fill: #f4a261; }
.bm-districts path:nth-child(7)  { fill: #7fd1c4; }
.bm-districts path:nth-child(8)  { fill: #f7b2d9; }
.bm-districts path:nth-child(9)  { fill: #bcd98c; }
.bm-districts path:nth-child(10) { fill: #ffd29b; }
.bm-districts path:nth-child(11) { fill: #a9c5ea; }
.bm-districts path:nth-child(12) { fill: #e7b59c; }
.bm-pin { cursor: pointer; }
.bm-pin-inner { transform-origin: 0 0; transition: transform .12s ease; }
.bm-pin:hover .bm-pin-inner { transform: scale(1.16); }
.bm-pin-body { fill: var(--mc-rot); }
.bm-pin:hover .bm-pin-body { fill: var(--mc-rot-d); }
.bm-pin-head { fill: #ffffff; }
.bm-pin-m { stroke: var(--mc-gelb); }
.bm-pin-label { fill: #1a1a1a; font: 800 15px system-ui, -apple-system, "Segoe UI", sans-serif;
  paint-order: stroke; stroke: #ffffff; stroke-width: 4.5px; stroke-linejoin: round;
  opacity: 0; pointer-events: none; transition: opacity .12s ease; }
.bm-pin:hover .bm-pin-label { opacity: 1; }
.berlin-map-titel { text-align: center; font-weight: 800; font-size: 1.2rem; color: var(--dunkel); margin: 0 0 .8rem; }
.bm-district-label { fill: rgba(22,22,22,.66); font: 600 12.5px system-ui, -apple-system, "Segoe UI", sans-serif;
  paint-order: stroke; stroke: rgba(255,255,255,.85); stroke-width: 3px; stroke-linejoin: round; pointer-events: none; }
.berlin-picker { cursor: crosshair; }
.bm-pickpin { pointer-events: none; }

/* ------------------------------------------------ Login / Auth (öffentlich) */
.pub-auth { max-width: 480px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.pub-auth-card { background: var(--karte); border: 1px solid var(--rand);
  border-radius: var(--radius); box-shadow: var(--schatten-stark); padding: 2rem 1.8rem; }
.pub-auth-head { text-align: center; margin-bottom: 1.4rem; }
.pub-auth-logo { width: 76px; height: auto; border-radius: 15px; display: block;
  margin: 0 auto .9rem; box-shadow: 0 6px 16px rgba(0,0,0,.2); }
.pub-auth-head h1 { font-size: 1.6rem; margin: 0 0 .4rem; }
.pub-auth-head p { margin: 0; color: var(--text-dezent); font-size: .95rem; }
.pub-auth-form { display: flex; flex-direction: column; gap: .9rem; }
.pub-auth-form label { display: flex; flex-direction: column; gap: .3rem; font-weight: 600; font-size: .92rem; color: #344054; }
.pub-auth-form input { font: inherit; padding: .7rem .8rem; border: 1px solid var(--rand); border-radius: var(--radius-sm); background: #fff; }
.pub-auth-form input:focus { outline: 2px solid var(--mc-gelb); border-color: var(--mc-gelb-d); }
.pub-auth-hint { color: var(--text-dezent); font-weight: 500; font-size: .82rem; }
.btn-full { width: 100%; text-align: center; margin-top: .4rem; }
.pub-auth-links { text-align: center; margin: 1.1rem 0 0; font-size: .92rem; color: var(--text-dezent); }
.pub-auth-zurueck { text-align: center; margin: 1.1rem 0 0; }
.pub-auth-zurueck a { color: var(--text-dezent); text-decoration: none; font-weight: 600; }
.pub-auth-zurueck a:hover { color: var(--mc-rot); }
