/* ==========================================================================
   Demir Entrümpelung – Lübeck & Umgebung
   Gemeinsames Stylesheet
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --black-card: #161616;
  --black-elevated: #1c1c1c;
  --cream: #ecdcc0;
  --cream-bright: #f3e7d1;
  --cream-dim: #c9b896;
  --line: rgba(236, 220, 192, 0.18);
  --line-soft: rgba(236, 220, 192, 0.1);
  --text: #e9e6df;
  --text-muted: #9b958a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(236, 220, 192, 0.18);
}

/* Komfortabler Abstand, wenn per Anker-Link gesprungen wird (Sticky-Header) */
:target { scroll-margin-top: 92px; }

/* Touch-Geräte: keine Hover-Sprünge, klare Tap-Flächen */
@media (hover: none) {
  .btn:hover, .card:hover, .contact-info__item:hover,
  .btn--primary:hover, .btn--ghost:hover { transform: none; }
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 800; line-height: 1.15; letter-spacing: 0.5px; color: var(--cream-bright); }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 18px;
}

.section-intro {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.center { text-align: center; }
.center .section-intro { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--cream); color: #1a140a; }
.btn--primary:hover { background: var(--cream-bright); transform: translateY(-3px); }
.btn--ghost { border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(236,220,192,0.06); transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 42px; height: 42px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-weight: 800; letter-spacing: 3px; font-size: 1.02rem; color: var(--cream-bright); }
.brand__sub { font-size: 0.62rem; letter-spacing: 2.5px; color: var(--text-muted); text-transform: uppercase; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--cream-bright); }
.nav__links a.active { color: var(--cream-bright); }
.nav__links a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 22px;
  margin: 4px auto 0;
  background: var(--cream);
  border-radius: 2px;
}
.nav__cta { margin-left: 12px; }
.nav__cta .btn { padding: 11px 22px; }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--cream);
}
.nav__toggle span { display:block; width:20px; height:2px; background: var(--cream); margin: 4px auto; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(236, 220, 192, 0.1), transparent 60%),
    radial-gradient(700px 500px at -5% 110%, rgba(236, 220, 192, 0.05), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: 1px;
}
.hero h1 .accent { color: var(--cream); }
.hero__tag {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 26px;
}
.hero__tag span {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
}
.hero__lead { font-size: 1.12rem; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__card {
  background: linear-gradient(180deg, var(--black-card), var(--black-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero__card h3 { font-size: 1.15rem; margin-bottom: 18px; letter-spacing: 1px; }
.checklist { list-style: none; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 500; }
.check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream);
  display: grid; place-items: center;
}
.check svg { width: 15px; height: 15px; stroke: #1a140a; stroke-width: 3; }
.hero__card .btn { margin-top: 26px; width: 100%; justify-content: center; }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--black-soft);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 28px;
}
.trust__item + .trust__item { border-left: 1px solid var(--line-soft); }
.trust__icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--cream);
}
.trust__icon svg { width: 24px; height: 24px; }
.trust__item h4 { font-size: 1rem; color: var(--cream-bright); margin-bottom: 2px; }
.trust__item p { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.card {
  background: var(--black-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); background: var(--black-elevated); }
.card__icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(236,220,192,0.08);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--cream);
  margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; letter-spacing: 0.5px; }
.card p { color: var(--text-muted); font-size: 0.98rem; }
.card ul { margin-top: 16px; list-style: none; display: grid; gap: 8px; }
.card ul li { position: relative; padding-left: 20px; color: var(--text); font-size: 0.94rem; }
.card ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--cream); }

