/* ===================================================
   BERIO CASA GmbH – V2 Redesign
   Warm-Industrial mit Bento-Grid & visuellem Punch
   =================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.about__card-title {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

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

:root {
    --color-primary: #1A1A1A;
    --color-primary-light: #2D2D2D;
    --color-accent: #B8965A;
    --color-accent-light: #D4B47E;
    --color-accent-dark: #9A7A45;
    --color-accent-bg: rgba(184, 150, 90, 0.08);
    --color-accent-bg-strong: rgba(184, 150, 90, 0.15);
    --color-success: #2D8B4E;

    --color-bg: #FAFAF7;
    --color-bg-warm: #F3F0EB;
    --color-bg-dark: #111111;
    --color-surface: #FFFFFF;
    --color-border: #E5E0D8;
    --color-text: #1A1A1A;
    --color-text-muted: #6B6560;
    --color-text-light: #9A938C;
    --color-text-inverse: #FAFAF7;

    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --container: 1200px;
    --header-height: 72px;
    --strip-height: 44px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-accent: 0 8px 30px rgba(184, 150, 90, 0.3);
    --shadow-dark: 0 16px 48px rgba(0,0,0,0.25);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s var(--ease);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + var(--strip-height));
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(184, 150, 90, 0.15);
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* -------- SECTION HEADERS -------- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--color-accent);
    transform: translateY(-50%);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* -------- BUTTONS -------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}
.btn--primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-3px);
}

.btn--accent {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    font-size: 1.05rem;
}
.btn--accent:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-3px) scale(1.02);
}

.btn--white {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}
.btn--white:hover {
    background: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-border);
}
.btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn--outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn--lg { padding: 1.05rem 2.4rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===================================================
   EMERGENCY STRIP
   =================================================== */
.emergency-strip {
    background: var(--color-primary);
    height: var(--strip-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow: hidden;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

.emergency-strip__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
}

.emergency-strip__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E74C3C;
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.6); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
}

.emergency-strip__text {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
}

.emergency-strip__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.emergency-strip__link:hover {
    background: var(--color-accent);
    transform: scale(1.05);
}

/* ===================================================
   HEADER
   =================================================== */
.header {
    position: fixed;
    top: var(--strip-height);
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: #FAFAF7;
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease);
}

.header--scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: var(--strip-height);
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-light));
    z-index: 1002;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

.header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.header__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
}

.header__logo img {
    height: clamp(36px, 4.5vw, 48px);
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    mix-blend-mode: multiply;
    transition: transform 0.3s var(--ease-out);
}

.header__logo:hover img {
    transform: scale(1.04);
}

.header__services {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.header__link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.35s var(--ease-out);
}

.header__link:hover { color: var(--color-primary); }
.header__link:hover::after,
.header__link.active::after { width: 100%; }

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-primary);
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-full);
}
.header__phone:hover { color: var(--color-accent); background: var(--color-accent-bg); }

.header__cta { font-size: 0.82rem; padding: 0.6rem 1.3rem; }

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.header__burger span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.35s var(--ease);
    transform-origin: center;
}
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===================================================
   HERO – with background image
   =================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--header-height) + var(--strip-height) + var(--space-xl)) var(--space-md) var(--space-xl);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-color: #2D2D2D;
    will-change: transform;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    background-color: #2D2D2D;
    transform: translateZ(0);
}

.hero__video::cue {
    display: none !important;
    visibility: hidden !important;
    font-size: 0 !important;
    color: transparent !important;
    background: transparent !important;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.82) 0%,
        rgba(26, 26, 26, 0.55) 40%,
        rgba(26, 26, 26, 0.35) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

