        /* ===== CSS RESET & VARIABLES ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #c9a227;
            --gold-light: #e4c76b;
            --gold-dark: #a68521;
            --black: #1a1a1a;
            --white: #ffffff;
            --gray-100: #f7f7f7;
            --gray-200: #e8e8e8;
            --gray-400: #999999;
            --gray-600: #666666;
            --gray-800: #333333;
            
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
            
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-weight: 400;
            line-height: 1.7;
            color: var(--black);
            background: var(--white);
            overflow-x: hidden;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.2;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

        p {
            font-size: 1.125rem;
            color: var(--gray-600);
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--gray-200);
            transition: var(--transition);
        }

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

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .nav-logo img {
            height: 45px;
            width: auto;
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--black);
            letter-spacing: 0.02em;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--gray-800);
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

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

        .nav-cta {
            background: var(--gold);
            color: var(--white) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-cta:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
        }

        .nav-cta::after {
            display: none !important;
        }

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

        .nav-toggle span {
            width: 25px;
            height: 2px;
            background: var(--black);
            transition: var(--transition);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 100%),
                        url('../images/field-path-800w.jpg') center/cover no-repeat;
            margin-top: 0;
        }

        /* Responsive hero background images */
        @supports (background-image: -webkit-image-set(url('test.webp') 1x)) or
                  (background-image: image-set(url('test.webp') 1x)) {
            .hero {
                background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 100%),
                            -webkit-image-set(url('../images/field-path-800w.webp') 1x) center/cover no-repeat;
                background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 100%),
                            image-set(url('../images/field-path-800w.webp') 1x) center/cover no-repeat;
            }
        }

        @media (min-width: 800px) {
            .hero {
                background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 100%),
                            url('../images/field-path-1200w.jpg') center/cover no-repeat;
            }
            @supports (background-image: -webkit-image-set(url('test.webp') 1x)) or
                      (background-image: image-set(url('test.webp') 1x)) {
                .hero {
                    background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 100%),
                                -webkit-image-set(url('../images/field-path-1200w.webp') 1x) center/cover no-repeat;
                    background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 100%),
                                image-set(url('../images/field-path-1200w.webp') 1x) center/cover no-repeat;
                }
            }
        }

        @media (min-width: 1200px) {
            .hero {
                background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 100%),
                            url('../images/field-path-1920w.jpg') center/cover no-repeat;
            }
            @supports (background-image: -webkit-image-set(url('test.webp') 1x)) or
                      (background-image: image-set(url('test.webp') 1x)) {
                .hero {
                    background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 100%),
                                -webkit-image-set(url('../images/field-path-1920w.webp') 1x) center/cover no-repeat;
                    background: linear-gradient(135deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.4) 100%),
                                image-set(url('../images/field-path-1920w.webp') 1x) center/cover no-repeat;
                }
            }
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            padding: 2rem;
            max-width: 900px;
            z-index: 2;
        }

        .hero-tagline {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--gold-light);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

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

        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
        }

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

        .btn-secondary:hover {
            background: var(--white);
            color: var(--black);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 30px;
            height: 30px;
            stroke: var(--white);
            opacity: 0.7;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* ===== SECTIONS BASE ===== */
        section {
            padding: 6rem 2rem;
        }

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

        .section-header h2 {
            margin-bottom: 1rem;
            color: var(--black);
        }

        .section-header p {
            font-size: 1.125rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--gray-100);
        }

        .about-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--gold);
            border-radius: 8px;
            z-index: -1;
        }

        .about-content h2 {
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .highlight-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            color: var(--gold);
        }

        .highlight-item span {
            font-weight: 500;
            color: var(--gray-800);
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            background: var(--white);
        }

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

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .service-icon svg {
            width: 30px;
            height: 30px;
            stroke: var(--white);
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--black);
        }

        .service-card p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .service-link {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .service-link:hover {
            color: var(--gold-dark);
            gap: 0.75rem;
        }

        /* ===== CERTIFICATES SECTION ===== */
        .certificates {
            background: var(--gray-100);
        }

        .certificates-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .certificate-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            transition: var(--transition);
        }

        .certificate-item:hover {
            transform: scale(1.05);
        }

        .certificate-item img {
            width: 120px;
            height: 120px;
            object-fit: contain;
            filter: grayscale(0);
            transition: var(--transition);
        }

        .certificate-item span {
            font-size: 0.875rem;
            color: var(--gray-600);
            text-align: center;
            font-weight: 500;
        }
        .certificate-item .certificate-title {
            font-weight: 700;
            color: var(--black);
            text-align: center;
        }
        .certificate-item .certificate-desc {
            font-size: 0.95rem;
            color: var(--gray-600);
            text-align: center;
            max-width: 220px;
        }

        /* ===== TESTIMONIALS / REVIEWS SECTION ===== */
        .reviews {
            background: var(--white);
            padding: 6rem 0;
        }

        .reviews .section-header {
            padding: 0 2rem;
        }

        .reviews-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        #justreview-testimonials {
            width: 100%;
        }

        /* ===== BLOG HERO SECTION ===== */
        .blog-hero {
            position: relative;
            height: 350px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('../images/blog-hero-bg-optimized.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax effect */
        }

        .blog-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.3),
                rgba(0, 0, 0, 0.5)
            );
            z-index: 1;
        }

        .blog-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .blog-hero-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .blog-hero-content p {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            font-weight: 300;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        .blog-hero-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--gold);
            color: var(--white);
            text-decoration: none;
            font-size: 1.125rem;
            font-weight: 500;
            border-radius: 50px;
            transition: all var(--transition);
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
        }

        .blog-hero-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
        }

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

        /* Mobile: Disable parallax for better performance */
        @media (max-width: 768px) {
            .blog-hero {
                height: 300px;
                background-attachment: scroll;
            }

            .blog-hero-content h2 {
                font-size: 2rem;
            }

            .blog-hero-content p {
                font-size: 1rem;
            }

            .blog-hero-btn {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
        }

        /* ===== CALENDAR SECTION - VOLLE BREITE ===== */
        .calendar {
            background: var(--gray-100);
            padding: 6rem 0;
            width: 100%;
        }

        .calendar .section-header {
            padding: 0 2rem;
        }

        .calendar-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .zeeg-wrapper {
            width: 100%;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            min-height: 900px;
        }

        /* Zeeg Widget Styling */
        .zeeg-inline-widget {
            width: 100% !important;
            height: 900px !important;
            min-height: 900px !important;
        }
        
        @media (max-width: 768px) {
            .zeeg-inline-widget {
                height: 900px !important;
                min-height: 900px !important;
            }
        }
        
        @media (max-width: 480px) {
            .zeeg-inline-widget {
                height: 1000px !important;
                min-height: 1000px !important;
            }
        }

        /* ===== NEWSLETTER SECTION - BREVO ===== */
        .newsletter {
            padding: 0;
            width: 100%;
        }

        .newsletter .sib-form {
            padding: 4rem 2rem;
        }

        .newsletter .sib-form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-note {
            text-align: center;
            font-size: 0.875rem;
            color: rgba(255,255,255,0.6);
            margin-top: 1rem;
            padding: 0 2rem;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .footer-brand img {
            height: 50px;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
            max-width: 300px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.75rem;
        }

        .footer-col a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col a:hover {
            color: var(--gold);
        }

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

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--gold);
            border-color: var(--gold);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

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

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.875rem;
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: var(--gold);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-image {
                max-width: 500px;
                margin: 0 auto;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: var(--shadow-md);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-toggle {
                display: flex;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

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

            .about-highlights {
                grid-template-columns: 1fr;
            }

            .certificates-grid {
                gap: 2rem;
            }

            .certificate-item img {
                width: 100px;
                height: 100px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            section {
                padding: 4rem 1rem;
            }

            .nav-container {
                padding: 1rem;
            }
        }
