/* =========================================================================
   German Lean Culture (GLC) – Design System
   Navy #04234F · Amber #F5A800 · Off-White
   ========================================================================= */

:root {
  /* Brand */
  --navy: #04234F;
  --navy-800: #0a2e63;
  --navy-700: #123f80;
  --amber: #F5A800;
  --amber-600: #d99500;
  --amber-100: #fff6e0;

  /* Neutrals */
  --ink: #16233a;
  --muted: #566072;
  --line: #e5e8ee;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-navy: var(--navy);
  --white: #ffffff;

  /* Type */
  --font-head: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(4, 35, 79, 0.08);
  --shadow-lg: 0 24px 60px rgba(4, 35, 79, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 84px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  /* clip statt hidden: verhindert horizontales Scrollen, OHNE die klebende
     Kopfzeile (position: sticky) zu brechen */
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--muted); }
p.lead { font-size: 1.22rem; color: var(--ink); line-height: 1.6; }
strong { color: var(--ink); font-weight: 700; }

.accent { color: var(--amber); }
.text-white { color: #fff !important; }
.text-white h1, .text-white h2, .text-white h3 { color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #dbe4f2; }
.section--navy p { color: #b7c4da; }
.section--tight { padding: 64px 0; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber-600);
  margin-bottom: 16px;
}
.section--navy .eyebrow { color: var(--amber); }
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: var(--amber); display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }
.section-head p { font-size: 1.1rem; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--amber); color: var(--navy); box-shadow: 0 8px 22px rgba(245,168,0,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245,168,0,.45); }
.btn--dark { background: var(--navy); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: var(--navy-800); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); }
.section--navy .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.section--navy .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }

/* ---------- Header / Nav ---------- */
/* Wrapper auflösen, damit die klebende Kopfzeile direkt im Body-Fluss sitzt
   (sonst begrenzt der nur header-hohe Wrapper den sticky-Spielraum) */