/* -------- HERO CHOREOGRAPHY -------- */
/* Easing: confident, decisive out-expo */
:root {
    --ease-hero: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Background: slow cinematic zoom */
.hero__image {
    animation: heroImageZoom 20s ease-out both;
}

@keyframes heroImageZoom {
    from { transform: scale(1.15); }
    to { transform: scale(1); }
}

/* Staggered entrance choreography */
.hero__badge {
    animation: heroFadeUp 700ms var(--ease-hero) 200ms both;
}

.hero__title {
    animation: heroFadeUp 800ms var(--ease-hero) 400ms both;
}

.hero__title--accent {
    animation: heroAccentReveal 900ms var(--ease-hero) 700ms both;
}

.hero__subtitle {
    animation: heroFadeUp 700ms var(--ease-hero) 900ms both;
}

.hero__ctas {
    animation: heroFadeUp 600ms var(--ease-hero) 1100ms both;
}

.hero__trust {
    animation: heroFadeUp 600ms var(--ease-hero) 1300ms both;
}

.hero__scroll {
    animation: heroFadeIn 600ms var(--ease-hero) 1600ms both;
}

/* Keyframes – transform + opacity only (GPU) */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroAccentReveal {
    from {
        opacity: 0;
        transform: translateY(20px) skewY(2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
    }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero__image,
    .hero__badge,
    .hero__title,
    .hero__title--accent,
    .hero__subtitle,
    .hero__ctas,
    .hero__trust,
    .hero__scroll {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
    }
}

/* Mobile: schnellere Hero-Choreografie */
@media (max-width: 768px) {
    .hero__badge   { animation-delay: 100ms; animation-duration: 500ms; }
    .hero__title   { animation-delay: 200ms; animation-duration: 500ms; }
    .hero__title--accent { animation-delay: 350ms; animation-duration: 600ms; }
    .hero__subtitle { animation-delay: 450ms; animation-duration: 450ms; }
    .hero__ctas    { animation-delay: 550ms; animation-duration: 400ms; }
    .hero__rating  { animation-delay: 600ms; animation-duration: 400ms; }
    .hero__trust   { animation-delay: 650ms; animation-duration: 400ms; }
    .hero__scroll  { animation-delay: 800ms; animation-duration: 400ms; }

    @keyframes heroFadeUp {
        from { opacity: 0; transform: translateY(18px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroAccentReveal {
        from { opacity: 0; transform: translateY(12px) skewY(1deg); }
        to   { opacity: 1; transform: translateY(0) skewY(0deg); }
    }
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    background: rgba(184, 150, 90, 0.12);
    backdrop-filter: blur(8px);
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(184, 150, 90, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: var(--space-md);
}

.hero__title--accent {
    color: var(--color-accent-light);
    display: block;
}

.hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto var(--space-lg);
}

.hero__ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.08);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    transition: all 0.3s var(--ease-out);
}

.hero__trust-item:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.hero__trust-item svg {
    color: var(--color-accent-light);
    flex-shrink: 0;
    background: rgba(184, 150, 90, 0.2);
    border-radius: 50%;
    padding: 3px;
    width: 24px;
    height: 24px;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
}

.hero__scroll svg {
    animation: scrollFloat 2.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scrollFloat {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ===================================================
   SECTION DIVIDERS
   =================================================== */
.section-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    margin-top: -1px;
}
.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ===================================================
   BENTO GRID SERVICES
   =================================================== */
.services {
    padding: var(--space-3xl) 0;
    background: var(--color-surface);
    position: relative;
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: var(--space-sm);
}

/* Hero card: spans 2 cols + 2 rows */
.bento__item--hero {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.bento__item--hero .bento__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary);
    transition: transform 0.6s var(--ease-out);
}

.bento__item--hero:hover .bento__bg {
    transform: scale(1.05);
}

.bento__item--hero .bento__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.3) 50%, transparent 100%);
}

.bento__item--hero .bento__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    z-index: 1;
}

.bento__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    background: rgba(193, 127, 89, 0.2);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.bento__item--hero .bento__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.bento__item--hero .bento__text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-sm);
    max-width: 380px;
}

.bento__item--hero .bento__link {
    color: var(--color-accent-light);
    font-weight: 700;
    font-size: 0.92rem;
}

/* Medium cards */
.bento__item--medium {
    grid-column: span 1;
    grid-row: span 1;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out);
}

.bento__item--medium:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 0 1px var(--color-accent-bg-strong);
    border-color: transparent;
}

/* Standard cards */
.bento__item--standard {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-md);
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-out);
}

.bento__item--standard:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--color-accent-bg-strong);
    border-color: transparent;
}

