/* Plucci Parkett - Styles. Grün #22b137, Navy #000422, Vollkorn + Open Sans. */

:root {
  --green:        #22b137;
  --green-dark:   #1c9a2f;
  --green-darker: #14702a;
  --green-tint:   #eaf5ef;
  --green-tint-2: #f4faf7;
  --ink:          #000422;   /* Navy - Headlines */
  --ink-soft:     #2b3440;   /* Fließtext */
  --muted:        #5d6b76;
  --line:         #e4ebe7;
  --bg:           #ffffff;
  --bg-alt:       #f5f9f7;
  --cream:        #f7f3ec;
  --white:        #ffffff;
  --shadow-sm:    0 2px 10px rgba(0, 20, 10, .06);
  --shadow:       0 12px 34px rgba(0, 30, 15, .10);
  --shadow-lg:    0 26px 60px rgba(0, 30, 15, .16);
  --radius:       16px;
  --radius-sm:    10px;
  --container:    1180px;
  --ease:         cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-darker); }
h1, h2, h3, h4 {
  font-family: 'Vollkorn', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; position: relative; }
section[id], [id].anchor { scroll-margin-top: 90px; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 70px 0; }
.section--ink { background: var(--ink); color: #c7d0da; }
.section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--muted); border-radius: 2px; }
.hero .eyebrow { color: #b6c2cd; }
.hero .eyebrow::before { background: #b6c2cd; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 1.2rem + 2.4vw, 2.85rem); margin-bottom: .35em; }
.section-head p { font-size: 1.08rem; color: var(--muted); margin: 0; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--green); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 1.02rem;
  line-height: 1; text-align: center; cursor: pointer;
  padding: 17px 30px; border-radius: 50px; border: 2px solid transparent;
  background: var(--bg); color: var(--fg);
  transition: transform .18s var(--ease), background .2s, color .2s;
}
.btn:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 19px 38px; font-size: 1.08rem; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); box-shadow: none; }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { background: var(--green-tint); color: var(--green-darker); border-color: var(--green); }
.btn i { font-size: .95em; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink); color: #aeb8c4;
  font-size: .86rem; letter-spacing: .01em;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #d7dee6; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar .topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar i { color: var(--green); margin-right: 7px; }
