

       
        :root {
            /* Palette: Dark Luxury */
            --bg-body: #121212;
            --bg-surface: #1a1a1a;
            --bg-footer: #0a0a0a;
            --text-main: #ffffff;
            --text-muted: #a1a1aa;
            --accent: #D4AF37; /* Metallic Gold */
            --border: #333333;
            
            /* Spacing */
            --section-padding: 8rem 0;
            --container-width: 1240px;
            
            /* Transitions */
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, .logo {
            font-family: 'Playfair Display', serif;
        }

       
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            margin-bottom: 5rem;
            max-width: 800px;
        }

        .section-header .subtitle {
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }

        .section-header h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-block;
            padding: 1.2rem 2.5rem;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--accent);
            color: #000;
            border-color: var(--accent);
        }

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

        .btn-outline {
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--text-main);
            background: transparent;
        }

        .btn-outline:hover {
            border-color: var(--text-main);
            background-color: var(--text-main);
            color: #000;
        }

      /* HEADER & NAVIGATION */ 
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(18, 18, 18, 0.85);
            backdrop-filter: blur(12px);
            z-index: 1000;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-main);
            text-decoration: none;
            letter-spacing: -0.02em;
        }

        .logo i {
            font-style: italic;
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }

       /* HERO SECTION */
        .hero {
            padding: 12rem 0 8rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(to bottom, #121212 0%, #1a1a1a 100%);
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(18,18,18,0) 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

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

        .hero-label {
            display: inline-block;
            margin-bottom: 1.5rem;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
        }

        .hero h1 {
            font-size: clamp(3.5rem, 6vw, 6rem);
            line-height: 1.05;
            font-weight: 400;
            margin-bottom: 2rem;
            color: var(--text-main);
        }

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

        .hero p {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 600px;
            font-weight: 300;
        }

        .hero-btns {
            display: grid;
            grid-template-columns: auto auto;
            gap: 1.5rem;
            justify-content: start;
        }

        /* SERVICES SECTION */
        #services {
            padding: var(--section-padding);
            border-bottom: 1px solid var(--border);
        }

        /* Grid System for Services: Uses gap to create borders */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1px;
            background-color: var(--border); /* Color of the grid lines */
            border: 1px solid var(--border);
        }

        .service-card {
            background-color: var(--bg-body);
            padding: 4rem 3rem;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .service-card:hover {
            background-color: var(--bg-surface);
        }

        .service-number {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 2rem;
            font-style: italic;
            opacity: 0.8;
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .service-card p {
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.8;
            flex-grow: 1;
        }

        .service-link {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 2px;
            align-self: flex-start;
        }

        /* ABOUT SECTION */
        #about {
            padding: var(--section-padding);
            background-color: var(--bg-body);
        }

        .about-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .highlight {
            color: var(--accent);
            font-style: italic;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
        }

        .stat-item h4 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 0.2rem;
        }

        .stat-item p {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
        }

        .about-visual {
            position: relative;
        }
        
        .image-frame {
            position: relative;
            z-index: 2;
            overflow: hidden;
            filter: grayscale(100%);
            transition: var(--transition);
            border-radius: 2px;
        }

        .image-frame:hover {
            filter: grayscale(0%);
        }

        .image-frame img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-visual::before {
            content: '';
            position: absolute;
            top: 2rem;
            right: -2rem;
            width: 100%;
            height: 100%;
            border: 1px solid var(--accent);
            z-index: 1;
        }

        /* CONTACT  */
        #contact {
            padding: 8rem 2rem;
            background: var(--bg-surface);
            border-top: 1px solid var(--border);
            display: grid;
            place-items: center;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
        }

        .cta-content h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        /* REDESIGNED FOOTER  */
        footer {
            background-color: var(--bg-footer);
            padding: 6rem 0 2rem;
            border-top: 1px solid #222;
            font-size: 0.95rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Four column layout */
            gap: 4rem;
            margin-bottom: 5rem;
        }

        .footer-brand h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-main);
        }

        .footer-brand p {
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 350px;
        }

        .footer-col h4 {
            color: white;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            font-weight: 600;
        }

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

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

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        /* Newsletter Form */
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .input-group {
            position: relative;
        }

        .input-group input {
            width: 100%;
            padding: 1rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid #333;
            color: white;
            font-family: 'Inter', sans-serif;
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .btn-subscribe {
            background: var(--text-main);
            color: #000;
            border: none;
            padding: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }

        .btn-subscribe:hover {
            background: var(--accent);
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #222;
            display: flex;
            justify-content: space-between;
            color: #555;
            font-size: 0.85rem;
        }

    
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr; /* 2x2 grid on tablet */
                gap: 3rem;
            }
            .hero h1 { font-size: 4rem; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }

            .hero { 
                text-align: center;
                padding-top: 8rem;
            }
            .hero-btns {
                justify-content: center;
            }

            .about-layout {
                grid-template-columns: 1fr;
            }
            .about-visual {
                order: -1; /* Image first on mobile */
                margin-bottom: 3rem;
                margin-right: 1.5rem;
            }

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

            .footer-grid {
                grid-template-columns: 1fr; /* 1 column on mobile */
                gap: 3rem;
            }

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