/* ===== Variables ===== */
:root {
    --color-primary: #0a2e4a;
    --color-accent: #5a9bab;
    --color-accent-light: #74b3c2;
    --color-accent-dark: #3d7f8f;
    --color-bg: #EDECD8;
    --color-white: #ffffff;
    --color-text: #0a2e4a;
    --color-text-light: #4a6275;
    --color-border: #d5d0c7;
    --color-whatsapp: #25d366;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(237, 236, 216, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(90,155,171,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.btn-nav {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 10px 20px;
    border-radius: 6px;
}

.btn-nav:hover {
    background: var(--color-accent-light);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a2e4a 0%, #0f3a5c 50%, #1a5a6a 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 em {
    color: var(--color-accent-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Hero Animation Scene ===== */
.hero-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.kitchen-scene {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 440px;
    animation: sceneEntry 2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes sceneEntry {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Room */
.scene-room {
    position: absolute;
    inset: 40px 20px 20px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.06) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

/* Window */
.scene-window {
    position: absolute;
    top: 12%;
    right: 8%;
    width: 22%;
    height: 30%;
    border-radius: 8px;
    overflow: hidden;
}

.window-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(135,206,235,0.3), rgba(255,223,140,0.2));
    animation: windowGlow 4s ease-in-out infinite alternate;
}

@keyframes windowGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.window-frame {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255,255,255,0.4);
    border-radius: 8px;
}

.window-cross-h {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

.window-cross-v {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.3);
}

/* Plant */
.scene-plant {
    position: absolute;
    top: 35%;
    right: 11%;
    width: 30px;
    height: 40px;
}

.plant-pot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 14px;
    background: rgba(180,100,60,0.7);
    border-radius: 2px 2px 4px 4px;
}

.plant-leaf {
    position: absolute;
    bottom: 12px;
    left: 50%;
    width: 4px;
    height: 20px;
    background: rgba(80,160,80,0.8);
    border-radius: 50% 50% 0 0;
    transform-origin: bottom center;
}

.plant-leaf-1 { transform: translateX(-50%) rotate(-20deg); animation: sway 3s ease-in-out infinite; }
.plant-leaf-2 { transform: translateX(-50%) rotate(5deg); height: 24px; animation: sway 3.5s ease-in-out infinite 0.3s; }
.plant-leaf-3 { transform: translateX(-50%) rotate(25deg); height: 18px; animation: sway 2.8s ease-in-out infinite 0.7s; }

@keyframes sway {
    0%, 100% { transform: translateX(-50%) rotate(var(--r, -20deg)); }
    50% { transform: translateX(-50%) rotate(calc(var(--r, -20deg) + 8deg)); }
}

.plant-leaf-1 { --r: -20deg; }
.plant-leaf-2 { --r: 5deg; }
.plant-leaf-3 { --r: 25deg; }

/* Cabinets Upper */
.cabinet-upper {
    position: absolute;
    top: 8%;
    height: 22%;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    animation: cabinetDrop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cabinet-upper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24%;
    height: 4px;
    background: rgba(90,155,171,0.7);
    border-radius: 2px;
}

.cab-u-1 { left: 5%; width: 24%; animation-delay: 1s; }
.cab-u-2 { left: 31%; width: 20%; animation-delay: 1.4s; }
.cab-u-3 { left: 53%; width: 24%; animation-delay: 1.8s; }

