/* =========================================================
   Ramez Bauwerk – Stylesheet
   ========================================================= */

:root {
  --navy-950: #0f1722;
  --navy-900: #16202d;
  --navy: #1e2a3a;
  --navy-700: #2c3b50;
  --navy-500: #56657a;
  --orange: #e8792b;
  --orange-600: #c9621a;
  --orange-100: #fdeee2;
  --cream: #faf6f0;
  --sand: #f2ebe1;
  --line: #e8e1d6;
  --ink: #1e2a3a;
  --muted: #5d6979;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 14px 34px -14px rgba(16, 24, 40, .22);
  --shadow-lg: 0 34px 70px -24px rgba(16, 24, 40, .32);
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0 0 .45em;
  color: var(--navy);
}
h1 { font-size: clamp(2.3rem, 6.4vw + .5rem, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.15rem); }
h3 { font-size: 1.28rem; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.muted { color: var(--muted); font-size: 1.1rem; }
.note { font-size: .85rem; color: var(--muted); opacity: .85; }

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 300;
  background: var(--navy);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--orange); color: #fff; }

/* ---------- Scroll-Fortschritt ---------- */
.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 150; pointer-events: none; }
.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #f4a261);
  transform-origin: 0 50%;
  transform: scaleX(var(--p, 0));
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--orange);
  --fg: #fff;
  --hover: var(--navy);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s, border-color .3s;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: var(--hover);
  border-radius: inherit;
  transform: translateY(102%);
  transition: transform .45s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(232, 121, 43, .65); }
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(0); }
.btn .icon-arrow { transition: transform .35s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(4px); }

