/* =====================================================================
   RAUMFREI – Haushaltsauflösung & Entrümpelung
   Art Direction: warm-cinematic (tiefes Braun + Amber auf Creme)
   ===================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Warm-cinematic Palette (Light) */
  --cream:        #F7F1E7;
  --cream-2:      #EFE6D6;
  --paper:        #FFFDF9;
  --ink:          #2B2018;   /* tiefes warmes Braun für Text */
  --ink-soft:     #5C4D3F;
  --muted:        #8A7866;
  --line:         #E4D8C5;
  --amber:        #C8821E;   /* Hauptakzent – warmes Amber */
  --amber-deep:   #A9690F;
  --amber-soft:   #F3E3C7;
  --brown:        #6B4A2B;   /* tiefes Braun für Akzentflächen */
  --brown-deep:   #4A3320;
  --green:        #4F6B3A;   /* sekundär: vertrauensvoll/„besenrein" */
  --success:      #3E7A4F;

  /* Surfaces */
  --bg:           var(--cream);
  --surface:      var(--paper);
  --surface-2:    var(--cream-2);
  --text:         var(--ink);
  --text-soft:    var(--ink-soft);
  --text-muted:   var(--muted);
  --border:       var(--line);
  --accent:       var(--amber);
  --accent-deep:  var(--amber-deep);
  --accent-soft:  var(--amber-soft);

  /* Type scale */
  --text-xs:   0.78rem;
  --text-sm:   0.9rem;
  --text-base: 1.05rem;
  --text-lg:   1.3rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.6rem;
  --text-3xl:  3.6rem;
  --text-hero: clamp(2.6rem, 6vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem; --space-4: 1rem;
  --space-6: 1.5rem;  --space-8: 2rem;    --space-12: 3rem;   --space-16: 4rem;
  --space-20: 5rem;   --space-24: 6rem;   --space-32: 8rem;

  /* Radius & shadow */
  --radius-sm: 8px;  --radius: 14px;  --radius-lg: 22px;  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(43,32,24,.08), 0 1px 2px rgba(43,32,24,.06);
  --shadow:    0 8px 30px rgba(43,32,24,.10);
  --shadow-lg: 0 24px 60px rgba(43,32,24,.18);

  /* Fonts */
  --font-display: 'Boska', 'Georgia', serif;
  --font-body:    'Switzer', 'Inter', system-ui, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark mode – warmes, kinoartiges Dunkel */
[data-theme="dark"] {
  --bg:          #1C150F;
  --surface:     #261D14;
  --surface-2:   #2F241A;
  --text:        #F3E9DA;
  --text-soft:   #D8C7B2;
  --text-muted:  #A38F77;
  --border:      #3A2C1E;
  --accent:      #E5A23E;
  --accent-deep: #C8821E;
  --accent-soft: #3A2A14;
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--ease), color .4s var(--ease);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
section { padding: clamp(var(--space-16), 8vw, var(--space-32)) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: .5rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); display: inline-block; }

