/* =========================================================
   Neue Eilbeker Apotheke - gemeinsames Stylesheet
   Design-System: Kontor-Blau / Apotheken-Rot, Cormorant Garamond + Atkinson Hyperlegible
   ========================================================= */

:root {
  --paper: #F4F6F8;
  --ink: #14213A;
  --body-text: #3D4653;
  --muted: #6B7684;

  --blue: #0047AB;
  --blue-deep: #0A2F63;
  --blue-tint: #E7EEF8;

  --red: #E63329;
  --red-strong: #A81F17;

  --gold: #C9A84C;

  --border: #DCE3E9;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Atkinson Hyperlegible', 'Segoe UI', system-ui, sans-serif;

  --nav-h: 152px;
  --subnav-h: 56px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--white); color: var(--blue); padding: 12px 18px;
  border-radius: 0 0 6px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--red-strong); outline-offset: 2px;
}

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

/* ---------------- Inhalt ist immer sofort sichtbar ----------------
   Bewusster Verzicht auf Scroll-Reveal-Animationen: Inhalte dürfen auf
   einer Apothekenseite nie von JavaScript abhängen, um lesbar zu werden.
   Das schützt vor Bedienfehlern bei schnellem Scrollen, Screenreadern,
   Druckansichten und jedem JS-Fehler. Motion bleibt dadurch restriktiv
   und barrierefrei (BFSG-konform). */

/* ---------------- Kopfzeile: Logo + Öffnungszeiten ---------------- */
.topbar {
  position: sticky; top: 0; z-index: 500;
  background: var(--blue-deep);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-inline: clamp(16px, 4vw, 40px);
}
.topbar-logo { display: flex; align-items: center; height: 100%; padding-block: 28px; }
.topbar-logo img {
  height: 96px; width: auto; object-fit: contain;
  background: rgba(255,255,255,.95); border-radius: 6px; padding: 6px 12px;
}
@media (max-width: 520px) {
  .topbar-logo img { height: 72px; }
}

