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

/* ==========================================================================
   Praxis für Sprachtherapie Claudia Varriale
   ========================================================================== */

:root {
  --dark: #16302B;
  --dark-2: #1E3E38;
  --cream: #F8F4EC;
  --paper: #FFFFFF;
  --coral: #E8794F;
  --coral-dark: #C85A32;
  --navy: #232C74;
  --ink: #1C2420;
  --muted: #5B6863;
  --line: #E4DECF;
  --line-dark: rgba(255,255,255,0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 45px -25px rgba(22,48,43,0.35);
  --maxw: 1180px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  color-scheme: light;
  forced-color-adjust: none;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 1.2em; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; color: var(--dark); }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--dark { background: var(--dark); color: var(--cream); }
.section--dark h2, .section--dark h3 { color: var(--paper); }
.section--dark .muted { color: rgba(248,244,236,0.72); }
.section--cream { background: var(--cream); }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral-dark);
  margin-bottom: 0.9em;
}
.section--dark .eyebrow { color: #F2B08F; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }
.section--dark .lead { color: rgba(248,244,236,0.82); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline { border-color: var(--dark); color: var(--dark); background: transparent; }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-outline-light { border-color: rgba(248,244,236,0.55); color: var(--paper); background: transparent; }
.btn-outline-light:hover { background: rgba(248,244,236,0.12); border-color: var(--paper); }
.btn-light { background: var(--paper); color: var(--dark); }
.btn-light:hover { background: var(--cream); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,244,236,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; color: var(--dark); font-size: 1.05rem; line-height: 1.2; }
.brand img { height: 40px; width: auto; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; }
.nav-main { display: flex; align-items: center; gap: 28px; }
.nav-main a { font-weight: 600; font-size: 0.95rem; color: var(--ink); padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-main a:hover, .nav-main a.active { border-bottom-color: var(--coral); }
.nav-main a.nav-career { color: var(--coral-dark); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--dark); font-size: 0.92rem; }
.nav-toggle { display: none; }

.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.2em; }
.breadcrumb a { color: var(--muted); border-bottom: 1px solid var(--line); }
.breadcrumb a:hover { color: var(--coral-dark); }

/* Hero */
.hero { padding: 68px 0 56px; background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 0.4em; }
.hero .lead { margin-bottom: 1.6em; }
.hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-media > img, .hero-media > picture, .hero-media > picture > img { width: 100%; height: 100%; min-height: 340px; display: block; object-fit: cover; }
.hero-media--legacy { aspect-ratio: 4 / 3; background: #fff; }
.hero-media--legacy img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.career-strip { background: linear-gradient(100deg, #fff 0%, var(--cream) 55%, #f4dfd2 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.career-strip__inner { display: flex; justify-content: space-between; align-items: center; gap: 36px; padding-top: 34px; padding-bottom: 34px; }
.career-strip h2 { margin: 0 0 5px; font-size: clamp(1.35rem, 2.4vw, 2rem); }
.career-strip h2 span { color: var(--coral-dark); }
.career-strip p:last-child { margin: 0; color: var(--muted); font-size: .96rem; }
.audience-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.6em 0; }
.pill { display: inline-flex; align-items: center; padding: 8px 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--dark-2); }

/* Page header (subpages) */
.page-header { padding: 44px 0 40px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-header h1 { margin-bottom: 0.3em; }
.page-header-illustrated { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: center; }
.legacy-motif-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 180px)); gap: 14px; }
.legacy-motif-card { margin: 0; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: 0 14px 34px -26px rgba(22,48,43,.5); }
.legacy-motif-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; background: #fff; border-radius: 6px; }
.legacy-motif-card figcaption { padding: 8px 4px 3px; color: var(--dark); font-size: .73rem; font-weight: 700; line-height: 1.35; }