/* Dark variant */
.bento__item--dark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.bento__item--dark .bento__title { color: #fff; }
.bento__item--dark .bento__text { color: rgba(255,255,255,0.6); }
.bento__item--dark .bento__icon svg { stroke: var(--color-accent-light); }
.bento__item--dark .bento__link { color: var(--color-accent-light); }

/* Accent variant */
.bento__item--accent {
    background: var(--color-accent);
    border-color: var(--color-accent);
}
.bento__item--accent .bento__title { color: #fff; }
.bento__item--accent .bento__text { color: rgba(255,255,255,0.8); }
.bento__item--accent .bento__icon svg { stroke: #fff; }
.bento__item--accent .bento__link { color: #fff; }

.bento__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
    background: var(--color-accent-bg);
    border-radius: var(--radius-sm);
    padding: 10px;
    transition: all 0.4s var(--ease-out);
}
.bento__icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
    transition: transform 0.4s var(--ease-out);
}

/* Icon-Hover-Animation */
.bento__item--medium:hover .bento__icon,
.bento__item--standard:hover .bento__icon {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 150, 90, 0.3);
}
.bento__item--medium:hover .bento__icon svg,
.bento__item--standard:hover .bento__icon svg {
    stroke: #fff;
    transform: scale(1.1);
}

/* Dark/Accent Varianten */
.bento__item--dark .bento__icon {
    background: rgba(184, 150, 90, 0.15);
}
.bento__item--dark:hover .bento__icon {
    background: var(--color-accent);
}
.bento__item--accent .bento__icon {
    background: rgba(255, 255, 255, 0.2);
}
.bento__item--accent:hover .bento__icon {
    background: rgba(255, 255, 255, 0.35);
}

/* Card Spotlight-Glow on hover */
.bento__item--medium,
.bento__item--standard {
    position: relative;
    overflow: hidden;
}
.bento__item--medium::after,
.bento__item--standard::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--color-accent-bg) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
    z-index: 0;
}
.bento__item--medium:hover::after,
.bento__item--standard:hover::after {
    opacity: 1;
}
.bento__item--medium > *,
.bento__item--standard > * {
    position: relative;
    z-index: 1;
}

.bento__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.3rem;
}

.bento__text {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: var(--space-sm);
}

.bento__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.35s var(--ease-out);
    padding: 0.3rem 0;
    border-bottom: 1.5px solid transparent;
}
.bento__link:hover {
    gap: 0.7rem;
    border-bottom-color: var(--color-accent);
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-bg-warm) 0%, #EDE8E0 100%);
    position: relative;
    overflow: hidden;
}

/* Dekoratives Kreiselement */
.about::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--color-accent-bg);
    pointer-events: none;
}
.about::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--color-accent-bg);
    pointer-events: none;
}

.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about__text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.about__text--highlight {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.5;
    padding: var(--space-md);
    background: var(--color-accent-bg);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: var(--space-sm);
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.about__stat { text-align: center; }

.about__stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.about__stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-accent);
}

.about__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.3rem;
    font-weight: 500;
}

.about__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.about__card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    transition: all 0.4s var(--ease-out);
}

.about__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-bg-strong);
}

.about__card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-accent-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__card-icon svg { color: var(--color-accent); }

.about__card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.about__card p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ===================================================
   PROCESS
   =================================================== */
.process {
    padding: var(--space-3xl) 0;
    background: var(--color-surface);
}

.process__steps {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process__step {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    width: 100%;
    padding: var(--space-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.process__step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ease-out);
}

.process__step:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.process__step:hover::before {
    transform: scaleY(1);
}

.process__step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    min-width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(184, 150, 90, 0.25);
    font-size: 1.6rem;
}

/* Progressive Intensität */
.process__step:nth-child(1) .process__step-number {
    background: var(--color-accent-bg-strong);
    color: var(--color-accent);
    box-shadow: none;
}
.process__step:nth-child(3) .process__step-number {
    background: var(--color-accent);
    color: #fff;
}
.process__step:nth-child(5) .process__step-number {
    background: var(--color-primary);
    color: var(--color-accent-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.process__step-content {
    flex: 1;
}

.process__step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--color-primary);
}