.section-head { max-width: 680px; margin-bottom: var(--space-12); }
.section-head h2 { font-size: var(--text-2xl); margin: var(--space-3) 0 var(--space-4); }
.section-head p { color: var(--text-soft); font-size: var(--text-lg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: var(--radius);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(200,130,30,.32); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,130,30,.42); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn-white { background: var(--paper); color: var(--brown-deep); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 1.1rem 2rem; font-size: var(--text-base); }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--text); }
.logo svg { width: 34px; height: 34px; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-links a { font-size: var(--text-sm); font-weight: 500; color: var(--text-soft); transition: color .2s; }
.nav-links a:hover { color: var(--accent-deep); }
.nav-actions { display: flex; align-items: center; gap: var(--space-3); }
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--text-soft); border: 1px solid var(--border); transition: all .2s; }
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: var(--text-sm); color: var(--text); }
.nav-phone svg { width: 18px; height: 18px; color: var(--accent); }
.burger { display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); place-items: center; color: var(--text); }
.burger svg { width: 24px; height: 24px; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(var(--space-16), 7vw, var(--space-24)) 0 clamp(var(--space-20), 9vw, var(--space-32)); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-16); align-items: center; }
.hero-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: var(--space-6); }
.badge { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--text-xs); font-weight: 600; padding: .4rem .8rem; border-radius: 50px; background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); }
.badge svg { width: 14px; height: 14px; color: var(--accent); }
.hero h1 { font-size: var(--text-hero); margin-bottom: var(--space-6); }
.hero h1 .hl { color: var(--accent-deep); font-style: italic; }
.hero-lead { font-size: var(--text-lg); color: var(--text-soft); max-width: 540px; margin-bottom: var(--space-8); }
.hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-bottom: var(--space-8); }
.hero-trust { display: flex; align-items: center; gap: var(--space-4); font-size: var(--text-sm); color: var(--text-soft); }
.stars { color: var(--accent); letter-spacing: 2px; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-float { position: absolute; bottom: -22px; left: -22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-4) var(--space-6); box-shadow: var(--shadow); display: flex; align-items: center; gap: var(--space-3); }
.hero-float .num { font-family: var(--font-display); font-size: var(--text-xl); color: var(--accent-deep); }
.hero-float .lbl { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.3; }

/* ---------- STATS ---------- */
.stats { background: var(--brown-deep); color: #F3E9DA; padding: var(--space-12) 0; }
[data-theme="dark"] .stats { background: var(--surface-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-6); text-align: center; }
.stat .num { font-family: var(--font-display); font-size: var(--text-2xl); color: #E5A23E; line-height: 1; }
.stat .lbl { font-size: var(--text-sm); color: #D8C7B2; margin-top: var(--space-2); }

/* ---------- USP ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-4); }
.usp-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-6); transition: transform .3s var(--ease), box-shadow .3s; }
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.usp-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: var(--space-4); }
.usp-icon svg { width: 24px; height: 24px; }
.usp-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.usp-card p { font-size: var(--text-sm); color: var(--text-soft); }

/* ---------- LEISTUNGEN ---------- */
.serv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); }
.serv-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-6); color: #fff; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); }
.serv-card:hover { transform: translateY(-5px); }
.serv-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.serv-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,32,24,.05) 0%, rgba(43,32,24,.82) 100%); z-index: 1; }
.serv-card > * { position: relative; z-index: 2; }
.serv-card h3 { color: #fff; font-size: var(--text-xl); margin-bottom: var(--space-2); }
.serv-card p { font-size: var(--text-sm); color: rgba(255,255,255,.85); }
.serv-card .more { margin-top: var(--space-3); font-size: var(--text-sm); font-weight: 600; color: #E5A23E; display: inline-flex; align-items: center; gap: .35rem; }

/* ---------- ABLAUF ---------- */
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: var(--space-4); counter-reset: step; }
.step { position: relative; padding-top: var(--space-8); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-display); font-size: var(--text-lg); display: grid; place-items: center; margin-bottom: var(--space-4); box-shadow: 0 4px 14px rgba(200,130,30,.3); }
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--text-soft); }
.step:not(:last-child)::before { content: ""; position: absolute; top: calc(var(--space-8) + 26px); left: 52px; right: -8px; height: 2px; background: linear-gradient(90deg, var(--accent) 0%, var(--border) 100%); z-index: 0; }