/* Stat / trust bar */
.stat-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-item { text-align: center; padding: 6px 8px; }
.stat-item strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--dark); }
.section--dark .stat-item strong { color: var(--paper); }
.stat-item span { font-size: 0.85rem; color: var(--muted); }
.section--dark .stat-item span { color: rgba(248,244,236,0.72); }

/* Grid utilities */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .15s ease, box-shadow .15s ease;
}
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card .card-icon { font-size: 1.6rem; }
.card h3 { margin-bottom: 0.2em; }
.card p { color: var(--muted); margin-bottom: 0; font-size: 0.96rem; }
.card .card-link { margin-top: auto; font-weight: 700; color: var(--coral-dark); font-size: 0.9rem; }

.service-card-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); background: rgba(35,44,116,0.08); padding: 4px 10px; border-radius: 999px; margin-bottom: 4px; }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--cream); position: relative; }
.gallery figure picture { display: block; width: 100%; height: 100%; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.gallery figure.tall img { aspect-ratio: 3/4; }
.gallery figure video { width: 100%; height: 100%; min-height: 260px; display: block; object-fit: cover; background: var(--dark); }
.gallery figure.media-video { min-height: 260px; }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 10px 12px; font-size: 0.72rem; background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent); color: #fff; opacity: 0; transition: opacity .15s ease; }
.gallery figure:hover figcaption { opacity: 1; }