.process__step-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.process__step-icon {
    flex-shrink: 0;
    color: var(--color-border);
    opacity: 0.5;
}

.process__connector {
    width: 3px;
    height: 36px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-border));
    border-radius: 2px;
    margin-left: calc(32px + var(--space-lg));
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #F5F2ED 0%, var(--color-bg-warm) 100%);
    position: relative;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    align-items: start;
}

.testimonial {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

/* Zitat-Zeichen dekorativ */
.testimonial::before {
    content: '\201C';
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-accent-bg-strong);
    pointer-events: none;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--color-accent-bg-strong);
}

.testimonial--featured {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.04);
    box-shadow: var(--shadow-dark);
}

.testimonial--featured::before {
    color: rgba(184, 150, 90, 0.2);
}

.testimonial--featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.testimonial--featured .testimonial__text { color: rgba(255,255,255,0.85); }
.testimonial--featured .testimonial__author strong { color: #fff; }
.testimonial--featured .testimonial__author span { color: rgba(255,255,255,0.5); }
.testimonial--featured .testimonial__avatar {
    background: var(--color-accent);
    color: #fff;
}

.testimonial__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: var(--space-md);
}

.testimonial__stars svg {
    width: 18px;
    height: 18px;
    color: #F59E0B;
}

.testimonial__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    flex-shrink: 0;
}

.testimonial__author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--color-primary);
}

.testimonial__author span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
    padding: var(--space-xl) 0;
    background: var(--color-bg);
}

.cta-banner__inner {
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 40%, #C9A76A 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.cta-banner__inner::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0,0,0,0.08);
}

.cta-banner__content {
    position: relative;
    z-index: 1;
}

.cta-banner__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
}

.cta-banner__content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.cta-banner__actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

/* ===================================================
   CONTACT
   =================================================== */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-surface);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-accent-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__detail-icon svg { color: var(--color-accent); }

.contact__detail strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-light);
    margin-bottom: 0.1rem;
}

.contact__detail a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
}
.contact__detail a:hover { color: var(--color-accent); }

/* Form */
.contact__form {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.4s var(--ease-out);
}

.contact__form:focus-within {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 0 0 2px var(--color-accent-bg-strong);
    border-color: var(--color-accent-bg-strong);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.form__group { margin-bottom: var(--space-sm); }

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all 0.25s var(--ease);
    outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--color-text-light); }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px var(--color-accent-bg);
}

.form__group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__group textarea { resize: vertical; min-height: 100px; }

.form__hint {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: var(--space-sm);
    text-align: center;
}

.form__trust {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.form__trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.form__trust-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    background: linear-gradient(180deg, #161616 0%, var(--color-bg-dark) 100%);
    color: var(--color-text-inverse);
    padding: var(--space-3xl) 0 0;
    position: relative;
}

/* Goldene Akzent-Linie oben */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(200px, 30%);
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 2px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
    height: 40px;
    margin-bottom: var(--space-sm);
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    mix-blend-mode: multiply;
    opacity: 0.7;
    transition: opacity 0.3s var(--ease);
}

.footer__brand:hover .footer__logo {
    opacity: 0.9;
}

.footer__brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 260px;
}

.footer__col h4,
.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: rgba(255,255,255,0.8);
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }

.footer__col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
}
.footer__col a:hover { color: var(--color-accent-light); }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }

.footer__legal { display: flex; gap: var(--space-md); }
.footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.25); padding: 0.5rem 0; min-height: 44px; display: inline-flex; align-items: center; }
.footer__legal a:hover { color: var(--color-accent-light); }

/* ===================================================
   SCROLL REVEAL — diverse Eintrittsanimationen
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Varianten */
.reveal--left {
    transform: translateX(-40px);
}

.reveal--right {
    transform: translateX(40px);
}

.reveal--scale {
    transform: scale(0.92);
}

.reveal--rotate {
    transform: translateY(30px) rotate(2deg);
}

/* Längere Transition für grössere Elemente */
.reveal--slow {
    transition-duration: 1.1s;
}

