/* =============================================
   Osterlohs Räumungen – Design-System
   Referenz: Osterlohs Fundgrube / Antikpalast
   ============================================= */

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

:root {
    --red:         #D40000;
    --red-dark:    #AA0000;
    --black:       #1A1A1A;
    --white:       #FFFFFF;
    --mid:         #666666;
    --beige-light: #F5F2EE;
    --beige-mid:   #EDE8E0;
    --border:      #DDDAD5;
    --font-head:   'Arial Black', Arial, Helvetica, sans-serif;
    --font-body:   'Helvetica Neue', Helvetica, Arial, sans-serif;
    --max-width:   1200px;
    --pad:         1.5rem;
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.65;
    font-size: 0.95rem;
    overflow-x: hidden;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.3rem; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 900; line-height: 1.1; }
h1 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--black); }
h2 { font-size: 1.75rem; margin: 2.5rem 0 1rem; color: var(--black); }
h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; color: var(--black); }

hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* =============================================
   LAYOUT
   ============================================= */

#page-wrapper { min-height: 100vh; display: flex; flex-direction: column; }

/* ---- HEADER ---- */
#site-header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    min-height: 68px;
    gap: 0.5rem;
}

#site-logo { flex-shrink: 0; margin-right: auto; }
#site-logo img { height: 52px; width: auto; }

#site-nav ul { list-style: none; display: flex; gap: 0; align-items: center; }

#site-nav a {
    display: block;
    padding: 0.7rem 0.9rem;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

#site-nav a:hover { color: var(--white); text-decoration: none; }
#site-nav a.active { color: var(--white); font-weight: 700; }

/* Kontakt-Link als roter Button */
#site-nav li:last-child a {
    background: var(--red);
    color: var(--white);
    border-radius: 3px;
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 900;
}
#site-nav li:last-child a:hover { background: var(--red-dark); }

.header-phone {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    padding-right: 0.5rem;
    flex-shrink: 0;
    transition: color 0.2s;
}
.header-phone:hover { color: var(--white); text-decoration: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ---- CONTENT WRAPPER ---- */
#content-wrapper {
    flex: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad);
    width: 100%;
}

#main-content { padding-bottom: 4rem; }

/* Erste Element auf Unterseiten: Abstand oben */
#main-content > *:not(.hero-section):first-child { margin-top: 3rem; }

/* ---- FOOTER ---- */
#site-footer {
    background: var(--black);
    color: #888;
    padding: 3.5rem var(--pad) 1.5rem;
    margin-top: auto;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col p { font-size: 0.85rem; color: #777; margin-bottom: 0.4rem; }

.footer-col a {
    display: block;
    color: #777;
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 0.35rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-col-legal a { color: #777; }
.footer-col-legal a:hover { color: var(--white); }
.footer-col-legal a.external-link { color: #999; }
.footer-address-item a { color: #999; text-decoration: none; }

.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 3px;
    transition: background 0.2s;
    margin-bottom: 0;
    flex-shrink: 0;
}
.footer-social a:hover { background: var(--red); text-decoration: none; }
.footer-social svg { width: 18px; height: 18px; fill: #fff; display: block; }

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 1.25rem;
    font-size: 0.8rem;
    color: #444;
    text-align: center;
}
.footer-bottom a { color: #666; }

/* =============================================
   HERO – volle Breite, fett, dramatisch
   ============================================= */

.hero-section {
    background: var(--red);
    color: var(--white);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    /* CSS-Breakout aus max-width Container */
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

/* Dekoratives Hintergrund-Wasserzeichen */
.hero-section::before {
    content: 'RÄUMUNGEN';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad);
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    max-width: 700px;
    text-transform: uppercase;
}

.hero-section .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 900;
    padding: 0.55rem 1.4rem;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    height: 38px;
    white-space: nowrap;
    background: var(--red);
    color: var(--white) !important;
    letter-spacing: 0.03em;
}
.btn:hover { background: var(--red-dark); text-decoration: none; }

.btn-white {
    background: var(--white);
    color: var(--black) !important;
    height: auto;
    padding: 0.75rem 1.75rem;
}
.btn-white:hover { background: #F0EEEB; }

.btn-ghost {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.5);
    height: auto;
    padding: 0.75rem 1.75rem;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); }

/* =============================================
   SECTIONS
   ============================================= */

/* Abschnitt mit grauem Hintergrund */
.section-gray {
    background: var(--beige-light);
    padding: 4rem 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.section-gray .section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* Abschnitt mit schwarzem Hintergrund */
.section-dark {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.section-dark .section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.section-dark h2 { color: var(--white); }

/* Zentrierte Section-Headline */
.section-headline {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* =============================================
   SERVICE CARDS
   ============================================= */

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--beige-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}
.service-card:hover { border-color: var(--red); transform: translateY(-3px); }

.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--black);
    margin: 0 0 0.6rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--mid);
    margin-bottom: 1.25rem;
    flex: 1;
}

/* =============================================
   HIGHLIGHT / USP STREIFEN
   ============================================= */

.usp-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 3px solid var(--red);
    border-bottom: 1px solid var(--border);
    margin: 0 0 3rem;
}

.usp-strip-4 { grid-template-columns: repeat(4, 1fr); }
.usp-strip.spaced-top { margin-top: 3rem; }

.usp-item {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--border);
}
.usp-item:last-child { border-right: none; }

