/* ═══════════════════════════════════════════
           CSS VARIABLES & RESET
           ═══════════════════════════════════════════ */
        :root {
            --gold-light: #E8D5A3;
            --gold: #C9A96E;
            --gold-deep: #B8860B;
            --gold-dark: #8B6914;
            --cream: #FAF7F2;
            --cream-dark: #F0EBE1;
            --charcoal: #2C2C2C;
            --charcoal-light: #3D3D3D;
            --graphite: #1A1A1A;
            --white: #FFFFFF;
            --text-dark: #1A1A1A;
            --text-muted: #6B6560;
            --marble-white: #F5F0EB;
            --marble-vein: #D4C5B2;
            --shadow-gold: rgba(201, 169, 110, 0.15);
            --font-display: 'Playfair Display', Georgia, serif;
            --font-heading: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background: var(--cream);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ═══════════════════════════════════════════
           MARBLE TEXTURE BACKGROUND
           ═══════════════════════════════════════════ */
        .marble-bg {
            position: relative;
            background: 
                linear-gradient(135deg, rgba(212, 197, 178, 0.08) 0%, transparent 50%),
                linear-gradient(225deg, rgba(212, 197, 178, 0.06) 0%, transparent 50%),
                linear-gradient(315deg, rgba(201, 169, 110, 0.04) 0%, transparent 40%),
                var(--cream);
        }

        .marble-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 600px 300px at 20% 30%, rgba(212, 197, 178, 0.12), transparent),
                radial-gradient(ellipse 400px 500px at 80% 70%, rgba(201, 169, 110, 0.06), transparent);
            pointer-events: none;
        }

        /* ═══════════════════════════════════════════
           CURSOR GLOW (luxury touch)
           ═══════════════════════════════════════════ */
        .cursor-glow {
            position: fixed;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s;
            opacity: 0;
        }

        /* ═══════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 4rem;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .nav.scrolled {
            background: rgba(250, 247, 242, 0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        }

        /* Gold banner behind the logo */
        .nav-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            padding: 0.6rem 1.8rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 50%, var(--gold) 100%);
            position: relative;
            opacity: 0;
            animation: logoReveal 0.8s 1.8s ease-out forwards;
            margin: 0;
        }

        /* Subtle inner shimmer on the gold banner */
        .nav-logo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                120deg,
                transparent 30%,
                rgba(255, 255, 255, 0.15) 50%,
                transparent 70%
            );
            background-size: 200% 100%;
            animation: bannerShimmer 4s ease-in-out infinite;
        }

        /* Bottom gold accent drip / triangle */
        .nav-logo::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid var(--gold-deep);
        }

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

        .nav-logo img {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 1;
        }

        .nav.scrolled .nav-logo {
            padding: 0.4rem 1.4rem;
        }

        .nav.scrolled .nav-logo img {
            height: 36px;
        }

        .nav.scrolled .nav-logo::after {
            bottom: -6px;
            border-left-width: 6px;
            border-right-width: 6px;
            border-top-width: 6px;
        }

        @keyframes logoReveal {
            from { opacity: 0; transform: translateY(-15px); }
            to { opacity: 1; transform: translateY(0); }
        }

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

        .nav-links a {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--charcoal);
            text-decoration: none;
            position: relative;
            padding-bottom: 4px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

        .nav-cta {
            font-family: var(--font-body) !important;
            font-size: 0.7rem !important;
            letter-spacing: 0.2em !important;
            text-transform: uppercase !important;
            padding: 0.75rem 2rem !important;
            border: 1px solid var(--gold) !important;
            color: var(--gold-dark) !important;
            transition: all 0.4s ease !important;
        }

        .nav-cta:hover {
            background: var(--gold) !important;
            color: var(--white) !important;
        }

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

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

        .nav-toggle span {
            display: block;
            width: 28px;
            height: 1.5px;
            background: var(--charcoal);
            transition: all 0.3s;
        }

        /* ═══════════════════════════════════════════
           HERO SECTION
           ═══════════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: var(--graphite);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.3) 100%),
                url('../images/hero/hero-main.jpg') center/cover;
            transform: scale(1.05);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            0% { transform: scale(1.05); }
            100% { transform: scale(1.12); }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(26, 26, 26, 0.4) 0%,
                rgba(26, 26, 26, 0.2) 40%,
                rgba(26, 26, 26, 0.6) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 8%;
            max-width: 900px;
        }

        .hero-tagline {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 1s 0.3s forwards;
        }

        .hero-tagline::before {
            content: '';
            display: inline-block;
            width: 40px;
            height: 1px;
            background: var(--gold);
            margin-right: 1rem;
            vertical-align: middle;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 400;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeUp 1s 0.6s forwards;
        }

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

        .hero-subtitle {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 300;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.7);
            max-width: 550px;
            margin-bottom: 3rem;
            opacity: 0;
            animation: fadeUp 1s 0.9s forwards;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--white);
            text-decoration: none;
            padding: 1.1rem 2.5rem;
            border: 1px solid var(--gold);
            background: transparent;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            animation: fadeUp 1s 1.2s forwards;
        }

        .hero-btn:hover {
            background: var(--gold);
            color: var(--graphite);
            padding-right: 3rem;
        }

        .hero-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.4s;
        }

        .hero-btn:hover svg {
            transform: translateX(5px);
        }

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

        .hero-scroll-indicator span {
            font-family: var(--font-body);
            font-size: 0.6rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

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

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

        /* ═══════════════════════════════════════════
           SECTION COMMON STYLES
           ═══════════════════════════════════════════ */
        .section {
            padding: 8rem 8%;
            position: relative;
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

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

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 400;
            line-height: 1.2;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
        }

        .section-desc {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 300;
            line-height: 1.9;
            color: var(--text-muted);
            max-width: 600px;
        }

        /* Reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

        /* ═══════════════════════════════════════════
           ABOUT SECTION
           ═══════════════════════════════════════════ */
        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            filter: brightness(0.95) contrast(1.02);
        }

        .about-image-wrapper::after {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 1px solid var(--gold);
            z-index: -1;
            opacity: 0.4;
        }

        .about-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid var(--cream-dark);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--gold-deep);
            line-height: 1;
        }

        .stat-label {
            font-family: var(--font-body);
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }

        /* ═══════════════════════════════════════════
           PHILOSOPHY RIBBON
           ═══════════════════════════════════════════ */
        .philosophy {
            background: var(--graphite);
            padding: 6rem 8%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .philosophy::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse 500px 300px at 30% 50%, rgba(201, 169, 110, 0.08), transparent),
                radial-gradient(ellipse 400px 400px at 70% 50%, rgba(201, 169, 110, 0.05), transparent);
        }

        .philosophy-quote {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3vw, 2.5rem);
            font-weight: 400;
            font-style: italic;
            color: var(--cream);
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .philosophy-quote::before {
            content: '"';
            font-family: var(--font-display);
            font-size: 8rem;
            color: var(--gold);
            opacity: 0.3;
            position: absolute;
            top: -3rem;
            left: -2rem;
            line-height: 1;
        }

        .philosophy-author {
            font-family: var(--font-body);
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-top: 2rem;
        }

        /* ═══════════════════════════════════════════
           SERVICES SECTION
           ═══════════════════════════════════════════ */
        .services-header {
            text-align: center;
            margin-bottom: 5rem;
        }

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

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

        .service-card {
            padding: 3rem 2.5rem;
            background: var(--white);
            border: 1px solid rgba(201, 169, 110, 0.15);
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: default;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(201, 169, 110, 0.1);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .service-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.2;
        }

        .service-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 300;
            color: var(--gold);
            opacity: 0.2;
            position: absolute;
            top: 1.5rem;
            right: 2rem;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 1rem;
        }

        .service-text {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-muted);
        }

        /* ═══════════════════════════════════════════
           PORTFOLIO SECTION
           ═══════════════════════════════════════════ */
        .portfolio {
            background: var(--white);
        }

        .portfolio-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 4rem;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: auto auto;
            gap: 1.5rem;
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .portfolio-item:nth-child(1) { grid-column: 1 / 7; grid-row: 1; }
        .portfolio-item:nth-child(2) { grid-column: 7 / 13; grid-row: 1; }
        .portfolio-item:nth-child(3) { grid-column: 1 / 5; grid-row: 2; }
        .portfolio-item:nth-child(4) { grid-column: 5 / 9; grid-row: 2; }
        .portfolio-item:nth-child(5) { grid-column: 9 / 13; grid-row: 2; }

        .portfolio-img {
            width: 100%;
            height: 100%;
            min-height: 350px;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.06);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.8) 100%);
            opacity: 0;
            transition: opacity 0.5s;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
        }

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

        .portfolio-overlay h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            color: var(--white);
            margin-bottom: 0.3rem;
        }

        .portfolio-overlay span {
            font-family: var(--font-body);
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold-light);
        }

        .view-all-link {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold-deep);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: gap 0.3s;
        }

        .view-all-link:hover {
            gap: 1.2rem;
        }

        /* ═══════════════════════════════════════════
           PROCESS SECTION
           ═══════════════════════════════════════════ */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 4rem;
        }

        .process-step {
            padding: 2.5rem;
            position: relative;
            border-right: 1px solid var(--cream-dark);
        }

        .process-step:last-child {
            border-right: none;
        }

        .process-step-num {
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 300;
            color: var(--gold);
            opacity: 0.25;
            line-height: 1;
            margin-bottom: 1.5rem;
        }

        .process-step h4 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--charcoal);
            margin-bottom: 0.8rem;
        }

        .process-step p {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.7;
            color: var(--text-muted);
        }

        /* ═══════════════════════════════════════════
           TESTIMONIAL
           ═══════════════════════════════════════════ */
        .testimonial {
            background: var(--graphite);
            padding: 7rem 8%;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
            align-items: center;
        }

        .testimonial-label {
            font-family: var(--font-body);
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
        }

        .testimonial-heading {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--cream);
            line-height: 1.3;
        }

        .testimonial-content {
            position: relative;
            padding-left: 3rem;
            border-left: 1px solid rgba(201, 169, 110, 0.3);
        }

        .testimonial-text {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 300;
            font-style: italic;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 2rem;
        }

        .testimonial-author {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--cream);
        }

        .testimonial-role {
            font-family: var(--font-body);
            font-size: 0.7rem;
            color: var(--gold);
            margin-top: 0.3rem;
        }

        /* Stars */
        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 1.5rem;
        }

        .testimonial-stars svg {
            width: 14px;
            height: 14px;
            fill: var(--gold);
        }

        /* ═══════════════════════════════════════════
           CONTACT SECTION
           ═══════════════════════════════════════════ */
        .contact {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
        }

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

        .contact-item {
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-item h4 {
            font-family: var(--font-body);
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--charcoal);
            margin-bottom: 0.4rem;
        }

        .contact-item p,
        .contact-item a {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--text-muted);
            text-decoration: none;
            line-height: 1.6;
        }

        .contact-item a:hover {
            color: var(--gold-deep);
        }

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

        .form-group {
            position: relative;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1.2rem 0;
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 300;
            color: var(--charcoal);
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--cream-dark);
            outline: none;
            transition: border-color 0.3s;
            resize: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-bottom-color: var(--gold);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--marble-vein);
        }

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

        .submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--white);
            background: var(--charcoal);
            border: none;
            padding: 1.3rem 3rem;
            cursor: pointer;
            transition: all 0.5s;
            margin-top: 1rem;
            width: fit-content;
        }

        .submit-btn:hover {
            background: var(--gold-deep);
        }

        .submit-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.4s;
        }

        .submit-btn:hover svg {
            transform: translateX(5px);
        }

        /* ═══════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════ */
        .footer {
            background: var(--graphite);
            padding: 5rem 8% 3rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand {
            margin-bottom: 1.8rem;
        }

        .footer-brand img {
            height: 60px;
            width: auto;
            opacity: 0.9;
            transition: opacity 0.3s;
        }

        .footer-brand img:hover {
            opacity: 1;
        }

        .footer-tagline {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-col h4 {
            font-family: var(--font-body);
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .footer-col a {
            display: block;
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: color 0.3s;
        }

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

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2.5rem;
        }

        .footer-copyright {
            font-family: var(--font-body);
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.3);
            letter-spacing: 0.1em;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
        }

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

        .footer-social a:hover {
            border-color: var(--gold);
            background: rgba(201, 169, 110, 0.1);
        }

        .footer-social svg {
            width: 14px;
            height: 14px;
            fill: rgba(255, 255, 255, 0.5);
            transition: fill 0.3s;
        }

        .footer-social a:hover svg {
            fill: var(--gold-light);
        }

        /* ═══════════════════════════════════════════
           FLOATING WHATSAPP BUTTON
           ═══════════════════════════════════════════ */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 900;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: whatsappPulse 2s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: #fff;
        }

        .whatsapp-float .wa-tooltip {
            position: absolute;
            right: 72px;
            background: var(--charcoal);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.7rem;
            letter-spacing: 0.05em;
            padding: 0.6rem 1rem;
            border-radius: 6px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .whatsapp-float .wa-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 6px solid var(--charcoal);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

        .whatsapp-float:hover .wa-tooltip {
            opacity: 1;
        }

        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.08); }
        }

        /* WhatsApp contact item icon color */
        .contact-item-wa svg {
            stroke: #25D366 !important;
        }

        /* Form action buttons row */
        .form-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .submit-btn-wa {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--white);
            background: #25D366;
            border: none;
            padding: 1.3rem 2.5rem;
            cursor: pointer;
            transition: all 0.5s;
            width: fit-content;
        }

        .submit-btn-wa:hover {
            background: #1DA851;
        }

        .submit-btn-wa svg {
            width: 16px;
            height: 16px;
            fill: #fff;
        }

        /* ═══════════════════════════════════════════
           GOLD DIVIDER
           ═══════════════════════════════════════════ */
        .gold-divider {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 2rem 0;
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .nav { padding: 0 5%; }
            .nav.scrolled { padding: 0 5%; }
            .section { padding: 5rem 5%; }
            .about { grid-template-columns: 1fr; gap: 3rem; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .portfolio-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }
            .portfolio-item:nth-child(1),
            .portfolio-item:nth-child(2),
            .portfolio-item:nth-child(3),
            .portfolio-item:nth-child(4),
            .portfolio-item:nth-child(5) {
                grid-column: auto;
                grid-row: auto;
            }
            .process-steps { grid-template-columns: 1fr 1fr; }
            .process-step { border-right: none; border-bottom: 1px solid var(--cream-dark); }
            .testimonial { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5%; }
            .contact { grid-template-columns: 1fr; gap: 3rem; }
            .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(250, 247, 242, 0.98);
                backdrop-filter: blur(20px);
                justify-content: center;
                align-items: center;
                gap: 2rem;
                z-index: 999;
            }
            .nav-links.active a {
                font-size: 1rem;
            }
            .nav-toggle { display: flex; z-index: 1001; }
            .hero-content { padding: 0 5%; }
            .services-grid { grid-template-columns: 1fr; }
            .portfolio-grid { grid-template-columns: 1fr; }
            .portfolio-img { min-height: 250px; }
            .process-steps { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
            .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
            .about-stats { flex-wrap: wrap; gap: 2rem; }
            .portfolio-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
        }

        /* ═══════════════════════════════════════════
           LOADING ANIMATION — Elegant text reveal
           ═══════════════════════════════════════════ */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--graphite);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 0;
            transition: opacity 0.8s ease-out, visibility 0.8s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-tagline {
            font-family: var(--font-body);
            font-size: clamp(0.8rem, 1.5vw, 1rem);
            font-weight: 500;
            font-style: normal;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: transparent;
            background: linear-gradient(
                120deg,
                rgba(255,255,255,0.3) 0%,
                var(--gold-light) 25%,
                var(--gold) 50%,
                var(--gold-light) 75%,
                rgba(255,255,255,0.3) 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            animation: goldShimmer 2.5s ease-in-out infinite;
        }

        .loader-line {
            width: 120px;
            height: 1px;
            background: rgba(201, 169, 110, 0.15);
            margin-top: 1.8rem;
            position: relative;
            overflow: hidden;
        }

        .loader-line::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            animation: loadSweep 1.8s ease-in-out forwards;
        }

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

        @keyframes loadSweep {
            0% { width: 0; left: 0; }
            50% { width: 100%; left: 0; }
            100% { width: 0; left: 100%; }
        }
            100% { width: 100%; }
        }