/* ---------- PREISE ---------- */
.price-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-12); align-items: start; }
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.price-table th, .price-table td { padding: var(--space-4) var(--space-6); text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { background: var(--surface-2); font-family: var(--font-body); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: 600; }
.price-table td { font-size: var(--text-sm); }
.price-table tr:last-child td { border-bottom: none; }
.price-table .price { font-family: var(--font-display); font-size: var(--text-lg); color: var(--accent-deep); white-space: nowrap; }
.price-note { font-size: var(--text-xs); color: var(--text-muted); margin-top: var(--space-4); }
.price-side { background: var(--brown); color: #F3E9DA; border-radius: var(--radius-lg); padding: var(--space-8); }
.price-side h3 { color: #fff; font-size: var(--text-xl); margin-bottom: var(--space-3); }
.price-side p { color: #E8DAC6; font-size: var(--text-sm); margin-bottom: var(--space-6); }
.price-side .btn { width: 100%; }

/* ---------- WERTANRECHNUNG ---------- */
.value-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.value-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 5/4; object-fit: cover; }
.value-list { margin-top: var(--space-6); display: grid; gap: var(--space-4); }
.value-item { display: flex; gap: var(--space-3); }
.value-item .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; }
.value-item .ic svg { width: 16px; height: 16px; }
.value-item strong { display: block; margin-bottom: 2px; }
.value-item p { font-size: var(--text-sm); color: var(--text-soft); }

/* ---------- VORHER/NACHHER ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); }
.ba-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface); border: 1px solid var(--border); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-imgs figure { position: relative; }
.ba-imgs img { aspect-ratio: 1; object-fit: cover; }
.ba-imgs figcaption { position: absolute; top: 10px; left: 10px; font-size: var(--text-xs); font-weight: 600; padding: .25rem .6rem; border-radius: 50px; background: rgba(43,32,24,.78); color: #fff; }
.ba-card .ba-label { padding: var(--space-4) var(--space-6); font-size: var(--text-sm); font-weight: 600; }

/* ---------- BEWERTUNGEN ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6); }
.rev-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-6); }
.rev-card .stars { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.rev-card p { font-size: var(--text-base); color: var(--text); margin-bottom: var(--space-4); font-style: italic; }
.rev-author { display: flex; align-items: center; gap: var(--space-3); }
.rev-author .av { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; font-family: var(--font-display); font-size: var(--text-base); }
.rev-author .nm { font-weight: 600; font-size: var(--text-sm); }
.rev-author .loc { font-size: var(--text-xs); color: var(--text-muted); }

/* ---------- TEAM ---------- */
.team-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; }
.team-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.team-points { display: grid; gap: var(--space-3); margin-top: var(--space-6); }
.team-points li { display: flex; gap: var(--space-3); align-items: center; font-size: var(--text-sm); }
.team-points svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; }

/* ---------- EINSATZGEBIET ---------- */
.area { background: var(--surface-2); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); }
.area-col h3 { font-size: var(--text-lg); margin-bottom: var(--space-4); }
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { font-size: var(--text-sm); padding: .45rem .9rem; background: var(--surface); border: 1px solid var(--border); border-radius: 50px; color: var(--text-soft); transition: all .2s; }
.chip:hover { border-color: var(--accent); color: var(--accent-deep); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); padding: var(--space-6) 0; text-align: left; font-family: var(--font-display); font-size: var(--text-lg); color: var(--text); }
.faq-q .icon { flex-shrink: 0; width: 28px; height: 28px; transition: transform .3s var(--ease); color: var(--accent); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding-bottom: var(--space-6); color: var(--text-soft); font-size: var(--text-base); }

