/* Hampe HLS - Main Stylesheet v1.1.0 */

        /* ═══════════════════════════════════════════
           HAMPE HLS – Industrial + Water Flow Theme
           ═══════════════════════════════════════════ */

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

        img {
            max-width: 100%;
            height: auto;
        }

        :root {
            --black: #0e0e0e;
            --dark: #161618;
            --dark-card: #1c1c1f;
            --dark-border: #2a2a2d;
            --red: #d42b2b;
            --red-glow: #e8393940;
            --red-deep: #a01e1e;
            --blue: #2b7cd4;
            --blue-light: #4a9ae8;
            --blue-glow: #2b7cd435;
            --blue-deep: #1a5ba0;
            --white: #f0eeeb;
            --white-dim: #b0ada8;
            --white-muted: #6e6b66;
            --font-display: 'Bebas Neue', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--red) var(--dark);
        }

        body {
            font-family: var(--font-body);
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--dark); }
        ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

        ::selection { background: var(--red); color: var(--white); }

        /* Grain */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }

        /* ═══════════════════════════════════════════
           HEADER
           ═══════════════════════════════════════════ */

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 clamp(1.5rem, 4vw, 4rem);
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(14, 14, 14, 0.85);
            backdrop-filter: blur(20px) saturate(1.4);
            -webkit-backdrop-filter: blur(20px) saturate(1.4);
            border-bottom: 1px solid transparent;
            transition: border-color 0.4s, background 0.4s;
        }

        .header.scrolled {
            border-bottom-color: var(--dark-border);
            background: rgba(14, 14, 14, 0.95);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--white);
        }

        .logo-img {
            height: 48px;
            width: auto;
            filter: brightness(1.1);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 2rem;
            position: fixed;
            top: 0;
            right: 0;
            height: 72px;
            padding-right: clamp(1.5rem, 4vw, 4rem);
            z-index: 1001;
        }

        .nav-close {
            display: none;
        }

        .nav a {
            text-decoration: none;
            color: var(--white-dim);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: color 0.3s;
            position: relative;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--red);
            transition: width 0.3s;
        }

        .nav a:hover { color: var(--white); }
        .nav a:hover::after { width: 100%; }

        .nav-cta {
            background: var(--red) !important;
            color: var(--white) !important;
            padding: 8px 20px;
            border-radius: 3px;
            font-weight: 600 !important;
            letter-spacing: 1px !important;
            transition: background 0.3s, transform 0.2s !important;
        }

        .nav-cta::after { display: none !important; }
        .nav-cta:hover { background: var(--red-deep) !important; transform: translateY(-1px); }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
            padding: 8px;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            margin: 5px 0;
            transition: transform 0.3s, opacity 0.3s;
        }

        /* ═══════════════════════════════════════════
           HERO
           ═══════════════════════════════════════════ */

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 0 clamp(1.5rem, 4vw, 4rem);
            overflow: hidden;
        }

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

        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.04;
            background-image: repeating-linear-gradient(-45deg, transparent, transparent 80px, var(--white) 80px, var(--white) 81px);
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            border-radius: 50%;
            background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
            animation: pulseGlow 8s ease-in-out infinite;
        }

        .hero-glow-blue {
            position: absolute;
            bottom: -10%;
            left: 20%;
            width: 50vw;
            height: 50vw;
            border-radius: 50%;
            background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
            animation: pulseGlow 10s ease-in-out infinite reverse;
            z-index: 0;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.9; transform: scale(1.05); }
        }

        /* ── HERO WATER CANVAS ── */
        .hero-water-scene {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 55%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
        }

        .hero-water-scene svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 70%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            padding-top: 72px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(212, 43, 43, 0.12);
            border: 1px solid rgba(212, 43, 43, 0.25);
            border-radius: 2px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.2s;
        }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--red);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3.5rem, 9vw, 8rem);
            line-height: 0.95;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.4s;
        }

        .hero h1 .accent { color: var(--red); }
        .hero h1 .accent-blue {
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: clamp(1rem, 1.5vw, 1.15rem);
            line-height: 1.7;
            color: var(--white-dim);
            max-width: 540px;
            font-weight: 300;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.6s;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 0.8s;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: var(--red);
            color: var(--white);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none;
            border-radius: 3px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .btn-primary:hover {
            background: var(--red-deep);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--red-glow);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: transparent;
            border: 1px solid var(--dark-border);
            color: var(--white-dim);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-radius: 3px;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: var(--white-muted);
            color: var(--white);
            transform: translateY(-2px);
        }

        .hero-stats {
            position: absolute;
            right: clamp(1.5rem, 4vw, 4rem);
            bottom: 15%;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            z-index: 1;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 1s;
        }

        .hero-stat { text-align: right; }

        .hero-stat-number {
            font-family: var(--font-display);
            font-size: 3rem;
            color: var(--white);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white-muted);
            margin-top: 4px;
        }

        .hero-stat-divider {
            width: 30px;
            height: 1px;
            background: linear-gradient(90deg, var(--red), var(--blue));
            margin-left: auto;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            opacity: 0;
            animation: fadeUp 0.8s ease forwards 1.2s;
        }

        .scroll-indicator span {
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--white-muted);
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: var(--dark-border);
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: -100%;
            width: 100%;
            height: 50%;
            background: linear-gradient(to bottom, var(--red), var(--blue));
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0% { top: -50%; }
            100% { top: 150%; }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ═══════════════════════════════════════════
           WAVE DIVIDERS
           ═══════════════════════════════════════════ */

        .wave-section-divider {
            position: relative;
            width: 100%;
            height: 120px;
            overflow: hidden;
            z-index: 2;
        }

        .wave-section-divider canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .wave-section-divider--sm { height: 80px; }

        /* ═══════════════════════════════════════════
           SECTIONS
           ═══════════════════════════════════════════ */

        section {
            padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 4rem);
        }

        .section-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-label::before {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--red);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            letter-spacing: 2px;
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .section-desc {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--white-dim);
            max-width: 600px;
            font-weight: 300;
        }

        /* ═══════════════════════════════════════════
           ABOUT
           ═══════════════════════════════════════════ */

        .about {
            background: var(--dark);
            position: relative;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 5vw, 6rem);
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-visual {
            position: relative;
            aspect-ratio: 4/5;
            background: var(--dark-card);
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid var(--dark-border);
        }

        .about-visual-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6);
            transition: filter 0.6s ease;
        }

        .about-visual:hover .about-visual-img {
            filter: brightness(0.8);
        }

        .about-visual-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 3rem;
            z-index: 1;
        }

        .about-visual-inner {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 3rem;
        }

        .about-year {
            font-family: var(--font-display);
            font-size: clamp(6rem, 12vw, 10rem);
            line-height: 1;
            color: var(--dark-border);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            white-space: nowrap;
        }

        .about-experience {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .about-experience-number {
            font-family: var(--font-display);
            font-size: 7rem;
            color: var(--red);
            line-height: 1;
        }

        .about-experience-text {
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--white);
            margin-top: 8px;
        }

        .about-original-logo {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            opacity: 0.12;
            width: 80%;
            pointer-events: none;
        }

        .about-visual::before,
        .about-visual::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            border-color: var(--red);
            border-style: solid;
            z-index: 2;
        }

        .about-visual::before { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
        .about-visual::after { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

        /* Water shimmer bottom */
        .about-water-shimmer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            z-index: 3;
            background: linear-gradient(90deg, var(--red), var(--blue), var(--red));
            background-size: 200% 100%;
            animation: shimmerLine 3s linear infinite;
        }

        @keyframes shimmerLine {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .about-content .section-desc { margin-bottom: 2rem; }

        .about-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .about-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            color: var(--white-dim);
            line-height: 1.6;
        }

        .about-list li::before {
            content: '';
            flex-shrink: 0;
            width: 8px;
            height: 8px;
            margin-top: 6px;
            background: var(--red);
            border-radius: 1px;
            transform: rotate(45deg);
        }

        /* ═══════════════════════════════════════════
           SERVICES
           ═══════════════════════════════════════════ */

        .services { position: relative; }

        .services-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .services-header .section-label { justify-content: center; }
        .services-header .section-label::before { display: none; }
        .services-header .section-label::after {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--red);
        }

        .services-header .section-desc { margin: 0 auto; }

        .services-logo {
            max-width: 280px;
            width: 100%;
            height: auto;
            margin-top: 1.5rem;
        }

        /* Original service icons row */
        .services-original-icons {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .services-original-icons img {
            height: 80px;
            width: auto;
            filter: brightness(1.2) contrast(1.1);
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .services-original-icons img:hover {
            opacity: 1;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: var(--dark);
            padding: clamp(2rem, 3vw, 3rem);
            position: relative;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover { background: var(--dark-card); transform: translateY(-4px); }

        /* Wave fill on hover */
        .service-card .wave-fill {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            transition: height 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            pointer-events: none;
            z-index: 0;
        }

        .service-card:hover .wave-fill { height: 100%; }

        .service-card--heat::before { background: var(--red); }
        .service-card--heat .wave-fill {
            background: linear-gradient(to top, rgba(212, 43, 43, 0.06), transparent);
        }
        .service-card--heat:hover { box-shadow: 0 8px 40px -10px rgba(212, 43, 43, 0.2); }

        .service-card--water::before { background: var(--blue); }
        .service-card--water .wave-fill {
            background: linear-gradient(to top, rgba(43, 124, 212, 0.06), transparent);
        }
        .service-card--water:hover { box-shadow: 0 8px 40px -10px rgba(43, 124, 212, 0.2); }

        .service-card--air::before { background: linear-gradient(90deg, var(--red), var(--blue)); }
        .service-card--air .wave-fill {
            background: linear-gradient(to top, rgba(240, 238, 235, 0.03), transparent);
        }

        .service-card > * { position: relative; z-index: 1; }

        .service-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 2rem;
        }

        .service-card--heat .service-icon { color: var(--red); }
        .service-card--water .service-icon { color: var(--blue); }
        .service-card--air .service-icon { color: var(--white-dim); }

        .service-card h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .service-card p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--white-dim);
            font-weight: 300;
            flex-grow: 1;
        }

        .service-list {
            list-style: none;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--dark-border);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .service-list li {
            font-size: 13px;
            color: var(--white-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }

        .service-card:hover .service-list li { color: var(--white-dim); }

        .service-card--heat .service-list li::before { content: '—'; color: var(--red); font-size: 10px; }
        .service-card--water .service-list li::before { content: '—'; color: var(--blue); font-size: 10px; }
        .service-card--air .service-list li::before { content: '—'; color: var(--white-muted); font-size: 10px; }

        /* ═══════════════════════════════════════════
           USPs
           ═══════════════════════════════════════════ */

        .usps {
            background: var(--dark);
            border-top: 1px solid var(--dark-border);
            border-bottom: 1px solid var(--dark-border);
            position: relative;
            overflow: hidden;
        }

        .usps-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .usps-header { text-align: center; margin-bottom: 4rem; }
        .usps-header .section-label { justify-content: center; }
        .usps-header .section-label::before { display: none; }

        .usps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .usp-item {
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            transition: all 0.4s;
        }

        .usp-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: var(--dark-border);
        }

        .usp-item:hover { background: rgba(212, 43, 43, 0.04); }

        .usp-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 1.5rem;
            color: var(--red);
            opacity: 0.9;
        }

        .usp-item h4 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .usp-item p {
            font-size: 13px;
            color: var(--white-muted);
            line-height: 1.6;
            font-weight: 300;
        }

        /* ═══════════════════════════════════════════
           CONTACT
           ═══════════════════════════════════════════ */

        .contact { position: relative; }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 5vw, 6rem);
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info-items { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }

        .contact-item { display: flex; align-items: flex-start; gap: 16px; }

        .contact-item-icon {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            background: rgba(212, 43, 43, 0.1);
            border: 1px solid rgba(212, 43, 43, 0.2);
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--red);
        }

        .contact-item-icon svg { width: 20px; height: 20px; }

        .contact-item-text h4 {
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white-muted);
            margin-bottom: 4px;
        }

        .contact-item-text p,
        .contact-item-text a {
            font-size: 15px;
            color: var(--white);
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s;
        }

        .contact-item-text a:hover { color: var(--red); }

        .contact-map {
            background: var(--dark);
            border: 1px solid var(--dark-border);
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            min-height: 400px;
            display: flex;
            flex-direction: column;
        }

        .contact-map-header {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--dark-border);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-map-header::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--red);
            border-radius: 50%;
        }

        .contact-map-body { flex: 1; position: relative; overflow: hidden; }

        .contact-map-body iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(1) invert(1) contrast(1.1) brightness(0.5);
            opacity: 0.7;
        }

        .contact-cta { margin-top: 3rem; }

        /* Contact Form */
        .contact-form-wrap {
            background: var(--dark);
            border: 1px solid var(--dark-border);
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .contact-form-header {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--dark-border);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-form-header::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--red);
            border-radius: 50%;
        }

        .contact-form {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group label {
            display: block;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--white-muted);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: var(--black);
            border: 1px solid var(--dark-border);
            border-radius: 3px;
            color: var(--white);
            font-family: var(--font-body);
            font-size: 14px;
            padding: 10px 14px;
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6b66' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
        }

        .form-group select option {
            background: var(--dark);
            color: var(--white);
        }

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

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 2px var(--red-glow);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--white-muted);
            opacity: 0.5;
        }

        .form-honeypot {
            position: absolute;
            left: -9999px;
            opacity: 0;
            height: 0;
            overflow: hidden;
        }

        .form-privacy {
            margin-top: 0.25rem;
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            cursor: pointer;
            font-size: 12px;
            color: var(--white-dim);
            line-height: 1.5;
            text-transform: none;
            letter-spacing: 0;
        }

        .form-checkbox input[type="checkbox"] {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
            margin-top: 2px;
            accent-color: var(--red);
            cursor: pointer;
        }

        .form-checkbox a {
            color: var(--red);
            text-decoration: none;
        }

        .form-checkbox a:hover {
            text-decoration: underline;
        }

        .contact-form-submit {
            margin-top: 0.5rem;
            width: 100%;
            justify-content: center;
            border: none;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .contact-form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-result {
            padding: 12px 16px;
            border-radius: 3px;
            font-size: 13px;
            line-height: 1.5;
            margin-top: 0.5rem;
        }

        .form-result.success {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #22c55e;
        }

        .form-result.error {
            background: rgba(212, 43, 43, 0.1);
            border: 1px solid rgba(212, 43, 43, 0.3);
            color: var(--red);
        }

        /* ═══════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════ */

        .footer {
            background: var(--dark);
            border-top: 1px solid var(--dark-border);
            padding: 3rem clamp(1.5rem, 4vw, 4rem);
            position: relative;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer-left { display: flex; align-items: center; gap: 2rem; }
        .footer-copy { font-size: 13px; color: var(--white-muted); }
        .footer-links { display: flex; gap: 1.5rem; }
        .footer-links a { font-size: 12px; color: var(--white-muted); text-decoration: none; letter-spacing: 0.5px; transition: color 0.3s; }
        .footer-links a:hover { color: var(--red); }
        .footer-right { display: none; }

        /* Animated red-blue line above footer */
        .footer-wave-line {
            height: 3px;
            background: linear-gradient(90deg, var(--red), var(--blue), var(--red));
            background-size: 200% 100%;
            animation: shimmerLine 3s linear infinite;
            margin-bottom: 0;
        }

        /* ═══════════════════════════════════════════
           SCROLL ANIMATIONS
           ═══════════════════════════════════════════ */

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

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

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ═══════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════ */

        @media (max-width: 1024px) {
            .hero-stats { display: none; }
            .hero-water-scene { width: 70%; opacity: 0.5; }
            .services-grid { grid-template-columns: 1fr; gap: 2px; }
            .usps-grid { grid-template-columns: repeat(2, 1fr); }
            .usp-item:nth-child(2)::after { display: none; }
            .usp-item:nth-child(1), .usp-item:nth-child(2) { border-bottom: 1px solid var(--dark-border); }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                height: 100vh;
                height: 100dvh;
                padding: 0;
                background: var(--black);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2.5rem;
                z-index: 9999;
            }
            .nav.open { display: flex; }
            .nav-close {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1.5rem;
                background: none;
                border: none;
                color: var(--white);
                cursor: pointer;
                padding: 8px;
            }
            .menu-toggle { z-index: 10000; position: relative; }
            .nav a { font-size: 16px; }
            .menu-toggle { display: block; }
            .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
            .menu-toggle.active span:nth-child(2) { opacity: 0; }
            .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
            .about-grid, .contact-grid { grid-template-columns: 1fr; }
            .about-visual { aspect-ratio: 16/9; order: -1; }
            .form-row { grid-template-columns: 1fr; }
            .usps-grid { grid-template-columns: 1fr; }
            .usp-item::after { display: none !important; }
            .usp-item { border-bottom: 1px solid var(--dark-border); }
            .usp-item:last-child { border-bottom: none; }
            .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
            .hero-water-scene { width: 100%; opacity: 0.3; }
            .footer-inner { text-align: center; }
            .footer-left { flex-direction: column; align-items: center; gap: 1rem; }
            .footer-links { justify-content: center; }
            .wave-section-divider { height: 60px; }
            .wave-section-divider--sm { height: 40px; }
            .services-gallery { grid-template-columns: 1fr; }
        }

        /* ═══════════════════════════════════════════
           ADDITIONAL: About Badges
           ═══════════════════════════════════════════ */

        .about-badges {
            margin-top: 2rem;
        }

        .about-badge-img {
            height: 50px;
            width: auto;
            opacity: 0.7;
            transition: opacity 0.3s;
            filter: brightness(1.5);
        }

        .about-badge-img:hover {
            opacity: 1;
        }

        /* ═══════════════════════════════════════════
           ADDITIONAL: Services Gallery
           ═══════════════════════════════════════════ */

        .services-gallery {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            border-radius: 4px;
            overflow: hidden;
        }

        .services-gallery-item {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .services-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            filter: brightness(0.8);
        }

        .services-gallery-item:hover img {
            transform: scale(1.05);
            filter: brightness(1);
        }

        /* ═══════════════════════════════════════════
           LEGAL PAGES (Impressum / Datenschutz)
           ═══════════════════════════════════════════ */

        .legal-page {
            padding-top: 120px;
            padding-bottom: 4rem;
            min-height: 100vh;
            background: var(--black);
        }

        .legal-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 4rem);
        }

        .legal-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: 2px;
            margin-bottom: 2rem;
            color: var(--white);
        }

        .legal-content {
            color: var(--white-dim);
            line-height: 1.8;
            font-weight: 300;
        }

        .legal-content h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            letter-spacing: 1px;
            color: var(--white);
            margin: 2.5rem 0 1rem;
        }

        .legal-content h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            margin: 1.5rem 0 0.5rem;
        }

        .legal-content p {
            margin-bottom: 1rem;
        }

        .legal-content a {
            color: var(--red);
            text-decoration: none;
            transition: color 0.3s;
        }

        .legal-content a:hover {
            color: var(--blue-light);
        }

        .legal-content strong {
            color: var(--white);
            font-weight: 600;
        }

        .legal-back {
            margin-top: 3rem;
            display: inline-flex;
        }

        /* ═══════════════════════════════════════════
           FOOTER SHIMMER
           ═══════════════════════════════════════════ */

        .footer-shimmer {
            width: 100%;
            height: 2px;
            position: relative;
            overflow: hidden;
        }

        .footer-shimmer canvas {
            width: 100%;
            height: 2px;
            display: block;
        }

        /* ═══════════════════════════════════════════
           COMPLIANZ COOKIE BANNER - Dark Theme Override
           ═══════════════════════════════════════════ */

        .cmplz-cookiebanner {
            background: var(--dark-card) !important;
            border-top: 1px solid var(--dark-border) !important;
            font-family: var(--font-body) !important;
            color: var(--white-dim) !important;
        }

        .cmplz-cookiebanner .cmplz-title {
            color: var(--white) !important;
            font-family: var(--font-display) !important;
            letter-spacing: 1px !important;
        }

        .cmplz-cookiebanner .cmplz-message {
            color: var(--white-dim) !important;
            font-size: 14px !important;
        }

        .cmplz-cookiebanner .cmplz-btn.cmplz-accept {
            background: var(--red) !important;
            color: var(--white) !important;
            border: none !important;
            border-radius: 3px !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            font-size: 12px !important;
            transition: background 0.3s !important;
        }

        .cmplz-cookiebanner .cmplz-btn.cmplz-accept:hover {
            background: var(--red-deep) !important;
        }

        .cmplz-cookiebanner .cmplz-btn.cmplz-deny,
        .cmplz-cookiebanner .cmplz-btn.cmplz-settings {
            background: transparent !important;
            border: 1px solid var(--dark-border) !important;
            color: var(--white-dim) !important;
            border-radius: 3px !important;
            font-size: 12px !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            transition: all 0.3s !important;
        }

        .cmplz-cookiebanner .cmplz-btn.cmplz-deny:hover,
        .cmplz-cookiebanner .cmplz-btn.cmplz-settings:hover {
            border-color: var(--white-muted) !important;
            color: var(--white) !important;
        }

        .cmplz-cookiebanner a {
            color: var(--red) !important;
        }

        /* ═══════════════════════════════════════════
           SCROLL TO TOP
           ═══════════════════════════════════════════ */

        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--red);
            color: var(--white);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(212, 43, 43, 0.3);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--red-deep);
            transform: translateY(-2px);
        }
    