    /* ─── Base & Typography ─── */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

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

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: #0D4F4F;
        color: #fff;
    }

    /* ─── Custom Scrollbar ─── */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #f8faf9;
    }
    ::-webkit-scrollbar-thumb {
        background: #a3b0aa;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #6b7a73;
    }

    /* ─── Section Labels ─── */
    .section-label {
        font-size: 0.7rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: #0D4F4F;
        font-weight: 600;
    }

    .section-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 500;
        color: #1a1f1d;
        line-height: 1.15;
    }

    /* ─── Buttons ─── */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        padding: 14px 28px;
        background: #0D4F4F;
        color: #fff;
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 2px;
        transition: all 0.3s ease;
        border: 2px solid #0D4F4F;
    }

    .btn-primary:hover {
        background: #0a3f3f;
        border-color: #0a3f3f;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(13, 79, 79, 0.3);
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        padding: 14px 28px;
        background: transparent;
        color: #0D4F4F;
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-decoration: none;
        border-radius: 2px;
        border: 2px solid #0D4F4F;
        transition: all 0.3s ease;
    }

    .btn-secondary:hover {
        background: #0D4F4F;
        color: #fff;
        transform: translateY(-1px);
    }

    /* ─── Hero ─── */
    .clip-hero-right {
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .hero-image-grid {
        position: relative;
        height: 600px;
    }

    .hero-img-main {
        width: 75%;
        height: 480px;
        border-radius: 2px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .hero-img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .hero-img-main:hover img {
        transform: scale(1.03);
    }

    .hero-img-accent {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 55%;
        height: 220px;
        border-radius: 2px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        border: 4px solid #fff;
    }

    .hero-img-accent img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-img-badge {
        position: absolute;
        top: 50%;
        right: 30%;
        transform: translate(50%, -50%);
        z-index: 2;
    }

    /* ─── Scroll Indicator ─── */
    .scroll-line {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, #a3b0aa, transparent);
        animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
        0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
        50% { opacity: 1; transform: scaleY(1); }
    }

    /* ─── Service Cards ─── */
    .service-card {
        border: 1px solid #e2e8e4;
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-4px);
    }

    /* ─── Testimonial Cards ─── */
    .testimonial-card {
        border: 1px solid #e2e8e4;
        transition: all 0.3s ease;
    }

    .testimonial-card:hover {
        border-color: #0D4F4F;
        transform: translateY(-2px);
    }

    /* ─── Reveal Animations ─── */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

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

    .reveal.visible:nth-child(2) { transition-delay: 0.1s; }
    .reveal.visible:nth-child(3) { transition-delay: 0.2s; }
    .reveal.visible:nth-child(4) { transition-delay: 0.3s; }
    .reveal.visible:nth-child(5) { transition-delay: 0.4s; }
    .reveal.visible:nth-child(6) { transition-delay: 0.5s; }

    /* ─── Hero Animations ─── */
    .hero-subtitle {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.2s;
        opacity: 0;
    }

    .hero-title {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.4s;
        opacity: 0;
    }

    .hero-text {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.6s;
        opacity: 0;
    }

    .hero-ctas {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 0.8s;
        opacity: 0;
    }

    .hero-stats {
        animation: slideUp 0.8s ease forwards;
        animation-delay: 1s;
        opacity: 0;
    }

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

    /* ─── Navbar ─── */
    #navbar {
        background: transparent;
    }

    #navbar.scrolled {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    }

    #navbar.scrolled .font-serif {
        color: #0D4F4F;
    }

    /* ─── Mobile Menu ─── */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    #mobile-menu.open .mobile-link {
        animation: fadeIn 0.3s ease forwards;
    }

    #mobile-menu.open .mobile-link:nth-child(1) { animation-delay: 0.05s; }
    #mobile-menu.open .mobile-link:nth-child(2) { animation-delay: 0.1s; }
    #mobile-menu.open .mobile-link:nth-child(3) { animation-delay: 0.15s; }
    #mobile-menu.open .mobile-link:nth-child(4) { animation-delay: 0.2s; }
    #mobile-menu.open .mobile-link:nth-child(5) { animation-delay: 0.25s; }

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

    /* ─── Mobile Menu Button ─── */
    #mobile-menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }
    #mobile-menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu-btn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
        width: 1.5rem;
    }

    /* ─── Responsive ─── */
    @media (max-width: 1023px) {
        .hero-image-grid {
            height: 450px;
            margin-top: 3rem;
        }
        .hero-img-main {
            width: 70%;
            height: 360px;
        }
        .hero-img-accent {
            height: 180px;
        }
    }

    @media (max-width: 767px) {
        .hero-image-grid {
            height: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-top: 2rem;
        }
        .hero-img-main {
            width: 100%;
            height: 300px;
        }
        .hero-img-accent {
            position: relative;
            width: 100%;
            height: 200px;
            border: none;
            margin-top: -16px;
        }
        .hero-img-badge {
            display: none;
        }
        .hero-stats {
            gap: 6px !important;
        }
        .hero-stats > div {
            flex: 1;
        }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        .hero-image-grid {
            height: 400px;
        }
        .hero-img-main {
            height: 320px;
        }
    }
