/* ==========================================================================
   RENT US Glanzgarage — Fahrzeugaufbereitung
   Design: dark "nasser Lack"-Look, Akzent = Logo-Grün
   ========================================================================== */

:root {
  --bg:        #0c0e0d;
  --bg-2:      #121513;
  --surface:   #171b18;
  --surface-2: #1e231f;
  --line:      #2a302b;
  --text:      #f3f6f1;
  --muted:     #a6b0a5;
  --muted-2:   #7c857b;
  --green:     #9fb247;   /* Garagen-Grün, gemessen aus Mikes Wand */
  --green-2:   #b9d055;
  --green-deep:#78882f;
  --green-ink: #14210a;
  --white:     #ffffff;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 20px 60px rgba(0,0,0,.45);
  --maxw:      1180px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --head: "Oswald", "Arial Narrow", sans-serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
}

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

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-2); }

/* --- Eyebrow / section headings ---------------------------------------- */
.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .8rem;
  font-weight: 500;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--green);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.section-head p { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .95rem;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green); color: var(--green-ink); }
.btn--primary:hover { background: var(--green-2); }
.btn--ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--wa { background: #25d366; color: #08210f; }
.btn--wa:hover { background: #34e178; }
.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn svg { width: 18px; height: 18px; }

/* ======================================================================
   HEADER
   ====================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10,12,11,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__txt strong { font-family: var(--head); font-size: 1.15rem; letter-spacing: .04em; }
.brand__txt span { font-size: .62rem; letter-spacing: .24em; color: var(--green); text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--head); text-transform: uppercase; font-weight: 400;
  letter-spacing: .06em; font-size: .9rem; color: var(--muted);
  transition: color .2s; position: relative;
}
.nav a:hover { color: var(--text); }
.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone { display: flex; align-items: center; gap: 8px; font-family: var(--head); font-size: .95rem; letter-spacing: .03em; }
.header__phone svg { width: 16px; height: 16px; color: var(--green); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; transition: .3s; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,10,9,.97); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--head); text-transform: uppercase; font-size: 1.6rem; color: var(--muted); letter-spacing: .04em; padding: 8px; }
.mobile-nav a:hover { color: var(--green); }

/* ======================================================================
   HERO
   ====================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,10,9,.72) 0%, rgba(8,10,9,.55) 40%, rgba(8,10,9,.92) 100%),
    radial-gradient(120% 90% at 15% 30%, rgba(8,10,9,.25), rgba(8,10,9,.85));
}
.hero__inner { position: relative; z-index: 1; padding: 140px 0 90px; max-width: 780px; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: .98;
  margin: 20px 0 22px;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero__sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__locations { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-family: var(--head); letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; color: var(--muted-2); }
.hero__locations b { color: var(--text); font-weight: 500; }

/* Trust strip */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 26px 20px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.trust__item:last-child { border-right: 0; }
.trust__item svg { width: 30px; height: 30px; color: var(--green); flex-shrink: 0; }
.trust__item strong { display: block; font-family: var(--head); font-size: 1.05rem; letter-spacing: .02em; }
.trust__item span { font-size: .85rem; color: var(--muted); }

/* ======================================================================
   INTRO / Baukasten
   ====================================================================== */
.intro__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.intro__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.intro__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.4; }
.intro__media .badge {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(10,12,11,.75); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px;
}
.intro__media .badge strong { font-family: var(--head); font-size: 1.8rem; color: var(--green); display: block; line-height: 1; }
.intro__media .badge span { font-size: .8rem; color: var(--muted); }
.intro p.lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 26px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 999px; padding: 9px 16px; font-size: .9rem;
}
.pill svg { width: 15px; height: 15px; color: var(--green); }

/* ======================================================================
   CARDS (Pakete / Abos)
   ====================================================================== */
