/* ============================================================
   SWISS VENTURE — Premium-Veredelung Landingpage
   Apple-grade, conversion-focused build.
   Accent: Kupfer/copper · structural tints: champagne.
   ============================================================ */

/* ---------- Self-hosted Poppins (latin) — DSGVO/DSG: kein Google-Hotlink ---------- */
@font-face{font-family:'Poppins';font-style:normal;font-weight:300;font-display:swap;src:url(assets/fonts/poppins-300.woff2) format('woff2')}
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url(assets/fonts/poppins-400.woff2) format('woff2')}
@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url(assets/fonts/poppins-500.woff2) format('woff2')}
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url(assets/fonts/poppins-600.woff2) format('woff2')}
@font-face{font-family:'Poppins';font-style:normal;font-weight:700;font-display:swap;src:url(assets/fonts/poppins-700.woff2) format('woff2')}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  background:#0a0a0b;
  font-family:'Poppins',system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
  color:#f5f3ee;overflow-x:hidden;
}
::selection{background:rgba(207,148,102,.32);color:#fff}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font-family:inherit}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:4px}

:root{
  --gold:#cf9466;        /* Kupfer */
  --gold-2:#a96338;      /* Kupfer dunkel */
  --gold-soft:201,179,128;   /* champagne (structural rgba) */
  --glow:.85;            /* Stark */
  --ink:#f5f3ee;
  --bg:#0a0a0b;
  --maxw:1180px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

@keyframes svFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
@keyframes svMarquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes svSpinIn{from{opacity:0}to{opacity:1}}
@keyframes svPulse{0%,100%{opacity:.5}50%{opacity:1}}

/* ---------- Page atmosphere ---------- */
.page{
  position:relative;
  background-color:#0a0a0b;
  background-image:
    radial-gradient(60% 30% at 82% 12%,rgba(207,148,102,calc(var(--glow)*.30)),transparent 62%),
    radial-gradient(58% 26% at 8% 40%,rgba(207,148,102,calc(var(--glow)*.26)),transparent 64%),
    radial-gradient(64% 32% at 70% 72%,rgba(207,148,102,calc(var(--glow)*.28)),transparent 62%);
}

/* ---------- Scroll progress ---------- */
.scroll-progress{
  position:fixed;top:0;left:0;height:2px;width:0;z-index:200;
  background:linear-gradient(90deg,var(--gold-2),var(--gold));
  box-shadow:0 0 12px rgba(207,148,102,.6);transition:width .08s linear;
}

/* ---------- NAV ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:150;
  display:flex;align-items:center;justify-content:space-between;
  padding:10px clamp(18px,4vw,40px);
  background:rgba(10,10,11,0);border-bottom:1px solid rgba(255,255,255,0);
  transition:background .45s var(--ease),backdrop-filter .45s var(--ease),border-color .45s var(--ease),padding .45s var(--ease);
}
.nav.scrolled{
  background:rgba(10,10,11,.72);
  backdrop-filter:saturate(160%) blur(20px);-webkit-backdrop-filter:saturate(160%) blur(20px);
  border-bottom-color:rgba(255,255,255,.07);
}
.nav__logo{height:124px;width:auto;margin:-32px 0;transition:height .45s var(--ease),margin .45s var(--ease)}
.nav.scrolled .nav__logo{height:102px;margin:-22px 0}
.nav__right{display:flex;align-items:center;gap:18px}
.nav__rating{display:none;align-items:center;gap:6px;font-size:12.5px;font-weight:500;color:rgba(245,243,238,.8)}
.nav__rating .stars{color:var(--gold);letter-spacing:1px}
.nav__cta{
  display:inline-flex;align-items:center;gap:7px;padding:9px 18px;border-radius:999px;
  border:1px solid rgba(207,148,102,.4);background:rgba(207,148,102,.08);
  color:var(--gold);font-size:13px;font-weight:500;
  transition:background .3s var(--ease),border-color .3s var(--ease),transform .3s var(--ease);
}
.nav__cta:hover{background:rgba(207,148,102,.16);border-color:var(--gold);transform:translateY(-1px)}
.nav__cta span{font-size:14px}
@media(min-width:720px){.nav__rating{display:inline-flex}}

/* ---------- Shared primitives ---------- */
.container{max-width:var(--maxw);margin:0 auto}
.eyebrow{font-size:clamp(12px,2.6vw,14px);font-weight:600;letter-spacing:.28em;text-transform:uppercase;color:var(--gold)}
.section-head{text-align:center;display:flex;flex-direction:column;align-items:center;gap:18px}
.section-head .lead{max-width:640px;font-size:clamp(15.5px,2vw,17px);font-weight:300;line-height:1.7;color:rgba(245,243,238,.6)}
h1,h2,h3{text-wrap:balance}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;border-radius:999px;
  font-weight:600;cursor:pointer;border:none;text-align:center;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),filter .3s var(--ease),background .3s var(--ease),border-color .3s var(--ease);
}
.btn-gold{
  background:linear-gradient(180deg,#e6b184,var(--gold));color:#1a1505;
  box-shadow:0 8px 30px rgba(207,148,102,.24),inset 0 1px 0 rgba(255,255,255,.28);
}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 16px 46px rgba(207,148,102,.4),inset 0 1px 0 rgba(255,255,255,.32);filter:brightness(1.05)}
.btn-outline{border:1px solid var(--gold);background:rgba(207,148,102,.06);color:var(--gold)}
.btn-outline:hover{transform:translateY(-2px);background:rgba(207,148,102,.14)}
.btn-lg{padding:16px 34px;font-size:15px}
.btn-md{padding:14px 28px;font-size:14.5px}
.btn .arrow{font-size:1.12em;transition:transform .3s var(--ease)}
.btn:hover .arrow{transform:translateX(4px)}

.cta-sub{font-size:13px;font-weight:300;line-height:1.6;color:rgba(245,243,238,.62);max-width:440px}

/* Frosted glass chip w/ copper accent */
.chip{
  border:1px solid rgba(207,148,102,.34);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22),inset 0 -1px 1px rgba(0,0,0,.2),0 0 0 1px rgba(207,148,102,.08),0 8px 24px rgba(0,0,0,.3);
}
.chip--pill{display:inline-flex;align-items:center;gap:9px;padding:11px 20px;border-radius:999px;font-size:13.5px;font-weight:500;color:rgba(245,243,238,.94)}
.chip--spec{display:inline-flex;align-items:center;gap:8px;padding:10px 13px;border-radius:13px;font-size:12.5px;line-height:1.3;color:rgba(245,243,238,.9)}
.chip--special{
  border-color:rgba(207,148,102,.6);
  background:linear-gradient(180deg,rgba(207,148,102,.2),rgba(207,148,102,.07));
  color:#fff;font-weight:500;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 0 0 1px rgba(207,148,102,.25),0 8px 22px rgba(207,148,102,.2);
}
.chip--special svg{fill:rgba(207,148,102,.22)}
.chip svg{stroke:var(--gold);flex:none}