.hamburger-btn {
  display: none;
  flex: none; width: 44px; height: 44px; border-radius: 6px;
  background: rgba(255,255,255,.08); border: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger-btn span { width: 22px; height: 2px; background: #fff; display: block; transition: transform .2s, opacity .2s; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hours-widget { position: relative; flex: none; color: #fff; }
.hours-widget summary {
  list-style: none; display: flex; align-items: center; gap: 10px;
  font-size: .95rem; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.hours-widget summary::-webkit-details-marker { display: none; }
.hours-widget summary:hover { background: rgba(255,255,255,.16); }
.hours-dot { width: 9px; height: 9px; border-radius: 50%; background: #5FD8A6; flex: none; }
.hours-dot.zu { background: #FF9188; }
.hours-widget[open] summary { background: rgba(255,255,255,.16); }

.hours-panel {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--white); color: var(--body-text);
  width: 260px; border-radius: 8px; padding: 18px 20px;
  box-shadow: 0 20px 50px rgba(10,20,40,.25);
  z-index: 600;
}
.hours-panel-title {
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin: 0 0 10px;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours-table td { padding: 6px 2px; border-bottom: 1px solid var(--border); font-variant-numeric: tabular-nums; }
.hours-table td:last-child { text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr[data-today] td { color: var(--blue); font-weight: 700; }

/* ---------------- Zweite Zeile: Hauptnavigation ---------------- */
/* flex-wrap:wrap statt horizontalem Scrollen: overflow-x:auto hätte laut
   CSS-Spec automatisch auch overflow-y auf "auto" gesetzt (die beiden Achsen
   lassen sich nicht getrennt auf "sichtbar" vs. "scrollbar" stellen), und
   das hat die absolut positionierten Dropdown-Menüs der Sub-Punkte vertikal
   abgeschnitten/unsichtbar gemacht (Pfeil dreht sich, Panel bleibt leer,
   browserübergreifend). Bei Platzmangel bricht die Zeile stattdessen einfach
   um, das Dropdown bleibt dabei uneingeschränkt sichtbar. */
.subnav {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 4px; row-gap: 6px; flex-wrap: wrap;
  padding-inline: clamp(16px, 4vw, 40px);
  min-height: var(--subnav-h);
}
.header-sticky .subnav {
  position: sticky; top: var(--nav-h); z-index: 490;
}
.subnav-link {
  font-size: 1.38rem; font-weight: 500; color: var(--ink);
  padding: 8px 12px; border-radius: 6px; white-space: nowrap;
}
.subnav-link:hover { background: var(--blue-tint); color: var(--blue); }
.subnav-link.accent { color: var(--red-strong); font-weight: 700; }

.subnav details { position: relative; }
.subnav summary { list-style: none; display: flex; align-items: center; gap: 5px; }
.subnav summary::-webkit-details-marker { display: none; }
.subnav summary .chevron { transition: transform .2s; }
.subnav details[open] summary .chevron { transform: rotate(180deg); }
.subnav .dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 20px 50px rgba(10,20,40,.15);
  min-width: 240px; padding: 8px; z-index: 600;
}
.subnav .dropdown a { display: block; padding: 10px 12px; border-radius: 6px; font-size: 1.35rem; color: var(--body-text); }
.subnav .dropdown a:hover { background: var(--blue-tint); color: var(--blue); }
.subnav .ml-auto { margin-left: auto; }

.mobile-nav { display: none; }

@media (max-width: 900px) {
  .subnav { display: none; }
  .hamburger-btn { display: flex; }
  .hours-widget summary .hours-label { display: none; }

  .mobile-nav {
    display: none;
    flex-direction: column; gap: 2px;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 10px clamp(16px, 4vw, 40px) 18px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a, .mobile-nav summary {
    padding: 12px 8px; font-size: 1.5rem; color: var(--ink); border-bottom: 1px solid var(--border);
  }
  .mobile-nav summary { list-style: none; display: flex; justify-content: space-between; align-items: center; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav .mnav-sub { padding-left: 14px; }
  .mobile-nav .mnav-sub a { border-bottom: none; padding-block: 8px; color: var(--muted); }
}

/* ---------------- Buttons (global) ---------------- */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 1.47rem;
  padding: 14px 26px; border-radius: 6px; min-height: 44px;
  display: inline-flex; align-items: center; gap: 8px; border: 2px solid transparent;
}
.btn-primary { background: var(--red-strong); color: #fff; }
.btn-primary:hover { background: var(--red); }
.btn-secondary { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-secondary:hover { background: var(--blue-tint); }
.btn-white { background: #fff; color: var(--blue-deep); }
.btn-white:hover { background: var(--blue-tint); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(48px, 7vw, 88px) clamp(16px, 4vw, 40px) clamp(56px, 8vw, 96px);
  max-width: var(--max); margin-inline: auto;
  overflow: hidden;
}
.hero-blob {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(2px);
  background: radial-gradient(circle at 30% 30%, var(--blue-tint), transparent 70%);
}
.hero-blob.a { width: 480px; height: 480px; top: -140px; left: -160px; }
.hero-blob.b { width: 320px; height: 320px; bottom: -120px; left: 30%; background: radial-gradient(circle at 30% 30%, #FBEAE8, transparent 70%); }

.hero-copy { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 1.23rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin: 0 0 18px;
}
.hero-title {
  font-family: var(--font-display); font-weight: 300; color: var(--ink);
  font-size: clamp(2.4rem, 3.2vw + 1.2rem, 3.8rem);
  line-height: 1.08; letter-spacing: -.01em; margin: 0 0 20px;
  text-wrap: balance;
}
.hero-title em { font-style: italic; font-weight: 500; color: var(--blue); }
.hero-sub { font-size: 1.15rem; color: var(--body-text); margin: 0 0 32px; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-image-wrap {
  position: relative; z-index: 1;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(10,20,40,.18);
  aspect-ratio: 8 / 5;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.hero-image-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,47,99,0) 55%, rgba(10,47,99,.55) 100%); }
.hero-image-caption { position: absolute; left: 18px; bottom: 14px; z-index: 2; color: #fff; font-size: .85rem; font-weight: 400; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; }
}

/* ---------------- USP-Leiste ---------------- */
.features {
  max-width: var(--max); margin-inline: auto;
  padding: 0 clamp(16px, 4vw, 40px) clamp(56px, 8vw, 96px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card { display: flex; flex-direction: column; gap: 12px; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--blue-tint); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.feature-title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.feature-text { font-size: .95rem; color: var(--muted); margin: 0; }

@media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features { grid-template-columns: 1fr; } }

/* ---------------- Section-Head (generisch) ---------------- */
section { padding: clamp(56px, 8vw, 100px) clamp(16px, 4vw, 40px); max-width: var(--max); margin-inline: auto; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-eyebrow { font-size: 1.23rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red-strong); font-weight: 700; margin: 0 0 10px; }
.section-title { font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: clamp(1.9rem, 2vw + 1.2rem, 2.7rem); line-height: 1.15; margin: 0 0 14px; }
.section-sub { font-size: 1.05rem; color: var(--muted); margin: 0; max-width: 60ch; }

/* ---------------- About ---------------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; background: var(--white); }
.about-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
.about-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-accent { position: absolute; inset: 0; box-shadow: inset 0 0 0 3px rgba(255,255,255,.25); pointer-events: none; }
.about-eyebrow { font-size: 1.23rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red-strong); font-weight: 700; margin: 0 0 14px; }
.about-title { font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: clamp(1.9rem, 2vw + 1.2rem, 2.6rem); line-height: 1.15; margin: 0 0 20px; }
.about-body { font-size: 1.02rem; margin: 0 0 16px; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } }

/* ---------------- Leistungen / Pakete ---------------- */
.pakete-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.paket { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; }
.paket-name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
.paket-desc { font-size: .96rem; color: var(--body-text); margin: 0 0 4px; }
.paket-divider { height: 1px; background: var(--border); margin: 18px 0; }
.paket-list { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 1.35rem; }
.paket-list li { padding-left: 18px; position: relative; }
.paket-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.paket-btn { margin-top: 20px; display: inline-block; text-align: center; padding: 12px 20px; border-radius: 6px; background: var(--blue-tint); color: var(--blue); font-weight: 700; font-size: .92rem; }
.paket-btn:hover { background: var(--blue); color: #fff; }
.paket.featured { background: var(--blue-deep); color: rgba(255,255,255,.92); }
.paket.featured .paket-name { color: #fff; }
.paket.featured .paket-desc { color: rgba(255,255,255,.8); }
.paket.featured .paket-divider { background: rgba(255,255,255,.18); }
.paket.featured .paket-list li::before { background: var(--gold); }
.paket.featured .paket-btn { background: var(--gold); color: var(--blue-deep); }
.paket.featured .paket-btn:hover { background: #e8c96a; }
@media (max-width: 980px) { .pakete-grid { grid-template-columns: 1fr; } }

/* ---------------- Team ---------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.team-photo { aspect-ratio: 4/3; background: var(--blue-tint); position: relative; }
.team-photo-mono {
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 2.6rem; color: #fff;
}
.team-card > div:last-child { padding: 18px 20px 22px; }
.team-name { font-family: var(--font-display); font-weight: 600; font-size: 1.875rem; color: var(--ink); }
.team-role { font-size: 1.275rem; color: var(--red-strong); font-weight: 700; margin: 2px 0 10px; }
.team-bio { font-size: 1.38rem; color: var(--body-text); margin: 0; }
.team-cv { margin-top: 10px; }
.team-cv summary { font-size: 1.275rem; font-weight: 700; color: var(--blue); list-style: none; display: inline-flex; align-items: center; gap: 4px; }
.team-cv summary::-webkit-details-marker { display: none; }
.team-cv[open] summary { margin-bottom: 8px; }
.team-cv-sub { font-size: .82rem; color: var(--muted); margin: 2px 0 10px; }
.team-cv-row { display: flex; gap: 10px; font-size: .82rem; padding: 5px 0; border-top: 1px solid var(--border); }
.team-cv-year { flex: none; width: 84px; color: var(--blue); font-weight: 700; font-variant-numeric: tabular-nums; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------------- Portfolio / Einblicke ---------------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; background: var(--blue-deep); display: flex; align-items: center; justify-content: center; }
.portfolio-item svg { width: 48px; height: 48px; color: rgba(255,255,255,.5); }
.portfolio-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px; background: linear-gradient(0deg, rgba(10,20,40,.78), transparent); color: #fff; }
.portfolio-overlay-title { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.portfolio-overlay-sub { font-size: .82rem; color: rgba(255,255,255,.75); }
@media (max-width: 860px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ---------------- Timeline ---------------- */
.timeline-section { background: var(--blue-deep); color: rgba(255,255,255,.92); max-width: none; padding-inline: 0; }
.timeline-section .section-head { padding-inline: clamp(16px, 4vw, 40px); max-width: 720px; margin-inline: auto; text-align: left; }
.timeline-section .section-eyebrow { color: var(--gold); }
.timeline-section .section-title { color: #fff; }
.timeline-section .section-sub { color: rgba(255,255,255,.65); }
/* 35px linkes Padding: die komplette Zeitleiste (Fotos, Linie, Daten, Texte)
   ist links um 35px eingerückt; rechts/oben/unten bleibt Luft erhalten.
   scroll-padding-left in derselben Höhe ist nötig, weil Scroll-Snap (unten)
   sonst den ersten Eintrag sofort an den Container-Rand schnappt und dabei
   automatisch auf scrollLeft:35 vorspringt — der freie Platz links wäre
   dann beim Laden unsichtbar, der Scrollbalken/Thumb säße nicht ganz links. */
.timeline-scroll {
  overflow-x: auto; padding: 8px clamp(16px, 4vw, 40px) 12px 35px; scroll-snap-type: x proximity;
  scroll-padding-left: 35px;
  scrollbar-color: #fff var(--blue-deep); scrollbar-width: thin;
}
/* Scrollbalken: Hintergrund/Spur im selben Blau wie die Fläche darüber und
   darunter, der eigentliche Balken schwebt als weiße Pille darauf */
.timeline-scroll::-webkit-scrollbar { height: 10px; }
.timeline-scroll::-webkit-scrollbar-track { background: var(--blue-deep); }
.timeline-scroll::-webkit-scrollbar-thumb {
  background: #fff; border-radius: 999px; border: 2px solid var(--blue-deep); background-clip: padding-box;
}
.timeline-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.85); background-clip: padding-box; }
.timeline-track { display: flex; gap: 20px; width: max-content; position: relative; }
/* Verbindungslinie zwischen Fotos und Datumsangaben, quer über die gesamte
   Zeitleiste; am rechten Ende geht sie in eine gestrichelte Fortsetzung
   über — ein Hinweis, dass die Geschichte in Zukunft weitergeht. */
.timeline-track::before {
  content: ""; position: absolute; left: 0; top: 192px; width: 100%; height: 2px;
  background: rgba(255,255,255,.35);
}
.timeline-track::after {
  content: ""; position: absolute; left: 100%; top: 191px; width: 90px;
  border-top: 2px dashed rgba(255,255,255,.4);
}
.timeline-item { width: 240px; scroll-snap-align: start; position: relative; }
/* kleines, auf der Linie stehendes Dreieck (Spitze nach oben), zeigt mittig
   auf das Foto des jeweiligen Ereignisses */
.timeline-item::after {
  content: ""; position: absolute; left: 50%; top: 182px; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-bottom: 10px solid #fff;
}
.timeline-photo-wrap { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; background: rgba(255,255,255,.08); margin-bottom: 26px; }
.tl-thumb, .tl-big { width: 100%; height: 100%; object-fit: cover; }
.tl-year { font-weight: 700; color: var(--gold); margin-top: 0; font-variant-numeric: tabular-nums; font-size: 1.5rem; }
.tl-text { font-size: .88rem; color: rgba(255,255,255,.78); margin-top: 6px; }
.timeline-section > p { padding-inline: clamp(16px, 4vw, 40px); max-width: var(--max); margin-inline: auto; color: rgba(255,255,255,.55) !important; }

/* ---------------- Philosophie ---------------- */
.phil-intro { font-size: 1.62rem; max-width: 76ch; margin: 0 0 32px; }
.phil-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.phil-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--blue); border-radius: 10px; padding: 22px 24px; }
.phil-card-title { font-family: var(--font-display); font-weight: 600; font-size: 1.8rem; color: var(--ink); margin-bottom: 8px; }
.phil-card-text { font-size: .93rem; margin: 0; }
.phil-credo { margin-top: 40px; text-align: center; }
.phil-credo-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 24px; }
.phil-credo-item { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--blue); padding: 8px 18px; border: 1px solid var(--blue-tint); border-radius: 999px; }
.phil-leitspruch { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 1.5vw + 1rem, 1.8rem); color: var(--ink); line-height: 1.4; }
.phil-leitspruch em { display: block; font-size: .9rem; font-style: normal; color: var(--muted); margin-top: 10px; }
@media (max-width: 760px) { .phil-grid { grid-template-columns: 1fr; } .phil-grid > [style*="span 2"] { grid-column: span 1 !important; } }

/* ---------------- News ---------------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.news-card-img-wrap { position: relative; aspect-ratio: 16/10; }
.news-card-img { width: 100%; height: 100%; object-fit: cover; }
.news-card-img-top { object-position: top; }
.news-card-tag { position: absolute; top: 12px; left: 12px; background: var(--red-strong); color: #fff; font-size: .74rem; font-weight: 700; padding: 5px 10px; border-radius: 999px; }
.news-card-body { padding: 18px 20px 20px; }
.news-card-date { font-size: .8rem; color: var(--muted); font-weight: 500; }
.news-card-title { font-family: var(--font-display); font-weight: 600; font-size: 1.8rem; color: var(--ink); margin: 6px 0 8px; }
.news-card-text { font-size: .9rem; color: var(--body-text); margin: 0; }
.news-more { margin-top: 6px; }
.news-more summary { font-size: .85rem; font-weight: 700; color: var(--blue); list-style: none; }
.news-more summary::-webkit-details-marker { display: none; }
.news-more-text { font-size: .88rem; color: var(--body-text); margin-top: 10px; }
@media (max-width: 980px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------------- Testimonial ---------------- */
.testimonial { background: var(--blue-tint); max-width: none; padding-block: clamp(56px, 8vw, 96px); }
.review-carousel { max-width: 760px; margin-inline: auto; position: relative; padding-inline: 56px; }
.review-track-wrap { overflow: hidden; }
.review-track { display: flex; transition: transform .4s ease; }
.review-slide { flex: 0 0 100%; text-align: center; padding: 0 8px; }
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-quote-mark { display: none; }
.review-text { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; color: var(--ink); line-height: 1.5; margin: 0 0 14px; }
.review-author { font-size: .85rem; color: var(--muted); font-style: normal; }
.review-prev, .review-next { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-size: 1.1rem; color: var(--blue); }
.review-prev { left: 0; } .review-next { right: 0; }
.review-prev:hover, .review-next:hover { background: var(--blue); color: #fff; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.review-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); border: none; padding: 0; }
.review-dot.active { background: var(--blue); }
.review-source { text-align: center; margin-top: 18px; font-size: .85rem; color: var(--muted); }
.review-source a { color: var(--blue); font-weight: 700; }
@media (max-width: 560px) { .review-carousel { padding-inline: 44px; } .review-text { font-size: 1.1rem; } }

/* ---------------- FAQ ---------------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex: none; width: 20px; height: 20px; color: var(--blue); transition: transform .2s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a-inner { padding: 0 22px 20px; font-size: .94rem; color: var(--body-text); }

/* ---------------- Berufe ---------------- */
.berufe-intro { font-size: 1.575rem; max-width: 82ch; margin: 0 0 32px; }
.berufe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.beruf-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.beruf-card-header { background: var(--blue-deep); color: #fff; padding: 22px 22px 18px; }
.beruf-card-icon { display: inline-flex; margin-bottom: 10px; color: var(--gold); }
.beruf-card-title { font-family: var(--font-display); font-weight: 600; font-size: 1.95rem; line-height: 1.2; }
.beruf-card-subtitle { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 6px; }
.beruf-card-body { padding: 20px 22px 24px; }
.beruf-card-text { font-size: 1.35rem; margin: 0 0 16px; }
.beruf-fact { font-size: 1.26rem; padding: 8px 0; border-top: 1px solid var(--border); }
.beruf-fact-label { display: block; font-weight: 700; color: var(--blue); font-size: 1.11rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px; }
.berufe-highlight { background: var(--blue-deep); color: rgba(255,255,255,.9); border-radius: 16px; padding: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.berufe-hl-title { color: #fff; font-size: clamp(1.6rem, 1.8vw + 1rem, 2.2rem); line-height: 1.2; margin-bottom: 16px; }
.berufe-hl-text { font-size: .95rem; color: rgba(255,255,255,.72); margin: 0; }
.berufe-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.berufe-stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--gold); }
.berufe-stat-num span { font-size: 1.4rem; }
.berufe-stat-label { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 4px; }
@media (max-width: 980px) { .berufe-grid { grid-template-columns: 1fr; } .berufe-highlight { grid-template-columns: 1fr; } }

/* ---------------- Karriere ---------------- */
.karriere-intro { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: clamp(24px, 3vw, 34px); margin-bottom: 32px; }
.karriere-intro p { margin: 0; font-size: 1.53rem; }
.karriere-contact { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.karriere-contact-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 6px; font-weight: 700; font-size: .92rem; }
.karriere-contact-btn.phone { background: var(--blue-tint); color: var(--blue); }
.karriere-contact-btn.mail { background: var(--red-strong); color: #fff; }
.karriere-columns { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; }
.karriere-col { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 26px 28px; }
.karriere-col-title { font-family: var(--font-display); font-weight: 600; font-size: 1.875rem; color: var(--ink); margin-bottom: 16px; }
.karriere-list { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 1.38rem; }
.karriere-list li { padding-left: 20px; position: relative; }
.karriere-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--red-strong); }
@media (max-width: 860px) { .karriere-columns { grid-template-columns: 1fr; } }

/* ---------------- Offene Stellen ---------------- */
.stelle-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: clamp(26px, 4vw, 40px); }
.stelle-text { font-size: 1.02rem; margin: 0; }
.stelle-cta { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); font-size: .96rem; }
.stelle-cta a { color: var(--blue); font-weight: 700; }

/* ---------------- Botendienst ---------------- */
.botendienst { background: var(--white); }
.botendienst-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.botendienst-video-wrap { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; background: var(--blue-tint); position: sticky; top: calc(var(--nav-h) + 20px); }
.botendienst-video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.botendienst-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 1.8vw + 1rem, 2.1rem); color: var(--ink); line-height: 1.2; margin-bottom: 14px; }
.botendienst-title em { font-style: italic; color: var(--red-strong); font-weight: 500; }
.botendienst-text { font-size: 1rem; margin: 0 0 26px; }
.botendienst-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
.botendienst-feature { display: flex; gap: 12px; align-items: flex-start; }
.botendienst-feature-icon, .botendienst-detail-icon { flex: none; width: 38px; height: 38px; border-radius: 8px; background: var(--blue-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.botendienst-feature-text { font-size: .88rem; }
.botendienst-details { display: flex; flex-direction: column; gap: 14px; padding: 20px 0; border-top: 1px solid var(--border); }
.botendienst-detail-item { display: flex; gap: 12px; align-items: flex-start; }
.botendienst-detail-title { font-weight: 700; font-size: .9rem; color: var(--ink); }
.botendienst-detail-text { font-size: .86rem; color: var(--muted); }
@media (max-width: 900px) { .botendienst-inner { grid-template-columns: 1fr; } .botendienst-video-wrap { position: static; aspect-ratio: 16/9; } .botendienst-features { grid-template-columns: 1fr; } }

/* ---------------- Service-Konto ---------------- */
.sk-intro { font-size: 1.575rem; max-width: 82ch; margin: 0 0 32px; }
.sk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.sk-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 26px 28px; }
.sk-card-title { font-family: var(--font-display); font-weight: 600; font-size: 1.875rem; color: var(--ink); margin-bottom: 14px; }
.sk-card-text { font-size: .92rem; margin: 0; }
.sk-list { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 1.35rem; }
.sk-list li { padding-left: 20px; position: relative; }
.sk-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.sk-cta-wrap { background: var(--blue-deep); border-radius: 14px; padding: 26px 30px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.sk-cta-title { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: #fff; }
.sk-cta-sub { font-size: .88rem; color: rgba(255,255,255,.7); }
.sk-privacy { display: flex; gap: 8px; align-items: flex-start; font-size: .82rem; color: var(--muted); margin-top: 20px; }
.sk-privacy svg { flex: none; margin-top: 2px; color: var(--blue); }
@media (max-width: 760px) { .sk-grid { grid-template-columns: 1fr; } }

/* ---------------- 24h-Abholsystem ---------------- */
.abholsystem { background: var(--white); }
.abholsystem-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: center; margin-bottom: 44px; }
.abholsystem-visual { display: flex; justify-content: center; }
.abholsystem-intro { font-size: 1.5rem; margin: 0 0 24px; }
.abholsystem-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.abholsystem-feature { display: flex; gap: 12px; align-items: flex-start; }
.abholsystem-feature-icon { flex: none; width: 38px; height: 38px; border-radius: 8px; background: var(--blue-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.abholsystem-feature-title { font-weight: 700; font-size: .92rem; color: var(--ink); }
.abholsystem-feature-text { font-size: .85rem; color: var(--muted); }
.abholsystem-how { background: var(--paper); border-radius: 14px; padding: clamp(24px, 3vw, 34px); }
.abholsystem-how-title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 20px; }
.abholsystem-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.abholsystem-step-num { width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 10px; }
.abholsystem-step-label { font-size: .86rem; }
@media (max-width: 900px) { .abholsystem-inner { grid-template-columns: 1fr; } .abholsystem-features { grid-template-columns: 1fr; } .abholsystem-steps { grid-template-columns: 1fr 1fr; } }

/* ---------------- CTA Section ---------------- */
.cta-section { background: var(--red-strong); color: #fff; max-width: none; text-align: center; padding-block: clamp(56px, 8vw, 96px); }
.cta-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 2.4vw + 1.2rem, 3rem); margin-bottom: 16px; }
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 56ch; margin: 0 auto 30px; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 56px); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon { flex: none; width: 42px; height: 42px; border-radius: 10px; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; }
.contact-info-label { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-info-val { font-size: 1rem; color: var(--ink); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: clamp(24px, 3vw, 32px); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.form-input, .form-textarea { width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 12px 14px; font-family: inherit; font-size: .96rem; background: var(--paper); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; background: var(--blue); color: #fff; border: none; }
.form-submit:hover { background: var(--blue-deep); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------------- Social Bar ---------------- */
.social-bar-new { max-width: var(--max); margin-inline: auto; padding: 0 clamp(16px, 4vw, 40px) 40px; text-align: center; }
.social-bar-label { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin: 0 0 18px; }
.social-icons-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.social-icon-new { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); display: block; }
.social-icon-new:hover { border-color: var(--blue); }

/* ---------------- Footer ---------------- */
footer { background: var(--blue-deep); color: rgba(255,255,255,.75); }
.footer-inner { max-width: var(--max); margin-inline: auto; padding: clamp(40px, 5vw, 64px) clamp(16px, 4vw, 40px) 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-logo img { height: 112px; width: auto; }
.footer-tagline { font-size: .88rem; margin: 16px 0 0; color: rgba(255,255,255,.6); }
.footer-col-title { font-weight: 700; color: #fff; font-size: .88rem; margin-bottom: 14px; }
.footer-col-links { display: flex; flex-direction: column; gap: 9px; }
.footer-col-links a { font-size: .88rem; color: rgba(255,255,255,.65); }
.footer-col-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px clamp(16px, 4vw, 40px); max-width: var(--max); margin-inline: auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: .82rem; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a:hover { color: #fff; }
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } }

/* ---------------- Legal pages (Impressum, Datenschutz, AGB, Barrierefreiheit) ---------------- */
.legal-hero { background: var(--blue-deep); color: #fff; max-width: none; padding-block: clamp(40px, 6vw, 64px); text-align: left; }
.legal-hero-inner { max-width: var(--max); margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }
.legal-eyebrow { font-size: 1.23rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin: 0 0 10px; }
.legal-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 2.4vw + 1.2rem, 2.8rem); margin: 0; }
.legal-body { max-width: 860px; padding-block: clamp(40px, 6vw, 64px); }
.legal-body h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--ink); margin: 40px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.1rem; color: var(--ink); margin: 24px 0 10px; }
.legal-body p { font-size: .96rem; margin: 0 0 14px; }
.legal-body ul { margin: 0 0 14px; padding-left: 22px; }
.legal-body li { font-size: .96rem; margin-bottom: 6px; }
.legal-body a { color: var(--blue); text-decoration: underline; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .9rem; }
.legal-body table td, .legal-body table th { border: 1px solid var(--border); padding: 8px 10px; text-align: left; }