/* Team */
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.team-photo { aspect-ratio: 4/5; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.85rem; text-align: center; border-bottom: 1px solid var(--line); overflow: hidden; position: relative; }
.team-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.team-photo--dog { flex-direction: column; gap: 26px; color: var(--dark); background: radial-gradient(circle at 74% 18%, rgba(238,116,82,.18) 0 18%, transparent 18.5%), linear-gradient(145deg, #f8f2e8 0%, #eee4d3 58%, #e4d7c3 100%); }
.team-photo--dog::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(22,54,45,.16); border-radius: 46% 54% 48% 52% / 52% 44% 56% 48%; transform: rotate(-7deg); }
.team-photo-label { position: relative; z-index: 1; font-family: "Fraunces", Georgia, serif; font-size: clamp(1.2rem, 2.2vw, 1.65rem); font-weight: 600; }
.paw-mark { position: relative; z-index: 1; display: block; width: 112px; height: 104px; transform: rotate(-4deg); }
.paw-mark i, .paw-mark b { position: absolute; display: block; background: var(--navy); }
.paw-mark i { width: 25px; height: 34px; border-radius: 50%; }
.paw-mark i:nth-child(1) { left: 5px; top: 28px; transform: rotate(-28deg); }
.paw-mark i:nth-child(2) { left: 31px; top: 3px; transform: rotate(-10deg); }
.paw-mark i:nth-child(3) { right: 30px; top: 3px; transform: rotate(10deg); }
.paw-mark i:nth-child(4) { right: 4px; top: 28px; transform: rotate(28deg); }
.paw-mark b { width: 68px; height: 57px; left: 22px; bottom: 0; border-radius: 54% 54% 48% 48% / 62% 62% 38% 38%; transform: rotate(180deg); }
.team-body { padding: 22px; }
.team-role { color: var(--coral-dark); font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; }
.badge-pending { display: inline-block; font-size: 0.7rem; font-weight: 700; color: #9a5b12; background: #FBEBD3; border: 1px solid #F0D5A6; padding: 3px 9px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }
.badge-pending--dark { margin: 4px 0 0; background: rgba(251,235,211,.12); border-color: rgba(242,176,143,.45); color: #F6C6AA; }

/* Notice / callout boxes */
.notice { border-radius: var(--radius-sm); padding: 20px 22px; border: 1px solid var(--line); background: var(--cream); font-size: 0.94rem; }
.notice strong { color: var(--dark); }
.notice--review { background: #FFF6E9; border-color: #F0D5A6; color: #6b4a12; }
.notice--review strong { color: #6b4a12; }

/* CTA banner (career teaser) */
.cta-banner {
  background: var(--dark);
  color: var(--cream);
  border-radius: 24px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(232,121,79,0.35), transparent 70%);
}
.cta-banner h2 { color: #fff; }
.cta-banner > div > img { width: 100%; max-height: 380px; display: block; object-fit: cover; }
.cta-banner .claim { font-family: var(--font-head); font-size: 1.5rem; color: var(--paper); }
.cta-banner .highlight { color: var(--coral); }

/* Benefit chip grid */
.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px; display: flex; gap: 12px; align-items: flex-start;
}
.chip .chip-icon { font-size: 1.4rem; line-height: 1; }
.chip h4 { margin: 0 0 4px; font-size: 1rem; color: var(--dark); font-family: var(--font-body); font-weight: 700; }
.chip p { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* Career details */
.career-pay-highlight {
  max-width: 660px; margin-top: 24px; padding: 18px 20px;
  border: 1px solid rgba(242,176,143,.45); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07); box-shadow: 0 18px 38px -32px rgba(0,0,0,.8);
}
.career-pay-highlight span { display: block; color: #F2B08F; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.career-pay-highlight strong { display: block; margin-top: 5px; color: #fff; font-family: var(--font-head); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.15; }
.career-pay-highlight small { display: block; margin-top: 8px; color: rgba(248,244,236,.76); font-size: .82rem; line-height: 1.5; }
.career-pay-range { margin: 12px 0 18px; color: var(--coral); font-family: var(--font-head); font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 600; line-height: .95; }
.career-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.career-fact { padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: 0 12px 30px -28px rgba(22,48,43,.55); }
.career-fact--pay { background: linear-gradient(145deg, #fff8ef 0%, #fdf0df 100%); border-color: #efd3aa; }
.career-fact strong { display: block; color: var(--dark); font-family: var(--font-head); font-size: 1.08rem; line-height: 1.25; }
.career-fact span { display: block; margin-top: 3px; color: var(--muted); font-size: .82rem; }
.career-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.career-benefit { display: flex; align-items: flex-start; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 18px 38px -34px rgba(22,48,43,.55); }
.career-benefit--accent { background: linear-gradient(145deg, #fff8ef 0%, #fdf0df 100%); border-color: #efd3aa; }
.career-benefit__icon { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); font-size: 1.25rem; }
.career-benefit--accent .career-benefit__icon { background: #fff; }
.career-benefit h3 { margin: 0 0 6px; font-size: 1.14rem; }
.career-benefit p { margin: 0; color: var(--muted); font-size: .92rem; }
.career-subheading { margin-top: 54px; }
.career-open-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.career-open-items > div { padding: 18px 20px; border: 1px solid #ecd3ac; border-radius: var(--radius-sm); background: #fff8ec; }
.career-open-items strong { display: block; color: var(--dark); }
.career-open-items span { display: block; margin-top: 3px; color: var(--muted); font-size: .86rem; }
.career-pay-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 54px; align-items: start; }
.salary-example-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.salary-example { padding: 24px; border: 1px solid rgba(248,244,236,.2); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.salary-example--accent { border-color: rgba(232,121,79,.65); background: rgba(232,121,79,.11); }
.salary-example--target { grid-column: 1 / -1; }
.salary-example > span { color: #F2B08F; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.salary-example h3 { margin: 7px 0 8px; color: #fff; font-size: 1.12rem; }
.salary-example__revenue { margin: 0 0 18px; color: rgba(248,244,236,.72); font-size: .86rem; }
.salary-example dl { display: grid; gap: 9px; margin: 0; }
.salary-example dl div { display: flex; justify-content: space-between; gap: 16px; padding-top: 9px; border-top: 1px solid rgba(248,244,236,.14); }
.salary-example dt { color: rgba(248,244,236,.7); }
.salary-example dd { margin: 0; color: #fff; font-family: var(--font-head); font-size: 1.12rem; font-weight: 700; }
.salary-note { margin: 28px 0 0; padding-top: 20px; border-top: 1px solid rgba(248,244,236,.17); color: rgba(248,244,236,.68); font-size: .78rem; line-height: 1.6; }
.salary-note a { color: #F2B08F; text-decoration: underline; text-underline-offset: 3px; }
.career-reentry { max-width: 850px; margin-top: 54px; padding-top: 44px; border-top: 1px solid rgba(248,244,236,.17); }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; }
.step-num {
  counter-increment: step; width: 52px; height: 52px; border-radius: 50%;
  background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
}
.step h4 { margin: 0 0 4px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Content / prose (Leistungen detail) */
.prose { max-width: 74ch; }
.prose h3 { margin-top: 1.6em; }
.prose ul { color: var(--ink); }
.prose li { margin-bottom: 0.4em; }
.detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.side-card { background: var(--cream); border-radius: var(--radius); padding: 26px; position: sticky; top: 96px; border: 1px solid var(--line); }
.side-card h4 { margin-bottom: 0.6em; }
.side-card ul { list-style: none; padding: 0; margin: 0 0 1.2em; }
.side-card li { margin-bottom: 8px; }
.side-card a.side-link { font-size: 0.9rem; font-weight: 600; color: var(--dark-2); }
.side-card a.side-link:hover { color: var(--coral-dark); }

/* FAQ style overview list */
.accordion-list { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); padding: 22px 0; }

/* Contact info list */
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.info-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; }
.info-list .ic { font-size: 1.2rem; }
.info-list a { font-weight: 700; color: var(--dark); }
.info-list a:hover { color: var(--coral-dark); }

/* Contact form */
.contact-form-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 64px; align-items: start; }
.contact-form-note { margin-top: 28px; background: rgba(255,255,255,.58); }
.contact-form-note p { margin: 7px 0 0; color: var(--muted); }
.contact-form { position: relative; display: grid; gap: 20px; padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field label { font-weight: 700; color: var(--dark); font-size: .9rem; }
.form-field .optional { color: var(--muted); font-weight: 500; font-size: .78rem; margin-left: 5px; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid #cfc7b7; border-radius: 9px; padding: 12px 14px; background: #fff; color: var(--ink); font: inherit; line-height: 1.45; }
.form-field textarea { resize: vertical; min-height: 170px; }
.form-field input:focus, .form-field textarea:focus { outline: 3px solid rgba(232,121,79,.22); border-color: var(--coral-dark); }
.form-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--coral-dark); }
.form-consent a { color: var(--dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.form-required { margin: -6px 0 -4px; color: var(--muted); font-size: .78rem; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { border-radius: 9px; padding: 14px 16px; font-size: .9rem; font-weight: 600; }
.form-status:focus { outline: 3px solid rgba(35,44,116,.22); }
.form-status--success { background: #e7f4ed; border: 1px solid #add2bc; color: #215c3a; }
.form-status--error { background: #fff0ec; border: 1px solid #efb5a5; color: #7b2d1c; }
.form-status--error a { text-decoration: underline; }

/* Footer */
.site-footer { background: var(--dark); color: rgba(248,244,236,0.85); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { font-size: 0.92rem; color: rgba(248,244,236,0.8); }
.footer-grid a:hover { color: var(--coral); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 34px; width: auto; }
.footer-brand span { font-family: var(--font-head); font-size: 1.05rem; color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(248,244,236,0.6); }
.footer-bottom a { color: rgba(248,244,236,0.75); }
.footer-bottom a:hover { color: var(--coral); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(248,244,236,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.socials a:hover { background: var(--coral); border-color: var(--coral); }

/* Map link box */
.map-box { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; border: 1px solid var(--line); border-bottom: 0; }
.map-box img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.map-box iframe { width: 100%; height: 320px; border: 0; display: block; }
.route-card { padding: 28px; background: var(--cream); border: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius); }
.route-card .eyebrow { margin-bottom: 8px; }
.route-card h2 { font-size: 1.65rem; margin-bottom: 8px; }
.route-card > p:not(.eyebrow):not(.route-privacy) { margin-bottom: 20px; }
.route-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.route-actions .btn { padding: 11px 17px; font-size: .88rem; }
.route-alt-link { display: inline-block; color: var(--dark); font-size: .86rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.route-alt-link:hover { color: var(--coral-dark); }
.route-privacy { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; line-height: 1.55; }

/* Utility */
.sr-only { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.sr-only:focus { position: fixed; left: 16px; top: 16px; width: auto; height: auto; z-index: 999; background: #fff; padding: 10px 16px; border-radius: 8px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: grid; gap: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; }
hr.rule { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }

/* Mobile nav */
.mobile-nav { display: none; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .career-strip__inner { align-items: flex-start; flex-direction: column; }
  .two-col { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .cta-banner { grid-template-columns: 1fr; padding: 36px 28px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .career-facts { grid-template-columns: repeat(2, 1fr); }
  .career-pay-layout { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-layout { grid-template-columns: 1fr; gap: 36px; }
  .page-header-illustrated { grid-template-columns: 1fr; gap: 28px; }
  .legacy-motif-pair { grid-template-columns: repeat(2, minmax(0, 180px)); }
}

@media (max-width: 720px) {
  .nav-main { display: none; }
  .header-phone span.phone-label { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; font-size: 1.1rem; }
  .mobile-nav {
    display: none;
    position: fixed; inset: 0; z-index: 200; background: var(--dark); color: #fff;
    padding: 26px 24px; flex-direction: column; gap: 4px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { font-family: var(--font-head); font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: #fff; }
  .mobile-nav .mobile-nav-close { align-self: flex-end; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 1.1rem; background: transparent; color: #fff; }
  .mobile-nav .btn { margin-top: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr; }
  .career-facts, .career-benefits, .career-open-items { grid-template-columns: 1fr; }
  .salary-example-grid { grid-template-columns: 1fr; }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .route-card { padding: 24px 20px; }
  .route-actions { align-items: stretch; flex-direction: column; }
  .route-actions .btn { justify-content: center; white-space: normal; text-align: center; }
  .legacy-motif-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .legacy-motif-card figcaption { font-size: .68rem; }
  h1 { font-size: 2.1rem; }
  .cta-banner { border-radius: 18px; }
}

@media (hover: none) {
  .gallery figcaption { opacity: 1; }
}

/* Team-Platzhalter */
.team-photo-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: #5B6863;
  background: #F5F1E8;
  border-top: 1px solid #E4DECF;
  text-align: center;
}
.team-photo img[src$=".svg"] { background: #F5F1E8; }

/* WhatsApp als Bewerbungskanal.
   Markengrün mit dunkler Schrift: 8:1 Kontrast, damit der Button auch bei
   Sonnenlicht auf dem Handy lesbar bleibt. Weiß auf Grün schafft nur 2:1. */
.btn-whatsapp {
  background: #25D366;
  color: #0B2E20;
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-whatsapp:hover { background: #1FBE5A; border-color: #1FBE5A; color: #0B2E20; }
.btn-whatsapp .wa-icon { flex: 0 0 auto; }
.wa-note { font-size: 0.86rem; line-height: 1.55; margin: 12px 0 0; max-width: 46em; }
.wa-note--light { color: rgba(248,244,236,0.72); }
.wa-note--light a { color: rgba(248,244,236,0.92); text-decoration: underline; }
.wa-note a { text-decoration: underline; }

/* Urhebernennung an Bildern.
   Klein und ruhig, aber nicht kleiner: Eine Nennung, die niemand lesen kann,
   erfuellt § 13 UrhG nicht. */
.bildnachweis {
  margin: 14px 0 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--muted);
}
.bildnachweis a { color: var(--muted); border-bottom: 1px solid var(--line); }
.bildnachweis a:hover { color: var(--coral-dark); border-bottom-color: var(--coral); }