.grid { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.pkg {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  position: relative;
}
.pkg:hover { transform: translateY(-6px); border-color: var(--green-deep); }
.pkg--featured { border-color: var(--green); background: linear-gradient(180deg, rgba(168,201,107,.08), var(--surface) 55%); }
.pkg__tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--green-ink);
  font-family: var(--head); text-transform: uppercase; letter-spacing: .1em;
  font-size: .72rem; padding: 5px 14px; border-radius: 999px;
}
.pkg__name { font-size: 1.5rem; }
.pkg__desc { color: var(--muted); font-size: .88rem; margin: 6px 0 18px; min-height: 38px; }
.pkg__price { font-family: var(--head); font-size: 2.4rem; color: var(--green); line-height: 1; }
.pkg__price small { font-size: .8rem; color: var(--muted); letter-spacing: .05em; display: block; margin-bottom: 4px; text-transform: uppercase; font-weight: 400; }
.pkg__price .unit { font-size: 1rem; color: var(--muted); }

/* Der Faule Hund — eigener Blickfang (Mikes Renner) */
.faulhund { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: center;
  margin-top: 32px; padding: 32px 34px; border-radius: var(--radius-lg);
  background: linear-gradient(125% 100% at 0% 0%, rgba(159,178,71,.15), var(--surface));
  border: 1px solid var(--green-deep); }
@media (max-width: 760px) { .faulhund { grid-template-columns: 1fr; gap: 18px; padding: 26px 22px; } }
.faulhund__eyebrow { color: var(--green); font-family: var(--head); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.faulhund__name { font-family: var(--head); font-size: 2rem; margin: 6px 0 10px; }
.faulhund__pitch { color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.faulhund__list { list-style: none; display: grid; gap: 6px; padding: 0; }
.faulhund__list li { padding-left: 22px; position: relative; color: var(--text); font-size: .95rem; }
.faulhund__list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.faulhund__aside { text-align: center; display: grid; gap: 12px; justify-items: center; }
.faulhund__price { font-family: var(--head); font-size: 2.6rem; color: var(--green); line-height: 1; }
.faulhund__price small { display: block; font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.faulhund__price .unit { font-size: 1rem; color: var(--muted); }
.faulhund__note { font-size: .78rem; color: var(--muted-2); }
/* „Der Faule Hund" — Coming-Soon-Zustand (noch nicht aktiviert, kein Preis) */
.faulhund { position: relative; overflow: hidden; }
.faulhund__badge { position: absolute; top: 14px; right: -4px; transform: rotate(6deg);
  font-family: var(--head); text-transform: uppercase; letter-spacing: .1em; font-size: 11px;
  color: var(--ink); background: var(--green); padding: 6px 12px; border-radius: 7px;
  box-shadow: 0 4px 14px rgba(0,0,0,.4); }
.faulhund__soon { font-family: var(--head); text-transform: uppercase; letter-spacing: .05em;
  font-size: 1.5rem; color: var(--green); }
.pkg__list { list-style: none; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pkg__list li { display: flex; gap: 10px; font-size: .9rem; color: var(--text); align-items: flex-start; }
.pkg__list li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 4px; }
.pkg .btn { width: 100%; }

/* ======================================================================
   VERSIEGELUNG (Tiers)
   ====================================================================== */
.tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.tier {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 26px 22px;
  transition: transform .3s var(--ease), border-color .3s;
}
.tier:hover { transform: translateY(-5px); border-color: var(--green-deep); }
.tier__num { font-family: var(--head); font-size: .8rem; color: var(--green-deep); letter-spacing: .2em; }
.tier__name { font-size: 1.25rem; margin: 8px 0 12px; }
.tier__price { font-family: var(--head); color: var(--green); font-size: 1.6rem; margin-bottom: 12px; }
.tier__desc { font-size: .85rem; color: var(--muted); }
.tier__bar { height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--green-deep), var(--green)); margin-bottom: 18px; }

/* ======================================================================
   SONDERLEISTUNGEN
   ====================================================================== */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.svc {
  display: flex; gap: 18px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 22px 24px;
  transition: border-color .3s, transform .3s var(--ease);
}
.svc:hover { border-color: var(--green-deep); transform: translateY(-3px); }
.svc__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
}
.svc__icon svg { width: 22px; height: 22px; color: var(--green); }
.svc__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.svc__head h3 { font-size: 1.12rem; }
.svc__price { font-family: var(--head); color: var(--green); font-size: 1.1rem; white-space: nowrap; }
.svc p { color: var(--muted); font-size: .88rem; margin-top: 6px; }