[data-header] { display: contents; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(4,35,79,.07); }
.nav {
  height: var(--header-h); display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  color: var(--navy); padding: 9px 11px; border-radius: 8px;
  position: relative; transition: color .2s, background .2s; white-space: nowrap;
}
.nav__links a:hover { background: var(--bg-soft); }
.nav__links a.active { color: var(--amber-600); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--amber); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav__links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .35s var(--ease);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__links a.active::after { display: none; }
  .nav__toggle { display: flex; }
  /* CTA bleibt auch mobil sichtbar – kompakt, ohne Pfeil, einzeilig */
  .nav__cta .btn:not(.nav__toggle) { padding: 10px 15px; font-size: .88rem; white-space: nowrap; }
  .nav__cta .btn:not(.nav__toggle) svg { display: none; }
}
@media (max-width: 430px) {
  .nav__logo img { height: 38px; }
  .nav__cta { gap: 8px; }
  .nav__cta .btn:not(.nav__toggle) { padding: 9px 12px; font-size: .8rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(245,168,0,.12), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 86px 0 96px;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero p.lead { margin-bottom: 32px; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 22px; font-size: .95rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 18px; height: 18px; color: var(--amber-600); }

.hero__visual {
  position: relative; border-radius: var(--radius-lg);
  background: var(--navy); color: #fff; padding: 42px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero__visual::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,.35), transparent 70%);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,168,0,.16); color: var(--amber);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero__steps { display: grid; gap: 14px; position: relative; z-index: 1; }
.hero__step {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 16px 18px; border-radius: var(--radius);
}
.hero__step .num {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  background: var(--amber); color: var(--navy);
  font-family: var(--font-head); font-weight: 800;
  display: grid; place-items: center; font-size: 1rem;
}
.hero__step h4 { color: #fff; font-size: 1.02rem; margin-bottom: 2px; }
.hero__step p { color: #a9b8d1; font-size: .92rem; margin: 0; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 64px; }
}

/* ---------- Generic cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--amber-100); color: var(--amber-600);
  display: grid; place-items: center; margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }

/* value / step cards with number */
.step-card { position: relative; }
.step-card .step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem;
  color: var(--amber); line-height: 1; margin-bottom: 12px;
  display: inline-block;
}

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem,4vw,3rem); color: #fff; }
.stat .num .accent { color: var(--amber); }
.stat .lbl { color: #a9b8d1; font-size: .95rem; margin-top: 6px; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split__media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 34px; } .split.reverse .split__media { order: 0; } }
.split__media {
  border-radius: var(--radius-lg); background: var(--bg-soft);
  border: 1px solid var(--line); padding: 34px; box-shadow: var(--shadow);
}
.check-list { display: grid; gap: 14px; margin-top: 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list svg { flex: none; width: 22px; height: 22px; color: var(--amber-600); margin-top: 3px; }

/* ---------- Steps / process (stairs motif) ---------- */
.stairs { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 20px; }
@media (max-width: 800px){ .stairs { grid-template-columns: 1fr; } }
.stair {
  position: relative; padding: 28px 24px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.stairs .stair:nth-child(1){ transform: translateY(60px); }
.stairs .stair:nth-child(2){ transform: translateY(40px); }
.stairs .stair:nth-child(3){ transform: translateY(20px); }
@media (max-width: 800px){ .stairs .stair { transform: none !important; } }
.stair .dot {
  width: 40px; height: 40px; border-radius: 12px; background: var(--navy); color: #fff;
  font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; margin-bottom: 16px;
}
.stair h4 { margin-bottom: 8px; }
.stair p { font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(245,168,0,.18), transparent 60%),
    var(--navy);
  border-radius: var(--radius-lg); padding: 60px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #b7c4da; max-width: 560px; margin: 0 auto 28px; }

/* ---------- Quote / testimonial ---------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--amber);
  border-radius: var(--radius); padding: 34px 36px; box-shadow: var(--shadow);
}
.quote blockquote { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: var(--navy); line-height: 1.4; }
.quote .by { margin-top: 18px; display: flex; align-items: center; gap: 14px; }
.quote .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--amber-100); color: var(--amber-600); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; }
.quote .by b { display: block; color: var(--navy); font-family: var(--font-head); }
.quote .by span { color: var(--muted); font-size: .9rem; }

/* ---------- Page hero (inner pages) ---------- */
.pagehero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(245,168,0,.10), transparent 60%),
    var(--navy);
  color: #fff; padding: 72px 0 64px;
}
.pagehero .eyebrow { color: var(--amber); }
/* Hervorhebungen auf dunklen Flächen lesbar halten */
.pagehero strong, .section--navy strong { color: var(--amber); }
.pagehero h1 { color: #fff; margin-bottom: 16px; }
.pagehero p { color: #b7c4da; max-width: 640px; font-size: 1.12rem; }
.crumbs { font-size: .88rem; color: #8ba0c2; margin-bottom: 18px; font-family: var(--font-head); font-weight: 600; }
.crumbs a:hover { color: var(--amber); }
.crumbs span { opacity: .6; margin: 0 6px; }

/* ---------- Media (podcast / vlog) cards ---------- */
.media-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.media-card__thumb {
  aspect-ratio: 16/9; background: var(--navy); position: relative; overflow: hidden;
  display: grid; place-items: center;
}
.media-card__thumb .play {
  width: 58px; height: 58px; border-radius: 50%; background: rgba(245,168,0,.95);
  display: grid; place-items: center; color: var(--navy);
  transition: transform .3s var(--ease);
}
.media-card:hover .play { transform: scale(1.1); }
.media-card__thumb .wave { position: absolute; inset: 0; opacity: .22; }
.media-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.media-meta { display: flex; gap: 10px; align-items: center; font-size: .82rem; color: var(--muted); font-family: var(--font-head); font-weight: 600; margin-bottom: 10px; }
.media-meta .tag { background: var(--amber-100); color: var(--amber-600); padding: 3px 10px; border-radius: 999px; letter-spacing: .04em; }
.media-card__body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.media-card__body p { font-size: .95rem; flex: 1; }
.media-card__body .more { margin-top: 16px; font-family: var(--font-head); font-weight: 700; color: var(--amber-600); display: inline-flex; align-items: center; gap: 6px; }
.media-card__body .more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.media-card:hover .more svg { transform: translateX(4px); }

/* ---------- YouTube: neueste Videos ---------- */
.yt-card { display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.yt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.yt-card__thumb { position: relative; display: block; width: 100%; padding: 0; border: 0;
  aspect-ratio: 16/9; background: var(--navy); cursor: pointer; overflow: hidden; }
.yt-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s var(--ease); }
.yt-card:hover .yt-card__thumb img { transform: scale(1.05); }
.yt-play { position: absolute; inset: 0; margin: auto; width: 62px; height: 62px;
  border-radius: 50%; background: rgba(245,168,0,.95); color: var(--navy);
  display: grid; place-items: center; transition: transform .3s var(--ease);
  box-shadow: 0 6px 20px rgba(4,35,79,.25); }
.yt-play svg { width: 26px; height: 26px; margin-left: 3px; }
.yt-card:hover .yt-play { transform: scale(1.1); }
.yt-card__body { padding: 18px 22px 24px; }
.yt-date { font-size: .82rem; color: var(--muted); font-family: var(--font-head);
  font-weight: 600; margin-bottom: 8px; }
.yt-card__body h3 { font-size: 1.08rem; line-height: 1.35; }
.yt-frame { aspect-ratio: 16/9; background: #000; }
.yt-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
/* Leerzustand (noch keine Videos / lokale Vorschau ohne PHP) */
.yt-empty { grid-column: 1 / -1; text-align: center; max-width: 640px; margin: 0 auto;
  padding: 48px 28px; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); }
.yt-empty__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--amber-100);
  color: var(--amber-600); display: grid; place-items: center; margin: 0 auto 18px; }
.yt-empty__icon svg { width: 30px; height: 30px; }
.yt-empty h3 { margin-bottom: 10px; }
.yt-empty p { color: var(--muted); margin-bottom: 22px; }

/* ---------- Detail page ---------- */
.detail-player {
  aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow-lg); position: relative;
  display: grid; place-items: center; color: #fff;
}
.detail-player iframe { width: 100%; height: 100%; border: 0; }
.detail-player .placeholder { text-align: center; padding: 30px; }
.detail-player .placeholder .play { width: 74px; height: 74px; border-radius: 50%; background: var(--amber); color: var(--navy); display: grid; place-items: center; margin: 0 auto 16px; }
.prose { max-width: 720px; }
.prose p { color: var(--ink); margin-bottom: 18px; font-size: 1.08rem; }
.prose h2, .prose h3 { margin: 32px 0 14px; }
.prose ul { margin: 0 0 18px 0; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--ink); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: 26px; }
.back-link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.back-link:hover svg { transform: translateX(-4px); }

/* ---------- Form ---------- */
.form-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .form-wrap { grid-template-columns: 1fr; gap: 34px; } }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.field .req { color: var(--amber-600); }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--bg-soft); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--amber); background: #fff;
  box-shadow: 0 0 0 4px rgba(245,168,0,.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field .hint { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.field .error-msg { color: #c0392b; font-size: .85rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #c0392b; background: #fdf3f2; }
.field.invalid .error-msg { display: block; }
.form-consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; }
.form-consent input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--amber-600); }
.form-consent label { font-size: .9rem; color: var(--muted); font-family: var(--font-body); font-weight: 400; margin: 0; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 16px; }