/* Stagger-Delays via CSS (zusätzlich zum JS data-delay) */
.reveal--stagger-1 { transition-delay: 0.08s; }
.reveal--stagger-2 { transition-delay: 0.16s; }
.reveal--stagger-3 { transition-delay: 0.24s; }
.reveal--stagger-4 { transition-delay: 0.32s; }
.reveal--stagger-5 { transition-delay: 0.40s; }
.reveal--stagger-6 { transition-delay: 0.48s; }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .bento__item--hero { min-height: 320px; grid-column: span 2; }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .testimonial--featured { transform: none; }
    .testimonial--featured:hover { transform: translateY(-6px); }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl) var(--space-lg);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 3.5rem;
        --space-2xl: 3rem;
        --space-xl: 2rem;
        --header-height: 64px;
        --strip-height: 36px;
    }

    .emergency-strip { height: 36px !important; }
    .emergency-strip__text { display: none; }
    .emergency-strip__link { font-size: 0.8rem; padding: 0.25rem 0.7rem; }

    .scroll-progress { top: 36px !important; }

    .header {
        height: 56px !important;
        top: 36px !important;
    }
    .header__inner {
        height: 56px;
        padding: 0 0.75rem;
    }
    .header__logo img { height: 28px; }
    .header__services { font-size: 0.45rem; letter-spacing: 0.01em; }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(84px + 36px + var(--space-lg)) var(--space-lg);
        gap: var(--space-xs);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 999;
    }
    .header__nav.open { transform: translateX(0); }
    .header__nav .header__link { font-size: 1.15rem; padding: var(--space-xs) 0; }

    .header__actions { display: none; }
    .header__burger { display: flex; }

    /* ---- HERO mobile ---- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: calc(56px + 36px + 1.5rem) 1rem 2rem !important;
    }
    .hero__content { max-width: 100%; }
    .hero__badge {
        font-size: 0.55rem;
        padding: 0.3rem 0.7rem;
        margin-bottom: 0.75rem;
        letter-spacing: 0.12em;
        background: rgba(184, 150, 90, 0.15);
        border: 1px solid rgba(184, 150, 90, 0.2);
    }
    .hero__title { font-size: clamp(2rem, 9vw, 2.8rem); margin-bottom: 0.75rem; }
    .hero__subtitle { font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.6; }
    .hero__ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .hero__ctas .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.88rem;
        padding: 0.75rem 1.2rem;
    }
    .hero__trust { flex-direction: column; gap: 0.35rem; }
    .hero__trust-item { font-size: 0.78rem; padding: 0.3rem 0.7rem; }

    /* ---- BENTO mobile: 1 Spalte, kompakte horizontale Karten ---- */
    .bento {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.6rem;
    }
    .bento__item--hero {
        min-height: 220px;
        width: 100%;
    }
    .bento__item--hero .bento__title { font-size: 1.3rem; }
    .bento__item--hero .bento__text { font-size: 0.85rem; max-width: none; }
    .bento__item--hero .bento__content { padding: var(--space-md); }

    /* Medium & Standard: Icon+Titel oben, Text darunter */
    .bento__item--medium,
    .bento__item--standard {
        flex-direction: column !important;
        gap: 0;
        padding: 1rem 1.1rem !important;
        width: 100%;
    }

    /* Icon + Titel in einer Zeile */
    .bento__item--medium .bento__icon,
    .bento__item--standard .bento__icon {
        float: left;
        margin-right: 0.7rem;
        margin-bottom: 0.4rem;
    }
    .bento__icon { width: 36px; height: 36px; padding: 7px; }
    .bento__title {
        font-size: 1rem;
        margin-bottom: 0.1rem;
        padding-top: 0.35rem;
    }

    /* Text & Link volle Breite */
    .bento__text {
        clear: both;
        font-size: 0.84rem;
        line-height: 1.5;
        margin-bottom: 0;
        padding-bottom: 0.35rem;
        padding-top: 0.15rem;
    }
    .bento__link { font-size: 0.82rem; }

    /* Hover-Effekte deaktivieren auf Touch */
    .bento__item--medium:hover,
    .bento__item--standard:hover {
        transform: none;
    }

    /* ---- ANIMATIONEN sanfter ---- */
    .reveal { transform: translateY(16px); }
    .reveal--left { transform: translateY(16px); }
    .reveal--right { transform: translateY(16px); }
    .reveal--scale { transform: scale(0.97); }
    .reveal, .reveal--slow { transition-duration: 0.45s; }

    /* ---- SECTIONS ---- */
    .services { padding: var(--space-xl) 0; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .section-subtitle { font-size: 0.9rem; }
    .section-header { margin-bottom: var(--space-md); }

    /* ---- ABOUT ---- */
    .about__visual { grid-template-columns: 1fr; }
    .about__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.25rem;
        overflow: hidden;
    }
    .about__stat { overflow: hidden; }
    .about__stat-number { font-size: 1.6rem; }
    .about__stat-suffix { font-size: 0.9rem; }
    .about__stat-label { font-size: 0.65rem; }

    .about__text--highlight { font-size: 0.95rem; }

    /* ---- PROCESS / FORM / FOOTER ---- */
    .process__step {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: flex-start;
    }
    .process__step-icon { display: none; }
    .form__row { grid-template-columns: 1fr; }
    .contact__form { padding: var(--space-md); }
    .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    /* ---- CTA BANNER ---- */
    .cta-banner { padding: var(--space-lg) 0; }
    .cta-banner__inner {
        padding: 1.5rem 1.25rem !important;
        flex-direction: column !important;
        text-align: center;
        border-radius: var(--radius-md);
    }
    .cta-banner__content h2 { font-size: 1.4rem; margin-bottom: 0.4rem; }
    .cta-banner__content p { font-size: 0.88rem; }
    .cta-banner__actions {
        flex-direction: column !important;
        width: 100%;
        gap: 0.5rem;
    }
    .cta-banner__actions .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.88rem;
        padding: 0.75rem 1rem;
    }

    /* ---- CONTACT ---- */
    .contact { padding: var(--space-xl) 0; }
    .contact__text { font-size: 0.9rem; }
    .contact__detail-icon { width: 38px; height: 38px; }
    .contact__info .section-title { padding-right: 3rem; }

    /* ---- TESTIMONIALS ---- */
    .testimonials { padding: var(--space-xl) 0; }
    .testimonial { padding: 1.25rem; }
    .testimonial__text { font-size: 0.88rem; }

    /* ---- FLOATING BUTTONS: nicht über Content ---- */
    .floating-buttons {
        bottom: 4.5rem;
        right: 0.75rem;
        gap: 0.4rem;
    }
    .floating-btn { width: 42px; height: 42px; }
    .back-to-top {
        width: 34px;
        height: 34px;
        bottom: 4.5rem;
        left: 0.75rem;
    }
    .cookie-settings-btn {
        bottom: 0.75rem;
        left: 0.75rem;
        width: 32px;
        height: 32px;
        opacity: 0.6;
    }
}