.btn-ghost { --bg: transparent; --fg: var(--navy); border-color: rgba(30, 42, 58, .18); }
.btn-ghost:hover { --fg: #fff; border-color: var(--navy); box-shadow: 0 16px 30px -16px rgba(30, 42, 58, .5); }
.btn-light { --bg: #fff; --fg: var(--navy); --hover: var(--orange); }
.btn-light:hover { --fg: #fff; }
.btn-outline-light { --bg: transparent; --fg: #fff; --hover: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-outline-light:hover { --fg: var(--navy); border-color: #fff; }
.btn-whatsapp { --bg: #25d366; --fg: #fff; --hover: #1a9e4f; }
.btn-whatsapp:hover { box-shadow: 0 16px 30px -14px rgba(37, 211, 102, .6); }
.btn-sm { padding: .72rem 1.2rem; font-size: .95rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color .35s, box-shadow .35s;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 240, .88);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 rgba(30, 42, 58, .07), 0 12px 30px -22px rgba(30, 42, 58, .4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 84px;
  transition: height .35s var(--ease);
}
.is-scrolled .header-inner { height: 68px; }
.brand { flex-shrink: 0; }
.brand img { height: 46px; width: auto; transition: height .35s var(--ease); }
.is-scrolled .brand img { height: 38px; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav a {
  position: relative;
  display: block;
  padding: .55rem .85rem;
  font-weight: 600;
  font-size: .97rem;
  color: var(--navy);
}
.nav a::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .32rem;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: .9rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  transition: color .25s;
}
.header-phone .icon { color: var(--orange); }
.header-phone:hover { color: var(--orange-600); }

.burger {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}
.burger .icon { width: 22px; height: 22px; }

/* ---------- Mobile-Menü ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
  background: var(--navy-900);
  visibility: hidden;
  clip-path: circle(0 at calc(100% - 43px) 42px);
  transition: clip-path .6s var(--ease), visibility 0s .6s;
}
.mobile-menu.is-open {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 43px) 42px);
  transition: clip-path .7s var(--ease);
}
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .3rem; text-align: center; }
.mobile-menu li { opacity: 0; transform: translateY(16px); }
.mobile-menu.is-open li {
  animation: menuIn .55s var(--ease) forwards;
  animation-delay: calc(.18s + var(--i) * .05s);
}
.mobile-menu nav a { display: block; padding: .35rem 1rem; color: #fff; font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -.02em; }
.mobile-menu nav a:hover { color: var(--orange); }
.menu-close {
  position: absolute;
  top: 19px;
  right: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
}
.menu-close .icon { width: 22px; height: 22px; }
.mobile-menu-actions { display: grid; gap: .7rem; width: min(100%, 320px); }
@keyframes menuIn { to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .header-phone span { display: none; }
  .header-phone {
    width: 46px;
    height: 46px;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--line);
  }
}
@media (max-width: 940px) {
  .nav, .header-cta { display: none; }
  .header-actions { margin-left: auto; gap: .6rem; }
  .burger { display: grid; }
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow.light { color: #ffb37a; }
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 121, 43, .55); }
  70%, 100% { box-shadow: 0 0 0 11px rgba(232, 121, 43, 0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding: calc(84px + clamp(2.5rem, 6vw, 5rem)) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30, 42, 58, .08) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.b1 { width: 540px; height: 540px; background: #f8caa3; right: -140px; top: -140px; animation: blob 18s ease-in-out infinite alternate; }
.b2 { width: 440px; height: 440px; background: #cbd8c3; left: -180px; bottom: -180px; animation: blob 22s ease-in-out infinite alternate-reverse; }
@keyframes blob { to { transform: translate(-70px, 60px) scale(1.14); } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: .38em; }
.lead { font-size: clamp(1.1rem, 1.55vw, 1.28rem); color: var(--muted); max-width: 44ch; }

.brush { position: relative; display: inline-block; white-space: nowrap; z-index: 0; }
.brush svg {
  position: absolute;
  left: -3%;
  bottom: -.16em;
  width: 106%;
  height: .3em;
  z-index: -1;
  overflow: visible;
}
.brush path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 13px;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: .9;
}
.is-visible .brush path { animation: draw 1.1s .6s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2.1rem 0 1.8rem; }
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: .97rem;
  color: var(--navy);
}
.hero-checks li { display: flex; align-items: center; gap: .5rem; }
.hero-checks li > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
}
.hero-checks .icon { width: 14px; height: 14px; stroke-width: 3; }

.hero-visual { position: relative; }
.paint-card {
  position: relative;
  border-radius: 34px;
  background: linear-gradient(160deg, #fff 0%, #f3ebdf 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: clamp(.8rem, 2vw, 1.3rem) clamp(.8rem, 2vw, 1.3rem) 0;
  transform: rotate(1.6deg);
  transition: transform .8s var(--ease);
}
.hero-visual:hover .paint-card { transform: rotate(0deg) scale(1.01); }
.painter { width: 100%; height: auto; }
.painter .stripe { transition: opacity .5s; }
.painter .wall-marks { transition: opacity .6s; }

.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1.1rem .7rem .7rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  font-size: .86rem;
  line-height: 1.25;
  animation: float 6s ease-in-out infinite;
}
.float-badge strong { display: block; color: var(--navy); font-size: .95rem; }
.float-badge span { color: var(--muted); }
.fb-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--orange-100);
  color: var(--orange-600) !important;
}
.fb-1 { left: -8%; top: 9%; }
.fb-2 { right: -6%; top: 44%; animation-delay: -2s; }
.fb-3 { left: -4%; bottom: 8%; animation-delay: -4s; }
.swatch-dot {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--paint, #f6f1e8);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
  transition: background-color .6s;
}
@keyframes float { 50% { transform: translateY(-10px); } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 540px; margin: 1rem auto 0; width: 100%; }
  .fb-1 { left: -2%; }
  .fb-2 { right: -2%; }
  .fb-3 { left: 2%; }
}
@media (max-width: 560px) {
  .float-badge { font-size: .78rem; padding: .5rem .8rem .5rem .5rem; gap: .55rem; }
  .float-badge strong { font-size: .85rem; }
  .fb-icon, .swatch-dot { width: 34px; height: 34px; }
  .fb-2 { display: none; }
  .hero-actions .btn { width: 100%; }
}

/* ---------- Laufband ---------- */
.marquee {
  position: relative;
  z-index: 2;
  width: 104%;
  margin: -1.2rem -2% 0;
  padding: 1.05rem 0;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  transform: rotate(-1.3deg);
  box-shadow: var(--shadow);
}
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding-right: 2.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.marquee-group i { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section-head { max-width: 740px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.12rem; }
.bg-white { background: #fff; }
.bg-navy { background: var(--navy); color: #c9d1dc; }
.bg-navy h2, .bg-navy h3 { color: #fff; }

/* ---------- Leistungen ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1.25rem;
}
.service-featured {
  position: relative;
  grid-row: span 3;
  display: flex;
  flex-direction: column;
  padding: clamp(2.6rem, 4vw, 3.2rem) clamp(1.8rem, 3vw, 2.6rem) clamp(1.8rem, 3vw, 2.6rem);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #c9d1dc;
  overflow: hidden;
}
.featured-drips {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 58px;
  fill: var(--orange);
  transform-origin: top;
  transform: scaleY(.35);
  transition: transform 1.4s var(--ease) .2s;
}
.is-visible .featured-drips { transform: scaleY(1); }
.service-featured h3 { color: #fff; font-size: clamp(1.8rem, 2.7vw, 2.3rem); margin-top: .2rem; }
.service-featured > p { font-size: 1.05rem; }
.service-featured .btn { align-self: flex-start; }
.tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: .4rem;
  margin: 1.2rem 0 1rem;
  padding: .38rem .85rem;
  border-radius: 999px;
  background: rgba(232, 121, 43, .16);
  color: #ffb37a;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag .icon { width: 14px; height: 14px; }

.check-list { list-style: none; margin: 1.3rem 0 2rem; padding: 0; display: grid; gap: .75rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; font-weight: 600; color: #fff; }
.check-list.dark li { color: var(--navy); }
.check-list .icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  margin-top: .1rem;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  stroke-width: 3.5;
}
.featured-swatches { display: flex; gap: .5rem; margin-top: auto; padding-top: 2rem; }
.featured-swatches span {
  flex: 1;
  height: 58px;
  border-radius: 12px;
  background: var(--c);
  transform-origin: bottom;
  transform: scaleY(.25);
  transition: transform .9s var(--ease);
}
.is-visible .featured-swatches span { transform: scaleY(1); transition-delay: calc(.35s + var(--i) * .08s); }
.featured-swatches span:hover { transform: scaleY(1.15); transition-delay: 0s; }

.service-card {
  position: relative;
  isolation: isolate;
  padding: 1.7rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(232, 121, 43, .11), transparent 65%);
  opacity: 0;
  transition: opacity .35s;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: 15px;
  background: var(--orange-100);
  color: var(--orange-600);
  transition: transform .5s var(--ease), background-color .3s, color .3s;
}
.service-icon .icon { width: 26px; height: 26px; }
.service-card:hover .service-icon { background: var(--orange); color: #fff; transform: rotate(-8deg) scale(1.06); }
.service-card h3 { margin-bottom: .4rem; font-size: 1.2rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .98rem; }

@media (max-width: 1020px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-featured { grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------- Farbwelt ---------- */
.colors-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.swatches { display: flex; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 1.3rem; }
.swatch {
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 18px;
  background: var(--c);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08), 0 8px 16px -10px rgba(0, 0, 0, .4);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.swatch:hover { transform: translateY(-4px) rotate(-3deg); }
.swatch[aria-pressed="true"] {
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--navy), 0 12px 20px -10px rgba(0, 0, 0, .45);
}
.swatch::after {
  content: "";
  position: absolute;
  top: -7px;
  right: -7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
  transform: scale(0);
  transition: transform .4s var(--ease);
}
.swatch[aria-pressed="true"]::after { transform: scale(1); }
.color-name { font-size: 1.05rem; color: var(--muted); margin-bottom: .4rem; }
.color-name strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-left: .3rem; }

.room-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.room { width: 100%; height: auto; }
.room .wall { fill: var(--wall, #f3efe7); transition: fill .9s var(--ease); }
.room-sweep {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-120%);
}
.room-frame.flash .room-sweep { animation: sweep .9s var(--ease); }
@keyframes sweep { to { transform: translateX(120%); } }

@media (max-width: 900px) {
  .colors-grid { grid-template-columns: 1fr; }
}

/* ---------- Vorher / Nachher ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.ba {
  --pos: 50%;
  position: relative;
  aspect-ratio: 800 / 480;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #cbbea8;
  box-shadow: var(--shadow-lg);
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer svg { width: 100%; height: 100%; }
.ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  pointer-events: none;
  box-shadow: 0 0 14px rgba(0, 0, 0, .25);
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
  transition: transform .3s var(--ease);
}
.ba:hover .ba-knob { transform: scale(1.08); }
.ba-knob .icon { width: 24px; height: 24px; }
.ba-label {
  position: absolute;
  top: 1rem;
  padding: .38rem .85rem;
  border-radius: 999px;
  background: rgba(30, 42, 58, .8);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-label.before { left: 1rem; }
.ba-label.after { right: 1rem; background: var(--orange); }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  touch-action: pan-y;
}
.ba-range:focus-visible ~ .ba-handle .ba-knob { outline: 3px solid var(--orange); outline-offset: 3px; }

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ---------- Ablauf ---------- */
.steps-wrap { position: relative; }
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.steps-wrap::before, .steps-line {
  content: "";
  position: absolute;
  top: 35px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
}
.steps-wrap::before { background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }
.steps-line {
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 2s var(--ease) .35s;
}
.steps-wrap.is-visible .steps-line { transform: scaleX(1); }
.step { position: relative; text-align: center; padding: 0 .4rem; counter-increment: step; }
.step-num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  color: var(--navy);
  transition: transform .45s var(--ease), background-color .3s, color .3s, border-color .3s;
}
.step-num .icon { width: 28px; height: 28px; }
.step-num::after {
  content: counter(step);
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
}
.step:hover .step-num { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-5px); }
.steps-wrap.is-visible .step-num { animation: pop .7s var(--ease) both; }
.steps-wrap.is-visible .step:nth-child(2) .step-num { animation-delay: .5s; }
.steps-wrap.is-visible .step:nth-child(3) .step-num { animation-delay: 1s; }
.steps-wrap.is-visible .step:nth-child(4) .step-num { animation-delay: 1.5s; }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.08); opacity: 1; } 100% { transform: none; } }
.step h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.step p { margin: 0; color: var(--muted); font-size: .98rem; }

@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr 1fr; row-gap: 2.8rem; }
  .steps-wrap::before, .steps-line { display: none; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; row-gap: 1.8rem; }
  .step { display: grid; grid-template-columns: 70px 1fr; gap: 1.1rem; text-align: left; }
  .step-num { margin: 0; }
}

/* ---------- Über uns ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.person-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: radial-gradient(120% 80% at 100% 0%, #2c3b50 0%, var(--navy) 55%, var(--navy-900) 100%);
  color: #c9d1dc;
  overflow: hidden;
  isolation: isolate;
}
.person-watermark {
  position: absolute;
  top: -8%;
  right: -18%;
  width: 78%;
  height: auto;
  z-index: -1;
  opacity: .08;
  filter: grayscale(1) brightness(3);
  transform: rotate(-8deg);
}
.monogram {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 1.6rem;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 30px -14px rgba(0, 0, 0, .5);
}
.monogram img { width: 78%; height: auto; }
.role { margin: 0 0 .3rem; color: #ffb37a; font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.person-card h3 { color: #fff; font-size: clamp(2rem, 3vw, 2.5rem); margin-bottom: .6rem; }
.person-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .8rem; }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.feature {
  position: relative;
  isolation: isolate;
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(232, 121, 43, .1), transparent 65%);
  opacity: 0;
  transition: opacity .35s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature:hover::before { opacity: 1; }
.feature-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--navy);
  color: #fff;
}
.feature h3 { font-size: 1.08rem; margin-bottom: .2rem; }
.feature p { margin: 0; font-size: .94rem; color: var(--muted); line-height: 1.5; }

@media (max-width: 940px) {
  .about-grid { grid-template-columns: 1fr; }
  .person-card { min-height: 0; }
}
@media (max-width: 520px) {
  .features { grid-template-columns: 1fr; }
  .person-actions .btn { flex: 1; }
}

/* ---------- Für wen ---------- */
.audience { overflow: hidden; }
.audience::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.audience-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.audience-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  transition: transform .45s var(--ease), background-color .35s, border-color .35s;
}
.audience-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .08); border-color: rgba(232, 121, 43, .5); }
.audience-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.3rem;
  border-radius: 16px;
  background: var(--orange);
  color: #fff;
  transition: transform .5s var(--ease);
}
.audience-card:hover .audience-icon { transform: rotate(-8deg) scale(1.06); }
.audience-icon .icon { width: 28px; height: 28px; }
.audience-card p { margin: 0; }