@keyframes cabinetDrop {
    0% { opacity: 0; transform: translateY(-40px); }
    50% { opacity: 0.8; transform: translateY(4px); }
    70% { transform: translateY(-2px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Range Hood */
.range-hood {
    position: absolute;
    top: 5%;
    left: 34%;
    width: 14%;
    height: 28%;
    background: linear-gradient(180deg, rgba(180,180,180,0.2), rgba(180,180,180,0.1));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px 4px 0 0;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    animation: cabinetDrop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

/* Backsplash */
.backsplash {
    position: absolute;
    top: 32%;
    left: 5%;
    right: 22%;
    height: 20%;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 0px,
        rgba(255,255,255,0.04) 28px,
        rgba(255,255,255,0.08) 28px,
        rgba(255,255,255,0.08) 30px
    );
    border-radius: 2px;
    animation: fadeIn 1.5s ease 2.4s both;
}

/* Countertop */
.countertop {
    position: absolute;
    top: 52%;
    left: 4%;
    right: 21%;
    height: 4%;
    background: linear-gradient(90deg, rgba(90,155,171,0.6), rgba(90,155,171,0.8), rgba(90,155,171,0.6));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(90,155,171,0.3);
    animation: countertopSlide 1.8s cubic-bezier(0.16, 1, 0.3, 1) 2.8s both;
}

@keyframes countertopSlide {
    from { opacity: 0; transform: scaleX(0); transform-origin: left; }
    to { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

/* Cabinets Lower */
.cabinet-lower {
    position: absolute;
    top: 57%;
    height: 32%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    animation: cabinetRise 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cabinet-lower::after {
    content: '';
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24%;
    height: 4px;
    background: rgba(90,155,171,0.6);
    border-radius: 2px;
}

.cab-l-1 { left: 5%; width: 18%; animation-delay: 2.0s; }
.cab-l-2 { left: 24.5%; width: 18%; animation-delay: 2.3s; }
.cab-l-3 { left: 44%; width: 18%; animation-delay: 2.6s; }
.cab-l-4 { left: 63.5%; width: 14%; animation-delay: 2.9s; }

@keyframes cabinetRise {
    0% { opacity: 0; transform: translateY(30px); }
    60% { transform: translateY(-3px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Stove */
.stove {
    position: absolute;
    top: 52.5%;
    left: 34%;
    width: 13%;
    height: 3%;
    background: rgba(40,40,40,0.5);
    border-radius: 2px;
    animation: fadeIn 0.8s ease 3.6s both;
}

.stove-burner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1.5px solid rgba(255,100,50,0.5);
    animation: burnerGlow 3s ease-in-out infinite;
}

.burner-1 { left: 8%; animation-delay: 0s; }
.burner-2 { left: 30%; animation-delay: 0.5s; }
.burner-3 { left: 54%; animation-delay: 1s; }
.burner-4 { left: 76%; animation-delay: 1.5s; }

@keyframes burnerGlow {
    0%, 100% { border-color: rgba(255,100,50,0.3); box-shadow: none; }
    50% { border-color: rgba(255,100,50,0.7); box-shadow: 0 0 8px rgba(255,80,30,0.4); }
}

/* Sink */
.sink {
    position: absolute;
    top: 53%;
    left: 10%;
    width: 12%;
    height: 2.5%;
    background: rgba(200,210,220,0.2);
    border: 1.5px solid rgba(200,210,220,0.3);
    border-radius: 50%;
    animation: fadeIn 0.8s ease 3.8s both;
}

.faucet {
    position: absolute;
    top: 48%;
    left: 14.5%;
    width: 3%;
    height: 5%;
    background: rgba(200,210,220,0.4);
    border-radius: 2px 2px 0 0;
    animation: fadeIn 0.8s ease 4s both;
}

.faucet::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 180%;
    height: 35%;
    background: rgba(200,210,220,0.4);
    border-radius: 10px;
}

/* Floor */
.floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10%;
    background: linear-gradient(90deg, rgba(90,155,171,0.2) 0%, rgba(90,155,171,0.3) 50%, rgba(90,155,171,0.2) 100%);
    border-radius: 0 0 16px 16px;
}


/* Tape Measure */
.tape-measure {
    position: absolute;
    top: 50%;
    left: 8%;
    width: 70%;
    height: 20px;
    opacity: 0;
    animation: tapeAppear 0.8s ease 4.5s both;
}

@keyframes tapeAppear {
    to { opacity: 1; }
}

.tape-line {
    position: absolute;
    top: 50%;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(90,155,171,0.9), rgba(116,179,194,0.8));
    border-radius: 2px;
    transform: translateY(-50%);
    animation: tapeExtend 5s cubic-bezier(0.16, 1, 0.3, 1) 5.2s both infinite;
    box-shadow: 0 1px 4px rgba(90,155,171,0.4);
}

.tape-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: -3px;
    bottom: -3px;
    width: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 18px,
        rgba(10,46,74,0.6) 18px,
        rgba(10,46,74,0.6) 19px
    );
}

@keyframes tapeExtend {
    0%, 8% { width: 0; }
    30%, 60% { width: 100%; }
    85%, 100% { width: 0; }
}

.tape-label {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: rgba(116,179,194,0.95);
    font-family: var(--font-body);
    background: rgba(0,0,0,0.3);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    animation: labelPop 5s ease 5.5s both infinite;
}

@keyframes labelPop {
    0%, 12% { opacity: 0; transform: translateX(-50%) translateY(5px); }
    25%, 55% { opacity: 1; transform: translateX(-50%) translateY(0); }
    75%, 100% { opacity: 0; transform: translateX(-50%) translateY(-5px); }
}

/* ===== Floating Elements ===== */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-el {
    position: absolute;
    width: 28px;
    height: 28px;
    color: rgba(90,155,171,0.7);
    animation: floatBubble 8s ease-in-out infinite;
    opacity: 0;
}

.float-pencil {
    top: 8%;
    left: 10%;
    animation-delay: 4s;
}

.float-ruler {
    top: 15%;
    right: 5%;
    animation-delay: 5s;
    width: 32px;
    height: 32px;
}

.float-heart {
    bottom: 30%;
    left: 3%;
    animation-delay: 6s;
    width: 22px;
    height: 22px;
    color: rgba(220,100,100,0.6);
}

.float-check {
    top: 5%;
    right: 25%;
    animation-delay: 7s;
    color: rgba(100,200,100,0.7);
}

@keyframes floatBubble {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0; }
    15% { opacity: 0.7; }
    25% { transform: translateY(-12px) rotate(5deg); opacity: 0.9; }
    50% { transform: translateY(-6px) rotate(-3deg); opacity: 0.7; }
    75% { transform: translateY(-14px) rotate(3deg); opacity: 0.85; }
    90% { opacity: 0.5; }
}

/* ===== Particles ===== */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(90,155,171,0.6);
    border-radius: 50%;
    animation: particleFloat 10s ease-in-out infinite;
}

.p1 { top: 20%; left: 15%; animation-delay: 4s; }
.p2 { top: 60%; left: 85%; animation-delay: 5s; width: 3px; height: 3px; }
.p3 { top: 40%; left: 5%; animation-delay: 5.5s; background: rgba(255,255,255,0.4); }
.p4 { top: 75%; left: 50%; animation-delay: 6s; width: 5px; height: 5px; }
.p5 { top: 10%; left: 70%; animation-delay: 6.5s; background: rgba(255,255,255,0.3); }
.p6 { top: 85%; left: 25%; animation-delay: 7s; width: 3px; height: 3px; }
.p7 { top: 30%; left: 90%; animation-delay: 7.5s; background: rgba(255,255,255,0.4); width: 3px; height: 3px; }
.p8 { top: 55%; left: 40%; animation-delay: 8s; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(0); opacity: 0; }
    10% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(20px, -30px) scale(0.8); opacity: 0.5; }
    90% { transform: translate(-10px, -60px) scale(0.3); opacity: 0; }
}

