/* =========================================================================
   MB Dachkonzepte GmbH — Conversion Theme
   Stil: Exaggerated Minimalism · Single-CTA · Form-focused
   Palette: natürliches Terracotta/Anthrazit (Dachdecker-passend)
   ========================================================================= */

:root {
    --bg: #F7F5F2;
    --surface: #FFFFFF;
    --ink: #1B1917;
    --ink-soft: #5C544E;
    --ink-faint: #8A817A;
    --primary: #26211E;      /* dunkler Stein */
    --accent: #B23A1E;       /* Terracotta / Dachziegel */
    --accent-600: #9A3018;
    --accent-700: #7E2611;
    --accent-tint: #FBEDE8;
    --cta-color: #B23A1E;
    --muted: #EFEBE6;
    --border: #E6E0D9;
    --success-color: #22C55E;
    --error-color: #EF4444;

    --form-max-width: 600px;
    --input-height: 48px;
    --focus-ring: 3px solid rgba(178, 58, 30, .45);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 26px;
    --shadow-sm: 0 1px 3px rgba(30, 20, 15, .06);
    --shadow: 0 12px 34px rgba(30, 20, 15, .09);
    --shadow-lg: 0 34px 70px rgba(30, 20, 15, .16);

    --container: 1200px;
    --ease: cubic-bezier(.22, .61, .36, 1);

    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Archivo', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; margin: 0; letter-spacing: -0.02em; color: var(--primary); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.icon { width: 1.4em; height: 1.4em; flex: 0 0 auto; vertical-align: middle; stroke-width: 2; }

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

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--primary); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: var(--focus-ring); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
    --_bg: var(--accent);
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-body); font-weight: 700; font-size: 16px;
    padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
    line-height: 1; white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn--primary { background: var(--cta-color); color: #fff; box-shadow: 0 10px 24px rgba(178, 58, 30, .28); }
.btn--primary:hover { background: var(--accent-700); transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 32px rgba(178, 58, 30, .36); }
.btn--ghost { background: transparent; border-color: var(--border); color: var(--primary); }
.btn--ghost:hover { border-color: var(--primary); transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 17px; }
.btn--sm { padding: 10px 18px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

/* On dark hero the ghost button turns light */
.hero .btn--ghost { border-color: rgba(255, 255, 255, .35); color: #fff; }
.hero .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

.link-arrow {
    display: inline-flex; align-items: center; gap: .4rem;
    font-weight: 700; color: var(--accent); font-size: 15px;
    transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: .7rem; }
.link-arrow .icon { width: 16px; height: 16px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-body); font-weight: 700; font-size: 13px;
    letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
    margin: 0 0 1rem;
}
.eyebrow .icon { width: 16px; height: 16px; }
.eyebrow--light { color: #fff; opacity: .92; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(247, 245, 242, .82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
}
.site-header__inner { display: flex; align-items: center; gap: 20px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: 20px; }
.brand__mark {
    display: grid; place-items: center; width: 40px; height: 40px;
    background: var(--accent); color: #fff; border-radius: 11px;
}
.brand__mark .icon { width: 22px; height: 22px; }
.brand__text strong { color: var(--accent); }
.brand--footer .brand__text { color: #fff; }
.brand--footer .brand__text strong { color: var(--accent); }
.custom-logo { max-height: 52px; width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__list a {
    display: inline-block; padding: 9px 15px; border-radius: 9px;
    font-weight: 600; font-size: 15.5px; color: var(--primary);
    transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__list a:hover, .nav__list .current-menu-item > a { background: var(--muted); color: var(--accent); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: 15px; color: var(--primary); }
.header-phone .icon { width: 18px; height: 18px; color: var(--accent); }
.header-phone:hover { color: var(--accent); }

.burger { display: none; background: none; border: 0; cursor: pointer; color: var(--primary); padding: 6px; }
.burger .icon { width: 26px; height: 26px; }

/* Drawer (mobile) */
.drawer {
    position: fixed; inset: 0; z-index: 200; visibility: hidden; opacity: 0;
    transition: opacity .25s var(--ease), visibility .25s var(--ease);
    background: rgba(20, 15, 12, .5);
}
.drawer.open { visibility: visible; opacity: 1; }
.drawer__panel {
    position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
    background: var(--surface); padding: 78px 26px 26px;
    display: flex; flex-direction: column; gap: 10px;
    transform: translateX(100%); transition: transform .3s var(--ease);
    box-shadow: var(--shadow-lg); overflow-y: auto;
}
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__close { position: absolute; top: 18px; right: 18px; background: var(--muted); border: 0; border-radius: 10px; padding: 8px; cursor: pointer; color: var(--primary); }
.drawer__list { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.drawer__list a { display: block; padding: 14px 12px; font-family: var(--font-display); font-size: 20px; font-weight: 600; border-bottom: 1px solid var(--border); }
.drawer__list a:hover { color: var(--accent); }
.drawer__phone { display: inline-flex; align-items: center; gap: .5rem; margin-top: 14px; font-weight: 700; color: var(--accent); }
.drawer__phone .icon { width: 18px; height: 18px; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    position: relative; color: #fff; isolation: isolate;
    padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem);
    --hero-img: none;
}
.hero__bg {
    position: absolute; inset: 0; z-index: -1;
    background-image: linear-gradient(115deg, rgba(24, 18, 15, .92) 0%, rgba(38, 27, 22, .72) 45%, rgba(60, 40, 30, .55) 100%), var(--hero-img);
    background-size: cover; background-position: center;
}
.hero__bg::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(120% 80% at 80% 10%, rgba(178, 58, 30, .28), transparent 60%);
}
.hero__inner {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero__title {
    color: #fff; font-weight: 700;
    font-size: clamp(2.6rem, 6vw, 4.8rem); letter-spacing: -0.035em;
    margin: 0 0 1.1rem;
}
.hero__subtitle { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: rgba(255, 255, 255, .88); max-width: 34ch; margin-bottom: 1.6rem; }
.hero__bullets { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.8rem; }
.hero__bullets li { display: flex; align-items: center; gap: .7rem; font-weight: 500; font-size: 1.05rem; }
.hero__check { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, .14); color: #fff; flex: 0 0 auto; }
.hero__check .icon { width: 15px; height: 15px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; color: rgba(255, 255, 255, .82); }
.hero__trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__trust .icon { width: 16px; height: 16px; color: #F5C6A5; }

/* ---------- Lead-Formular (Glass-Card) ---------- */
.lead-form {
    position: relative; background: var(--surface); border-radius: var(--radius-lg);
    padding: 26px 24px 20px; box-shadow: var(--shadow-lg); color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .5);
}
.lead-form__badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--accent-tint); color: var(--accent-700);
    font-weight: 700; font-size: 14px; padding: 8px 14px; border-radius: 999px; margin-bottom: 16px;
}
.lead-form__badge .icon { width: 18px; height: 18px; }
.lead-form__note { display: flex; align-items: center; gap: .4rem; margin: 12px 0 0; font-size: 13px; color: var(--ink-faint); }
.lead-form__note .icon { width: 15px; height: 15px; color: var(--success-color); }

/* Override der Plugin-Inline-Styles (höhere Spezifität via #angebot) */
#angebot .wpscp-form { max-width: 100%; margin: 0; padding: 0; background: transparent; box-shadow: none; gap: 13px; }
#angebot .wpscp-form__title { display: none; }
#angebot .wpscp-form label { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); gap: 5px; }
#angebot .wpscp-form input,
#angebot .wpscp-form textarea {
    min-height: var(--input-height); padding: 12px 14px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 15px; background: #fff; color: var(--ink);
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
#angebot .wpscp-form textarea { min-height: 110px; resize: vertical; }
#angebot .wpscp-form input:focus,
#angebot .wpscp-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 var(--focus-ring); }
#angebot .wpscp-form__btn {
    align-self: stretch; width: 100%; justify-content: center;
    background: var(--cta-color); color: #fff; border: 0; border-radius: 999px;
    padding: 15px 24px; font-family: var(--font-body); font-size: 16.5px; font-weight: 700; cursor: pointer;
    transition: background .2s var(--ease), transform .18s var(--ease), box-shadow .2s var(--ease);
    box-shadow: 0 10px 24px rgba(178, 58, 30, .28);
}
#angebot .wpscp-form__btn:hover { background: var(--accent-700); filter: none; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(178, 58, 30, .34); }
#angebot .wpscp-form__btn.is-loading { pointer-events: none; opacity: .85; }
#angebot .wpscp-form__btn.is-loading::before {
    content: ""; width: 17px; height: 17px; border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, .45); border-top-color: #fff;
    animation: mbd-spin .7s linear infinite; margin-right: 8px;
}
@keyframes mbd-spin { to { transform: rotate(360deg); } }