@media (max-width: 380px) {
    .emergency-strip { height: 32px !important; }
    .scroll-progress { top: 32px !important; }
    .header { height: 50px !important; top: 32px !important; }
    .header__inner { height: 50px; }
    .header__logo img { height: 22px; }
    .header__services { font-size: 0.38rem; }

    .hero {
        padding: calc(50px + 32px + 1rem) 0.75rem 1.5rem !important;
    }
    .hero__title { font-size: 1.85rem; }
    .hero__badge { font-size: 0.5rem; padding: 0.25rem 0.6rem; }

    .about__stat-number { font-size: 1.4rem; }
    .about__stat-suffix { font-size: 0.8rem; }
    .about__stat-label { font-size: 0.6rem; }

    .bento__item--medium,
    .bento__item--standard { padding: 0.75rem !important; gap: 0.6rem; }
    .bento__icon { width: 34px; height: 34px; padding: 6px; }
    .bento__title { font-size: 0.88rem; }
    .bento__text { font-size: 0.75rem; }

    .section-title { font-size: 1.4rem; }
}

/* ===================================================
   HERO RATING BADGE
   =================================================== */
.hero__rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
    animation: heroFadeUp 600ms var(--ease-hero) 1150ms both;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    padding: 0.65rem 1.3rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero__rating-stars {
    display: flex;
    gap: 0.15rem;
}

