/* =====================================================================
   AmoraVita – Alltagsbegleitung Lüdenscheid
   Stylesheet · sauber strukturiert, DSGVO-konform (lokale Schriften)
   ===================================================================== */

/* Lokale, selbstgehostete Schriften (keine externen Aufrufe → DSGVO) */
@import url('../fonts/fonts.css');

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── DESIGN-TOKENS ── */
:root {
  --lav:        #8B7BB5;
  --lav-deep:   #6B5A9E;
  --lav-dark:   #4A3880;
  --lav-light:  #EDE9F8;
  --lav-mid:    #C5BBEA;
  --lav-pale:   #F5F2FD;
  --rose:       #C4789A;
  --rose-light: #F8EDF3;
  --warm-white: #FDFCFF;
  --text-dark:  #2A2040;
  --text-mid:   #5A5070;
  --text-light: #9490A8;
  --font-head:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:  'Nunito', 'Segoe UI', system-ui, sans-serif;
  --shadow-soft: 0 8px 32px rgba(139,123,181,.18);
  --radius:     20px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Scroll während des Intros sperren */
body.intro-active { overflow: hidden; height: 100vh; }

img { max-width: 100%; display: block; }
a { color: inherit; }

/* =====================================================================
   INTRO – Kino-Zoom ins Lavendelfeld bis zum Baum + Wind-Animation
   ===================================================================== */
#intro {
  position: fixed; inset: 0; z-index: 9000;
  overflow: hidden; background: #2a1840;
  opacity: 1; transition: opacity 1.1s ease;
}
#intro.intro-done { opacity: 0; pointer-events: none; }

.intro-scene {
  position: absolute; inset: 0;
  transform: scale(1.02);
  transform-origin: 50% 40%;
  will-change: transform;
}
/* Zoom startet automatisch nach Bildladung (Klasse via JS) */
.intro-scene.zoom {
  animation: introZoom 6s cubic-bezier(.36,.06,.28,1) forwards;
}
@keyframes introZoom {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.85); }
}

/* Basisbild (statisch im Wind ganz leicht wiegend = Feld) */
.scene-base {
  position: absolute; inset: -2%;
  background: url('../images/baum-lavendelfeld.jpg') center 42% / cover no-repeat;
  animation: fieldSway 7s ease-in-out infinite;
  transform-origin: 50% 100%;
}
@keyframes fieldSway {
  0%,100% { transform: rotate(0deg)    scale(1.0); }
  50%     { transform: rotate(-0.25deg) scale(1.004); }
}

