        html {
            scroll-behavior: smooth;
        }

        :root {
            --charcoal: #1A1A1A;
            --gold: #A68A64;
            --offwhite: #F5F5F5;
            --muted-text: #A0A0A0;
        }

        body {
            background-color: var(--charcoal);
            color: var(--offwhite);
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.03em;
        }

        h1,
        h2,
        h3,
        .nav-item {
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .text-gold {
            color: var(--gold);
        }

        .bg-gold {
            background-color: var(--gold);
        }

        .border-gold {
            border-color: var(--gold);
        }

        .section-padding {
            padding: 100px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
        }


        .img-placeholder {
            background: #252525;
            border: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .img-placeholder:hover {
            border-color: var(--gold);
        }

        .cta-gold {
            background-color: var(--gold);
            color: #1A1A1A;
            padding: 18px 45px;
            font-weight: 600;
            letter-spacing: 0.2em;
            transition: opacity 0.3s ease;
            display: inline-block;
        }

        .cta-gold:hover {
            opacity: 0.9;
        }

        .form-input {
            background: transparent;
            border-bottom: 1px solid #444;
            padding: 15px 0;
            width: 100%;
            color: var(--offwhite);
            outline: none;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            border-color: var(--gold);
        }

        .nav-link {
            font-size: 0.75rem;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--gold);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 5px;
        }

        ::-webkit-scrollbar-track {
            background: var(--charcoal);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold);
        }

        /* Scroll Utilities */
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* CTA Button Hover Customization */
        .cta-gold {
            background-color: var(--gold);
            color: #1A1A1A;
            padding: 18px 45px;
            font-weight: 600;
            letter-spacing: 0.2em;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .cta-gold:hover {
            background-color: #c4a77d;
            /* Lighter gold */
            color: #000;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .cta-gold:hover::before {
            left: 0;
        }

        /* Lightbox Modal */
        #lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            cursor: zoom-out;
            padding: 2rem;
            align-items: center;
            justify-content: center;
            user-select: none;
        }

        #lightbox-img {
            max-width: 95vw;
            max-height: 85vh;
            object-fit: contain;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
            transition: transform 0.2s ease-out;
        }

        #lightbox.active #lightbox-img {
            transform: scale(1);
        }

        #lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 1001;
            line-height: 1;
            transition: color 0.3s;
        }

        #lightbox-close:hover {
            color: var(--gold);
        }

        #lightbox-counter {
            position: absolute;
            top: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            z-index: 1001;
        }

        .lightbox-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 3rem;
            cursor: pointer;
            z-index: 1001;
            padding: 2rem;
            transition: color 0.3s, transform 0.3s;
            opacity: 0.5;
        }

        .lightbox-arrow:hover {
            color: var(--gold);
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        #lightbox-prev {
            left: 0.5rem;
        }

        #lightbox-next {
            right: 0.5rem;
        }

        /* Location Hover Animation */
        .location-tag {
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
        }

        .location-tag:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        .location-tag::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .location-tag:hover::after {
            width: 100%;
        }

        /* Gallery Carousel Styles */
        .gallery-slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .gallery-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -ms-overflow-style: none;
            scrollbar-width: none;
            gap: 1.5rem;
            padding-bottom: 2rem;
            cursor: grab;
        }

        .gallery-slider:active {
            cursor: grabbing;
        }

        .gallery-slider::-webkit-scrollbar {
            display: none;
        }

        .gallery-item, .system-gallery-item {
            flex: 0 0 100%;
            scroll-snap-align: start;
            position: relative;
        }

        .system-gallery-item img {
            width: 100%;
            border-radius: 2px;
            transition: opacity 0.3s;
            user-select: none;
            -webkit-user-drag: none;
            cursor: pointer;
        }

        @media (min-width: 768px) {
            .gallery-item {
                flex: 0 0 calc(50% - 0.75rem);
            }
        }

        @media (min-width: 1024px) {
            .gallery-item {
                flex: 0 0 calc(33.333% - 1rem);
            }
        }

        .gallery-item img {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            border-radius: 2px;
            transition: opacity 0.3s;
            user-select: none;
            -webkit-user-drag: none;
        }

        /* Navigation Dots */
        .gallery-dots {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1rem;
            padding-bottom: 0.5rem;
        }

        .gallery-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .gallery-dot.active {
            background: var(--gold);
            transform: scale(1.3);
        }

        /* Floating Contact Button */
        .floating-contact-wrap {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            pointer-events: none;
        }

        .contact-btn {
            width: 60px;
            height: 60px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            pointer-events: auto;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(20px) scale(0.8);
        }

        .contact-btn.visible {
            opacity: 1;
            transform: translateY(0) scale(1.0);
            animation: subtlePulse 2.5s infinite;
            animation-delay: 0.5s;
            /* Wait for entry animation */
        }

        @keyframes subtlePulse {
            0% {
                box-shadow: 0 0 0 0 rgba(166, 138, 100, 0.4);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(166, 138, 100, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(166, 138, 100, 0);
            }
        }

        .contact-btn:hover {
            transform: scale(1.1);
            background: #b69973;
            animation: none;
            /* Stop pulsing on hover */
        }

        .contact-btn svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .contact-popup {
            background: #1A1A1A;
            border: 1px solid rgba(166, 138, 100, 0.3);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
            width: 280px;
            box-shadow: 0 15px-50px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateY(10px) scale(0.95);
            pointer-events: none;
            transition: all 0.3s ease;
            text-align: center;
        }

        .contact-popup.open {
            opacity: 1;
            transform: translateY(0) scale(1.0);
            pointer-events: auto;
        }

        .contact-popup p {
            color: white;
            font-size: 16px;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .contact-actions {
            display: flex;
            gap: 12px;
        }

        .contact-action-btn {
            flex: 1;
            padding: 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

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

        .btn-call:hover {
            background: #b69973;
        }

        .btn-text {
            background: rgba(255, 255, 255, 0.05);
            color: var(--gold);
            border: 1px solid rgba(166, 138, 100, 0.3);
        }

        .btn-text:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Responsive adjustments for mobile */
        @media (max-width: 640px) {
            .floating-contact-wrap {
                bottom: 20px;
                right: 20px;
            }

            .contact-btn {
                width: 50px;
                height: 50px;
            }

            .contact-btn svg {
                width: 24px;
                height: 24px;
            }
        }

        .text-shadow-elegant {
            text-shadow: 
                0px 2px 4px rgba(0,0,0,0.8),
                0px 8px 20px rgba(0,0,0,0.5),
                0px 15px 30px rgba(0,0,0,0.3);
        }

        .link-arrow:hover span {
            transform: translate(3px, -6px);
        }

        .style-card {
            background: #1e1e1e;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: auto;
            padding: 0.35rem; /* Narrow and compact padding */
            display: flex;
            flex-direction: column;
            height: 100%;
            overflow: hidden;
        }

        .style-card:hover {
            transform: translateY(-5px);
            border-color: rgba(166, 138, 100, 0.4);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
        }

        .style-card img {
            width: 100%;
            aspect-ratio: 3/4; /* Restore portrait 3:4 ratio */
            object-fit: cover;
            margin-bottom: 0.5rem; /* Tight spacing between image and title */
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
        }

        .style-card:hover img {
            transform: scale(1.04);
            filter: brightness(1.15);
        }

        /* Stacked Gallery Refined */
        .stacked-gallery {
            position: relative;
            width: 100%;
            height: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .stacked-card {
            position: absolute;
            width: 50%;
            max-width: 220px;
            aspect-ratio: 3/4;
            background: #111;
            padding: 0;
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, box-shadow 0.6s ease;
            box-shadow: -10px 5px 30px rgba(0, 0, 0, 0.7);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 2px;
        }

        .stacked-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* Initial Stack State for 5 cards */
        .stacked-card:nth-child(1) { z-index: 50; transform: translateX(0) scale(1); box-shadow: -15px 10px 40px rgba(0,0,0,0.8); }
        .stacked-card:nth-child(2) { z-index: 40; transform: translateX(8%) scale(0.96); opacity: 0.9; }
        .stacked-card:nth-child(3) { z-index: 30; transform: translateX(16%) scale(0.92); opacity: 0.75; }
        .stacked-card:nth-child(4) { z-index: 20; transform: translateX(24%) scale(0.88); opacity: 0.6; }
        .stacked-card:nth-child(5) { z-index: 10; transform: translateX(32%) scale(0.84); opacity: 0.45; }

        /* Subtle Hover Effect on Stack */
        @media (min-width: 768px) {
            .stacked-gallery:hover .stacked-card:nth-child(1) { transform: translateX(-5%) scale(1.02); }
            .stacked-gallery:hover .stacked-card:nth-child(2) { transform: translateX(10%) scale(0.96); opacity: 1; }
            .stacked-gallery:hover .stacked-card:nth-child(3) { transform: translateX(18%) scale(0.92); opacity: 0.9; }
            .stacked-gallery:hover .stacked-card:nth-child(4) { transform: translateX(26%) scale(0.88); opacity: 0.75; }
            .stacked-gallery:hover .stacked-card:nth-child(5) { transform: translateX(34%) scale(0.84); opacity: 0.6; }
        }

        @media (max-width: 767px) {
            .stacked-gallery { height: 260px; }
            .stacked-card { max-width: 170px; }
            .stacked-gallery:hover .stacked-card:nth-child(1) { transform: translateX(-3%) scale(1); }
            .stacked-gallery:hover .stacked-card:nth-child(2) { transform: translateX(9%) scale(0.96); opacity: 1; }
            .stacked-gallery:hover .stacked-card:nth-child(3) { transform: translateX(17%) scale(0.92); opacity: 0.9; }
            .stacked-gallery:hover .stacked-card:nth-child(4) { transform: translateX(25%) scale(0.88); opacity: 0.75; }
            .stacked-gallery:hover .stacked-card:nth-child(5) { transform: translateX(33%) scale(0.84); opacity: 0.6; }
        }

        /* Subtle lift for the whole stack on hover */
        .stacked-gallery:hover .stacked-card:nth-child(1) {
            box-shadow: -20px 15px 50px rgba(0, 0, 0, 0.9);
        }