/* ---------- Process / Ablauf ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.step {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(236,220,192,0.22);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(700px 320px at 50% -20%, rgba(236,220,192,0.12), transparent 60%),
    var(--black-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.quote {
  background: var(--black-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.quote__stars { color: var(--cream); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.quote p { color: var(--text); font-style: italic; margin-bottom: 20px; }
.quote__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream); color: #1a140a;
  display: grid; place-items: center; font-weight: 800; font-size: 1rem;
}
.quote__author strong { display: block; color: var(--cream-bright); font-size: 0.95rem; }
.quote__author span { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 44px auto 0; display: grid; gap: 14px; }
.faq__item {
  background: var(--black-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--cream-bright);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}
.faq__q .plus { flex: none; transition: transform 0.3s var(--ease); color: var(--cream); font-size: 1.4rem; font-weight: 400; }
.faq__item.open .plus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__a p { padding: 0 26px 24px; color: var(--text-muted); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__values { display: grid; gap: 18px; margin-top: 28px; }
.about__value { display: flex; gap: 16px; }
.about__value .check { width: 30px; height: 30px; }
.about__value h4 { color: var(--cream-bright); margin-bottom: 2px; font-size: 1.05rem; }
.about__value p { color: var(--text-muted); font-size: 0.95rem; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat {
  background: var(--black-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.stat__num { font-size: 2.6rem; font-weight: 800; color: var(--cream); line-height: 1; }
.stat__label { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 340px at 80% -20%, rgba(236,220,192,0.1), transparent 60%);
  pointer-events: none;
}
.page-hero h1 { position: relative; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { position: relative; color: var(--text-muted); max-width: 600px; margin-top: 14px; font-size: 1.08rem; }
.breadcrumbs { position: relative; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 18px; }
.breadcrumbs a:hover { color: var(--cream); }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.contact-info__item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  background: var(--black-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-info__item:hover { border-color: var(--line); transform: translateY(-3px); }
.contact-info__icon {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream); color: #1a140a;
  display: flex; align-items: center; justify-content: center;
  line-height: 0;
}
.contact-info__icon svg { width: 22px; height: 22px; display: block; }
.contact-info__item div span { display: block; font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.contact-info__item strong { color: var(--cream-bright); font-size: 1.05rem; font-weight: 700; }

.form {
  background: var(--black-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; color: var(--cream-dim); margin-bottom: 8px; font-weight: 600; letter-spacing: 0.5px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cream);
  box-shadow: 0 0 0 3px rgba(236,220,192,0.12);
}
.field select option { background: var(--black-soft); }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form__success {
  display: none;
  background: rgba(236,220,192,0.1);
  border: 1px solid var(--line);
  color: var(--cream-bright);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--line-soft);
  padding: 60px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand p { color: var(--text-muted); margin-top: 16px; max-width: 320px; font-size: 0.95rem; }
.footer__col h4 { color: var(--cream-bright); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col a, .footer__col li { color: var(--text-muted); font-size: 0.95rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line-soft);
  color: var(--text-muted); font-size: 0.85rem; flex-wrap: wrap; gap: 10px;
}
.footer__bottom a:hover { color: var(--cream); }

/* ---------- Reveal animation ---------- */
/* Inhalte sind standardmaessig SICHTBAR. Die Einblend-Animation wird nur
   aktiviert, wenn das JavaScript laeuft (Klasse .js-reveal auf <html>).
   Faellt das Script aus, bleibt der Inhalt trotzdem sichtbar. */
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js-reveal .reveal { opacity: 0; transform: translateY(24px); }
.js-reveal .reveal.in { opacity: 1; transform: none; }

/* ---------- Mobile Schnellzugriff-Leiste (Anrufen / Angebot) ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-soft);
}
.mobile-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
}
.mobile-bar a svg { width: 19px; height: 19px; }
.mobile-bar__call { background: var(--cream); color: #1a140a; }
.mobile-bar__offer { border: 1px solid var(--line); color: var(--cream); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__links.show {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 78px; left: 0; right: 0; z-index: 150;
    background: rgba(8,8,8,0.97); backdrop-filter: blur(14px);
    padding: 14px 24px 22px; gap: 4px; border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  }
  .nav__links.show a { padding: 16px 12px; font-size: 1.05rem; }
  .nav__toggle { display: block; }
  .cards, .trust__grid { grid-template-columns: 1fr; }
  .trust__item + .trust__item { border-left: none; border-top: 1px solid var(--line-soft); }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
  .hero { padding: 64px 0 56px; }
  .page-hero { padding: 56px 0 44px; }
  .cta-band { padding: 60px 0; }
  /* Bequeme Tap-Flächen: Buttons über volle Breite */
  .hero__actions, .cta-band .hero__actions { width: 100%; }
  .hero__actions .btn, .cta-band .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .btn { min-height: 50px; padding: 14px 26px; }
  /* iOS-Zoom verhindern: Formularfelder mind. 16px */
  .field input, .field select, .field textarea { font-size: 16px; padding: 14px 15px; }
  .faq__q { padding: 20px 20px; font-size: 1.02rem; }
  .faq__a p { padding: 0 20px 22px; }
  /* Sticky-Header schlanker auf dem Handy */
  .nav { height: 66px; }
  .nav__links.show { top: 66px; }
  :target { scroll-margin-top: 80px; }
  /* Mobile Schnellzugriff-Leiste anzeigen */
  .mobile-bar { display: flex; }
  body.has-mobile-bar { padding-bottom: 78px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .steps { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero__card, .form { padding: 24px; }
  .card { padding: 26px; }
  .brand__sub { display: none; }
  .hero__tag span { font-size: 0.74rem; padding: 5px 12px; }
}
@media (max-width: 360px) {
  .brand__name { font-size: 0.92rem; letter-spacing: 2px; }
  .section-intro, .hero__lead { font-size: 1rem; }
}

/* ---------- Bewegung reduzieren (Barrierefreiheit/Komfort) ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