/* Honeypot (Spamschutz) – für Menschen unsichtbar */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Fehlerbanner (wenn send.php mit ?fehler zurückleitet) */
.form-error { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px;
  padding: 14px 16px; border-radius: var(--radius); background: #fdf3f2;
  border: 1px solid #e6b3ad; color: #a23125; font-size: .92rem; line-height: 1.5; }
.form-error[hidden] { display: none; }
.form-error svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.form-error a { color: #a23125; text-decoration: underline; font-weight: 600; }

.aside-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 34px; }
.aside-card h3 { color: #fff; margin-bottom: 8px; }
.aside-card > p { color: #b7c4da; margin-bottom: 24px; }
.aside-list { display: grid; gap: 18px; }
.aside-list li { display: flex; gap: 14px; align-items: flex-start; }
.aside-list .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: rgba(245,168,0,.16); color: var(--amber); display: grid; place-items: center; }
.aside-list .ic svg { width: 20px; height: 20px; }
.aside-list b { display: block; color: #fff; font-family: var(--font-head); }
.aside-list span { color: #a9b8d1; font-size: .9rem; }

/* ---------- Thank-you ---------- */
.thanks { text-align: center; max-width: 620px; margin-inline: auto; }
.thanks .badge-ok {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 26px;
  background: var(--amber-100); color: var(--amber-600); display: grid; place-items: center;
  animation: pop .5s var(--ease);
}
.thanks .badge-ok svg { width: 46px; height: 46px; }
@keyframes pop { 0%{ transform: scale(.6); opacity: 0; } 100%{ transform: scale(1); opacity: 1; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  font-family: var(--font-head); font-weight: 700; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 26px; height: 26px; position: relative; transition: transform .3s; }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--amber-600); border-radius: 2px; }
.faq summary .plus::before { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq summary .plus::after { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { padding: 0 24px 22px; font-size: .98rem; }

/* ---------- Logo strip / partner ---------- */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.trust .item { font-family: var(--font-head); font-weight: 700; color: var(--muted); opacity: .7; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b7c4da; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { color: #90a2c0; font-size: .95rem; max-width: 320px; }
.footer-claim { font-family: var(--font-head); font-style: italic; color: var(--amber); margin-top: 14px; font-weight: 600; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: #a9b8d1; font-size: .95rem; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--amber); padding-left: 4px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: .86rem; color: #7e91b2;
}
.footer-bottom a:hover { color: var(--amber); }
.footer-parent { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Praxisbilder (photo frames + placeholders) ----------
   Zum Einsetzen echter Fotos: den <div class="photo__ph"> durch
   <img src="assets/img/praxis/DATEI.jpg" alt="..."> ersetzen.
   Die Rahmengröße/Radius bleibt über .photo erhalten. */
.photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow); aspect-ratio: 4/3;
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo--wide { aspect-ratio: 16/9; }
.photo--tall { aspect-ratio: 3/4; }
.photo--square { aspect-ratio: 1/1; }
.photo__ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  gap: 12px; text-align: center; padding: 22px;
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(245,168,0,.20), transparent 55%),
    linear-gradient(140deg, var(--navy-700) 0%, var(--navy) 55%, #061a3a 100%);
  color: #cdd8ea;
}
.photo__ph::after {
  content: ""; position: absolute; right: -40px; bottom: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,168,0,.18), transparent 70%);
}
.photo__ph svg { width: 58px; height: 58px; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.photo__ph .cap {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--amber);
  position: relative; z-index: 1;
}
.photo__ph .sub { font-size: .86rem; color: #9fb0cc; max-width: 220px; position: relative; z-index: 1; }
.photo__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(4,35,79,.72); backdrop-filter: blur(4px);
  color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px;
}
.photo__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

/* Photo gallery grid – varied tile sizes for a lively, editorial feel */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.gallery .photo { aspect-ratio: auto; height: 100%; min-height: 200px; }
.gallery .g-lg { grid-column: span 4; }
.gallery .g-sm { grid-column: span 2; }
.gallery .g-half { grid-column: span 3; }
.gallery .g-third { grid-column: span 2; }
@media (max-width: 820px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g-lg, .gallery .g-sm, .gallery .g-half, .gallery .g-third { grid-column: span 1; }
  .gallery .photo { min-height: 170px; }
}

/* ---------- Interest / focus selector (booking form) ---------- */
.focus-group { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 560px) { .focus-group { grid-template-columns: 1fr; } }
.focus-opt { position: relative; }
.focus-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.focus-opt label {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  padding: 18px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--bg-soft); cursor: pointer; height: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .2s;
  font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: .98rem;
}
.focus-opt .fic {
  width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--amber-600); transition: background .2s, color .2s;
}
.focus-opt .fic svg { width: 22px; height: 22px; }
.focus-opt .desc { font-family: var(--font-body); font-weight: 400; font-size: .8rem; color: var(--muted); }
.focus-opt input:hover + label { border-color: var(--amber); }
.focus-opt input:checked + label {
  border-color: var(--amber); background: var(--amber-100);
  box-shadow: 0 0 0 3px rgba(245,168,0,.18);
}
.focus-opt input:checked + label .fic { background: var(--amber); color: var(--navy); }
.focus-opt input:focus-visible + label { outline: 2px solid var(--navy); outline-offset: 2px; }
.field.invalid .focus-opt label { border-color: #c0392b; }

/* Focus quick-entry buttons (Lean Tour page) */
.focus-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 760px){ .focus-cards { grid-template-columns: 1fr; } }
.focus-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.focus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.focus-card .fic { width: 52px; height: 52px; border-radius: 14px; background: var(--amber-100); color: var(--amber-600); display: grid; place-items: center; margin-bottom: 18px; }
.focus-card .fic svg { width: 26px; height: 26px; }
.focus-card h3 { margin-bottom: 8px; }
.focus-card p { font-size: .96rem; margin-bottom: 16px; }
.focus-card .more { font-family: var(--font-head); font-weight: 700; color: var(--amber-600); display: inline-flex; align-items: center; gap: 6px; }
.focus-card .more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.focus-card:hover .more svg { transform: translateX(4px); }

/* ---------- Duotone-Bildlook + Bildunterschrift ----------
   Für wiederkehrende/uneinheitliche Motive: vereinheitlicht Fotos im
   Marken-Look (Navy→Amber) und macht sie zur kuratierten Reihe.
   Nutzung: <figure class="photo photo--duotone"> … <img> …
            <figcaption class="photo__caption">Firma · Datum</figcaption> */
.photo--duotone img { filter: grayscale(1) contrast(1.05) brightness(.96); }
.photo--duotone::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(150deg, rgba(4,35,79,.92) 0%, rgba(4,35,79,.45) 55%, rgba(245,168,0,.5) 100%);
  mix-blend-mode: multiply;
}
.photo--duotone .photo__badge { z-index: 3; }
.photo__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 28px 24px 20px; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; line-height: 1.3;
  background: linear-gradient(to top, rgba(4,35,79,.7), transparent);
}
.photo__caption small { display: block; font-weight: 600; font-size: .82rem; color: var(--amber); letter-spacing: .04em; margin-top: 4px; }