/* ======================================================================
   GALLERY
   ====================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery a { position: relative; overflow: hidden; border-radius: 14px; display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery a:hover img { transform: scale(1.08); }
.gallery .wide { grid-column: span 2; }
.gallery .tall { grid-row: span 2; }

/* ======================================================================
   VORHER / NACHHER Slider
   ====================================================================== */
.ba-wrap { max-width: 900px; margin: 0 auto; }
.ba {
  position: relative; aspect-ratio: 16/10;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line2); box-shadow: var(--shadow);
  user-select: none; touch-action: none; cursor: ew-resize;
}
.ba__layer { position: absolute; inset: 0; background-size: cover; background-position: center; }
/* "Vorher": echtes Foto, per Filter matt/stumpf gemacht (Demo).
   → Sobald ein echtes Vorher-Foto da ist: background-image tauschen und Filter entfernen. */
.ba__before { clip-path: inset(0 50% 0 0); filter: grayscale(.55) brightness(.6) contrast(.9); }
/* Lack-Slider: echten Matt-vs-Glanz zeigen (kein Grau), nur leicht aufgehellt. */
.ba__before--lack { filter: brightness(1.2); }
.ba__lbl {
  position: absolute; bottom: 16px; z-index: 2;
  font-family: var(--head); text-transform: uppercase; letter-spacing: .12em;
  font-size: .72rem; padding: 6px 12px; border-radius: 8px;
  background: rgba(8,10,9,.66); backdrop-filter: blur(4px);
}
.ba__lbl--before { left: 16px; color: var(--muted); }
.ba__lbl--after { right: 16px; color: var(--green); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--green); transform: translateX(-50%); pointer-events: none; z-index: 3; }
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: var(--green-ink);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.5);
}
.ba__grip svg { width: 22px; height: 22px; }
.ba__hint { text-align: center; font-size: .82rem; color: var(--muted-2); margin-top: 16px; }

/* ======================================================================
   NOTE box
   ====================================================================== */
.note {
  border: 1px dashed var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 26px 28px; margin-top: 34px;
}
.note ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; }
.note li { display: flex; gap: 10px; font-size: .9rem; color: var(--muted); }
.note li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 4px; }
.note b { color: var(--text); }

/* ======================================================================
   ABOUT
   ====================================================================== */
.about__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/4.4; object-fit: cover; width: 100%; }
.about__media .sign {
  position: absolute; right: -14px; bottom: 26px;
  background: var(--green); color: var(--green-ink); padding: 12px 22px;
  border-radius: 12px; font-family: var(--head); text-transform: uppercase;
}
.about__media .sign small { display: block; font-size: .68rem; letter-spacing: .16em; opacity: .8; }
.about__media .sign strong { font-size: 1.15rem; letter-spacing: .03em; }
.about blockquote {
  font-family: var(--head); font-size: 1.9rem; line-height: 1.15;
  text-transform: none; margin: 0 0 24px; color: var(--text);
}
.about blockquote span { color: var(--green); }
.about p { color: var(--muted); margin-bottom: 16px; }

/* ======================================================================
   CONTACT
   ====================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact__info { display: flex; flex-direction: column; gap: 22px; }
.cinfo { display: flex; gap: 16px; align-items: flex-start; }
.cinfo__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo__icon svg { width: 20px; height: 20px; color: var(--green); }
.cinfo strong { font-family: var(--head); letter-spacing: .04em; font-size: 1rem; text-transform: uppercase; }
.cinfo a, .cinfo span { color: var(--muted); }
.cinfo a:hover { color: var(--green); }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.form label { display: block; font-family: var(--head); text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; color: var(--muted); margin-bottom: 8px; }
.field { margin-bottom: 18px; }
.form input, .form textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 15px; color: var(--text);
  font-family: var(--body); font-size: .95rem; transition: border-color .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--green); }
.form textarea { resize: vertical; min-height: 120px; }
.form .check { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); margin-bottom: 20px; }
.form .check input { width: auto; margin-top: 3px; }
.form .btn { width: 100%; }
.form__hint { font-size: .78rem; color: var(--muted-2); margin-top: 14px; text-align: center; }

/* Map */
.map-wrap { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(.3) invert(.9) hue-rotate(150deg); }

/* ======================================================================
   FOOTER
   ====================================================================== */