/* Baumkrone als weich maskierte Kopie – wiegt stärker im Wind */
.scene-crown {
  position: absolute; inset: -2%;
  background: url('../images/baum-lavendelfeld.jpg') center 42% / cover no-repeat;
  -webkit-mask: radial-gradient(ellipse 24% 26% at 50% 30%, #000 50%, rgba(0,0,0,0) 78%);
          mask: radial-gradient(ellipse 24% 26% at 50% 30%, #000 50%, rgba(0,0,0,0) 78%);
  transform-origin: 50% 56%;
  animation: treeSway 4.5s ease-in-out infinite;
}
@keyframes treeSway {
  0%,100% { transform: rotate(0deg)   skewX(0deg); }
  25%     { transform: rotate(0.7deg) skewX(0.35deg); }
  60%     { transform: rotate(-0.6deg) skewX(-0.3deg); }
}

/* Vignette + sanfter Farbverlauf über der Szene */
#intro::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 38%, rgba(20,8,40,.55) 100%),
    linear-gradient(to bottom, rgba(20,8,40,.25) 0%, transparent 28%, transparent 68%, rgba(20,8,40,.5) 100%);
}

/* Fallende Blütenblätter (per JS erzeugt) */
.intro-petals { position: absolute; inset: 0; z-index: 4; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute; top: -24px;
  border-radius: 50% 50% 50% 0;
  opacity: 0; will-change: transform, opacity;
  animation: petalFall linear infinite;
}
@keyframes petalFall {
  0%   { opacity: 0;   transform: translate(0,0) rotate(0deg) scale(.85); }
  12%  { opacity: .85; }
  88%  { opacity: .4; }
  100% { opacity: 0;   transform: translate(var(--dx), 108vh) rotate(var(--rot)) scale(.55); }
}

/* Schrift-Overlay im Intro */
.intro-overlay {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; pointer-events: none;
}
.intro-title {
  font-family: var(--font-head); font-weight: 700; color: #fff;
  font-size: clamp(40px, 7vw, 82px); letter-spacing: 2px;
  text-shadow: 0 2px 40px rgba(0,0,0,.7), 0 0 90px rgba(170,90,210,.35);
  opacity: 0; transform: translateY(18px);
  animation: introTitleIn 1.6s ease 3.4s forwards;
}
.intro-title span { color: var(--lav-mid); }
.intro-tagline {
  font-family: var(--font-body); color: rgba(255,255,255,.9);
  font-size: clamp(14px, 2.2vw, 21px); margin-top: 14px;
  text-shadow: 0 1px 14px rgba(0,0,0,.6);
  opacity: 0; animation: introTitleIn 1.6s ease 4s forwards;
}
@keyframes introTitleIn {
  to { opacity: 1; transform: translateY(0); }
}

.intro-skip {
  position: absolute; top: 22px; right: 24px; z-index: 6;
  background: rgba(255,255,255,.14); color: #fff;
  border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(4px);
  padding: 9px 18px; border-radius: 24px; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  transition: background .2s; pointer-events: all;
}
.intro-skip:hover { background: rgba(255,255,255,.28); }

.intro-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 6; color: rgba(255,255,255,.7);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(7px); }
}

/* Seiteninhalt erst nach dem Intro sanft einblenden */
#site { opacity: 0; transition: opacity .8s ease; }
#site.revealed { opacity: 1; }

/* =====================================================================
   NAVIGATION
   ===================================================================== */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px; background: rgba(253,252,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E8E3F5;
  position: sticky; top: 0; z-index: 100;
}
.logo { font-family: var(--font-head); font-size: 23px; color: var(--lav-deep); font-weight: 700; text-decoration: none; }
.logo span { color: var(--rose); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-mid); font-size: 14.5px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--lav-deep); }
.nav-cta {
  background: var(--lav-deep); color: #fff; border: none; padding: 10px 22px;
  border-radius: 24px; font-family: var(--font-body); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: background .2s; text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--lav-dark); }

#hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
#hamburger span { display: block; width: 26px; height: 2px; background: var(--lav-deep); border-radius: 2px; transition: all .3s; }

#mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(42,32,64,.97);
  z-index: 150; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a { color: #fff; text-decoration: none; font-family: var(--font-head); font-size: 28px; font-weight: 600; letter-spacing: 1px; }
#mobile-menu .close-btn { position: absolute; top: 24px; right: 24px; color: #fff; font-size: 34px; cursor: pointer; background: none; border: none; line-height: 1; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh;
  background: linear-gradient(135deg, #EDE9F8 0%, #F5F0FF 50%, #FCF0F6 100%);
  overflow: hidden;
}
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 72px 60px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lav-light); color: var(--lav-deep); border-radius: 20px;
  padding: 6px 16px; font-size: 12px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; margin-bottom: 26px; width: fit-content;
}
.badge::before { content: ''; width: 7px; height: 7px; background: var(--lav-deep); border-radius: 50%; }
.hero-left h1 { font-family: var(--font-head); font-size: 46px; line-height: 1.14; color: var(--text-dark); margin-bottom: 20px; font-weight: 700; }
.hero-left h1 em { color: var(--lav-deep); font-style: normal; }
.hero-sub { font-size: 16.5px; color: var(--text-mid); max-width: 410px; margin-bottom: 30px; line-height: 1.75; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.btn-primary {
  background: var(--lav-deep); color: #fff; padding: 14px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 700; cursor: pointer; border: none;
  font-family: var(--font-body); transition: all .2s;
  box-shadow: 0 4px 16px rgba(107,90,158,.35); text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--lav-dark); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--lav-deep); padding: 14px 28px; border-radius: 30px;
  font-size: 15px; font-weight: 700; cursor: pointer; border: 2px solid var(--lav-deep);
  font-family: var(--font-body); transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { background: var(--lav-light); }