/* ---------- Logo-Wall (Besucherfirmen) ---------- */
.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }
.logo-tile {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.logo-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.logo-tile__mark {
  width: 56px; height: 56px; border-radius: 14px; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
}
.logo-tile span:not(.logo-tile__mark) { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: .9rem; line-height: 1.25; }
.logo-tile--more { border-style: dashed; border-color: var(--amber); background: var(--amber-100); }
.logo-tile--more .logo-tile__mark { background: var(--amber); color: var(--navy); }
.logo-tile--more span:not(.logo-tile__mark) { color: var(--amber-600); }

/* ---------- Beitrags-Karten (Lean-Wissen) ---------- */
.card .more {
  margin-top: 16px; font-family: var(--font-head); font-weight: 700; color: var(--amber-600);
  display: inline-flex; align-items: center; gap: 6px;
}
.card .more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }
.prose-quote {
  margin: 24px 0; padding: 18px 24px; background: var(--bg-soft);
  border-left: 4px solid var(--amber); border-radius: 0 12px 12px 0;
  font-family: var(--font-head); font-weight: 600; font-style: italic;
  color: var(--navy); font-size: 1.12rem; line-height: 1.45;
}

/* ---------- Besucherberichte (visit cards) ---------- */
.visit-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.visit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.visit-card__head { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.visit-card__logo {
  flex: none; width: 50px; height: 50px; border-radius: 12px;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: .02em;
}
.visit-card h3 { font-size: 1.12rem; line-height: 1.2; }
.visit-card p { font-size: .96rem; }
.visit-card__quote {
  margin-top: 16px; padding: 16px 18px; background: var(--bg-soft);
  border-left: 4px solid var(--amber); border-radius: 0 10px 10px 0;
  font-family: var(--font-head); font-weight: 600; font-style: italic;
  color: var(--navy); font-size: 1rem; line-height: 1.45;
}
.visit-card__quote cite {
  display: block; margin-top: 10px; font-style: normal; font-weight: 700;
  font-size: .82rem; color: var(--amber-600); letter-spacing: .02em;
}

/* ---------- Lean-Wissen: Themen-Chips & Bücher ---------- */
.topic-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.topic-chip {
  display: inline-flex; align-items: center; gap: 8px; line-height: 1.2;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-family: var(--font-head); font-weight: 600;
  color: var(--navy); font-size: .95rem; cursor: pointer;
  transition: border-color .2s, transform .2s, background .2s, box-shadow .2s;
}
.topic-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); flex: none; }
.topic-chip:hover { border-color: var(--amber); transform: translateY(-2px); }
button.topic-chip { font-size: .95rem; }
.topic-chip.is-active {
  border-color: var(--amber); background: var(--amber-100);
  box-shadow: 0 0 0 3px rgba(245,168,0,.16);
}

.book-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .book-list { grid-template-columns: 1fr; } }
.book-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.book-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.book-item__mark {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--amber-100); color: var(--amber-600); display: grid; place-items: center;
}
.book-item__mark svg { width: 24px; height: 24px; }
.book-item h3 { font-size: 1.08rem; margin-bottom: 2px; }
.book-item__author { display: block; font-family: var(--font-head); font-weight: 600; color: var(--amber-600); font-size: .88rem; margin-bottom: 8px; }
.book-item p { font-size: .95rem; }

/* Anker-Sprung: Abstand zur klebenden Kopfzeile */
section[id^="feld-"] { scroll-margin-top: 96px; }

/* ---------- Utility ---------- */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}
.hide-mobile { }
@media (max-width: 640px){ .hide-mobile{ display:none; } }
