/* ══════════════════════════════════════════
   LRS-HILFE · Global Stylesheet
   ══════════════════════════════════════════ */
:root {
  --navy:       #0d1c2b;
  --navy-mid:   #162434;
  --navy-light: #1e3347;
  --teal:       #1d8a6b;
  --teal-light: #25b389;
  --teal-pale:  #e4f3ee;
  --teal-mid:   #c2e8db;
  --cream:      #f5f2ec;
  --off:        #ede9e1;
  --stone:      #e8e3d9;
  --white:      #ffffff;
  --text:       #121c25;
  --muted:      #5c6e7e;
  --border:     #d8e2ec;
  --r:          10px;
  --shadow:     0 2px 18px rgba(13,28,43,.1);
  --shadow-lg:  0 16px 60px rgba(13,28,43,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(13,28,43,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 clamp(16px,4vw,48px); gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 32px; height: 32px; background: var(--teal); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.logo-name { font-size: 15px; font-weight: 600; color: #fff; letter-spacing: -.1px; }
.logo-name span { color: var(--teal-light); }
.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-link { text-decoration: none; color: rgba(255,255,255,.6); font-size: 13.5px; padding: 6px 11px; border-radius: 7px; transition: color .15s; white-space: nowrap; }
.nav-link:hover { color: #fff; }
.nav-btn {
  padding: 8px 18px; background: var(--teal); color: #fff;
  border: none; border-radius: 8px; font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 600; cursor: pointer; transition: background .15s;
  text-decoration: none; white-space: nowrap;
}
.nav-btn:hover { background: var(--teal-light); }
.nav-lang { display: flex; gap: 3px; margin-right: 6px; }
.lang-btn {
  font-size: 11px; padding: 4px 8px; border-radius: 5px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.15); background: none;
  color: rgba(255,255,255,.45); font-family: 'Inter', sans-serif; transition: all .15s; font-weight: 600;
}
.lang-btn.active, .lang-btn:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* ── SHARED SECTION STYLES ── */
.section { padding: clamp(56px,7vw,88px) clamp(16px,4vw,48px); }
.wrap { max-width: 1140px; margin: 0 auto; }
.sec-eyebrow { font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.sec-title { font-family: 'Fraunces', serif; font-size: clamp(24px,3vw,40px); line-height: 1.12; letter-spacing: -.4px; margin-bottom: 16px; font-weight: 500; color: var(--navy); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: var(--teal); color: #fff;
  border: none; border-radius: 9px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-primary:disabled { opacity: .38; pointer-events: none; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border: 1.5px solid var(--teal); border-radius: 9px;
  color: var(--teal); font-family: 'Inter', sans-serif; font-size: 14px;
  font-weight: 600; text-decoration: none; transition: background .15s, color .15s; background: transparent;
}
.btn-outline:hover { background: var(--teal); color: #fff; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; background: #25D366; color: #fff;
  border: none; border-radius: 9px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background .2s;
}
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-whatsapp svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

.btn-back {
  background: none; border: none; color: var(--muted); font-family: 'Inter', sans-serif;
  font-size: 12px; cursor: pointer; text-align: center; padding: 4px;
  text-decoration: underline; width: 100%;
}

/* ── FORM ELEMENTS ── */
.field-group label {
  display: block; font-size: 10px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px;
}
select, input[type=text], input[type=email], input[type=tel], textarea {
  width: 100%; padding: 9px 11px; border: 1.5px solid var(--border);
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 13.5px;
  color: var(--text); background: var(--white); outline: none; transition: border-color .2s;
}
select:focus, input:focus, textarea:focus { border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-note { font-size: 11px; color: var(--muted); text-align: center; }

/* ── EXPERTIN CARDS (shared) ── */
.exp-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; text-decoration: none; display: block;
  transition: box-shadow .25s, transform .25s;
}
.exp-card:hover { box-shadow: 0 8px 40px rgba(13,28,43,.12); transform: translateY(-4px); }
.exp-photo { width: 100%; aspect-ratio: 1/1; overflow: hidden; background: var(--teal-pale); position: relative; }
.exp-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s; }
.exp-card:hover .exp-photo img { transform: scale(1.05); }
.exp-photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 38px; color: rgba(255,255,255,.85); font-weight: 300;
}
.exp-badge {
  position: absolute; bottom: 10px; left: 10px;
  backdrop-filter: blur(6px); font-size: 10px; font-weight: 600;
  letter-spacing: .4px; padding: 3px 9px; border-radius: 100px;
}
.exp-badge.active { background: rgba(29,138,107,.85); color: #fff; }
.exp-badge.inactive { background: rgba(200,50,50,.8); color: #fff; }
.exp-body { padding: 16px 18px 18px; }
.exp-name { font-family: 'Fraunces', serif; font-size: 17px; color: var(--navy); font-weight: 500; margin-bottom: 3px; }
.exp-location { font-size: 12px; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.exp-location svg { width: 11px; height: 11px; stroke: var(--muted); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.exp-langs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.exp-lang { font-size: 10px; padding: 2px 7px; border-radius: 100px; background: var(--navy-mid); color: rgba(255,255,255,.75); font-weight: 500; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.exp-tag { font-size: 10.5px; padding: 3px 9px; border-radius: 100px; color: var(--teal); background: var(--teal-pale); font-weight: 500; border: 1px solid var(--teal-mid); }
.exp-cta { font-size: 12px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 5px; transition: gap .15s; }
.exp-card:hover .exp-cta { gap: 9px; }

/* ── LANG BANNER ── */
.lang-banner { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px clamp(16px,4vw,48px); }
.lang-banner-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.lang-banner p { font-size: 13px; color: var(--muted); }
.lang-flags { display: flex; gap: 7px; flex-wrap: wrap; }
.lang-flag-btn {
  display: flex; align-items: center; gap: 6px; padding: 5px 12px;
  border: 1.5px solid var(--border); border-radius: 100px; background: var(--white);
  font-size: 13px; color: var(--navy); font-weight: 500; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all .15s;
}
.lang-flag-btn:hover { border-color: var(--teal); color: var(--teal); }

/* ── FADE ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 52px clamp(16px,4vw,48px) 28px; }
.footer-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-desc { font-size: 13px; line-height: 1.7; max-width: 260px; margin-top: 12px; color: rgba(255,255,255,.3); font-weight: 300; }
.foot-col h5 { color: rgba(255,255,255,.65); font-size: 12.5px; font-weight: 600; margin-bottom: 12px; }
.foot-col a { display: block; color: rgba(255,255,255,.35); text-decoration: none; font-size: 13px; margin-bottom: 8px; transition: color .15s; font-weight: 300; }
.foot-col a:hover { color: var(--teal-light); }
.footer-bottom {
  max-width: 1140px; margin: 36px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.28);
}
.footer-bottom a { color: rgba(255,255,255,.28); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }

/* ── RESPONSIVE ── */

@media(max-width:900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:700px) {
  .nav-link { display: none; }
  .nav-lang { margin-right: 4px; }
  .lang-btn { font-size: 10px; padding: 3px 6px; }
  .nav-btn { padding: 7px 13px; font-size: 12.5px; }
}

@media(max-width:480px) {
  .nav-inner { height: 56px; padding: 0 12px; gap: 8px; }
  .nav-lang { gap: 2px; margin-right: 2px; }
  .lang-btn { font-size: 9.5px; padding: 3px 5px; }
  .logo-name { font-size: 14px; }
  .nav-btn { padding: 6px 11px; font-size: 12px; }
}

@media(max-width:600px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 40px clamp(14px,5vw,24px); }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .lang-banner-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .lang-flags { gap: 5px; }
  .lang-flag-btn { font-size: 12px; padding: 4px 10px; }
  .exp-body { padding: 12px 14px 14px; }
  .exp-name { font-size: 15px; }
}

/* ── LEGAL PAGES (Impressum / Datenschutz / AGB) ── */
.legal-section { background: var(--off); padding: clamp(40px,6vw,64px) clamp(16px,4vw,48px); }
.legal-wrap { max-width: 780px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: clamp(24px,4vw,48px); box-shadow: var(--shadow); }
.legal-wrap h2 { font-family: 'Fraunces', serif; font-size: clamp(19px,2.4vw,23px); color: var(--navy); font-weight: 500; margin: 34px 0 12px; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap h3 { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--navy); font-weight: 600; margin: 20px 0 6px; }
.legal-wrap p, .legal-wrap li { font-size: 14.5px; color: var(--text); line-height: 1.75; }
.legal-wrap p { margin-bottom: 12px; }
.legal-wrap ul { margin: 0 0 14px; padding-left: 20px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap a { color: var(--teal); text-decoration: underline; }
.legal-wrap strong { color: var(--navy); }
.legal-meta { font-size: 12.5px; color: var(--muted); margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--border); }
.legal-note { background: var(--teal-pale); border-left: 3px solid var(--teal); border-radius: 8px; padding: 12px 16px; font-size: 13px; color: var(--navy); margin: 12px 0 16px; }

/* ── COOKIE BANNER ── */
.cookie-banner { position: fixed; left: 50%; transform: translateX(-50%); bottom: 18px; z-index: 1000; width: min(680px, calc(100% - 28px)); background: var(--navy); color: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); padding: 18px 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.cookie-banner p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.82); flex: 1 1 320px; margin: 0; }
.cookie-banner a { color: var(--teal-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-btn { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 100px; cursor: pointer; border: 1.5px solid transparent; transition: all .15s; }
.cookie-accept { background: var(--teal); color: #fff; }
.cookie-accept:hover { background: var(--teal-light); }
.cookie-decline { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.cookie-decline:hover { border-color: #fff; }
@media(max-width:520px) {
  .cookie-banner { bottom: 10px; padding: 16px; }
  .cookie-actions { flex: 1 1 100%; }
  .cookie-btn { flex: 1; }
}

/* ── Doodle-Illustrationen (dekorative Hintergrund-Stilelemente, nur helle Flächen) ──
   Absolut positioniert hinter dem Inhalt: .has-doodle bildet per isolation einen
   Stacking-Context, z-index:-1 legt das Bild über den Sektionshintergrund, aber
   unter den Inhalt. mix-blend-mode: multiply lässt den weißen Bildgrund verschwinden,
   opacity macht daraus ein halbtransparentes Wasserzeichen. Kein Einfluss aufs Layout. */
.has-doodle { position: relative; isolation: isolate; overflow: hidden; }
.doodle-bg { position: absolute; z-index: -1; mix-blend-mode: multiply; opacity: .35; pointer-events: none; user-select: none; height: auto; }
.doodle-sticker { position: absolute; z-index: -1; opacity: .5; pointer-events: none; user-select: none; height: auto; }
@media (max-width: 760px) { .doodle-bg, .doodle-sticker { display: none; } }