/* ---------- KONTAKT / FORM ---------- */
.contact { background: var(--brown-deep); color: #F3E9DA; }
[data-theme="dark"] .contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-16); align-items: start; }
.contact-info h2 { color: #fff; font-size: var(--text-2xl); margin-bottom: var(--space-4); }
.contact-info > p { color: #E8DAC6; font-size: var(--text-lg); margin-bottom: var(--space-8); }
.contact-methods { display: grid; gap: var(--space-4); }
.cm { display: flex; align-items: center; gap: var(--space-4); }
.cm .ic { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(229,162,62,.16); color: #E5A23E; display: grid; place-items: center; flex-shrink: 0; }
.cm .ic svg { width: 22px; height: 22px; }
.cm .lbl { font-size: var(--text-xs); color: #C3B097; }
.cm .val { font-size: var(--text-lg); font-weight: 600; color: #fff; }
.form-card { background: var(--surface); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); color: var(--text); }
.form-card .sub { font-size: var(--text-sm); color: var(--text-soft); margin-bottom: var(--space-6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-2); color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: var(--text-sm); background: var(--bg); color: var(--text); transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 90px; }
.ai-hint { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--text-xs); color: var(--text-muted); background: var(--accent-soft); border-radius: var(--radius-sm); padding: .75rem .9rem; margin-bottom: var(--space-4); }
.ai-hint svg { width: 16px; height: 16px; color: var(--accent-deep); flex-shrink: 0; margin-top: 1px; }
.form-card .btn { width: 100%; }
.form-foot { font-size: var(--text-xs); color: var(--text-muted); text-align: center; margin-top: var(--space-3); }
.form-success { display: none; text-align: center; padding: var(--space-12) var(--space-4); }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft); color: var(--success); display: grid; place-items: center; margin: 0 auto var(--space-4); }
.form-success .check svg { width: 32px; height: 32px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: #D8C7B2; padding: var(--space-16) 0 var(--space-8); }
[data-theme="dark"] .footer { background: #14100B; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-8); margin-bottom: var(--space-12); }
.footer .logo { color: #fff; margin-bottom: var(--space-4); }
.footer-about { font-size: var(--text-sm); color: #A38F77; max-width: 280px; }
.footer h4 { color: #fff; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-4); font-family: var(--font-body); }
.footer ul { display: grid; gap: var(--space-2); }
.footer ul a { font-size: var(--text-sm); color: #A38F77; transition: color .2s; }
.footer ul a:hover { color: #E5A23E; }
.footer-bottom { border-top: 1px solid #3A2C1E; padding-top: var(--space-6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3); font-size: var(--text-xs); color: #7A6850; }

/* ---------- FLOATING ACTIONS ---------- */
.fab { position: fixed; bottom: 20px; right: 20px; z-index: 90; display: flex; flex-direction: column; gap: .75rem; }
.fab a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .25s var(--ease); }
.fab a:hover { transform: scale(1.08); }
.fab .wa { background: #25D366; color: #fff; }
.fab .tel { background: var(--accent); color: #fff; }
.fab svg { width: 26px; height: 26px; }

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid, .price-wrap, .value-split, .team-split, .contact-grid, .area-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero-visual { order: -1; max-width: 460px; }
  .usp-grid, .stats-grid { grid-template-columns: repeat(2,1fr); }
  .serv-grid, .ba-grid, .rev-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); gap: var(--space-8); }
  .step::before { display: none; }
}
@media (max-width: 640px) {
  .nav-links, .nav-phone, .nav-actions .btn-primary { display: none; }
  .burger { display: grid; }
  .usp-grid, .stats-grid, .serv-grid, .ba-grid, .rev-grid, .steps, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-float { left: 0; }
  .mobile-menu.open { display: flex; }
  /* Preis-Tabelle eigenständig scrollbar halten, Seite nicht überlaufen lassen */
  .price-wrap .reveal { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table { min-width: 480px; }
  .mobile-menu .btn-primary { width: 100%; text-align: center; }
}
.mobile-menu { display: none; position: fixed; inset: 72px 0 0; background: var(--bg); z-index: 99; flex-direction: column; padding: var(--space-8) var(--space-6); gap: var(--space-4); }
.mobile-menu a { font-size: var(--text-lg); font-family: var(--font-display); padding: var(--space-2) 0; border-bottom: 1px solid var(--border); }

/* ---------- DROPZONE / FOTO-UPLOAD ---------- */
.dropzone {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: var(--space-6); text-align: center; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  color: var(--text-soft); background: var(--bg); transition: all .25s var(--ease);
}
.dropzone:hover, .dropzone.drag { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-deep); }
.dropzone svg { color: var(--accent); }
.dz-text { font-size: var(--text-sm); }
.dz-text strong { color: var(--accent-deep); }
.dz-sub { font-size: var(--text-xs); color: var(--text-muted); }

.preview-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--space-3); }
.preview-grid .thumb { position: relative; width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); }
.preview-grid .thumb img { width: 100%; height: 100%; object-fit: cover; }
.preview-grid .thumb button { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; border-radius: 50%; background: rgba(43,32,24,.8); color: #fff; font-size: 12px; line-height: 1; display: grid; place-items: center; }

/* ---------- CHECKBOXEN ---------- */
.checkbox-field { margin: var(--space-4) 0; }
.cb { display: flex; align-items: flex-start; gap: .65rem; cursor: pointer; font-size: var(--text-sm); color: var(--text); }
.cb input { position: absolute; opacity: 0; width: 0; height: 0; }
.cb-box { flex-shrink: 0; width: 22px; height: 22px; border: 1.5px solid var(--border); border-radius: 6px; background: var(--bg); display: grid; place-items: center; transition: all .2s; margin-top: 1px; }
.cb-box::after { content: ""; width: 11px; height: 6px; border-left: 2.4px solid #fff; border-bottom: 2.4px solid #fff; transform: rotate(-45deg) scale(0); transition: transform .18s var(--ease); margin-top: -2px; }
.cb input:checked + .cb-box { background: var(--accent); border-color: var(--accent); }
.cb input:checked + .cb-box::after { transform: rotate(-45deg) scale(1); }
.cb input:focus-visible + .cb-box { outline: 2px solid var(--accent); outline-offset: 2px; }
.cb a { color: var(--accent-deep); text-decoration: underline; }
.cb-small { font-size: var(--text-xs); color: var(--text-soft); margin-top: var(--space-2); }

/* ---------- WERTSACHEN-PANEL ---------- */
.wert-panel { border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: var(--radius-sm); padding: var(--space-4) var(--space-6); margin-bottom: var(--space-4); background: var(--accent-soft); animation: slideDown .3s var(--ease); }
[data-theme="dark"] .wert-panel { background: var(--surface-2); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.cat { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: var(--text-xs); padding: .55rem .7rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); transition: all .2s; }
.cat:hover { border-color: var(--accent); }
.cat input { accent-color: var(--accent); width: 16px; height: 16px; }
.cat:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-deep); font-weight: 600; }
@media (max-width: 640px){ .cat-grid { grid-template-columns: 1fr; } }

/* ============ LEGAL PAGES (Impressum / Datenschutz) ============ */
.legal { padding: calc(72px + var(--space-12)) 0 var(--space-16); }
.legal .container { max-width: 820px; }
.legal h1 { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; color: var(--text); margin-bottom: var(--space-2); }
.legal .legal-sub { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: var(--space-8); }
.legal h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: var(--text); margin: var(--space-10) 0 var(--space-3); }
.legal h3 { font-size: var(--text-base); font-weight: 600; color: var(--text); margin: var(--space-6) 0 var(--space-2); }
.legal p, .legal li { font-size: var(--text-base); line-height: 1.7; color: var(--text-soft); }
.legal p { margin-bottom: var(--space-4); }
.legal ul { display: grid; gap: var(--space-2); margin: 0 0 var(--space-4) 1.2rem; list-style: disc; }
.legal a { color: var(--accent-deep); text-decoration: underline; }
.legal a:hover { color: var(--accent); }
.legal .legal-box { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: var(--space-6); margin-bottom: var(--space-4); }
.legal .back { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: var(--text-sm); color: var(--accent-deep); margin-bottom: var(--space-8); }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-4); font-size: var(--text-sm); }
.legal table th, .legal table td { text-align: left; padding: .65rem .8rem; border: 1px solid var(--border); vertical-align: top; color: var(--text-soft); }
.legal table th { background: var(--surface); color: var(--text); font-weight: 600; }

/* =====================================================================
   COOKIE-CONSENT-BANNER (DSGVO-konform)
   ===================================================================== */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  padding: var(--space-4) var(--space-6);
}
.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  min-width: 240px;
  font-size: var(--text-sm);
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}
.cookie-inner a { color: var(--accent-deep); text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-btns { flex-direction: row; width: 100%; }
  .cookie-btns .btn { flex: 1; text-align: center; justify-content: center; }
}