.kasse-note {
  padding: 14px 18px; background: var(--rose-light); border-left: 3px solid var(--rose);
  border-radius: 0 8px 8px 0; font-size: 13.5px; color: var(--text-mid); max-width: 410px;
}
.kasse-note strong { color: var(--rose); font-weight: 700; }

.hero-right { position: relative; display: flex; align-items: center; justify-content: center; padding: 40px 50px 40px 20px; }
.hero-illus-wrap {
  width: 100%; max-width: 430px; aspect-ratio: 4/5;
  border-radius: 24px 24px 80px 24px; overflow: hidden;
  position: relative; box-shadow: 0 24px 60px rgba(107,90,158,.28);
}
.hero-illus-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s ease; }
.hero-illus-wrap:hover img { transform: scale(1.04); }
.stats-float {
  position: absolute; bottom: 40px; left: 0;
  background: #fff; border-radius: 16px; padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12); display: flex; flex-direction: column; gap: 2px;
}
.stats-num { font-family: var(--font-head); font-size: 26px; color: var(--lav-deep); font-weight: 700; }
.stats-label { font-size: 11px; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.kasse-float {
  position: absolute; top: 52px; right: 8px;
  background: var(--lav-deep); color: #fff; border-radius: 12px; padding: 12px 16px;
  font-size: 12px; font-weight: 600; max-width: 160px; text-align: center;
  box-shadow: 0 6px 20px rgba(107,90,158,.4);
}

/* ── TRUST BAR ── */
.trust-bar { background: var(--lav-deep); padding: 16px 40px; display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 13.5px; font-weight: 600; }

/* =====================================================================
   SECTIONS (allgemein)
   ===================================================================== */
.section { padding: 80px 40px; }
.section-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lav-deep); margin-bottom: 12px; }
.section-title { text-align: center; font-family: var(--font-head); font-size: 34px; color: var(--text-dark); margin-bottom: 16px; font-weight: 700; }
.section-sub { text-align: center; color: var(--text-mid); max-width: 540px; margin: 0 auto 56px; font-size: 16px; }

/* ── FOTO-STREIFEN ── */
.foto-section { padding: 64px 40px; background: var(--lav-pale); }
.foto-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; max-width: 1000px; margin: 0 auto; }
.foto-item { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 32px rgba(107,90,158,.16); position: relative; }
.foto-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.foto-item:hover img { transform: scale(1.06); }
.foto-item.large { grid-row: span 2; aspect-ratio: auto; }
.foto-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 18px 14px; color: #fff; font-weight: 700; font-size: 14.5px; background: linear-gradient(to top, rgba(42,32,64,.8), transparent); }