@media (max-width: 880px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ---------- Einsatzgebiet ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.chips { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; margin: 1.8rem 0 0; padding: 0; }
.chips li {
  padding: .5rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: .94rem;
  color: var(--navy);
  transition: background-color .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.chips li:hover { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-2px); }
.area-art svg { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.elbe-flow { animation: flow 3s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -44; } }
.pulse-ring { transform-box: fill-box; transform-origin: center; animation: ring 2.4s ease-out infinite; }
.pulse-ring.delay { animation-delay: 1.2s; }
@keyframes ring { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(3.2); opacity: 0; } }

@media (max-width: 900px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .8rem; max-width: 860px; margin: 0 auto; }
.faq-item {
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: box-shadow .35s, border-color .35s, background-color .35s;
}
.faq-item[open] { background: #fff; border-color: transparent; box-shadow: var(--shadow); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.07rem;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange-100);
  color: var(--orange-600);
  transition: transform .4s var(--ease), background-color .3s, color .3s;
}
.faq-toggle .icon { width: 18px; height: 18px; stroke-width: 2.5; }
.faq-item[open] .faq-toggle { transform: rotate(135deg); background: var(--orange); color: #fff; }
.faq-answer { padding: 0 1.5rem 1.3rem; color: var(--muted); }
.faq-answer p { margin: 0; }
.faq-item[open] .faq-answer { animation: fadeDown .45s var(--ease); }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- CTA ---------- */
.cta-section { padding-top: 0; background: #fff; }
.cta-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  border-radius: var(--radius-lg);
  background: var(--orange);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .07) 0 18px, transparent 18px 36px);
  background-size: 51px 51px;
  animation: stripes 3s linear infinite;
}
.cta-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}
@keyframes stripes { to { background-position: 51px 0; } }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { margin: 0; font-size: 1.12rem; color: rgba(255, 255, 255, .92); max-width: 46ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

@media (max-width: 860px) {
  .cta-band { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .cta-actions .btn { width: 100%; }
}

/* ---------- Kontakt ---------- */
.contact { overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: -260px;
  bottom: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 121, 43, .22), transparent 65%);
  pointer-events: none;
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-copy > p:not(.eyebrow) { font-size: 1.1rem; }
.contact-cards { display: grid; gap: .8rem; margin-top: 2rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  transition: transform .4s var(--ease), background-color .3s, border-color .3s;
}
a.contact-card:hover { transform: translateX(6px); background: rgba(255, 255, 255, .09); border-color: rgba(232, 121, 43, .55); }
.contact-card small { display: block; color: #9aa6b5; font-size: .8rem; font-weight: 600; letter-spacing: .04em; }
.contact-card strong { font-size: 1.02rem; word-break: break-word; }
.contact-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
}
.contact-icon.wa { background: #25d366; }

.form-card {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.6rem; margin-bottom: 1.3rem; color: var(--navy); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full, .consent.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-size: 1rem;
  transition: border-color .25s, box-shadow .25s, background-color .25s;
}
.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e2a3a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #d6cdbf; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(232, 121, 43, .16);
}
.field.invalid input, .field.invalid textarea { border-color: #d64545; box-shadow: 0 0 0 4px rgba(214, 69, 69, .12); }
.consent { display: flex; align-items: flex-start; gap: .7rem; font-size: .88rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin-top: .1rem; flex-shrink: 0; accent-color: var(--orange); }
.consent a { color: var(--orange-600); text-decoration: underline; }
.consent.invalid { color: #b53a3a; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { display: none; margin-top: 1rem; padding: .85rem 1rem; border-radius: 12px; font-size: .94rem; font-weight: 600; }
.form-status.show { display: block; animation: fadeDown .4s var(--ease); }
.form-status.error { background: #fdecec; color: #9b2c2c; }
.form-card .btn-block { margin-top: 1.3rem; padding: 1.1rem; font-size: 1.05rem; }
.form-hint { margin: .8rem 0 0; font-size: .82rem; color: var(--muted); text-align: center; }
.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.btn.loading { pointer-events: none; opacity: .85; }
.btn.loading .spinner { display: block; }
.btn.loading .icon { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success { display: none; text-align: center; padding: 2.5rem 1rem; outline: none; }
.form-card.is-sent .form-body { display: none; }
.form-card.is-sent .form-success { display: block; animation: fadeDown .5s var(--ease); }
.success-check { width: 92px; height: 92px; margin: 0 auto 1.4rem; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.success-check circle { stroke: var(--orange); stroke-width: 4; stroke-dasharray: 1; stroke-dashoffset: 1; }
.success-check path { stroke: var(--navy); stroke-width: 6; stroke-dasharray: 1; stroke-dashoffset: 1; }
.is-sent .success-check circle { animation: draw .8s var(--ease) forwards; }
.is-sent .success-check path { animation: draw .6s .6s var(--ease) forwards; }
.form-success p { color: var(--muted); margin-bottom: 1.6rem; }

@media (max-width: 940px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { padding: 4.5rem 0 2rem; background: var(--navy-950); color: #9aa6b5; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand img { height: 50px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { max-width: 36ch; }
.site-footer h4 { margin-bottom: 1rem; color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: .55rem; list-style: none; margin: 0; padding: 0; }
.footer-links a { transition: color .25s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .88rem;
}
.footer-top { display: inline-flex; align-items: center; gap: .4rem; transition: color .25s; }
.footer-top:hover { color: #fff; }
.footer-top .icon { width: 16px; height: 16px; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile Aktionsleiste ---------- */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    position: fixed;
    left: .75rem;
    right: .75rem;
    bottom: calc(.75rem + env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: .45rem;
    padding: .45rem;
    border-radius: 20px;
    background: rgba(22, 32, 45, .95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    transform: translateY(160%);
    transition: transform .55s var(--ease);
  }
  .mobile-bar.show { transform: none; }
  .mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    padding: .5rem;
    border-radius: 14px;
    color: #fff;
    font-size: .76rem;
    font-weight: 700;
  }
  .mobile-bar a.primary { background: var(--orange); }
  .site-footer { padding-bottom: 7rem; }
}

/* ---------- Scroll-Animationen ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.js [data-reveal="left"] { transform: translateX(-44px); }
.js [data-reveal="right"] { transform: translateX(44px); }
.js [data-reveal="zoom"] { transform: scale(.94) translateY(20px); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Rechtliche Seiten ---------- */
.legal { padding: calc(84px + 4rem) 0 5rem; }
.legal .container { max-width: 840px; }
.legal h1 { font-size: clamp(1.8rem, 5vw + .6rem, 3.2rem); margin-bottom: .6em; overflow-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; }
.legal-card { overflow-wrap: break-word; }
@media (max-width: 720px) {
  .legal { padding-top: calc(72px + 2rem); }
  .legal-card { padding: 1.5rem 1.25rem; border-radius: 22px; }
}
.legal h2 { font-size: 1.45rem; margin: 2.4rem 0 .7rem; }
.legal h3 { font-size: 1.12rem; margin: 1.6rem 0 .5rem; }
.legal p, .legal li { color: #3e4a5a; }
.legal a { color: var(--orange-600); text-decoration: underline; }
.legal-card { padding: clamp(1.6rem, 4vw, 3rem); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.legal .back { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.5rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.site-header.solid { background: rgba(250, 246, 240, .92); box-shadow: 0 1px 0 rgba(30, 42, 58, .07); }

/* ---------- Touch-Geräte & Handy ---------- */
main { overflow-x: hidden; }
a, button, summary, input, select, textarea, label { -webkit-tap-highlight-color: transparent; }

/* Hover-Effekte auf Touch-Geräten nicht "hängen" lassen */
@media (hover: none) {
  .btn:hover { transform: none; box-shadow: none; }
  .btn:hover::before { transform: translateY(102%); }
  .btn-ghost:hover { --fg: var(--navy); border-color: rgba(30, 42, 58, .18); }
  .btn-light:hover { --fg: var(--navy); }
  .btn-outline-light:hover { --fg: #fff; border-color: rgba(255, 255, 255, .55); }
  .btn:active { transform: scale(.97); }
  .btn:hover .icon-arrow { transform: none; }
  .hero-visual:hover .paint-card { transform: rotate(1.6deg); }
  .service-card:hover { transform: none; box-shadow: none; border-color: var(--line); }
  .service-card:hover::before { opacity: 0; }
  .service-card:hover::after { transform: scaleX(0); }
  .service-card:hover .service-icon { transform: none; background: var(--orange-100); color: var(--orange-600); }
  .feature:hover { transform: none; box-shadow: none; }
  .feature:hover::before { opacity: 0; }
  .audience-card:hover { transform: none; background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .09); }
  .audience-card:hover .audience-icon { transform: none; }
  .chips li:hover { transform: none; background: #fff; border-color: var(--line); color: var(--navy); }
  a.contact-card:hover { transform: none; background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .1); }
  a.contact-card:active { background: rgba(255, 255, 255, .12); }
  .step:hover .step-num { transform: none; background: #fff; border-color: var(--line); color: var(--navy); }
  .swatch:not([aria-pressed="true"]):hover { transform: none; }
  .featured-swatches span:hover { transform: scaleY(1); }
  .ba:hover .ba-knob { transform: none; }
  .header-phone:hover { color: var(--navy); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 76px; }
  .hide-sm { display: none; }
  .eyebrow { letter-spacing: .12em; }
  .header-inner { height: 72px; }
  .brand img { height: 40px; }
  .is-scrolled .brand img { height: 34px; }
  .menu-close { top: 13px; }
  .mobile-menu { clip-path: circle(0 at calc(100% - 43px) 36px); }
  .mobile-menu.is-open { clip-path: circle(150% at calc(100% - 43px) 36px); }

  .blob { animation: none; filter: blur(50px); }
  .b1 { width: 340px; height: 340px; right: -130px; top: -90px; }
  .b2 { width: 300px; height: 300px; }
  .hero { padding-top: calc(72px + 2.2rem); }
  .paint-card, .hero-visual:hover .paint-card { transform: none; border-radius: 26px; }

  .section { padding: 4.25rem 0; }
  .section-head { margin-bottom: 2.25rem; }
  .marquee { margin-top: -.8rem; padding: .85rem 0; }
  .marquee-group { font-size: 1rem; gap: 1.5rem; padding-right: 1.5rem; }

  .service-featured { padding-top: 3rem; }
  .swatches { gap: .7rem; }
  .swatch { width: 52px; height: 52px; border-radius: 15px; }
  .ba-knob { width: 46px; height: 46px; margin: -23px 0 0 -23px; }
  .ba-label { top: .7rem; padding: .28rem .6rem; font-size: .66rem; }
  .ba-label.before { left: .7rem; }
  .ba-label.after { right: .7rem; }
  .person-card { padding: 1.8rem; }
  .audience-card { padding: 1.6rem; }
  .faq-item summary { padding: 1.1rem 1.15rem; font-size: 1rem; }
  .faq-answer { padding: 0 1.15rem 1.15rem; }
  .cta-band { padding: 2.2rem 1.5rem; }
  .form-card { border-radius: 22px; }
  .contact-card { padding: .85rem 1rem; }
}

@media (max-width: 420px) {
  .container { width: calc(100% - 2rem); }
  .menu-close { right: 16px; }
  .btn { white-space: normal; text-align: center; }
  .hero-checks { gap: .5rem 1rem; font-size: .92rem; }
  .swatch { width: 46px; height: 46px; }
  .person-actions { flex-direction: column; }
  .person-actions .btn { width: 100%; }
  .float-badge { font-size: .74rem; }
  .fb-1 { top: 4%; left: 3%; }
  .fb-3 { bottom: 4%; left: 3%; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .brush path, .success-check circle, .success-check path { stroke-dashoffset: 0; }
  .marquee-track { animation: none; }
}