.footer { background: #080a09; border-top: 1px solid var(--line); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand img { height: 64px; }
.footer p { color: var(--muted); font-size: .9rem; margin-top: 16px; max-width: 300px; }
.footer h4 { font-size: 1rem; color: var(--text); margin-bottom: 18px; letter-spacing: .06em; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer ul span { color: var(--muted); font-size: .9rem; }
.footer ul a:hover { color: var(--green); }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: .2s; }
.footer__social a:hover { border-color: var(--green); background: var(--surface); }
.footer__social svg { width: 18px; height: 18px; color: var(--text); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-2); font-size: .82rem; }
.footer__bottom a:hover { color: var(--green); }

/* ======================================================================
   Floating WhatsApp
   ====================================================================== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ======================================================================
   Cursor-Glanzlicht (folgt der Maus)
   ====================================================================== */
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 70;
  width: 480px; height: 480px; border-radius: 50%;
  pointer-events: none; opacity: 0;
  transform: translate3d(-9999px, -9999px, 0) translate(-50%, -50%);
  background: radial-gradient(circle closest-side,
    rgba(191, 224, 127, .16),
    rgba(168, 201, 107, .07) 45%,
    transparent 72%);
  mix-blend-mode: screen;
  transition: opacity .4s var(--ease);
  will-change: transform, opacity;
}
.cursor-glow.on { opacity: 1; }
/* Kein Effekt auf Touch-Geräten oder bei reduzierter Bewegung */
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

/* ======================================================================
   Eastereggs: Shine-Sweep, Funken, Gruß-Toast
   ====================================================================== */
.shine-sweep { position: fixed; inset: 0; z-index: 82; pointer-events: none; overflow: hidden; opacity: 0; }
.shine-sweep.run { opacity: 1; }
.shine-sweep .bar {
  position: absolute; top: -25%; left: -30%; width: 22%; height: 150%;
  transform: rotate(16deg); filter: blur(6px);
  background: linear-gradient(90deg, transparent, rgba(191,224,127,.30), rgba(255,255,255,.14), transparent);
  mix-blend-mode: screen;
}
.shine-sweep.run .bar { animation: shinebar 950ms cubic-bezier(.4,0,.2,1) forwards; }
@keyframes shinebar { from { left: -30%; } to { left: 120%; } }

.spark {
  position: fixed; z-index: 96; width: 12px; height: 12px; pointer-events: none;
  color: var(--green-2);
  animation: sparkfly 750ms ease-out forwards;
}
.spark svg { width: 100%; height: 100%; display: block; }
@keyframes sparkfly {
  0%   { transform: translate(0,0) scale(.2) rotate(0deg); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(1) rotate(140deg); opacity: 0; }
}

.egg-toast {
  position: fixed; left: 50%; bottom: 92px; z-index: 95;
  transform: translateX(-50%) translateY(16px);
  background: var(--green); color: var(--green-ink);
  font-family: var(--head); text-transform: uppercase; letter-spacing: .08em;
  font-size: .82rem; padding: 12px 22px; border-radius: 999px;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.egg-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .shine-sweep, .spark { display: none; }
}

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

/* Bewertungen ausgeblendet bis echte Google-Reviews vorliegen — 26.07.2026 */
#bewertungen[hidden] {
  display: none !important;
}

/* Legal pages */
.legal { padding: 130px 0 80px; max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 10px; color: var(--green); }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--green); }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; color: var(--muted); font-family: var(--head); text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; }
.legal .back:hover { color: var(--green); }

/* ======================================================================
   ABLAUF (So einfach geht's)
   ====================================================================== */
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .3s var(--ease), border-color .3s;
}
.step:hover { transform: translateY(-5px); border-color: var(--green-deep); }
.step__n { font-family: var(--head); font-size: 2.6rem; line-height: 1; color: var(--green); opacity: .85; }
.step__ic { width: 44px; height: 44px; margin: 12px 0 14px; border-radius: 12px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; }
.step__ic svg { width: 22px; height: 22px; color: var(--green); }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ======================================================================
   BEWERTUNGEN
   ====================================================================== */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; display: flex; flex-direction: column; }