.usp-item-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 0.4rem;
    display: block;
}

.usp-item-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.usp-item-text {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.55;
    margin: 0;
}

/* =============================================
   CTA BOX
   ============================================= */

.cta-box {
    background: var(--beige-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.cta-box strong { font-family: var(--font-head); font-size: 1rem; }
.cta-box p { margin-bottom: 0.75rem; }
.cta-box p:last-child { margin-bottom: 0; }

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-contacts a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 900;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.cta-contacts a:hover { color: var(--red); text-decoration: none; }
.cta-contacts img { width: 44px; height: 44px; }

.text-muted-sm { color: #666; font-size: 0.9rem; }
.reviews-header-lead { font-size: 1rem; margin-bottom: 0.5rem; }
.mt-1 { margin-top: 1rem; }

/* =============================================
   RABATT BANNER
   ============================================= */

.rabatt-banner {
    background: var(--black);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 3px;
    margin: 2rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.rabatt-banner::before {
    content: '→';
    color: var(--red);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.rabatt-banner a { color: var(--red); font-family: var(--font-head); font-weight: 900; }
.rabatt-banner a:hover { color: #ff4444; text-decoration: none; }

/* =============================================
   TRUST / ARTIKEL SECTION
   ============================================= */

.trust-section {
    display: flex;
    gap: 2.5rem;
    margin: 3rem 0;
    align-items: flex-start;
    background: var(--beige-light);
    border-left: 4px solid var(--red);
    padding: 2rem;
    border-radius: 0 4px 4px 0;
}
.trust-section img { width: 260px; flex-shrink: 0; border-radius: 3px; }
.trust-section-text h2 { margin-top: 0; }
.trust-kicker {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--black);
}

/* =============================================
   FEATURE LIST
   ============================================= */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    padding: 0.65rem 0.5rem 0.65rem 0;
    border-bottom: 1px solid var(--border);
}
.feature-list li::before {
    content: '✓';
    color: var(--red);
    font-family: var(--font-head);
    font-weight: 900;
    flex-shrink: 0;
    line-height: 1.5;
}

/* =============================================
   FAQ
   ============================================= */

.faq { margin: 2.5rem 0; }
.faq details {
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}
.faq summary {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: -0.1rem;
    font-size: 1.4rem;
    color: var(--red);
}
.faq details[open] summary::after { content: '\2212'; }
.faq details p { margin-top: 0.75rem; margin-bottom: 0; color: var(--mid); }

/* =============================================
   REVIEW CARDS
   ============================================= */

.reviews-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.google-rating-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--beige-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.25rem 1.75rem;
}
.google-rating-score {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}
.google-rating-info .stars { color: #F4A700; font-size: 1.3rem; }
.google-rating-info .count { font-size: 0.85rem; color: var(--mid); margin-top: 0.2rem; }
.google-rating-info .source { font-size: 0.8rem; color: var(--mid); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 0 2.5rem;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.75rem;
    transition: border-color 0.2s;
    display: flex;
    flex-direction: column;
}
.review-card:hover { border-color: var(--red); }
.review-stars { color: #F4A700; font-size: 1rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.9rem; color: #333; line-height: 1.65; margin-bottom: 1rem; font-style: italic; flex: 1; }
.review-author { font-family: var(--font-head); font-size: 0.85rem; font-weight: 900; color: var(--black); }
.review-date { font-size: 0.8rem; color: var(--mid); margin-top: 0.2rem; }

.google-cta-banner {
    background: var(--black);
    color: var(--white);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    margin: 1rem 0 2rem;
}
.google-cta-banner h3 { color: var(--white); font-size: 1.1rem; margin: 0 0 0.75rem; }
.google-cta-banner p { color: #888; font-size: 0.9rem; margin-bottom: 1.25rem; }

/* =============================================
   LEGACY / COMPAT
   ============================================= */

.text-with-image { display: flex; gap: 2rem; margin: 2.5rem 0; align-items: flex-start; }
.text-with-image.image-right { flex-direction: row-reverse; }
.text-with-image img { width: 340px; flex-shrink: 0; border-radius: 3px; }
.text-with-image.img-natural img { width: auto; max-height: 400px; }
.text-with-image h2 { margin-top: 0; }

.process-list { list-style: none; padding: 0; }
.process-list li { padding: 0.5rem 0; border-bottom: 1px solid #eee; }
.process-list li:last-child { border-bottom: none; }

.service-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    background: var(--beige-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
}
.service-grid img { width: 260px; flex-shrink: 0; border-radius: 3px; }
.service-grid-text h2 { margin-top: 0; }

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 2.5rem 0;
    border-radius: 4px;
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* =============================================
   EINSATZGEBIET
   ============================================= */

.area-box {
    background: var(--black);
    color: var(--white);
    border-radius: 4px;
    padding: 2.5rem 2.5rem 2.75rem;
    margin: 2.5rem 0;
    text-align: center;
}
.area-box p { color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto 1.5rem; }
.area-map { width: 100%; max-width: 900px; height: auto; border-radius: 4px; display: block; margin: 0 auto; }

.page-hero { width: 100%; margin-bottom: 2rem; border-radius: 3px; overflow: hidden; }
.page-hero img { width: 100%; height: auto; }

/* =============================================
   PRESSE-TEASER + MODAL
   ============================================= */

.press-teaser { margin: 2.5rem 0; }
.press-teaser-btn {
    display: block;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--beige-light);
    padding: 0;
    cursor: pointer;
    text-align: left;
    overflow: hidden;
}
.press-teaser-btn img { display: block; width: 100%; height: 220px; object-fit: cover; object-position: top; }
.press-teaser-btn span {
    display: block;
    padding: 1rem 1.5rem;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--black);
}
.press-teaser-btn:hover span { color: var(--red); }

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.modal.open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.modal-content {
    position: relative;
    max-width: 1000px;
    max-height: 90vh;
    overflow: auto;
    border-radius: 4px;
}
.modal-content img { display: block; width: 100%; height: auto; }
.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

/* Kontaktformular */
.contact-form { max-width: 580px; }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form .form-group-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form label {
    display: block;
    font-family: var(--font-head);
    font-weight: 900;
    margin-bottom: 0.35rem;
    font-size: 0.82rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--black);
    background: var(--white);
    height: 42px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form textarea { height: auto; min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(212,0,0,0.1);
}
.contact-form ::placeholder { color: #aaa; }
.contact-form .privacy-note { font-size: 0.82rem; color: var(--mid); margin-bottom: 1rem; }
.contact-form .privacy-note a { color: var(--red); }

#form-message { display: none; }

.form-success {
    background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32;
    padding: 1rem; border-radius: 3px; margin-bottom: 1rem;
}
.form-error {
    background: #ffebee; border: 1px solid #f44336; color: #c62828;
    padding: 1rem; border-radius: 3px; margin-bottom: 1rem;
}

.image-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1.5rem 0; }
.image-gallery img { width: 100%; height: auto; border-radius: 3px; }
.image-gallery.spaced { margin: 2rem 0; }
.gallery-caption { font-size: 0.85rem; color: #666; margin-top: 0.5rem; }
.gallery-intro { margin-bottom: 1.5rem; }

.reinigung-leistungen { display: flex; gap: 1.5rem; align-items: flex-start; margin: 1.25rem 0; }
.reinigung-leistungen .reinigung-text { flex: 1; }
.reinigung-leistungen .reinigung-bild img { width: 280px; border-radius: 3px; }

.reinigung-galerie { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin: 1.5rem 0; }
.reinigung-galerie img { width: 100%; height: auto; border-radius: 3px; }

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */

.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 999;
    background: #25D366;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover { background: #1da851; transform: scale(1.1); text-decoration: none; }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; display: block; }

.cookie-settings-float {
    position: fixed;
    bottom: 1.75rem;
    left: 1.75rem;
    z-index: 999;
    background: var(--black);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    padding: 0;
}
.cookie-settings-float:hover { background: var(--red); transform: scale(1.1); }
.cookie-settings-float svg { width: 22px; height: 22px; fill: #fff; display: block; }

/* =============================================
   ABSTAND NACH HERO AUF UNTERSEITEN
   ============================================= */

.hero-section + * { margin-top: 3rem; }
.hero-section + .usp-strip { margin-top: 0; }
.hero-section + .viola-quote { margin-top: 0; }

/* =============================================
   VIOLA QUOTE – full bleed
   ============================================= */

.viola-quote {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0;
    margin: 3rem 0;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.viola-quote-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.viola-quote blockquote {
    position: relative;
    font-size: 1.2rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.92);
    font-style: italic;
    margin: 0 0 1.5rem;
    padding: 0 0 0 2.25rem;
    max-width: 820px;
}

.viola-quote blockquote::before {
    content: '\201E';
    position: absolute;
    left: 0;
    top: -1.55rem;
    font-family: var(--font-head);
    font-size: 4rem;
    line-height: 1;
    color: var(--red);
    font-style: normal;
}

.viola-quote blockquote::after {
    content: '\201C';
    font-family: var(--font-head);
    font-size: 4rem;
    color: var(--red);
    line-height: 0;
    vertical-align: -1.4rem;
    margin-left: 0.2rem;
}

.customer-story {
    background: var(--beige-light);
    border-left: 4px solid var(--red);
    border-radius: 0 4px 4px 0;
    padding: 2rem 2.25rem;
    margin: 2.5rem 0;
}
.customer-story p { margin: 0 0 1rem; line-height: 1.75; }
.customer-story p:last-of-type { margin-bottom: 1.25rem; }
.customer-story cite {
    display: block;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-style: normal;
}

.viola-quote cite {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-style: normal;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
    .service-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .usp-strip { grid-template-columns: 1fr; }
    .usp-item { border-right: none; border-bottom: 1px solid var(--border); }
    .usp-item:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
    .trust-section { flex-direction: column; }
    .trust-section img { width: 100%; }
    .text-with-image, .service-grid, .reinigung-leistungen { flex-direction: column; }
    .text-with-image img, .service-grid img { width: 100%; }
    .reinigung-leistungen .reinigung-bild img { width: 100%; }
    .text-with-image.image-right { flex-direction: column; }
    .image-gallery { grid-template-columns: 1fr 1fr; }
    .reinigung-galerie { grid-template-columns: repeat(2, 1fr); }
    .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
    .nav-toggle { display: flex; }
    .header-phone { display: none; }

    #site-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #111;
        border-top: 1px solid #333;
        box-shadow: 0 6px 16px rgba(0,0,0,0.4);
        z-index: 99;
    }
    #site-nav.open { display: block; }
    #site-nav ul { flex-direction: column; gap: 0; }
    #site-nav a { border-bottom: 1px solid #222; padding: 0.9rem 1.25rem; }
    #site-nav li:last-child a {
        margin: 0.75rem 1.25rem;
        display: inline-block;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.4rem; }
    .section-headline { font-size: 1.75rem; }
    .hero-section { padding: 4rem 0 3.5rem; }
    .hero-section h1 { font-size: 2.75rem; }
    .service-cards { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
    .viola-quote { padding: 3rem 0; }
    .viola-quote blockquote { font-size: 1.05rem; }
}

@media (max-width: 560px) {
    .hero-section { padding: 3rem 0; }
    .hero-section h1 { font-size: 2.25rem; }
    .hero-section .hero-sub { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .cta-contacts { gap: 1rem; }
    .image-gallery { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
    .cookie-settings-float { bottom: 1.25rem; left: 1.25rem; width: 40px; height: 40px; }
}

/* =============================================
   Cookie-Banner
   ============================================= */

.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.6);
}

.cookie-overlay[hidden] { display: none; }

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: calc(100% - 2rem);
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--white);
    border: 3px solid var(--red);
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner-inner {
    padding: 1.5rem;
}

.cookie-banner-text p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--mid);
}

.cookie-banner-options {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cookie-banner-options[hidden] { display: none; }

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--black);
    cursor: pointer;
}

.cookie-option input { margin-top: 0.2rem; flex-shrink: 0; }

.cookie-banner-actions {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-cookie {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.7rem 1.4rem;
    border-radius: 3px;
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.btn-cookie:hover { background: var(--beige-mid); }

.btn-cookie-accept {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.btn-cookie-accept:hover { background: var(--red-dark); border-color: var(--red-dark); }

@media (max-width: 560px) {
    .cookie-banner-actions { flex-direction: column; }
    .btn-cookie { width: 100%; text-align: center; }
}