.topbar .topbar__usp { color: #8a96a4; }
@media (max-width: 720px) { .topbar { display: none; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, padding .3s;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__brand img { height: 50px; width: auto; transition: height .3s; }
.site-header.is-scrolled .nav__brand img { height: 44px; }
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__menu a {
  display: block; padding: 10px 14px; color: var(--ink); font-weight: 600; font-size: .98rem;
  border-radius: 8px; position: relative;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--green); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__menu a:hover { color: var(--green-darker); }
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.nav__phone i { color: var(--green); }
.nav__phone:hover { color: var(--green-darker); }
.nav__toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; cursor: pointer; font-size: 1.3rem; color: var(--ink); align-items: center; justify-content: center;
}

@media (max-width: 980px) {
  .nav__menu, .nav__actions .nav__phone, .nav__actions .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav { min-height: 66px; }
}

/* Mobile-Menü */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 200;
  background: #fff; box-shadow: var(--shadow-lg); padding: 26px 24px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mobile-menu__head img { height: 44px; }
.mobile-menu a.m-link { padding: 13px 6px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.mobile-menu a.m-link:hover { color: var(--green-dark); }
.mobile-menu .btn { margin-top: 18px; }
.mobile-menu__call { margin-top: 12px; text-align: center; font-weight: 700; }
.menu-close { width: 44px; height: 44px; border: 0; background: var(--bg-alt); border-radius: 10px; font-size: 1.3rem; cursor: pointer; color: var(--ink); }
.backdrop { position: fixed; inset: 0; background: rgba(0, 4, 34, .5); opacity: 0; visibility: hidden; transition: .3s; z-index: 150; }
.backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(0, 0, 0, 0.50);
}
.hero__inner { padding: 96px 0 104px; max-width: 680px; }
.hero h1 { color: #fff; font-weight: 500; font-size: clamp(2.3rem, 1.3rem + 3.6vw, 3.7rem); margin-bottom: .35em; }
.hero__sub { font-size: clamp(1.05rem, .95rem + .6vw, 1.28rem); color: #e7edf2; max-width: 600px; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 22px; }
.hero__chips span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .96rem; color: #eef3f7; }
.hero__chips i { color: var(--green); }
@media (max-width: 560px) { .hero__cta .btn { width: 100%; } }

/* ---------- USP-Strip ---------- */
.usp-strip { margin-top: -44px; position: relative; z-index: 5; }
.usp-strip__grid {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.usp-strip__item { display: flex; gap: 15px; align-items: flex-start; padding: 26px 26px; border-right: 1px solid var(--line); }
.usp-strip__item:last-child { border-right: 0; }
.usp-strip__item i { font-size: 1.5rem; color: var(--green); margin-top: 3px; }
.usp-strip__item strong { display: block; color: var(--ink); font-family: 'Vollkorn', serif; font-size: 1.08rem; }
.usp-strip__item span { font-size: .92rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 880px) { .usp-strip__grid { grid-template-columns: repeat(2, 1fr); } .usp-strip__item:nth-child(2) { border-right: 0; } .usp-strip__item:nth-child(1), .usp-strip__item:nth-child(2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 480px) { .usp-strip__grid { grid-template-columns: 1fr; } .usp-strip__item { border-right: 0; border-bottom: 1px solid var(--line); } .usp-strip__item:last-child { border-bottom: 0; } }

/* ---------- Leistungen (Service-Grid) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-dark)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 62px; height: 62px; border-radius: 16px; background: var(--green-tint);
  display: grid; place-items: center; font-size: 1.55rem; color: var(--green-dark); margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.service-card:hover .service-card__icon { background: var(--green); color: #fff; }
.service-card h3 { font-size: 1.4rem; margin-bottom: .35em; }
.service-card p { color: var(--muted); font-size: .98rem; margin: 0; }
@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Über uns (Split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: auto; }
.split__media .badge-float {
  position: absolute; bottom: -26px; left: -26px; background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 18px 22px; display: flex; align-items: center; gap: 14px;
}
.badge-float i { font-size: 2rem; color: var(--green); }
.badge-float strong { display: block; font-family: 'Vollkorn', serif; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.badge-float span { font-size: .85rem; color: var(--muted); }
.split__body h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); }
.feature-list { list-style: none; margin: 22px 0 28px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list i { color: var(--green); margin-top: 5px; font-size: 1.05rem; flex-shrink: 0; }
.feature-list strong { color: var(--ink); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split__media { order: 0; }
  .split__media .badge-float { left: 16px; bottom: 16px; }
}

/* ---------- Galerie ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; background: var(--bg-alt);
  aspect-ratio: 4 / 3; margin: 0;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item::after {
  content: "\f00e"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #fff; font-size: 1.4rem;
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(0deg, rgba(0, 4, 34, .55), rgba(0, 4, 34, .15));
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: 1; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

/* ---------- Vorher / Nachher ---------- */
.ba-wrap { max-width: 760px; margin: 0 auto; }
.ba {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__label {
  position: absolute; top: 14px; padding: 5px 14px; border-radius: 50px; font-size: .8rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: #fff; background: rgba(0, 4, 34, .72); backdrop-filter: blur(4px);
}
.ba__label--before { left: 14px; }
.ba__label--after { right: 14px; background: rgba(28, 154, 47, .85); }
.ba__line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0, 0, 0, .1); }
.ba__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--green-dark); cursor: ew-resize; font-size: 1rem;
}
.ba__handle::before { content: "\f337"; font-family: "Font Awesome 6 Free"; font-weight: 900; }
.ba-note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 16px; }

/* ---------- Ablauf (Steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 34px 26px 30px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.step__num {
  counter-increment: step; width: 52px; height: 52px; border-radius: 14px;
  background: var(--ink); color: #fff; font-family: 'Vollkorn', serif; font-weight: 700; font-size: 1.4rem;
  display: grid; place-items: center; margin-bottom: 18px;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.22rem; margin-bottom: .3em; }
.step p { font-size: .94rem; color: var(--muted); margin: 0; }
.step:not(:last-child)::after {
  content: "\f061"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--green);
  position: absolute; right: -16px; top: 50px; font-size: 1rem; z-index: 2;
}
@media (max-width: 920px) { .steps { grid-template-columns: 1fr 1fr; } .step:nth-child(2)::after { display: none; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .step::after { display: none !important; } }

/* ---------- Region ---------- */
.region-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 860px; margin: 0 auto 46px; }
.region-tags span {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: .92rem; color: var(--ink-soft);
}
.region-tags i { color: var(--green); }
.region-map-wrap { max-width: 940px; margin: 0 auto; }
.region-map-svg { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; border: 1px solid var(--line); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item.is-open { box-shadow: var(--shadow-sm); border-color: var(--green); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 56px 22px 24px; font-family: 'Vollkorn', serif; font-weight: 700; font-size: 1.15rem; color: var(--ink);
  position: relative; line-height: 1.4;
}
.faq__q::after {
  content: "\2b"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--green-dark);
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%); transition: transform .3s; font-size: .95rem;
}
.faq__item.is-open .faq__q::after { content: "\f068"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a > div { padding: 0 24px 24px; color: var(--muted); }
.faq__a p { margin: 0; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); }
.contact-cards { display: grid; gap: 16px; margin-top: 28px; }
.contact-card {
  display: flex; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 22px; transition: border-color .25s, transform .2s;
}
.contact-card:hover { border-color: var(--green); transform: translateX(3px); }
.contact-card__icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 12px; background: var(--green-tint); color: var(--green-dark); display: grid; place-items: center; font-size: 1.25rem; }
.contact-card small { color: var(--muted); display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-card strong { color: var(--ink); font-size: 1.12rem; font-family: 'Vollkorn', serif; }
.contact-card a { color: var(--ink); }
.contact-card a:hover { color: var(--green-dark); }

.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 36px; border: 1px solid var(--line); }
.form-card h3 { font-size: 1.5rem; margin-bottom: .25em; }
.form-card > p { color: var(--muted); margin-bottom: 24px; font-size: .96rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--green-dark); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fcfdfc; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-tint); }
.field textarea { resize: vertical; min-height: 130px; }
.form-consent { display: flex; gap: 11px; align-items: flex-start; font-size: .86rem; color: var(--muted); margin: 6px 0 22px; }
.form-consent input { width: 19px; height: 19px; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 16px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 460px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 28px 22px; } }