.review__stars { color: #e6c25a; letter-spacing: 3px; font-size: 1rem; margin-bottom: 12px; }
.review__text { color: var(--text); font-size: .95rem; line-height: 1.6; flex: 1; }
.review__by { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.review__av { width: 36px; height: 36px; border-radius: 50%; background: var(--green-deep); color: var(--green-ink);
  display: flex; align-items: center; justify-content: center; font-family: var(--head); font-size: .9rem; }
.review__by b { display: block; font-size: .9rem; }
.review__by span { font-size: .78rem; color: var(--muted-2); }
.reviews-note { text-align: center; margin-top: 30px; }

/* ======================================================================
   FAQ (Accordion, ohne JS via <details>)
   ====================================================================== */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color .25s; }
.faq details[open] { border-color: var(--green-deep); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 22px; gap: 14px;
  font-family: var(--head); text-transform: uppercase; letter-spacing: .02em; font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-size: 1.5rem; line-height: 1; flex-shrink: 0; transition: transform .2s; }
.faq details[open] summary { color: var(--green); }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 22px 20px; color: var(--muted); font-size: .95rem; line-height: 1.65; }

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
/* Nav früher in den Burger klappen, damit die Kopfzeile nicht eng wird */
@media (max-width: 1120px) {
  .nav { display: none; }
  .burger { display: block; }
}