/* ===== Scene CTA ===== */
.scene-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: ctaReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 6.5s both;
}

.scene-cta-inner {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 20px 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(0);
    animation: ctaFloat 4s ease-in-out infinite 8s;
}

.scene-cta-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.scene-cta-btn {
    font-size: 0.85rem;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(90,155,171,0.4);
    animation: ctaPulse 3s ease-in-out infinite 8s;
}

@keyframes ctaReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(90,155,171,0.4); }
    50% { box-shadow: 0 6px 25px rgba(90,155,171,0.6), 0 0 0 4px rgba(90,155,171,0.1); }
}

/* Fade-in utility */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 12px;
}

.section-intro {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
}

/* ===== Leistungen ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-light);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--color-accent);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Process */
.process {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 60px 40px;
    border: 1px solid var(--color-border);
}

.process-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.process-step {
    text-align: center;
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-light);
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.process-step p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

/* ===== Projekte / Galerie ===== */
.projekte {
    background: var(--color-white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--color-border);
    border-radius: 30px;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--color-text-light);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(166, 124, 82, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: all var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,46,74,0.85) 0%, rgba(10,46,74,0.2) 40%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-size: 0.8rem;
    color: var(--color-accent-light);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gallery-desc {
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 500;
    margin-top: 4px;
}

/* ===== Aktionen ===== */
.aktionen-grid {
    display: grid;
    gap: 32px;
}

.aktion-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.aktion-card:hover {
    box-shadow: var(--shadow-md);
}

.aktion-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.aktion-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.aktion-card.featured {
    position: relative;
}

.aktion-image {
    min-height: 300px;
}

.aktion-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #5a9bab 0%, #0a2e4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 500;
}

.aktion-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aktion-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.aktion-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.aktion-content .btn {
    align-self: flex-start;
    margin-top: 8px;
}

/* ===== Über uns ===== */
.ueber-uns {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #e8e4df 0%, #d4cfc7 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.about-feature strong {
    display: block;
    color: var(--color-primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-feature span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ===== Kontakt ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--color-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-card.whatsapp:hover {
    border-color: var(--color-whatsapp);
}

.contact-card.whatsapp svg {
    color: var(--color-whatsapp);
}

.contact-card strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary);
}

.contact-card span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.contact-info {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

/* ===== Footer ===== */
.footer {
    background: #071e32;
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-animation {
        order: -1;
    }

    .kitchen-scene {
        max-width: 340px;
        height: 340px;
        margin: 0 auto;
    }

    .tape-measure {
        width: 75%;
    }

    .floating-elements {
        display: none;
    }

    .scene-cta-inner {
        padding: 16px 24px;
    }

    .scene-cta-text {
        font-size: 0.95rem;
    }

    .scene-cta-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-placeholder {
        aspect-ratio: 16/9;
    }

    .aktion-card.featured {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        text-align: center;
    }
}