/* ── USP / STÄRKEN ── */
.usp-section { padding: 80px 40px; background: var(--warm-white); }
.sprachen-box {
  max-width: 960px; margin: 0 auto 48px;
  background: linear-gradient(135deg, var(--lav-deep) 0%, var(--lav-dark) 100%);
  border-radius: 24px; padding: 40px 48px; color: #fff;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.sprachen-text { flex: 1; min-width: 240px; }
.sprachen-text .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; margin-bottom: 12px; }
.sprachen-text h3 { font-family: var(--font-head); font-size: 28px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.sprachen-text p { font-size: 15px; opacity: .88; line-height: 1.7; }
.sprachen-list { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }
.sprache { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 12px 20px; display: flex; align-items: center; gap: 14px; font-weight: 600; font-size: 15px; }
.sprache .flag { font-size: 22px; }

.usp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.usp-card { background: var(--lav-pale); border: 1px solid #E8E3F5; border-radius: var(--radius); padding: 30px 28px; display: flex; gap: 20px; align-items: flex-start; }
.usp-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.usp-icon.lav { background: var(--lav-deep); } .usp-icon.rose { background: var(--rose); }
.usp-card h3 { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; }
.usp-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── LEISTUNGEN ── */
.leistungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.leistung-card { background: var(--warm-white); border: 1px solid #E8E3F5; border-radius: var(--radius); padding: 32px 28px; transition: all .25s; position: relative; overflow: hidden; }
.leistung-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--lav-deep); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.leistung-card:hover { border-color: var(--lav-mid); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.leistung-card:hover::before { transform: scaleX(1); }
.leistung-icon { width: 52px; height: 52px; background: var(--lav-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.leistung-card h3 { font-family: var(--font-head); font-size: 19px; margin-bottom: 10px; color: var(--text-dark); font-weight: 600; }
.leistung-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── PFLEGEKASSE ── */
.kassen-section { background: linear-gradient(135deg, var(--lav-deep) 0%, var(--lav-dark) 100%); padding: 72px 40px; text-align: center; color: #fff; }
.kassen-section h2 { font-family: var(--font-head); font-size: 32px; margin-bottom: 18px; font-weight: 700; }
.kassen-section > p { font-size: 16px; opacity: .9; max-width: 580px; margin: 0 auto 36px; line-height: 1.7; }
.kassen-steps { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.kassen-step { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); border-radius: 16px; padding: 24px; max-width: 190px; text-align: center; }
.kassen-step-num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.kassen-step p { font-size: 13px; opacity: .9; }
.btn-white { background: #fff; color: var(--lav-deep); padding: 14px 32px; border-radius: 30px; font-size: 15px; font-weight: 700; cursor: pointer; border: none; font-family: var(--font-body); transition: all .2s; box-shadow: 0 4px 20px rgba(0,0,0,.15); text-decoration: none; display: inline-block; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }

/* ── EINZUGSGEBIET ── */
.gebiet-section { background: var(--lav-pale); padding: 80px 40px; }
.gebiet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 900px; margin: 0 auto; align-items: center; }
.gebiet-map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 40px rgba(107,90,158,.15); background: #fff; }
.gebiet-map-wrap svg { display: block; width: 100%; }
.gebiet-text h2 { font-family: var(--font-head); font-size: 28px; color: var(--text-dark); font-weight: 700; margin-bottom: 16px; }
.gebiet-text p { color: var(--text-mid); font-size: 15px; margin-bottom: 18px; line-height: 1.7; }
.gebiet-text .orte-label { font-size: 13px; font-weight: 700; color: var(--lav-deep); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 12px; }
.orte-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ort-pill { background: #fff; border: 1px solid #E0D8F5; border-radius: 20px; padding: 7px 14px; font-size: 13px; color: var(--text-mid); font-weight: 600; text-align: center; }
.gebiet-text .hinweis { font-size: 13px; color: var(--text-light); margin-top: 16px; }

/* ── ZIELGRUPPE ── */
.zg-section { padding: 80px 40px; background: var(--warm-white); }
.zg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; margin: 0 auto; align-items: center; }
.zg-left h2 { font-family: var(--font-head); font-size: 30px; margin-bottom: 18px; color: var(--text-dark); font-weight: 700; }
.zg-left p { color: var(--text-mid); font-size: 16px; margin-bottom: 22px; }
.zg-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.zg-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-mid); }
.zg-check { background: var(--lav-deep); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.zg-cards { display: flex; flex-direction: column; gap: 16px; }
.zg-card { background: #fff; border-radius: 16px; padding: 20px 24px; border: 1px solid #E8E3F5; display: flex; align-items: center; gap: 16px; }
.zg-card-icon { font-size: 28px; flex-shrink: 0; }
.zg-card-title { font-weight: 700; font-size: 15px; color: var(--text-dark); margin-bottom: 2px; }
.zg-card-sub { font-size: 13px; color: var(--text-light); }

/* ── KONTAKT ── */
.kontakt-section { padding: 80px 40px; background: var(--warm-white); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 900px; margin: 0 auto; }
.kontakt-left h2 { font-family: var(--font-head); font-size: 30px; margin-bottom: 14px; font-weight: 700; }
.kontakt-left > p { color: var(--text-mid); font-size: 15px; margin-bottom: 28px; }
.kontakt-info { display: flex; flex-direction: column; gap: 16px; }
.kontakt-row { display: flex; align-items: flex-start; gap: 14px; }
.kontakt-icon-wrap { width: 44px; height: 44px; background: var(--lav-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.kontakt-label { font-size: 12px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.kontakt-val { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.kontakt-val a { color: var(--lav-deep); text-decoration: none; }
.kontakt-val a:hover { text-decoration: underline; }
.oeffnung-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--text-mid); padding: 4px 0; border-bottom: 1px solid #F0ECF9; }
.oeffnung-row:last-child { border-bottom: none; }
.oeffnung-tag { font-weight: 700; color: var(--text-dark); }

.form-wrap { display: flex; flex-direction: column; gap: 14px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 16px; border: 1.5px solid #DDD8F0; border-radius: 12px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--text-dark);
  background: var(--warm-white); outline: none; transition: border-color .2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--lav-deep); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-consent { display: flex; align-items: flex-start; gap: 12px; background: var(--lav-pale); border-radius: 12px; padding: 14px 16px; border: 1px solid #E0D8F5; }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--lav-deep); flex-shrink: 0; cursor: pointer; }
.form-consent label { font-size: 13px; color: var(--text-mid); line-height: 1.6; cursor: pointer; }
.form-consent a { color: var(--lav-deep); font-weight: 700; }
.form-status { font-size: 14px; padding: 4px 2px; }
.form-status.ok { color: #2e7d52; } .form-status.err { color: #c0392b; }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer { background: #2A2040; color: #9490A8; padding: 48px 40px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.footer-brand { font-family: var(--font-head); font-size: 20px; color: #fff; margin-bottom: 12px; display: block; }
.footer-brand span { color: var(--lav-mid); }
.footer-desc { font-size: 13.5px; line-height: 1.7; max-width: 280px; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #C5BBEA; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-links button {
  color: #9490A8; text-decoration: none; font-size: 13.5px; transition: color .2s;
  background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font-body); text-align: left;
}
.footer-links a:hover, .footer-links button:hover { color: var(--lav-mid); }
.footer-bottom { border-top: 1px solid #3D3060; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; flex-wrap: wrap; gap: 12px; max-width: 1100px; margin: 0 auto; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: #3D3060; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #9490A8; transition: all .2s; text-decoration: none; }
.social-btn:hover { background: var(--lav-deep); color: #fff; }

/* =====================================================================
   RECHTLICHES (Impressum / Datenschutz)
   ===================================================================== */
.legal-section { padding: 80px 40px; background: var(--lav-pale); }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lav-deep); margin-bottom: 12px; }
.legal-wrap > h1 { font-family: var(--font-head); font-size: 36px; color: var(--text-dark); font-weight: 700; margin-bottom: 36px; }
.legal-card { background: #fff; border-radius: 16px; padding: 26px 32px; border: 1px solid #E8E3F5; margin-bottom: 20px; }
.legal-card h2 { font-family: var(--font-head); font-size: 18px; color: var(--lav-deep); margin-bottom: 14px; font-weight: 600; }
.legal-card p, .legal-card ul { color: var(--text-mid); font-size: 15px; line-height: 1.9; }
.legal-card ul { padding-left: 20px; }
.legal-card a { color: var(--lav-deep); }
.legal-card strong { color: var(--text-dark); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--lav-deep); text-decoration: none; font-weight: 700; font-size: 15px; margin-top: 16px; background: none; border: none; cursor: pointer; font-family: var(--font-body); }

/* =====================================================================
   COOKIE-CONSENT (DSGVO)
   ===================================================================== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9500;
  background: #2A2040; color: #fff; padding: 22px 32px;
  display: none; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
#cookie-banner.show { display: flex; }
.cookie-text { flex: 1; min-width: 260px; font-size: 13.5px; line-height: 1.6; color: #D8D2E8; }
.cookie-text strong { color: #fff; font-size: 15px; display: block; margin-bottom: 4px; font-family: var(--font-head); }
.cookie-text a { color: var(--lav-mid); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cookie-btns button { font-family: var(--font-body); font-weight: 700; font-size: 13.5px; border-radius: 24px; padding: 11px 20px; cursor: pointer; border: none; transition: all .2s; }
.ck-accept { background: var(--lav-mid); color: #2A2040; }
.ck-accept:hover { background: #fff; }
.ck-essential { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.3) !important; }
.ck-essential:hover { background: rgba(255,255,255,.22); }
.ck-settings { background: none; color: var(--lav-mid); text-decoration: underline; padding: 11px 8px; }

/* Cookie-Einstellungen Modal */
#cookie-modal { position: fixed; inset: 0; z-index: 9600; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(20,12,36,.6); backdrop-filter: blur(3px); }
#cookie-modal.show { display: flex; }
.cookie-modal-box { background: #fff; border-radius: 20px; padding: 32px; max-width: 520px; width: 100%; max-height: 88vh; overflow-y: auto; }
.cookie-modal-box h2 { font-family: var(--font-head); font-size: 24px; color: var(--text-dark); margin-bottom: 8px; }
.cookie-modal-box > p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 22px; }
.ck-cat { border: 1px solid #E8E3F5; border-radius: 14px; padding: 18px 20px; margin-bottom: 14px; }
.ck-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.ck-cat-head h3 { font-size: 15.5px; color: var(--text-dark); font-weight: 700; }
.ck-cat p { font-size: 13px; color: var(--text-mid); line-height: 1.55; }
.ck-cat .locked { font-size: 12px; font-weight: 700; color: var(--lav-deep); }
/* Toggle-Switch */
.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; background: #CFC8E6; border-radius: 26px; transition: .25s; cursor: pointer; }
.slider::before { content: ''; position: absolute; height: 20px; width: 20px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .25s; }
.switch input:checked + .slider { background: var(--lav-deep); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.cookie-modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.cookie-modal-actions button { flex: 1; min-width: 130px; font-family: var(--font-body); font-weight: 700; font-size: 14px; border-radius: 24px; padding: 12px 18px; cursor: pointer; border: none; transition: all .2s; }
.cm-save { background: rgba(107,90,158,.12); color: var(--lav-deep); border: 1px solid var(--lav-mid) !important; }
.cm-save:hover { background: rgba(107,90,158,.2); }
.cm-acceptall { background: var(--lav-deep); color: #fff; }
.cm-acceptall:hover { background: var(--lav-dark); }

/* =====================================================================
   SCROLL-REVEAL
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  #hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 24px 32px; }
  .hero-left h1 { font-size: 32px; }
  .hero-right { padding: 0 24px 48px; }
  .stats-float, .kasse-float { display: none; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; text-align: center; }

  .foto-grid, .leistungen-grid, .usp-grid, .gebiet-grid, .zg-grid, .kontakt-grid, .footer-grid { grid-template-columns: 1fr; }
  .foto-item.large { grid-row: auto; aspect-ratio: 16/10; }
  .sprachen-box { flex-direction: column; }
  .kassen-steps { flex-direction: column; align-items: center; }
  .kassen-step { max-width: 100%; width: 100%; }
  .orte-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .trust-bar { gap: 14px; padding: 14px 20px; }
  .trust-item { font-size: 12px; }
  .section, .kassen-section, .gebiet-section, .kontakt-section, .usp-section, .zg-section, .legal-section { padding: 48px 20px; }
  footer { padding: 40px 20px 24px; }
  .section-title { font-size: 26px; }

  #cookie-banner { flex-direction: column; align-items: stretch; padding: 20px; }
  .cookie-btns { flex-direction: column; }
  .cookie-btns button { width: 100%; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 27px; }
  .logo { font-size: 19px; }
  .intro-title { font-size: 38px; }
}

/* ── Barrierefreiheit: Animationen reduzieren ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