.wpscp-form-success, .wpscp-form-error {
    max-width: 100%; margin: 0 0 14px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 14.5px;
}
.wpscp-form-success { background: #E9F9EE; color: #15803D; border: 1px solid #BBF7D0; }
.wpscp-form-error { background: #FEECEC; color: #B91C1C; border: 1px solid #FCA5A5; }

/* =========================================================================
   STATS
   ========================================================================= */
.stats { background: var(--primary); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: clamp(2rem, 4vw, 3rem) 24px; }
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: #F5C6A5; letter-spacing: -0.03em; }
.stat__lab { display: block; font-size: 14.5px; color: rgba(255, 255, 255, .74); margin-top: 4px; }

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--muted { background: var(--muted); }
.section__head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3.2rem); text-align: center; }
.section__title { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; }
.section__sub { color: var(--ink-soft); font-size: 1.12rem; margin-top: 1rem; }

/* ---------- Leistungs-Karten (3D-Tilt) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; perspective: 1200px; }
.card {
    background: var(--surface); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    transform-style: preserve-3d; will-change: transform;
}
.card:hover { box-shadow: var(--shadow-lg); }
.card__media { overflow: hidden; aspect-ratio: 16 / 10; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 22px 22px 24px; transform: translateZ(30px); }
.card__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); color: var(--accent); margin-bottom: 12px; }
.card__icon .icon { width: 24px; height: 24px; }
.card__title { font-size: 1.3rem; margin-bottom: .5rem; }
.card__text { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 1rem; }

/* ---------- Werte ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--primary); color: #fff; margin-bottom: 14px; }
.value__icon .icon { width: 26px; height: 26px; }
.value__title { font-size: 1.25rem; margin-bottom: .5rem; }
.value p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

/* ---------- Slider ---------- */
.slider { position: relative; margin-top: 8px; }
.slider__track {
    display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 8px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 24px;
    scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slide {
    position: relative; flex: 0 0 clamp(280px, 42vw, 460px); scroll-snap-align: center;
    margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
    aspect-ratio: 4 / 3; background: var(--muted);
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide__cap {
    position: absolute; inset: auto 0 0 0; padding: 22px 20px 18px; color: #fff;
    background: linear-gradient(to top, rgba(20, 14, 11, .88), transparent);
}
.slide__cap h3 { color: #fff; font-size: 1.25rem; margin-bottom: .25rem; }
.slide__cap p { margin: 0; font-size: 14px; color: rgba(255, 255, 255, .85); }
.slider__nav { display: flex; justify-content: center; gap: 12px; margin-top: 22px; }
.slider__btn {
    display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
    border: 1.5px solid var(--border); background: var(--surface); color: var(--primary); cursor: pointer;
    transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.slider__btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.slider__btn[data-prev] .icon { transform: rotate(180deg); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); margin: 0; }
.testimonial__stars { display: flex; gap: 2px; color: #E8A54B; margin-bottom: 12px; }
.testimonial__stars .icon { width: 16px; height: 16px; fill: #E8A54B; }
.testimonial__text { font-size: 16px; color: var(--ink); font-style: normal; margin-bottom: 18px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.testimonial__author span { display: flex; flex-direction: column; line-height: 1.3; }
.testimonial__author em { font-style: normal; color: var(--ink-faint); font-size: 13.5px; }

/* =========================================================================
   CTA-BAND
   ========================================================================= */
.cta-band { background: linear-gradient(120deg, var(--accent-700), var(--accent)); color: #fff; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: clamp(2.5rem, 5vw, 4.5rem) 24px; flex-wrap: wrap; }
.cta-band__text { max-width: 620px; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-band p { color: rgba(255, 255, 255, .9); font-size: 1.1rem; margin: 1rem 0 1.2rem; }
.cta-band__list { display: flex; flex-wrap: wrap; gap: 18px; }
.cta-band__list li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.cta-band__list .icon { width: 18px; height: 18px; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .btn--primary { background: #fff; color: var(--accent-700); box-shadow: 0 12px 28px rgba(0, 0, 0, .2); }
.cta-band .btn--primary:hover { background: #fff; color: var(--accent-700); transform: translateY(-2px) scale(1.02); }
.cta-band .btn--ghost { border-color: rgba(255, 255, 255, .5); color: #fff; }
.cta-band .btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--primary); color: rgba(255, 255, 255, .8); padding-top: clamp(3rem, 6vw, 5rem); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.site-footer__brand p { margin-top: 14px; font-size: 15px; max-width: 40ch; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.site-footer__col p { font-size: 15px; }
.contact-list li { margin-bottom: 12px; }
.contact-list a, .contact-list li { display: flex; align-items: center; gap: .6rem; color: rgba(255, 255, 255, .82); font-size: 15px; }
.contact-list .icon { width: 20px; height: 20px; color: #F5C6A5; flex: 0 0 auto; }
.contact-list a:hover { color: #fff; }
.footer-menu a { display: block; padding: 6px 0; color: rgba(255, 255, 255, .8); font-size: 15px; }
.footer-menu a:hover { color: #fff; padding-left: 4px; transition: padding .15s var(--ease); }
.site-footer__bar {
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    padding: 22px 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 13.5px; color: rgba(255, 255, 255, .6);
}
.site-footer__badges { display: inline-flex; align-items: center; gap: .5rem; }
.site-footer__badges .icon { width: 18px; height: 18px; color: #F5C6A5; }

/* ---------- Mobile Sticky CTA ---------- */
.mobile-cta {
    display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
    align-items: center; justify-content: center; gap: .5rem;
    background: var(--cta-color); color: #fff; font-weight: 700; font-size: 16px;
    padding: 15px; border-radius: 999px; box-shadow: 0 12px 30px rgba(178, 58, 30, .42);
}
.mobile-cta .icon { width: 20px; height: 20px; }

/* =========================================================================
   PAGE / POSTS
   ========================================================================= */
.page-hero { background: var(--muted); padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--border); }
.page-hero__title { font-size: clamp(2rem, 5vw, 3.4rem); }
.entry-content { font-size: 17px; line-height: 1.75; color: var(--ink); }
.entry-content h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin: 2.2rem 0 1rem; }
.entry-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 2.2rem 0 .9rem; }
.entry-content h3 { font-size: 1.35rem; margin: 1.8rem 0 .7rem; }
.entry-content p { margin: 0 0 1.15rem; }
.entry-content ul { list-style: disc; padding-left: 1.3rem; margin: 0 0 1.2rem; }
.entry-content ul li { margin-bottom: .5rem; }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--radius); margin: 1.4rem 0; }
.entry-content .wp-block-columns { gap: 2rem; }
.entry-content blockquote { border-left: 4px solid var(--accent); padding: .4rem 0 .4rem 1.3rem; margin: 1.6rem 0; color: var(--ink-soft); font-style: italic; }
.entry-content .wp-block-buttons a, .entry-content .wp-block-button__link { background: var(--accent); color: #fff; border-radius: 999px; padding: 13px 26px; text-decoration: none; font-weight: 700; display: inline-block; }
.entry-content .wp-block-group.has-background { border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); }

.post-list { display: grid; gap: 26px; }
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.post-card__media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 22px 24px; }
.post-card__title { font-size: 1.4rem; margin-bottom: .6rem; }

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

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
    .cards, .testimonials { grid-template-columns: repeat(2, 1fr); }
    .values { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .nav, .header-phone { display: none; }
    .burger { display: inline-flex; }
    .site-header__inner { height: 68px; }
    .site-header__actions { margin-left: auto; }
    .hero__inner { grid-template-columns: 1fr; gap: 2.2rem; }
    .hero__form { max-width: 560px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
    /* backdrop-filter am fixierten Drawer-Elternteil vermeiden (Containing-Block-Falle) */
    .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(247, 245, 242, .97); }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    .container { padding: 0 18px; }
    .cards, .testimonials, .values, .site-footer__grid { grid-template-columns: 1fr; }
    .hero { padding-top: 2.2rem; }
    .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
    .hero__trust { gap: 12px 16px; }
    .lead-form { padding: 22px 18px 18px; }
    #angebot .wpscp-form__row { flex-direction: column; gap: 13px; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .cta-band__actions { width: 100%; }
    .cta-band__actions .btn { width: 100%; justify-content: center; }
    .site-footer__bar { justify-content: center; text-align: center; }
    .mobile-cta { display: flex; }
    /* Platz für Sticky-CTA schaffen */
    .site-footer { padding-bottom: 84px; }
    .btn--sm { display: none; } /* Header-CTA weicht dem Sticky-Mobile-CTA */
    .slide { flex-basis: 84vw; }
}

/* =========================================================================
   MOTION-REDUCE
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