/* Form-Status (send.php) */
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 22px; font-weight: 600; display: flex; gap: 12px; align-items: flex-start; }
.alert i { margin-top: 3px; }
.alert--ok { background: var(--green-tint); color: var(--green-darker); border: 1px solid #bfe3cd; }
.alert--err { background: #fdecea; color: #b3261e; border: 1px solid #f5c7c1; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--green); color: #fff; border-radius: 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.3rem); margin: 0; }
.cta-band p { color: rgba(255, 255, 255, .9); margin: .4em 0 0; }
.cta-band .btn { background: #fff; color: var(--green-darker); }
.cta-band .btn:hover { background: var(--ink); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #9aa6b3; padding: 70px 0 0; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 50px; }
.site-footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 18px; }
.footer-brand img { height: 54px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { color: #8694a3; max-width: 320px; }
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a { color: #aab6c3; }
.footer-links a:hover { color: var(--green); }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact i { color: var(--green); margin-top: 4px; width: 18px; text-align: center; }
.footer-contact a { color: #cdd6df; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem; color: #76828f; }
.footer-bottom a { color: #9aa6b3; }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom__legal { display: flex; gap: 20px; flex-wrap: wrap; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Floating Call (mobil) ---------- */
.fab-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none;
  width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: #fff;
  align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 10px 26px rgba(28, 154, 47, .5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 10px 26px rgba(28, 154, 47, .5), 0 0 0 0 rgba(34, 177, 55, .5); } 70% { box-shadow: 0 10px 26px rgba(28, 154, 47, .5), 0 0 0 16px rgba(34, 177, 55, 0); } 100% { box-shadow: 0 10px 26px rgba(28, 154, 47, .5), 0 0 0 0 rgba(34, 177, 55, 0); } }
@media (max-width: 980px) { .fab-call { display: inline-flex; } }

/* ---------- Scroll-Top ---------- */
.scroll-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 48px; height: 48px; border-radius: 12px;
  background: var(--ink); color: #fff; border: 0; cursor: pointer; font-size: 1.1rem;
  display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 980px) { .scroll-top { bottom: 88px; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0, 4, 34, .92); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255, 255, 255, .12); border: 0; color: #fff; cursor: pointer; border-radius: 10px; width: 52px; height: 52px; font-size: 1.4rem; transition: background .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .28); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
@media (max-width: 600px) { .lightbox__nav { width: 44px; height: 44px; } }

/* ---------- Legal-Seiten ---------- */
.legal { padding: 60px 0 80px; }
.legal .container { max-width: var(--container); }
.legal h1 { font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem); margin-bottom: .6em; }
.legal h2 { font-size: 1.4rem; margin: 1.8em 0 .5em; }
.legal h3 { font-size: 1.12rem; margin: 1.4em 0 .4em; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 22px; margin-bottom: 1.1em; }
.legal a { word-break: break-word; }
.legal .back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px; font-weight: 600; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .fab-call { animation: none; }
}