/* Image placeholder */
.slot{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;text-align:center;padding:18px;
  background:radial-gradient(circle at 50% 38%,#1a1a1d,#0c0c0e);color:rgba(245,243,238,.4)}
.slot svg{opacity:.55;stroke:var(--gold)}
.slot .cap{font-size:12px;font-weight:500;letter-spacing:.05em;text-transform:uppercase}

.section{padding:clamp(80px,10vw,118px) 24px}
.section--band{
  background-color:#0d0d10;
  background-image:radial-gradient(70% 60% at 50% 0%,rgba(207,148,102,calc(var(--glow)*.18)),transparent 64%);
  border-top:1px solid rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.05);
}
/* Light sections (warm sand + gold glow) for hell/dunkel rhythm */
.section--light{
  background-color:#e7dfce;
  background-image:
    radial-gradient(62% 54% at 50% 2%,rgba(204,176,112,.6),transparent 64%),
    radial-gradient(48% 66% at 90% 0%,rgba(204,176,112,.4),transparent 60%),
    radial-gradient(52% 76% at 6% 102%,rgba(204,176,112,.32),transparent 62%),
    linear-gradient(180deg,#f6f1e4,#e3d9c4);
  border-top:1px solid rgba(0,0,0,.06);border-bottom:1px solid rgba(0,0,0,.06);
}
.section--light .eyebrow{color:#6a4e22}
.section--light h2{color:#16161a}
.section--light .section-head .lead{color:rgba(22,22,26,.6)}
/* Problem on light */
.problem.section--light h2{color:#16161a}
.problem.section--light p{color:rgba(22,22,26,.66)}
.problem.section--light .problem__turn{color:#16161a;font-weight:600}
.problem.section--light .problem__close{color:#16161a;font-weight:500}
.problem.section--light .problem__close em{font-style:normal;color:#6a4e22;font-weight:600}
.problem.section--light .problem__media{border-color:rgba(0,0,0,.1);box-shadow:0 34px 70px -34px rgba(0,0,0,.45)}
/* Why on light */
.why.section--light h2{color:#16161a}
.why.section--light .why__intro{color:rgba(22,22,26,.66)}
.why.section--light .why-card{
  background:#fff;border:1px solid rgba(0,0,0,.07);
  backdrop-filter:none;-webkit-backdrop-filter:none;
  box-shadow:0 12px 32px -16px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.6);
}
.why.section--light .why-card:hover{border-color:rgba(177,146,90,.5);box-shadow:0 26px 54px -20px rgba(0,0,0,.32)}
.why.section--light .why-card__icon{background:rgba(207,148,102,.1);border-color:rgba(207,148,102,.3);box-shadow:inset 0 0 22px rgba(207,148,102,.08)}
.why.section--light .why-card h3{color:#16161a}
.why.section--light .why-card p{color:rgba(22,22,26,.6)}

/* ============ HERO ============ */
.hero{position:relative;min-height:92vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:150px 24px 70px;overflow:hidden}
.hero__glow{position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 100% 85% at 50% 0%,rgba(207,148,102,calc(var(--glow)*.46)),transparent 64%)}
.hero__fade{position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 120% 60% at 50% 130%,rgba(0,0,0,.45),transparent 60%),linear-gradient(180deg,rgba(10,10,11,0) 72%,rgba(10,10,11,.3))}
.hero__inner{position:relative;max-width:900px;display:flex;flex-direction:column;align-items:center;gap:26px}
.hero__eyebrow{font-size:clamp(12px,2.6vw,14px);font-weight:600;letter-spacing:.3em;text-transform:uppercase;color:var(--gold)}
.hero h1{font-size:clamp(46px,8vw,92px);font-weight:700;line-height:.98;letter-spacing:-.03em;color:#fff}
.hero h1 .accent{color:var(--gold)}
.hero__subhead{font-size:clamp(20px,3vw,30px);font-weight:600;line-height:1.18;letter-spacing:-.01em;color:#fff;max-width:760px}
.hero__subhead em{font-style:normal;color:var(--gold)}
.hero__text{max-width:620px;font-size:clamp(15px,2vw,17px);font-weight:300;line-height:1.7;color:rgba(245,243,238,.7)}
.hero__claim{margin-top:2px;font-size:clamp(15.5px,2vw,18px);font-weight:500;letter-spacing:-.01em;color:rgba(245,243,238,.94)}
.hero__claim em{font-style:normal;color:var(--gold)}

/* Anchor offset for fixed nav (footer menu jumps) */
section[id],header[id]{scroll-margin-top:90px}
.hero__cta-wrap{display:flex;flex-direction:column;align-items:center;gap:12px;margin-top:4px}
.hero__google{display:inline-flex;align-items:center;gap:8px;font-size:13.5px;font-weight:500;color:rgba(245,243,238,.85)}
.hero__google .stars{color:var(--gold);letter-spacing:1.5px;font-size:15px}
.hero__google b{font-weight:700;color:#fff}
.hero__google--below{display:flex;justify-content:center;width:100%;margin-top:clamp(16px,3.2vh,26px)}
.hero__media{position:relative;width:min(940px,100%);aspect-ratio:16/9;margin-top:14px;border-radius:20px;overflow:hidden;
  border:1px solid rgba(207,148,102,.26);box-shadow:0 40px 100px rgba(0,0,0,.55),inset 0 1px 0 rgba(255,255,255,.08)}
.hero__media img{width:100%;height:100%;object-fit:cover;filter:saturate(1.08) contrast(1.05) brightness(1.04);transform:scale(1.03)}
.hero__chips{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:6px}
.hero__chips--hl{margin-top:-2px}
.hero__scroll{position:absolute;bottom:22px;left:50%;transform:translateX(-50%);animation:svFloat 2.6s ease-in-out infinite;opacity:.45;pointer-events:none}
.hero__scroll svg{stroke:var(--gold)}

/* ============ PROOF MARQUEE ============ */
.proof{position:relative;padding:16px 0;border-bottom:1px solid rgba(255,255,255,.05);background:rgba(255,255,255,.015);overflow:hidden;display:flex;flex-direction:column;gap:11px}
.proof__mask{position:relative;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 9%,#000 91%,transparent)}
.proof__mask--brands{padding-top:11px;border-top:1px solid rgba(255,255,255,.05)}
.proof__track{display:flex;width:max-content;gap:0;animation:svMarquee 40s linear infinite}
.proof__track--rev{animation-duration:34s;animation-direction:reverse}
.proof__group{display:flex;align-items:center;flex:none}
.proof__item{display:inline-flex;align-items:center;gap:10px;padding:0 26px;font-size:13.5px;font-weight:500;color:rgba(245,243,238,.7);white-space:nowrap}
.proof__item .dot{width:5px;height:5px;border-radius:50%;background:var(--gold);flex:none}
.proof__item--brand{font-weight:600;letter-spacing:.04em;color:rgba(245,243,238,.88)}
.proof__item--brand .dot{background:rgba(245,243,238,.4)}
.proof:hover .proof__track{animation-play-state:paused}

/* ============ PROBLEM ============ */
.problem__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:clamp(40px,5vw,72px);align-items:center}
.problem__col{display:flex;flex-direction:column;gap:20px}
.problem h2{font-size:clamp(30px,4vw,46px);font-weight:700;line-height:1.1;letter-spacing:-.02em;color:#fff}
.problem h2 em{font-style:normal;color:var(--gold)}
.problem p{font-size:clamp(15px,1.9vw,16.5px);font-weight:300;line-height:1.75;color:rgba(245,243,238,.62);max-width:520px}
.problem .staccato{font-weight:400;color:rgba(245,243,238,.8)}
.problem .turn{font-size:17px;font-weight:600;color:#fff}
.problem .close{font-size:clamp(16px,2vw,18px);font-weight:600;color:#fff;line-height:1.5}
.problem .close em{font-style:normal;color:var(--gold)}
.problem__media{position:relative;aspect-ratio:4/5;border-radius:22px;overflow:hidden;border:1px solid rgba(255,255,255,.08);box-shadow:0 40px 90px -30px rgba(0,0,0,.8)}
.problem__media img{width:100%;height:100%;object-fit:cover;filter:saturate(1.06) contrast(1.04)}
.problem__media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(8,8,10,.5));pointer-events:none}

/* ============ INTRO / WER ============ */
.intro{position:relative;padding:clamp(120px,14vw,170px) 24px;min-height:740px;display:flex;align-items:center;overflow:hidden;
  background-color:#08080a;border-top:1px solid rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.05)}
.intro__photo{position:absolute;inset:-16% -4%;background-image:url('assets/intro-bg.jpg');background-image:-webkit-image-set(url('assets/intro-bg.webp?v=2') type('image/webp'),url('assets/intro-bg.jpg') type('image/jpeg'));background-image:image-set(url('assets/intro-bg.webp?v=2') type('image/webp'),url('assets/intro-bg.jpg') type('image/jpeg'));background-size:cover;background-position:50% 42%;
  filter:contrast(1.07) saturate(.98) brightness(.9);will-change:transform}
/* Layered scrim: warm top glow + soft fades + gentle central focus, lighter overall */
.intro__scrim{position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(80% 50% at 50% 0%,rgba(207,148,102,calc(var(--glow)*.16)),transparent 60%),
    linear-gradient(180deg,rgba(8,8,10,.66),rgba(8,8,10,.26) 40%,rgba(8,8,10,.4) 64%,rgba(8,8,10,.82)),
    radial-gradient(72% 64% at 50% 52%,rgba(8,8,10,.42),transparent 76%)}
/* Soft vignette for depth (no longer heavy/gloomy) */
.intro::after{content:"";position:absolute;inset:0;pointer-events:none;
  box-shadow:inset 0 0 170px 8px rgba(0,0,0,.42);
  background:radial-gradient(120% 100% at 50% 50%,transparent 62%,rgba(0,0,0,.34))}
.intro__inner{position:relative;z-index:1;max-width:780px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center;gap:22px}
/* Soft blurred backing behind the copy for guaranteed legibility */
.intro__inner::before{content:"";position:absolute;z-index:-1;inset:-46px -40px;border-radius:40px;
  background:radial-gradient(60% 60% at 50% 50%,rgba(8,8,10,.55),transparent 75%);
  backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px)}
.intro h2{font-size:clamp(30px,4.2vw,48px);font-weight:700;line-height:1.08;letter-spacing:-.02em;color:#fff;text-shadow:0 2px 30px rgba(0,0,0,.6)}
.intro h2 em{font-style:normal;color:var(--gold)}
.intro p{max-width:600px;font-size:clamp(15px,1.9vw,16.5px);font-weight:400;line-height:1.75;color:rgba(245,243,238,.82);text-shadow:0 1px 16px rgba(0,0,0,.6)}
.intro__merksatz{font-size:clamp(18px,2.6vw,24px);font-weight:600;line-height:1.35;color:#fff;letter-spacing:-.01em;padding:8px 0;text-shadow:0 2px 24px rgba(0,0,0,.7)}
.intro__merksatz em{font-style:normal;color:var(--gold)}
.intro__cta-wrap{display:flex;flex-direction:column;align-items:center;gap:10px;margin-top:6px}

/* ============ SERVICES ============ */
.services .section-head{margin-bottom:clamp(40px,5vw,58px)}
.services h2{font-size:clamp(28px,3.8vw,44px);font-weight:700;line-height:1.1;letter-spacing:-.02em;color:#fff;max-width:820px}
.svc-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(258px,1fr));gap:22px}
.svc-card{position:relative;display:flex;flex-direction:column;border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
  box-shadow:inset 0 2px 0 rgba(207,148,102,.5),inset 0 1px 0 rgba(255,255,255,.1),0 18px 44px -22px rgba(0,0,0,.72);
  transition:transform .6s var(--ease),border-color .45s var(--ease),box-shadow .55s var(--ease)}
.svc-card:hover{transform:translateY(-8px);border-color:rgba(207,148,102,.4);box-shadow:inset 0 2px 0 rgba(207,148,102,.62),0 40px 84px -26px rgba(0,0,0,.76),0 0 62px -12px rgba(207,148,102,.28)}
.svc-card--usp{border-color:rgba(207,148,102,.45);background:rgba(207,148,102,.045);box-shadow:0 0 0 1px rgba(207,148,102,.18),0 30px 70px -30px rgba(0,0,0,.7)}
.svc-card__media{position:relative;width:100%;height:190px;overflow:hidden;border-radius:19px 19px 0 0}
.svc-card__media img{width:100%;height:100%;object-fit:cover;filter:saturate(1.08) contrast(1.05) brightness(1.04);transition:transform .8s var(--ease)}
.svc-card:hover .svc-card__media img{transform:scale(1.06)}
/* Autarkie-Service-Karte: quadratisches Ring-Bild vollständig zeigen statt beschneiden */
.svc-card__media--fit{background:#020202}
.svc-card__media--fit img{object-fit:contain}
.svc-card__badge{position:absolute;top:14px;left:14px;z-index:2;display:inline-flex;align-items:center;gap:6px;padding:6px 12px;border-radius:999px;
  background:linear-gradient(180deg,#e6b184,var(--gold));color:#1a1505;font-size:11px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  box-shadow:0 6px 18px rgba(207,148,102,.4)}
.svc-card__body{padding:24px 22px 26px;display:flex;flex-direction:column;gap:14px;flex:1}
.svc-card__body h3{font-size:18px;font-weight:600;color:var(--gold);line-height:1.25}
.svc-card__desc{font-size:14px;font-weight:300;line-height:1.6;color:rgba(245,243,238,.62);min-height:42px}
.svc-card__specs{display:flex;flex-wrap:wrap;gap:8px}
.svc-card__foot{margin-top:auto;border-top:1px solid rgba(255,255,255,.07);padding-top:14px}
.svc-card__foot p{font-size:13.5px;font-weight:600;line-height:1.45;color:#fff}
.svc-note{margin-top:30px;text-align:center;font-size:14px;font-weight:300;line-height:1.7;color:rgba(245,243,238,.5);max-width:680px;margin-left:auto;margin-right:auto}
.svc-note b{color:rgba(245,243,238,.78);font-weight:500}

/* ============ DIFFERENZIERUNG ============ */
.why .section-head{margin-bottom:26px}
.why h2{font-size:clamp(28px,3.8vw,44px);font-weight:700;line-height:1.1;letter-spacing:-.02em;color:#fff;max-width:780px}
.why__intro{max-width:760px;margin:0 auto clamp(40px,5vw,54px);text-align:center;font-size:clamp(15px,1.9vw,16.5px);font-weight:300;line-height:1.75;color:rgba(245,243,238,.6)}
.why__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(238px,1fr));gap:20px}
.why-card{display:flex;flex-direction:column;gap:16px;padding:28px;border-radius:22px;
  border:1px solid rgba(207,148,102,.22);background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.022));
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18),0 0 0 1px rgba(207,148,102,.06),0 18px 42px -20px rgba(0,0,0,.7);
  transition:transform .6s var(--ease),border-color .45s var(--ease),box-shadow .55s var(--ease)}
.why-card:hover{transform:translateY(-6px);border-color:rgba(207,148,102,.42);box-shadow:inset 0 1px 0 rgba(255,255,255,.24),0 0 0 1px rgba(207,148,102,.12),0 32px 64px -22px rgba(0,0,0,.78)}
.why-card__icon{flex:none;width:52px;height:52px;border-radius:15px;background:rgba(207,148,102,.08);border:1px solid rgba(207,148,102,.22);
  display:flex;align-items:center;justify-content:center;box-shadow:inset 0 0 22px rgba(207,148,102,.1)}
.why-card__icon svg{stroke:var(--gold)}
.why-card h3{font-size:17px;font-weight:600;color:#fff;line-height:1.3}
.why-card p{font-size:14px;font-weight:300;line-height:1.6;color:rgba(245,243,238,.56)}

/* ============ GALLERY ============ */
.gallery h2{font-size:clamp(28px,3.8vw,44px);font-weight:700;line-height:1.1;letter-spacing:-.02em;color:#fff}
.gallery .section-head{margin-bottom:32px}
.gallery__filters{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:34px}
.filter-chip{padding:9px 16px;border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.02);
  color:rgba(245,243,238,.7);font-size:13px;font-weight:500;cursor:pointer;transition:all .3s var(--ease)}
.filter-chip:hover{border-color:rgba(207,148,102,.5);color:#fff}
.filter-chip.active{background:linear-gradient(180deg,#e6b184,var(--gold));border-color:transparent;color:#1a1505;font-weight:600}
.gallery__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));grid-auto-rows:200px;grid-auto-flow:dense;gap:16px}
@media(min-width:1080px){.gallery__grid{grid-template-columns:repeat(5,1fr)}}
.tile{position:relative;border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.08);
  box-shadow:0 16px 38px -20px rgba(0,0,0,.7);
  transition:transform .55s var(--ease),border-color .45s var(--ease),opacity .45s var(--ease),box-shadow .55s var(--ease)}
.tile:hover{transform:translateY(-4px);border-color:rgba(207,148,102,.34);box-shadow:0 34px 70px -26px rgba(0,0,0,.82),0 0 50px -14px rgba(207,148,102,.25)}
.tile img{width:100%;height:100%;object-fit:cover;filter:saturate(1.08) contrast(1.05) brightness(1.04);transition:transform .7s var(--ease)}
.tile:hover img{transform:scale(1.06)}
.tile--feature{grid-column:span 2;grid-row:span 2}
.tile--wide{grid-column:span 2}
.tile__scrim{position:absolute;inset:0;pointer-events:none;background:linear-gradient(0deg,rgba(0,0,0,.72),transparent 60%)}
.tile__label{position:absolute;left:14px;bottom:12px;padding:6px 12px;border-radius:999px;background:rgba(10,10,11,.6);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);font-size:12px;font-weight:500;color:#fff;pointer-events:none}
.tile.is-hidden{display:none}
.tile.filtering{opacity:0;transform:scale(.96)}
.gallery__foot{text-align:center;display:flex;flex-direction:column;align-items:center;gap:22px;margin-top:46px}
.gallery__foot p{max-width:600px;font-size:15px;font-weight:300;line-height:1.7;color:rgba(245,243,238,.56)}

/* ============ TESTIMONIALS ============ */
.reviews .section-head{margin-bottom:14px}
.reviews h2{font-size:clamp(28px,3.8vw,44px);font-weight:700;line-height:1.1;letter-spacing:-.02em;color:#fff;max-width:680px}
.reviews__anchor{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:14px;margin:0 auto clamp(36px,5vw,48px);
  padding:14px 24px;border-radius:18px;border:1px solid rgba(207,148,102,.24);background:rgba(207,148,102,.05);width:max-content;max-width:100%}
.reviews__anchor .score{font-size:30px;font-weight:700;color:#fff;line-height:1}
.reviews__anchor .stars{color:var(--gold);font-size:20px;letter-spacing:2px}
.reviews__anchor .meta{font-size:13.5px;font-weight:300;color:rgba(245,243,238,.66);line-height:1.4}
.reviews__anchor .gicon{width:22px;height:22px;flex:none}
.reviews__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));grid-auto-flow:dense;gap:18px}
.reviews__note{max-width:600px;margin:-6px auto clamp(34px,4vw,46px);text-align:center;font-size:14px;font-weight:300;line-height:1.65;color:rgba(245,243,238,.62)}
.reviews__note b{color:rgba(245,243,238,.9);font-weight:600}
.review-card--placeholder{border-style:dashed;border-color:rgba(207,148,102,.3);background:rgba(255,255,255,.012)}
.review-card--placeholder .review-card__quote{color:rgba(245,243,238,.5);font-style:italic}
.review-card--placeholder .review-card__av{background:rgba(207,148,102,.12);font-weight:700}
.review-card--placeholder .review-card__name{color:rgba(245,243,238,.62)}
.review-card{position:relative;display:flex;flex-direction:column;border-radius:20px;overflow:hidden;border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.058),rgba(255,255,255,.02));
  box-shadow:inset 0 2px 0 rgba(207,148,102,.42),0 16px 40px -22px rgba(0,0,0,.7);
  transition:transform .5s var(--ease),border-color .45s var(--ease),box-shadow .5s var(--ease)}
.review-card:hover{transform:translateY(-6px);border-color:rgba(207,148,102,.34);box-shadow:inset 0 2px 0 rgba(207,148,102,.55),0 34px 72px -28px rgba(0,0,0,.82),0 0 54px -14px rgba(207,148,102,.22)}
.review-card--featured{grid-column:span 2}
.review-card__photo{position:relative;height:170px;overflow:hidden}
.review-card__photo img{width:100%;height:100%;object-fit:cover}
.review-card__body{position:relative;padding:22px;display:flex;flex-direction:column;gap:14px;flex:1}
.review-card__stars{color:var(--gold);font-size:15px;letter-spacing:2px}
.review-card__quote{font-size:15px;font-weight:400;line-height:1.6;color:rgba(245,243,238,.9);flex:1}
.review-card__who{display:flex;align-items:center;gap:11px;margin-top:auto}
.review-card__av{width:38px;height:38px;border-radius:50%;flex:none;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg,rgba(207,148,102,.3),rgba(169,99,56,.3));border:1px solid rgba(207,148,102,.4);
  color:#fff;font-size:15px;font-weight:600}
.review-card__name{font-size:14px;font-weight:600;color:#fff;line-height:1.2}
.review-card__tag{font-size:12px;font-weight:300;color:rgba(245,243,238,.5)}
.review-card__g{margin-left:auto;width:18px;height:18px;flex:none;opacity:.9}
.reviews__foot{text-align:center;margin-top:clamp(30px,4vw,40px);display:flex;flex-direction:column;align-items:center;gap:18px}
.reviews__trustline{font-size:13.5px;font-weight:300;color:rgba(245,243,238,.55)}
.reviews__trustline b{color:#fff;font-weight:600}

/* ============ STEPS (light) ============ */
.steps{background-color:#e7dfce;
  background-image:radial-gradient(62% 54% at 50% 2%,rgba(204,176,112,.6),transparent 64%),
    radial-gradient(48% 66% at 90% 0%,rgba(204,176,112,.4),transparent 60%),
    radial-gradient(52% 76% at 6% 102%,rgba(204,176,112,.32),transparent 62%),
    linear-gradient(180deg,#f6f1e4,#e3d9c4);
  border-top:1px solid rgba(0,0,0,.06);border-bottom:1px solid rgba(0,0,0,.06)}
.steps .eyebrow{color:#6a4e22}
.steps .section-head{margin-bottom:clamp(44px,5vw,60px)}
.steps h2{font-size:clamp(28px,3.8vw,44px);font-weight:700;line-height:1.1;letter-spacing:-.02em;color:#16161a;max-width:760px}
.steps__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(186px,1fr));gap:26px;counter-reset:step}
.step{position:relative;display:flex;flex-direction:column;gap:14px}
.step__num{width:46px;height:46px;border-radius:13px;background:linear-gradient(180deg,#e6b184,var(--gold));color:#1a1505;
  font-size:19px;font-weight:700;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 18px -4px rgba(169,99,56,.5),inset 0 1px 0 rgba(255,255,255,.35)}
.step h3{font-size:16px;font-weight:600;color:#16161a;line-height:1.25}
.step p{font-size:13.5px;font-weight:300;line-height:1.6;color:rgba(22,22,26,.62)}

/* ============ FIT ============ */
.fit .section-head{margin-bottom:clamp(40px,5vw,54px)}
.fit h2{font-size:clamp(28px,3.8vw,44px);font-weight:700;line-height:1.1;letter-spacing:-.02em;color:#fff;max-width:720px}
.fit__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px;max-width:1040px;margin:0 auto;align-items:start}
.fit-card{position:relative;overflow:hidden;padding:36px 34px;border-radius:24px;
  backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  transition:transform .55s var(--ease),border-color .45s var(--ease),box-shadow .55s var(--ease)}
.fit-card::before{content:"";position:absolute;left:0;right:0;top:0;height:3px}
.fit-card--yes{border:1px solid rgba(207,148,102,.32);
  background:linear-gradient(180deg,rgba(207,148,102,.11),rgba(207,148,102,.03));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14),0 0 0 1px rgba(207,148,102,.1),0 34px 70px -34px rgba(0,0,0,.85)}
.fit-card--yes::before{background:linear-gradient(90deg,transparent,var(--gold),transparent)}
.fit-card--yes:hover{transform:translateY(-7px);border-color:rgba(207,148,102,.55);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18),0 0 0 1px rgba(207,148,102,.2),0 44px 90px -34px rgba(0,0,0,.9)}
.fit-card--no{border:1px solid rgba(255,255,255,.09);
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.018));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 30px 64px -34px rgba(0,0,0,.78)}
.fit-card--no::before{background:linear-gradient(90deg,transparent,rgba(214,108,108,.6),transparent)}
.fit-card--no:hover{transform:translateY(-7px);border-color:rgba(255,255,255,.2);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14),0 40px 84px -34px rgba(0,0,0,.85)}
.fit-card h3{font-size:18px;font-weight:600;color:#fff;margin-bottom:24px}
.fit-card__list{display:flex;flex-direction:column;gap:15px}
.fit-row{display:flex;gap:14px;align-items:center}
.fit-row svg{flex:none;width:20px;height:20px;padding:7px;border-radius:50%;box-sizing:content-box}
.fit-card--yes .fit-row svg{stroke:var(--gold);background:rgba(207,148,102,.14);border:1px solid rgba(207,148,102,.32)}
.fit-card--no .fit-row svg{stroke:rgba(214,108,108,.9);background:rgba(214,108,108,.1);border:1px solid rgba(214,108,108,.25)}
.fit-card--yes .fit-row span{font-size:14.5px;font-weight:400;line-height:1.45;color:rgba(245,243,238,.82)}
.fit-card--no .fit-row span{font-size:14.5px;font-weight:300;line-height:1.45;color:rgba(245,243,238,.52)}

/* ============ LOCATION ============ */
.location__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:clamp(36px,5vw,64px);align-items:center;max-width:1080px;margin:0 auto}
.location__col{display:flex;flex-direction:column;gap:20px}
.location h2{font-size:clamp(28px,3.8vw,44px);font-weight:700;line-height:1.1;letter-spacing:-.02em;color:#fff}
.location p{font-size:clamp(15px,1.9vw,16px);font-weight:300;line-height:1.75;color:rgba(245,243,238,.6);max-width:480px}
.location__addr p{font-size:14.5px;font-weight:300;line-height:1.7;color:rgba(245,243,238,.6)}
.location__addr .name{font-size:15px;font-weight:600;color:#fff;margin-bottom:6px}
.location__map{position:relative;border-radius:20px;overflow:hidden;border:1px solid rgba(255,255,255,.08);aspect-ratio:1.15/1;min-height:300px}
/* DSGVO/DSG: kein Maps-iframe (keine IP an Google ohne Consent) — statische „Route planen"-Karte */
.mapcard{position:absolute;inset:0;display:block;text-decoration:none;color:#fff;
  background:radial-gradient(72% 56% at 50% 40%, rgba(207,148,102,.15), transparent 72%), linear-gradient(180deg,#12161f 0%,#0a0c11 100%);
  transition:transform .4s var(--ease)}
.mapcard::before{content:"";position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:38px 38px;-webkit-mask:radial-gradient(76% 70% at 50% 42%,#000,transparent 80%);mask:radial-gradient(76% 70% at 50% 42%,#000,transparent 80%);opacity:.7}
.mapcard__pin{position:absolute;top:42%;left:50%;transform:translate(-50%,-100%);color:var(--gold);filter:drop-shadow(0 8px 16px rgba(0,0,0,.55));z-index:2}
.mapcard__pin::after{content:"";position:absolute;left:50%;bottom:-5px;width:16px;height:5px;background:rgba(0,0,0,.5);border-radius:50%;transform:translateX(-50%);filter:blur(2px)}
.mapcard__ping{position:absolute;top:42%;left:50%;width:18px;height:18px;border-radius:50%;border:2px solid rgba(207,148,102,.55);transform:translate(-50%,-50%);animation:svPing 2.6s ease-out infinite;z-index:1}
@keyframes svPing{0%{opacity:.7;transform:translate(-50%,-50%) scale(.5)}80%,100%{opacity:0;transform:translate(-50%,-50%) scale(3.4)}}
.mapcard__bar{position:absolute;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:space-between;gap:14px;padding:16px 18px;z-index:3;
  background:linear-gradient(0deg, rgba(8,9,12,.94) 0%, rgba(8,9,12,.6) 64%, transparent)}
.mapcard__txt{display:flex;flex-direction:column;gap:2px;line-height:1.3;min-width:0}
.mapcard__txt b{font-size:14.5px;font-weight:600;color:#fff}
.mapcard__txt span{font-size:13px;font-weight:300;color:rgba(245,243,238,.62)}
.mapcard__btn{flex:none;display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:600;color:#0a0a0b;
  background:linear-gradient(145deg,#e6b184,var(--gold));padding:9px 15px;border-radius:999px;white-space:nowrap;
  box-shadow:0 8px 22px -10px rgba(207,148,102,.7);transition:filter .25s var(--ease)}
.mapcard:hover{transform:scale(1.012)}
.mapcard:hover .mapcard__btn{filter:brightness(1.07)}
.mapcard:focus-visible{outline:2px solid var(--gold);outline-offset:3px}
@media (prefers-reduced-motion:reduce){.mapcard__ping{display:none}.mapcard{transition:none}}

/* ============ FINAL CTA ============ */
.final{position:relative;overflow:hidden;scroll-margin-top:70px;
  background-color:#0d0d10;background-image:radial-gradient(70% 60% at 50% 0%,rgba(207,148,102,calc(var(--glow)*.2)),transparent 64%);
  border-top:1px solid rgba(255,255,255,.05)}
.final__glow{position:absolute;inset:0;pointer-events:none;background:radial-gradient(ellipse 60% 80% at 50% 0%,rgba(207,148,102,calc(var(--glow)*.34)),transparent 62%)}
.final__inner{position:relative;max-width:780px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center;gap:24px}
.final h2{font-size:clamp(30px,4.4vw,52px);font-weight:700;line-height:1.06;letter-spacing:-.025em;color:#fff}
.final p{max-width:620px;font-size:clamp(15px,1.9vw,16.5px);font-weight:300;line-height:1.7;color:rgba(245,243,238,.64)}
.final__chips{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:8px}
.final-chip{display:inline-flex;align-items:center;gap:9px;padding:11px 20px;border-radius:999px;border:1px solid rgba(207,148,102,.26);
  background:rgba(255,255,255,.022);font-size:13px;font-weight:400;color:rgba(245,243,238,.82)}
.final-chip svg{stroke:var(--gold);flex:none}

/* ============ FOOTER ============ */
.footer{padding:48px 24px 40px;border-top:1px solid rgba(255,255,255,.05);text-align:center;display:flex;flex-direction:column;align-items:center;gap:16px}
.footer__brand{font-size:18px;font-weight:700;color:#fff;letter-spacing:.14em}
.footer__nav{display:flex;flex-wrap:wrap;gap:10px 28px;justify-content:center;padding:4px 0 2px}
.footer__nav a{font-size:14px;font-weight:500;color:rgba(245,243,238,.72);transition:color .25s var(--ease)}
.footer__nav a:hover{color:var(--gold)}
.footer__tag{font-size:12.5px;font-weight:300;color:rgba(245,243,238,.55);max-width:560px;line-height:1.6}
.footer__links{display:flex;flex-wrap:wrap;gap:18px;justify-content:center;font-size:12.5px;color:rgba(245,243,238,.62)}
.footer__links a:hover{color:var(--gold)}

/* ============ STICKY MOBILE CTA ============ */
.mobile-cta{position:fixed;left:0;right:0;bottom:0;z-index:140;display:flex;align-items:center;gap:12px;justify-content:space-between;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(10,10,11,.86);backdrop-filter:saturate(160%) blur(20px);-webkit-backdrop-filter:saturate(160%) blur(20px);
  border-top:1px solid rgba(255,255,255,.08);transform:translateY(120%);transition:transform .4s var(--ease)}
.mobile-cta.show{transform:translateY(0)}
.mobile-cta__info{display:flex;flex-direction:column;gap:2px;min-width:0}
.mobile-cta__info .stars{color:var(--gold);font-size:12px;letter-spacing:1px}
.mobile-cta__info .t{font-size:11px;color:rgba(245,243,238,.66);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.mobile-cta .btn{flex:none;padding:13px 22px;font-size:14px}
@media(min-width:861px){.mobile-cta{display:none}}

/* ============ MODAL / QUIZ / LEAD ============ */
.modal{position:fixed;inset:0;z-index:300;display:flex;align-items:flex-start;justify-content:center;padding:24px;overflow-y:auto;
  opacity:0;visibility:hidden;transition:opacity .35s var(--ease),visibility .35s}
.modal.open{opacity:1;visibility:visible}
.modal__overlay{position:fixed;inset:0;background:rgba(6,6,8,.72);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.modal__dialog{position:relative;width:100%;max-width:580px;margin:auto;border-radius:24px;overflow:hidden;
  background:linear-gradient(180deg,#161518,#0e0d10);border:1px solid rgba(207,148,102,.2);
  box-shadow:0 40px 120px rgba(0,0,0,.7),inset 0 1px 0 rgba(255,255,255,.06);
  transform:translateY(24px) scale(.98);transition:transform .4s var(--ease);display:flex;flex-direction:column;max-height:calc(100vh - 48px)}
.modal.open .modal__dialog{transform:none}
.modal__top{display:flex;align-items:center;gap:14px;padding:18px 20px 14px}
.modal__progress{flex:1;height:6px;border-radius:999px;background:rgba(255,255,255,.08);overflow:hidden}
.modal__bar{height:100%;width:20%;border-radius:999px;background:linear-gradient(90deg,var(--gold-2),var(--gold));transition:width .45s var(--ease)}
.modal__step-label{font-size:12px;font-weight:500;color:rgba(245,243,238,.55);white-space:nowrap}
.modal__close{flex:none;width:34px;height:34px;border-radius:50%;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);
  color:rgba(245,243,238,.7);font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .25s var(--ease)}
.modal__close:hover{background:rgba(255,255,255,.1);color:#fff}
.modal__scroll{overflow-y:auto;padding:6px 26px 26px}
.step-panel{display:none;flex-direction:column;gap:18px;animation:svSpinIn .4s var(--ease)}
.step-panel.active{display:flex}
.step-panel h3{font-size:clamp(20px,3vw,25px);font-weight:700;line-height:1.18;letter-spacing:-.01em;color:#fff}
.step-panel .sub{font-size:14px;font-weight:300;line-height:1.55;color:rgba(245,243,238,.6);margin-top:-8px}
.opt-list{display:flex;flex-direction:column;gap:10px}
.opt{display:flex;align-items:flex-start;gap:12px;padding:15px 16px;border-radius:14px;border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.02);cursor:pointer;text-align:left;transition:all .25s var(--ease);width:100%}
.opt:hover{border-color:rgba(207,148,102,.45);background:rgba(207,148,102,.05)}
.opt.selected{border-color:var(--gold);background:rgba(207,148,102,.1)}
.opt__check{flex:none;width:22px;height:22px;border-radius:7px;border:1.5px solid rgba(255,255,255,.25);display:flex;align-items:center;justify-content:center;
  margin-top:1px;transition:all .25s var(--ease)}
.opt.single .opt__check{border-radius:50%}
.opt.selected .opt__check{background:var(--gold);border-color:var(--gold)}
.opt__check svg{opacity:0;stroke:#1a1505;transition:opacity .2s}
.opt.selected .opt__check svg{opacity:1}
.opt__text{display:flex;flex-direction:column;gap:3px}
.opt__title{font-size:14.5px;font-weight:500;color:#fff;line-height:1.3}
.opt__claim{font-size:12.5px;font-weight:300;color:rgba(245,243,238,.55);line-height:1.45}
.field{display:flex;flex-direction:column;gap:7px}
.field label{font-size:13px;font-weight:500;color:rgba(245,243,238,.78)}
.field label .req{color:var(--gold)}
.field input,.field textarea{width:100%;padding:13px 15px;border-radius:12px;border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);color:#fff;font-size:14.5px;font-family:inherit;transition:border-color .25s var(--ease),background .25s var(--ease)}
.field input::placeholder,.field textarea::placeholder{color:rgba(245,243,238,.5)}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--gold);background:rgba(207,148,102,.05);box-shadow:0 0 0 3px rgba(207,148,102,.4)}
.field textarea{resize:vertical;min-height:84px}
.field .hint{font-size:11.5px;font-weight:300;line-height:1.45;color:rgba(245,243,238,.62)}
.field.invalid input,.field.invalid textarea{border-color:rgba(214,108,108,.7)}
.field .err{font-size:11.5px;color:rgba(224,128,128,.95);display:none}
.field.invalid .err{display:block}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(max-width:480px){.form-grid{grid-template-columns:1fr}}
.privacy{display:flex;gap:10px;align-items:flex-start;font-size:11.5px;font-weight:300;line-height:1.5;color:rgba(245,243,238,.5)}
.privacy svg{flex:none;stroke:var(--gold);margin-top:1px}
.reassure{display:flex;gap:10px;align-items:flex-start;padding:13px 15px;border-radius:12px;background:rgba(207,148,102,.06);
  border:1px solid rgba(207,148,102,.18);font-size:12.5px;font-weight:300;line-height:1.5;color:rgba(245,243,238,.7)}
.reassure svg{flex:none;stroke:var(--gold);margin-top:1px}
.step-nav{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:6px}
.step-nav .btn{flex:none}
.step-back{background:none;border:none;color:rgba(245,243,238,.7);font-size:13.5px;font-weight:500;cursor:pointer;padding:8px 12px;display:inline-flex;align-items:center;gap:6px;transition:color .25s}
.step-back:hover{color:#fff}
.step-back[hidden]{visibility:hidden}
.step-cta{width:100%}
.modal__trust{display:flex;flex-wrap:wrap;gap:8px 16px;justify-content:center;padding:14px 20px 20px;border-top:1px solid rgba(255,255,255,.06)}
.modal__trust span{display:inline-flex;align-items:center;gap:6px;font-size:11.5px;font-weight:300;color:rgba(245,243,238,.55)}
.modal__trust svg{stroke:var(--gold);flex:none}

/* Danke state */
.danke{display:none;flex-direction:column;gap:20px;text-align:center;align-items:center;padding:10px 0}
.danke.active{display:flex;animation:svSpinIn .45s var(--ease)}
.danke__icon{width:64px;height:64px;border-radius:50%;background:linear-gradient(180deg,#e6b184,var(--gold));display:flex;align-items:center;justify-content:center;
  box-shadow:0 14px 36px rgba(207,148,102,.45)}
.danke__icon svg{stroke:#1a1505}
.danke h3{font-size:26px;font-weight:700;color:#fff}
.danke>p{font-size:14.5px;font-weight:300;line-height:1.6;color:rgba(245,243,238,.65);max-width:420px}
.danke__steps{display:flex;flex-direction:column;gap:12px;width:100%;text-align:left;margin:4px 0}
.danke__step{display:flex;gap:12px;align-items:flex-start;padding:14px;border-radius:13px;background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.07)}
.danke__step .n{flex:none;width:26px;height:26px;border-radius:50%;background:rgba(207,148,102,.15);border:1px solid rgba(207,148,102,.4);
  color:var(--gold);font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center}
.danke__step .tt b{display:block;font-size:13.5px;font-weight:600;color:#fff;margin-bottom:2px}
.danke__step .tt p{font-size:12.5px;font-weight:300;line-height:1.5;color:rgba(245,243,238,.6)}
.danke__wa{width:100%;padding:18px;border-radius:16px;background:rgba(37,211,102,.1);border:1px solid rgba(37,211,102,.3);
  display:flex;flex-direction:column;gap:12px;align-items:center}
.danke__wa p{font-size:13.5px;font-weight:400;color:#fff}
.btn-wa{background:#25d366;color:#06311a;padding:14px 26px;font-size:14.5px;width:100%}
.btn-wa:hover{filter:brightness(1.06);transform:translateY(-2px)}

/* ============ REVEAL / PARALLAX ============ */
html.js [data-reveal]{opacity:0;will-change:opacity,transform;transition:opacity .9s var(--ease),transform .8s var(--ease)}
html.js [data-reveal="up"]{transform:translateY(34px)}
html.js [data-reveal="fade"]{transform:none}
html.js [data-reveal="scale"]{transform:scale(.94)}
html.js [data-reveal="left"]{transform:translateX(-40px)}
html.js [data-reveal="right"]{transform:translateX(40px)}
html.js [data-reveal].is-visible{opacity:1;transform:none}

@media(prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;animation-iteration-count:1!important}
  html{scroll-behavior:auto}
  [data-reveal]{opacity:1!important;transform:none!important;transition:none}
  .proof__track{animation:none;transform:none}
  .hero__scroll{animation:none}
  .intro__photo{transform:none!important}
}

/* ============ HERSTELLER-LOGOLEISTE (im hellen Problem-Bereich) ============ */
.brandbar{margin-top:clamp(50px,6vw,76px);display:flex;flex-direction:column;align-items:center;gap:22px;text-align:center}
.brandbar__label{font-size:12.5px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;color:#6a4e22}
.brandbar__logos{display:flex;flex-wrap:wrap;gap:16px;justify-content:center}
.brandbar__logo{display:flex;align-items:center;justify-content:center;width:158px;height:78px;border-radius:14px;background:#fff;
  border:1px solid rgba(0,0,0,.08);box-shadow:0 8px 22px -10px rgba(0,0,0,.25);
  transition:transform .4s var(--ease),box-shadow .4s var(--ease)}
.brandbar__logo:hover{transform:translateY(-4px);box-shadow:0 16px 34px -12px rgba(0,0,0,.32)}
.brandbar__logo span{font-size:16px;font-weight:700;letter-spacing:.01em;color:#5a5246}
.brandbar__logo img{max-width:78%;max-height:62%;object-fit:contain}

/* Standort-Hinweis im Quiz (Schritt 4) */
.modal-loc{display:flex;gap:10px;align-items:flex-start;padding:12px 14px;border-radius:12px;
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.09);
  font-size:12.5px;font-weight:300;line-height:1.5;color:rgba(245,243,238,.72)}
.modal-loc svg{flex:none;stroke:var(--gold);margin-top:1px}
.modal-loc b{color:#fff;font-weight:600}

/* Intro band — Mobile-Optimierung (Fahrzeug & Text klarer) */
@media(max-width:640px){
  .intro{min-height:540px;padding:84px 18px}
  .intro__photo{inset:-10% -2%;background-position:50% 40%;filter:contrast(1.05) saturate(1) brightness(.96)}
  .intro__scrim{background:
    radial-gradient(90% 50% at 50% 0%,rgba(207,148,102,calc(var(--glow)*.16)),transparent 60%),
    linear-gradient(180deg,rgba(8,8,10,.58),rgba(8,8,10,.22) 42%,rgba(8,8,10,.5) 70%,rgba(8,8,10,.88))}
  .intro__inner::before{inset:-22px -16px;border-radius:26px;backdrop-filter:none;-webkit-backdrop-filter:none;background:radial-gradient(64% 62% at 50% 48%,rgba(8,8,10,.62),transparent 80%)}
  .intro__photo{filter:contrast(1.08) saturate(1.04) brightness(.98)}
  .intro h2{font-size:clamp(26px,7vw,34px)}
  .intro__merksatz{font-size:clamp(18px,5.5vw,22px)}
}

/* ============ RESPONSIVE ============ */
@media(max-width:860px){
  .tile--feature{grid-column:span 2;grid-row:span 2}
  .review-card--featured{grid-column:span 1}
}
@media(max-width:560px){
  .section{padding:64px 18px}
  .hero{padding:130px 18px 60px;min-height:auto}
  .gallery__grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:auto;gap:10px}
  .tile{aspect-ratio:1/1}
  .tile__label{font-size:11px;left:10px;bottom:9px;padding:5px 10px}
  .nav__logo{height:104px;margin:-26px 0}
  .nav.scrolled .nav__logo{height:88px;margin:-18px 0}
  .reviews__anchor{flex-direction:column;text-align:center;gap:8px}
}

/* ============================================================
   PREMIUM-UPLIFT v2 — Display-Schrift, Siegel, FAQ, Reassurance,
   A11y-Tap-Targets, Testimonial-Quote, Mobile-Korrekturen
   ============================================================ */

/* ---- Display-Schrift (Sora, self-hosted) für Headings ---- */
@font-face{font-family:'Sora';font-style:normal;font-weight:600;font-display:swap;src:url(assets/fonts/sora-600.woff2) format('woff2')}
@font-face{font-family:'Sora';font-style:normal;font-weight:700;font-display:swap;src:url(assets/fonts/sora-700.woff2) format('woff2')}
@font-face{font-family:'Sora';font-style:normal;font-weight:800;font-display:swap;src:url(assets/fonts/sora-800.woff2) format('woff2')}
h1,h2,h3,.hero__subhead,.intro__merksatz,.step-panel h3,.danke h3,.footer__brand{
  font-family:'Sora','Poppins',system-ui,-apple-system,sans-serif;letter-spacing:-.025em}
.hero h1{font-weight:800;letter-spacing:-.035em}

/* ---- Schwebendes Gold-Icon-Siegel auf der Bild/Body-Naht der Leistungskarten ---- */
.svc-card__seal{position:absolute;top:163px;left:20px;z-index:4;width:54px;height:54px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(180deg,#e6b184,var(--gold));border:2px solid rgba(255,255,255,.16);
  box-shadow:0 10px 24px -6px rgba(207,148,102,.55),inset 0 1px 0 rgba(255,255,255,.5);
  transition:transform .5s var(--ease)}
.svc-card__seal svg{stroke:#241402;fill:none}
.svc-card:hover .svc-card__seal{transform:translateY(-4px) scale(1.06)}

/* ---- USP-Karte: branded Kupfer-Panel statt „Bild folgt"-Platzhalter ---- */
.svc-card__media--usp{background:
  radial-gradient(120% 100% at 30% 18%,rgba(207,148,102,.24),transparent 60%),
  linear-gradient(160deg,#251a12,#120d09)}
.svc-usp-panel{position:absolute;inset:0;display:flex;align-items:center;justify-content:center}
.svc-usp-panel svg{width:62px;height:62px;stroke:rgba(207,148,102,.9);opacity:.92;filter:drop-shadow(0 6px 14px rgba(0,0,0,.4))}

/* ---- Testimonial: großes dezentes Anführungszeichen ---- */
.review-card__body::before{content:"\201C";position:absolute;top:6px;right:16px;z-index:0;
  font-family:Georgia,'Times New Roman',serif;font-size:74px;line-height:1;color:rgba(207,148,102,.16);pointer-events:none}
.review-card__stars,.review-card__quote,.review-card__who{position:relative;z-index:1}

/* ---- FAQ-Akkordeon (nativ, kein JS, A11y-fest) ---- */
.faq .section-head{margin-bottom:clamp(34px,4vw,46px)}
.faq h2{font-size:clamp(28px,3.8vw,44px);font-weight:700;line-height:1.1;color:#fff;max-width:720px}
.faq__list{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq__item{border:1px solid rgba(255,255,255,.09);border-radius:16px;
  background:linear-gradient(180deg,rgba(255,255,255,.042),rgba(255,255,255,.015));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06),0 14px 34px -22px rgba(0,0,0,.7);
  overflow:hidden;transition:border-color .3s var(--ease),box-shadow .3s var(--ease)}
.faq__item[open]{border-color:rgba(207,148,102,.36);box-shadow:inset 0 2px 0 rgba(207,148,102,.4),0 18px 40px -22px rgba(0,0,0,.72)}
.faq__q{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:16px;
  min-height:44px;padding:17px 20px;font-size:15.5px;font-weight:600;color:#fff;line-height:1.35}
.faq__q::-webkit-details-marker{display:none}
.faq__q .ic{flex:none;width:22px;height:22px;position:relative}
.faq__q .ic::before,.faq__q .ic::after{content:"";position:absolute;background:var(--gold);border-radius:2px}
.faq__q .ic::before{top:10px;left:3px;right:3px;height:2px}
.faq__q .ic::after{left:10px;top:3px;bottom:3px;width:2px;transition:transform .3s var(--ease)}
.faq__item[open] .faq__q .ic::after{transform:scaleY(0)}
.faq__a{padding:0 20px 20px;font-size:14.5px;font-weight:300;line-height:1.7;color:rgba(245,243,238,.66)}
.faq__a b{color:rgba(245,243,238,.92);font-weight:600}

/* ---- Reassurance / Absicherung vor dem Final-CTA ---- */
.assurance{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:8px;max-width:760px}
.assurance__item{display:inline-flex;align-items:center;gap:9px;padding:11px 16px;border-radius:14px;
  border:1px solid rgba(207,148,102,.26);background:rgba(207,148,102,.06);
  font-size:13px;font-weight:500;color:rgba(245,243,238,.88)}
.assurance__item svg{flex:none;stroke:var(--gold)}

/* ---- A11y: Tap-Targets >=44px ---- */
.nav__cta{min-height:44px}
.filter-chip{min-height:44px;display:inline-flex;align-items:center}
.modal__close{width:44px;height:44px}
.step-back{min-height:44px}

/* ---- Mobile-Korrekturen: Feature-Tile-Overflow + Map-Bar stapeln ---- */
@media(max-width:560px){
  .tile--feature{grid-column:span 2;grid-row:auto;aspect-ratio:4/3}
  .tile--wide{grid-column:span 1;grid-row:auto}
  .mapcard__bar{flex-direction:column;align-items:flex-start;gap:10px}
  .mapcard__btn{width:100%;justify-content:center}
}




/* ============================================================
   UPLIFT v3 — Split-Hero, Premium-Marquee, Apple-Why-Cards,
   Testimonial-BG, Map-Optik, Final-Absicherung, Galerie-Lightbox
   ============================================================ */

/* ---- Split-Hero ---- */
.hero{min-height:auto;display:block;text-align:left;padding:clamp(120px,15vh,168px) clamp(18px,4vw,40px) clamp(56px,8vh,88px);overflow:hidden}
.hero__glow{background:radial-gradient(ellipse 90% 80% at 30% 10%,rgba(207,148,102,calc(var(--glow)*.40)),transparent 62%)}
.hero__grid{position:relative;z-index:1;max-width:var(--maxw);margin:0 auto;display:grid;grid-template-columns:1.02fr 1.12fr;gap:clamp(30px,4.5vw,68px);align-items:center}
.hero__col{display:flex;flex-direction:column;align-items:flex-start;gap:18px;text-align:left}
.hero__col .hero__eyebrow{text-align:left}
.hero h1{font-size:clamp(42px,6vw,82px);line-height:.98;margin-bottom:2px}
.hero__subhead{max-width:none;text-align:left;font-size:clamp(19px,2.6vw,27px)}
.hero__text{max-width:520px;text-align:left}
.hero__cta-wrap{align-items:flex-start;text-align:left;margin-top:6px}
.hero__cta-wrap .cta-sub{text-align:left}
.hero__visual{position:relative}
.hero__visual-frame{position:relative;border-radius:24px;overflow:hidden;aspect-ratio:1/.82;
  border:1px solid rgba(207,148,102,.3);box-shadow:0 44px 120px -32px rgba(0,0,0,.72),inset 0 1px 0 rgba(255,255,255,.1)}
.hero__visual-frame img{width:100%;height:100%;object-fit:cover;filter:saturate(1.08) contrast(1.05) brightness(1.03)}
.hero__tag{position:absolute;z-index:2;display:inline-flex;align-items:center;gap:9px;padding:8px 14px 8px 11px;border-radius:999px;
  background:rgba(12,12,14,.62);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(207,148,102,.42);box-shadow:0 12px 30px -8px rgba(0,0,0,.6),inset 0 1px 0 rgba(255,255,255,.14);
  font-size:12.5px;font-weight:600;color:#fff;white-space:nowrap}
.hero__tag-dot{position:relative;flex:none;width:9px;height:9px;border-radius:50%;background:linear-gradient(180deg,#e6b184,var(--gold));box-shadow:0 0 14px rgba(207,148,102,.8)}
.hero__tag-dot::after{content:"";position:absolute;inset:-4px;border-radius:50%;border:1px solid rgba(207,148,102,.65);animation:svTagPing 2.8s ease-out infinite}
@keyframes svTagPing{0%{opacity:.7;transform:scale(.55)}80%,100%{opacity:0;transform:scale(2.5)}}
.hero__tag--solar{top:10%;left:48%}
.hero__tag--folie{top:50%;right:4%}
.hero__tag--stein{top:50%;left:16%}
.hero__tag--fahrwerk{bottom:5%;left:7%}
@media(prefers-reduced-motion:reduce){.hero__tag-dot::after{display:none}}
@media(max-width:880px){
  .hero__grid{grid-template-columns:1fr;gap:clamp(26px,6vw,38px)}
  .hero__col{align-items:center;text-align:center}
  .hero__col .hero__eyebrow,.hero__subhead,.hero__text,.hero__cta-wrap,.hero__cta-wrap .cta-sub{text-align:center}
  .hero__text{margin-left:auto;margin-right:auto}
  .hero__cta-wrap{align-items:center}
}
@media(max-width:880px){
  .hero__tag{font-size:10.5px;padding:6px 10px 6px 8px;gap:6px}
  .hero__tag--solar{left:46%}.hero__tag--folie{right:1%}.hero__tag--stein{left:16%}.hero__tag--fahrwerk{left:5%}
}

/* ---- Proof-Marquee: nahtlos + Premium-Chips ---- */
.proof{padding:18px 0;display:block}
.proof__track{display:flex;width:max-content;gap:0;animation:svMarquee 55s linear infinite}
.proof__set{display:flex;align-items:center;flex:none}
.proof:hover .proof__track{animation-play-state:paused}
.proof__item{display:inline-flex;align-items:center;gap:9px;margin-right:14px;padding:9px 17px 9px 11px;border-radius:999px;white-space:nowrap;
  background:linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.03));
  border:1px solid rgba(207,148,102,.3);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16),0 8px 20px -10px rgba(0,0,0,.55);
  font-size:13px;font-weight:600;color:#fff}
.proof__ic{flex:none;width:19px;height:19px;box-sizing:border-box;padding:3.5px;border-radius:50%;
  background:linear-gradient(180deg,#e6b184,var(--gold));stroke:#1a1505;
  box-shadow:0 0 0 1px rgba(207,148,102,.4),0 3px 8px -2px rgba(207,148,102,.6)}
@media(prefers-reduced-motion:reduce){.proof__track{animation:none;flex-wrap:wrap;justify-content:center;gap:10px;white-space:normal}.proof__set[aria-hidden]{display:none}}

/* ---- Why-Cards: Apple-Premium auf hell ---- */
.why.section--light .why-card{
  background:linear-gradient(180deg,#ffffff,#f6efe2);border:1px solid rgba(60,45,20,.07);border-radius:22px;padding:30px 28px;position:relative;overflow:hidden;
  backdrop-filter:none;-webkit-backdrop-filter:none;
  box-shadow:0 1px 2px rgba(40,30,12,.05),0 18px 38px -18px rgba(70,52,22,.22),0 44px 76px -44px rgba(70,52,22,.2);
  transition:transform .5s var(--ease),box-shadow .5s var(--ease)}
.why.section--light .why-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,transparent,var(--gold),transparent);opacity:.85}
.why.section--light .why-card:hover{transform:translateY(-8px);box-shadow:0 1px 2px rgba(40,30,12,.06),0 30px 60px -22px rgba(70,52,22,.3),0 70px 110px -52px rgba(202,162,87,.45)}
.why.section--light .why-card__icon{width:56px;height:56px;border-radius:16px;border:none;
  background:linear-gradient(160deg,#e8b988,#9a6a1c);box-shadow:0 12px 24px -8px rgba(154,106,28,.55),inset 0 1px 0 rgba(255,255,255,.55)}
.why.section--light .why-card__icon svg{stroke:#2a1804}
.why.section--light .why-card h3{color:#1a1208;font-size:18px;letter-spacing:-.01em}
.why.section--light .why-card p{color:rgba(44,34,18,.66)}

/* ---- Testimonials: Sonnenuntergang-Camper als Hintergrund ---- */
.reviews{position:relative;overflow:hidden;isolation:isolate;background-color:#08080a}
.reviews__bg{position:absolute;inset:0;z-index:0;background-image:url('assets/testimonial-bg.webp');background-size:cover;background-position:50% 44%}
.reviews__bg::after{content:"";position:absolute;inset:0;
  background:radial-gradient(82% 70% at 50% 28%,rgba(12,9,6,.5),transparent 70%),linear-gradient(180deg,rgba(8,8,10,.86),rgba(8,8,10,.72) 42%,rgba(8,8,10,.92))}
.reviews .container{position:relative;z-index:1}

/* ---- Map: echte Karten-Optik statt leerem Icon ---- */
.mapcard{background:url('assets/map-bg.webp') center/cover no-repeat,#0e1217}
.mapcard::before{content:"";position:absolute;inset:0;background:
  radial-gradient(60% 50% at 50% 42%,rgba(207,148,102,.14),transparent 70%),
  linear-gradient(180deg,rgba(8,9,12,.18),rgba(8,9,12,.45));-webkit-mask:none;mask:none;opacity:1;background-size:cover}
.mapcard__pin{filter:drop-shadow(0 10px 18px rgba(0,0,0,.7))}

/* ---- Final: Absicherung als eigener Panel-Block ---- */
.assurance{margin:14px auto 0;width:100%;max-width:720px;flex-direction:column;align-items:center;gap:14px;
  padding:22px clamp(16px,3vw,26px);border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.02));
  border:1px solid rgba(207,148,102,.2);box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 22px 50px -28px rgba(0,0,0,.7)}
.assurance__label{font-size:12px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--gold)}
.assurance__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;width:100%}
.assure-card{display:flex;align-items:flex-start;gap:11px;padding:14px 15px;border-radius:14px;background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.08);text-align:left}
.assure-card__ic{flex:none;width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg,#e6b184,var(--gold))}
.assure-card__ic svg{stroke:#1a1505}
.assure-card b{display:block;font-size:13.5px;font-weight:700;color:#fff;line-height:1.2;margin-bottom:2px}
.assure-card span{font-size:12px;font-weight:300;color:rgba(245,243,238,.62);line-height:1.4}
@media(max-width:560px){.assurance__grid{grid-template-columns:1fr}}

/* ============================================================
   UPLIFT v4 — Hero-Foto-BG + Sonne + Chip-Float, Parallax-Tuning,
   USP-Foto-Karte, Prozess-Hinweis
   ============================================================ */

/* ---- Hero: Sonnenuntergang-Camper als Hintergrund + Sonne oben rechts ---- */
.hero__photobg{position:absolute;inset:0;z-index:0;background-image:url('assets/testimonial-bg.webp');background-size:cover;background-position:62% 38%;opacity:.55}
.hero__photobg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(108deg,rgba(10,10,11,.97) 28%,rgba(10,10,11,.8) 54%,rgba(10,10,11,.5) 82%),linear-gradient(0deg,rgba(10,10,11,.88),transparent 52%)}
.hero__sun{position:absolute;inset:0;z-index:0;pointer-events:none;
  background:radial-gradient(ellipse 58% 68% at 86% 20%,rgba(255,198,130,.42),rgba(207,148,102,.16) 38%,transparent 66%)}
/* Mobile: gleichmäßiger Vertikal-Scrim statt diagonaler Hell/Dunkel-Kante */
@media(max-width:880px){
  .hero__photobg::after{background:linear-gradient(180deg,rgba(10,10,11,.9),rgba(10,10,11,.66) 52%,rgba(10,10,11,.58))}
}
.hero__glow{z-index:0}
.hero__grid{z-index:2}

/* ---- Hero Floating-Chips: sanftes Schweben (hoch/runter) ---- */
.hero__tag{animation:svFloat 4.6s ease-in-out infinite;will-change:transform}
.hero__tag--solar{animation-duration:5s;animation-delay:-.3s}
.hero__tag--folie{animation-duration:4.2s;animation-delay:-1.2s}
.hero__tag--stein{animation-duration:5.4s;animation-delay:-2.1s}
.hero__tag--fahrwerk{animation-duration:4.8s;animation-delay:-.7s}
@media(prefers-reduced-motion:reduce){.hero__tag{animation:none}}

/* ---- Parallax-Band: Wohnmobil höher, kleiner, schärfer ---- */
.intro__photo{inset:-4% -2%;background-position:50% 60%;filter:contrast(1.13) saturate(1.03) brightness(.97)}
@media(max-width:640px){.intro__photo{inset:-3% -1%;background-position:50% 58%}}

/* ---- Prozess-Hinweis: Anfrageangst nehmen ---- */
.steps__note{max-width:780px;margin:clamp(34px,4vw,48px) auto 0;text-align:center;padding:22px clamp(18px,3vw,30px);border-radius:18px;
  background:linear-gradient(180deg,#ffffff,#f5eee0);border:1px solid rgba(60,45,20,.09);
  box-shadow:0 1px 2px rgba(40,30,12,.05),0 18px 40px -20px rgba(70,52,22,.24);
  font-size:clamp(14px,1.9vw,15.5px);font-weight:300;line-height:1.72;color:rgba(44,34,18,.72)}
.steps__note b{color:#1a1208;font-weight:600}


/* ---- Cookie-Consent-Banner (Seite 1) ---- */
.cookie{position:fixed;left:0;right:0;bottom:0;z-index:250;display:flex;justify-content:center;padding:0 14px 14px;pointer-events:none}
.cookie[hidden]{display:none}
.cookie__inner{pointer-events:auto;max-width:660px;width:100%;display:flex;align-items:center;gap:18px;flex-wrap:wrap;justify-content:space-between;
  padding:12px 16px 12px 22px;border-radius:18px;background:linear-gradient(180deg,rgba(20,19,22,.95),rgba(13,12,15,.95));backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(207,148,102,.24);box-shadow:inset 0 2px 0 rgba(207,148,102,.4),inset 0 1px 0 rgba(255,255,255,.06),0 24px 64px -22px rgba(0,0,0,.85);
  transform:translateY(140%);opacity:0;transition:transform .55s var(--ease),opacity .45s var(--ease)}
.cookie.show .cookie__inner{transform:translateY(0);opacity:1}
.cookie__text{flex:1;min-width:230px;font-size:12px;font-weight:300;line-height:1.5;color:rgba(245,243,238,.72)}
.cookie__text b{color:rgba(245,243,238,.94);font-weight:600}
.cookie__text a{color:var(--gold);text-decoration:underline;text-underline-offset:2px}
.cookie__actions{display:flex;align-items:center;gap:12px;flex:none}
.cookie__btn{cursor:pointer;border:1px solid transparent;border-radius:999px;font-weight:600;transition:filter .25s var(--ease),background .25s var(--ease),border-color .25s var(--ease),color .25s var(--ease),transform .25s var(--ease)}
.cookie__btn--ghost{min-height:46px;padding:11px 18px;font-size:12.5px;font-weight:500;background:transparent;border-color:rgba(255,255,255,.16);color:rgba(245,243,238,.6)}
.cookie__btn--ghost:hover{border-color:rgba(255,255,255,.32);color:#fff}
.cookie__btn--accept{display:inline-flex;align-items:center;gap:8px;min-height:46px;padding:11px 28px;font-size:14px;background:linear-gradient(180deg,#eebb8c,var(--gold));color:#1a1505;
  box-shadow:0 10px 26px -8px rgba(207,148,102,.7),inset 0 1px 0 rgba(255,255,255,.3);animation:cookieGlow 2.6s var(--ease) infinite}
.cookie__btn--accept:hover{filter:brightness(1.07);transform:translateY(-2px)}
.cookie__arrow{font-size:1.05em;transition:transform .25s var(--ease)}
.cookie__btn--accept:hover .cookie__arrow{transform:translateX(4px)}
@keyframes cookieGlow{0%,100%{box-shadow:0 10px 26px -8px rgba(207,148,102,.5),inset 0 1px 0 rgba(255,255,255,.3)}50%{box-shadow:0 14px 40px -6px rgba(207,148,102,1),inset 0 1px 0 rgba(255,255,255,.3)}}
@media(prefers-reduced-motion:reduce){.cookie__btn--accept{animation:none}}
@media(max-width:560px){.cookie__inner{flex-direction:column;align-items:stretch;gap:12px;text-align:center;padding:16px}.cookie__actions{flex-direction:column-reverse;align-items:stretch;gap:8px}.cookie__btn--accept{justify-content:center}}

/* Sektion-2-Collage (quadratisch) -> 1:1-Rahmen */
.problem__media{aspect-ratio:1/1}

@media(max-width:400px){.brandbar__logo{width:clamp(118px,42vw,158px)}}

.hero__google .g-icon,.g-icon{width:16px;height:16px;flex:none}

.g-icon--sm{width:13px;height:13px}
.mobile-cta__rate{display:inline-flex;align-items:center;gap:5px}