.hero__rating-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.hero__rating-text strong {
    color: #F59E0B;
    font-weight: 700;
    font-size: 1.05rem;
}

/* ===================================================
   FLOATING BUTTONS
   =================================================== */
.floating-buttons {
    position: fixed;
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    right: calc(1.5rem + env(safe-area-inset-right, 0px));
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s var(--ease-out);
}

.floating-buttons.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--ease-out);
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn--whatsapp {
    background: #25D366;
}

.floating-btn--whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.floating-btn--call {
    background: var(--color-accent);
}

.floating-btn--call:hover {
    box-shadow: var(--shadow-accent);
}

/* ===================================================
   BACK TO TOP
   =================================================== */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

/* ===================================================
   COOKIE BANNER
   =================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: var(--color-primary);
    padding: var(--space-lg) var(--space-md);
    padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cookie-banner__text strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.cookie-banner__text p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switches */
.cookie-banner__categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: var(--space-md);
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md, 10px);
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
}

.cookie-toggle input {
    display: none;
}

.cookie-toggle__slider {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    flex-shrink: 0;
    transition: background 0.3s;
}

.cookie-toggle__slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background: var(--color-accent);
}

.cookie-toggle input:checked + .cookie-toggle__slider::after {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle__info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.cookie-toggle__info strong {
    color: #fff;
    font-size: 0.9rem;
}

.cookie-toggle__info small {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    line-height: 1.4;
}

/* Actions */
.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-banner__accept,
.cookie-banner__decline,
.cookie-banner__settings,
.cookie-banner__save {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.cookie-banner__link {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.cookie-banner__link:hover {
    color: var(--color-accent-light);
}

/* Re-open settings button */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 940;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: color 0.2s, transform 0.2s;
}

.cookie-settings-btn:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

/* ===================================================
   BEFORE / AFTER SECTION
   =================================================== */
.beforeafter {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--color-bg-warm);
}

.beforeafter__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.beforeafter__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.beforeafter__slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
}

.beforeafter__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.beforeafter__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.beforeafter__image--after {
    clip-path: inset(0 0 0 50%);
}

.beforeafter__label {
    position: absolute;
    top: var(--space-sm);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    pointer-events: none;
    z-index: 3;
}

.beforeafter__label--before {
    left: var(--space-sm);
    background: var(--color-primary);
    color: var(--color-text-inverse);
}

.beforeafter__label--after {
    right: var(--space-sm);
    background: var(--color-accent);
    color: #fff;
}

/* Range input (invisible, full overlay) */
.beforeafter__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: col-resize;
    z-index: 5;
    -webkit-appearance: none;
    appearance: none;
}

/* Handle (visual divider line + arrows) */
.beforeafter__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    pointer-events: none;
    z-index: 4;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.beforeafter__handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.beforeafter__handle svg {
    position: relative;
    z-index: 1;
    background: var(--color-accent);
    border-radius: 50%;
    padding: 4px;
    width: 32px;
    height: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.beforeafter__cta {
    text-align: center;
    margin-top: var(--space-lg);
}

@media (max-width: 768px) {
    .beforeafter__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .beforeafter__slider {
        aspect-ratio: 3 / 2;
    }
}

/* ===================================================
   FOOTER SOCIAL
   =================================================== */
.footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-md);
}

.footer__social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s var(--ease-out);
}

.footer__social-link:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

/* ===================================================
   RESPONSIVE ADDITIONS
   =================================================== */
@media (min-width: 769px) {
    .floating-buttons {
        /* On desktop show smaller */
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: left;
    }
    .cookie-banner__text p {
        font-size: 0.82rem;
    }
    .cookie-banner__actions {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-banner__actions .btn {
        flex: 1;
        text-align: center;
    }
    .hero__rating {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* Mobile nav overlay */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===================================================
   LEGAL PAGES (Impressum / Datenschutz)
   =================================================== */
.legal {
    padding: calc(var(--space-xl) + 2rem) 0 var(--space-xl);
    max-width: 820px;
    margin: 0 auto;
}

.legal h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.legal__updated {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.legal h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-lg);
    margin-bottom: 0.75rem;
}

.legal h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-md);
    margin-bottom: 0.5rem;
}