@media (max-width: 980px) {
  .nav, .header__phone, .header__cta { display: none; }
  .burger { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-right: 0; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .intro__grid, .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 420px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .grid-4, .grid-3, .grid-2, .tiers, .services, .note ul { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery .wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
  .container { padding: 0 18px; }
}

/* ===== Buchungs-Wizard & 3D-Check (Welle 2) ===== */
.dreid model-viewer { width: 100%; height: min(62vh, 480px); background: var(--surface);
  border-radius: var(--radius-lg); border: 1px solid var(--line); }
.dreid__frame { width: 100%; min-height: 760px; background: transparent; border: 1px solid var(--line);
  border-radius: var(--radius-lg); display: block; }
.dreid__actions { display: flex; gap: 14px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
@media (max-width: 820px) { .dreid__frame { min-height: 1120px; } }
.wizard { max-width: 860px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(18px, 4vw, 34px); }
.wsteps { display: flex; gap: 10px; justify-content: center; margin-bottom: 22px; }
.wdot { width: 12px; height: 12px; border-radius: 50%; background: var(--line); transition: .25s var(--ease); }
.wdot.on { background: var(--green); transform: scale(1.25); }
.wstep { display: none; scroll-margin-top: 96px; }
.wstep.on { display: block; animation: wfade .3s var(--ease); }
@keyframes wfade { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }
.wstep h3 { font-family: var(--head); font-size: 1.25rem; margin: 0 0 16px; }
.wgrid { display: grid; gap: 12px; }
.wgrid--typ { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.wgrid--paket { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.wcard { background: var(--surface-2); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 14px 12px; cursor: pointer; color: var(--text); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px; transition: .2s var(--ease); }
/* Hover nur auf echten Zeigergeraeten — auf Touch bleibt der Rahmen nach dem Tippen sonst
   kleben und sieht aus wie eine zweite Auswahl (Mike-Bug 19.07.). */
@media (hover: hover) and (pointer: fine) {
  .wcard:hover { border-color: var(--green-deep); transform: translateY(-2px); }
  .wcard:hover svg { color: var(--green); }
}
/* Aktive Auswahl unmissverstaendlich: getoenter Hintergrund + kraeftiger Ring (klar anders als Hover). */
.wcard.sel { border-color: var(--green); background: rgba(159,178,71,.14); box-shadow: 0 0 0 3px rgba(159,178,71,.4); }
.wcard svg { width: 96px; height: 48px; fill: none; stroke: currentColor; stroke-width: 4;
  stroke-linecap: round; stroke-linejoin: round; color: var(--muted); transition: .2s; }
.wcard.sel svg { color: var(--green); }
.wbtn-off { opacity: .45; pointer-events: none; }
.wcard em { color: var(--green); font-style: normal; font-size: .8em; }
.wcard--p { text-align: left; align-items: flex-start; }
.wcard--p span { color: var(--muted); font-size: .88rem; }
.wcard--p b { color: var(--green); font-family: var(--head); font-size: 1.1rem; }
.wcard--p i { font-style: normal; }
.wcard--p.pop { border-color: var(--green-deep); }
.wcard--hund strong::after { content: " 🐶"; }
.wsonder-head { color: var(--text); font-size: .95rem; margin: 24px 0 2px; font-weight: 600; }
.wsonder-head span { color: var(--muted); font-weight: 400; font-size: .86rem; }
.wgrid--sonder { grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); margin-top: 12px; }
.wcard--s { flex-direction: row; align-items: center; justify-content: space-between;
  text-align: left; padding: 11px 14px; gap: 10px; }
.wcard--s strong { font-size: .9rem; font-weight: 600; line-height: 1.2; }
.wcard--s b { color: var(--green); font-family: var(--head); white-space: nowrap; }
.wnote { color: var(--muted-2); font-size: .85rem; margin-top: 14px; text-align: center; }
.wrow { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.wrow--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .wrow--2 { grid-template-columns: 1fr; } }
.wopt { display: flex; align-items: center; gap: 8px; color: var(--text); cursor: pointer; }
.wopt input { accent-color: var(--green); }
.wizard input[type=text], .wizard input[type=tel], .wizard input[type=date], .wizard textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--text); padding: 12px 14px; font-family: var(--body); font-size: 1rem; }
.wizard textarea { margin-bottom: 14px; resize: vertical; }
.wsummary { background: var(--bg-2); border: 1px dashed var(--green-deep); border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 14px; color: var(--muted); line-height: 1.6; }
.wsummary b { color: var(--text); }
.wnav { display: flex; justify-content: space-between; margin-top: 22px; }
#wSend { width: 100%; text-align: center; }
/* Icon-Silhouetten v2 */
.wcard svg { width: 100px; height: 50px; stroke: none; }
.wcard svg .body { fill: currentColor; }
.wcard svg .win { fill: var(--surface-2); }
.wcard svg .hub { fill: var(--surface-2); }
.wcard.sel svg .win, .wcard.sel svg .hub { fill: var(--surface); }

/* Ausklapper & Zusatzinfo (Welle 3) */
details.mehr { margin-top: 12px; }
details.mehr summary { cursor: pointer; color: var(--green); font-size: .9rem; list-style: none; }
details.mehr summary::before { content: "+ "; font-weight: 700; }
details.mehr[open] summary::before { content: "\2212  "; }
details.mehr ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); font-size: .9rem; line-height: 1.65; }
details.mehr p { margin: 10px 0 0; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.zusatzinfo { max-width: 860px; margin: 28px auto 0; background: var(--surface); border: 1px dashed var(--green-deep);
  border-radius: var(--radius); padding: 16px 20px; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.zusatzinfo b { color: var(--text); }

/* Hero-Video: Mobil Hochkant + Desktop quadratisch/Querformat (Einbau 11.07.) */
.hero__video, .hero__video-d{display:none}
@media(min-width:701px){
  .hero__video-d{display:block;width:100%;height:100%;object-fit:cover;
    filter:brightness(1.2) contrast(1.02) saturate(1.03)}
  .hero__pic{display:none}
}
@media(max-width:700px){
  .hero__video{display:block;width:100%;height:100%;object-fit:cover;
    filter:brightness(1.3) contrast(1.03) saturate(1.05)}
  .hero__pic{display:none}
  /* Overlay oben/mittig heller (Video sichtbarer), unten dunkel fuer Textlesbarkeit */
  .hero__bg::after{background:
    linear-gradient(180deg, rgba(8,10,9,.42) 0%, rgba(8,10,9,.30) 40%, rgba(8,10,9,.88) 100%),
    radial-gradient(120% 90% at 15% 30%, rgba(8,10,9,.12), rgba(8,10,9,.60));}
}

/* Zustand-Panel Tabs (Aussen/Innen) im Buchungs-Wizard */
.zustand-panel{margin-top:6px}
.ztabs{display:flex;gap:8px;margin:10px 0}
.ztab{font-family:var(--head);text-transform:uppercase;letter-spacing:.04em;font-size:13px;padding:9px 16px;border-radius:999px;border:1px solid var(--line);background:transparent;color:var(--muted);cursor:pointer;transition:.2s}
.ztab:hover{color:var(--text);border-color:var(--green)}
.ztab.on{background:var(--green);color:var(--green-ink);border-color:var(--green)}