.legal p {
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.legal ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--color-text);
    line-height: 1.75;
    font-size: 0.95rem;
}

.legal ul li {
    margin-bottom: 0.35rem;
}

.legal a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s var(--ease);
}

.legal a:hover {
    color: var(--color-accent-dark);
}

/* Cookie table */
.legal__table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
}

.legal__table th,
.legal__table td {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.legal__table th {
    background: var(--color-bg-warm);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legal__table td {
    color: var(--color-text);
}

.legal__table tbody tr:hover {
    background: var(--color-accent-bg);
}

/* Back button */
.legal__back {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.legal__back .btn {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .legal {
        padding: calc(var(--space-lg) + 1rem) var(--space-sm) var(--space-lg);
    }

    .legal h1 {
        font-size: 1.75rem;
    }

    .legal__table {
        font-size: 0.82rem;
    }

    .legal__table th,
    .legal__table td {
        padding: 0.5rem 0.6rem;
    }

    .legal__table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ===================================================
   KÜCHEN MODAL
   =================================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal__container {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-xl, 20px);
    max-width: 720px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(40px) scale(0.95);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.open .modal__container {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-bg-warm);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.modal__close:hover {
    background: var(--color-border);
    transform: rotate(90deg);
}

.modal__header {
    margin-bottom: 1.5rem;
}

.modal__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin: 0.25rem 0 0.5rem;
}

.modal__subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.modal__gallery {
    margin-bottom: 1.5rem;
}

.modal__gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg, 14px);
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: var(--color-bg-warm);
}

.modal__gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Gallery Pfeile */
.modal__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}
.modal__arrow:hover {
    background: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}
.modal__arrow--prev { left: 0.5rem; }
.modal__arrow--next { right: 0.5rem; }

/* Desktop: Pfeile nur bei Hover zeigen */
@media (min-width: 769px) {
    .modal__arrow { opacity: 0; transition: opacity 0.2s, background 0.2s, transform 0.2s; }
    .modal__gallery-main:hover .modal__arrow { opacity: 1; }
}

.modal__gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}

.modal__thumb {
    flex: 0 0 calc((100% - 2.5rem) / 6);
    min-width: 80px;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md, 10px);
    overflow: hidden;
    border: 2.5px solid transparent;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: border-color 0.25s, transform 0.25s;
    opacity: 0.6;
}

.modal__thumb:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.modal__thumb.active {
    border-color: var(--color-accent);
    opacity: 1;
}

.modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.modal__feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    background: var(--color-bg-warm);
    border-radius: var(--radius-md, 10px);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.modal__feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.modal__cta {
    text-align: center;
}

.modal__cta .btn {
    width: 100%;
}

/* Modal Responsive */
@media (max-width: 600px) {
    .modal__container {
        padding: 1.5rem;
        width: 96%;
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
        align-self: flex-end;
    }

    .modal__title {
        font-size: 1.5rem;
    }

    .modal__features {
        grid-template-columns: 1fr;
    }

    .modal__gallery-thumbs {
        gap: 0.35rem;
    }
}

/* ===================================================
   STICKY CTA ICONS (Mobile only)
   =================================================== */
.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        position: fixed;
        bottom: 1rem;
        right: 0.75rem;
        z-index: 950;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        transform: translateY(80px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s var(--ease-out);
    }

    .sticky-cta.visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .sticky-cta__icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .sticky-cta__icon:hover {
        transform: scale(1.1);
    }

    .sticky-cta__icon--call {
        background: var(--color-accent);
    }
    .sticky-cta__icon--call:hover {
        box-shadow: var(--shadow-accent);
    }

    .sticky-cta__icon--form {
        background: var(--color-primary);
    }
    .sticky-cta__icon--form:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    }

    /* Floating Buttons verstecken (ersetzt durch sticky-cta) */
    .floating-buttons {
        display: none !important;
    }
}
