        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #D4AF37;
            --gold-light: #F4E5A5;
            --gold-dark: #B8941E;
            --black: #000000;
            --gray-dark: #141414;
            --gray: #1E1E1E;
        }

        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background: var(--black);
            color: #FFFFFF;
        }

        .sidebar {
            position: fixed;
            left: 0;
            top: 0;
            width: 80px;
            height: 100vh;
            background: var(--gray-dark);
            border-right: 2px solid var(--gold);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 0;
            z-index: 1000;
        }

        .sidebar-logo {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-size: 1.5rem;
            /*color: var(--gold);*/
            background: linear-gradient(180deg, #3a2f0f, #7a6520, #D4AF37);
            background-clip: text;
            --webkit-background-clip: text;
            --webkit-text-fill-color: transparent;
            color:transparent;
            font-weight: bold;
            letter-spacing: 3px;
            margin-bottom: 3rem;
        }

        .sidebar-logo-image {
            transform:rotate(90deg);
        }

        .sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            flex: 1;
        }

        .sidebar-nav a {
            color: #888;
            text-decoration: none;
            font-size: 2rem;
            transition: all 0.3s;
            position: relative;
        }

        .sidebar-nav a:hover {
            color: var(--gold);
            transform: scale(1.2);
        }

        .sidebar-nav a::after {
            content: attr(data-tooltip);
            position: absolute;
            left: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gold);
            color: var(--black);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .sidebar-nav a:hover::after {
            opacity: 1;
        }

        .main-content {
            margin-left: 80px;
        }

        .hero-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 100vh;
        }

        .hero-left {
            background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-left::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
            opacity: 0.1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 4s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
        }

        .hero-text {
            position: relative;
            z-index: 10;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1;
            margin-bottom: 2rem;
            font-weight: 200;
        }

        .hero-text .name {
            color: var(--gold);
            font-weight: 700;
            display: block;
            font-size: 4rem;
            letter-spacing: -2px;
        }

        .copyright-link {
            color: #888;
            text-decoration:none;
        }

        .hero-text .name, h1, .hero-cta, .sidebar-logo-image, .footer-logo-image, .gallery-title, .contact-title, .contact-card h3, .feature-icon, .copyright-link {
            user-select: none;
        }


        .hero-text p {
            font-size: 1.3rem;
            color: #AAA;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--gold);
            color: var(--black);
            padding: 1.5rem 3rem;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            letter-spacing: 2px;
            transition: all 0.3s;
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
        }

        .hero-cta:hover {
            background: var(--gold-light);
            transform: translateX(10px);
        }

        .hero-right {
            position: relative;
            overflow: hidden;
        }

        
        .hero-right {
            position: relative;
            overflow: hidden;
        }

        .photo-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slider-image {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slider-image.active {
            opacity: 1;
        }

        .slider-image::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(0, 0, 0, 0.2));
        }

        .slider-dots {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 100;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--gold);
            width: 40px;
            border-radius: 6px;
        }

        .dot:hover {
            background: var(--gold-light);
        }

        .hero-right::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 10px,
                    rgba(0,0,0,0.1) 10px,
                    rgba(0,0,0,0.1) 20px
                );
        }

        .hero-image-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 15rem;
            opacity: 0.3;
        }

        .services-diagonal {
            position: relative;
            padding: 8rem 0;
            background: var(--gray-dark);
            overflow: hidden;
        }

        .services-diagonal::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 200px;
            background: var(--black);
            transform: skewY(-1deg);
        }

        .services-grid-diagonal {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }

        .service-card-diagonal {
            padding: 4rem 3rem;
            margin: 1rem 1rem;
            background: var(--gray);
            border: 1px solid var(--gold);
            position: relative;
            transition: all 0.4s;
        }

        .service-card-diagonal:nth-child(odd) {
            /*transform: translateY(40px);*/
            transform:none;
        }

        .service-card-diagonal:hover {
            background: var(--black);
            /*transform: translateY(0) scale(1.05);*/
            z-index: 10;
            box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
        }

        .service-number {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 4rem;
            color: var(--gold);
            opacity: 0.2;
            font-weight: bold;
        }

        .service-card-diagonal h3 {
            color: var(--gold);
            font-size: 2rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            font-weight: bold;
        }

        .service-card-diagonal p {
            color: #BBB;
            line-height: 1.8;
            font-size:1.1rem;
            margin-bottom: 2rem;
        }

        .service-price {
            display: inline-block;
            background: var(--gold);
            color: var(--black);
            padding: 0.5rem 1.5rem;
            font-weight: bold;
            clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
        }

        .gallery-section {
            background: var(--black);
            padding: 8rem 0;
            overflow: hidden;
        }

        .gallery-title {
            text-align: center;
            font-size: 4rem;
            color: var(--gold);
            margin-bottom: 4rem;
            font-weight: 750;
            letter-spacing: 4px;
        }

        .gallery-scroll {
            display: flex;
            gap: 2rem;
            padding: 2rem 8rem;
            height:40rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--gold) var(--gray);
        }

        .gallery-scroll::-webkit-scrollbar {
            height: 20px;
        }

        .gallery-scroll::-webkit-scrollbar-track {
            background: var(--gray);
        }

        .gallery-scroll::-webkit-scrollbar-thumb {
            background: var(--gold);
        }

        .gallery-item {
            min-width: 400px;
            height: 500px;
            background: var(--gray);
            position: relative;
            border: 2px solid var(--gold);
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
        }

        .gallery-item-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        }

        .gallery-item h4 {
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .gallery-emoji {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 8rem;
            opacity: 0.3;
        }

        .about-asymmetric {
        min-height: 100vh;

        display: flex;
        justify-content: center;
        align-items: center;
        }

        .about-left {
            background: var(--gold);
            padding: 6rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .about-left h2 {
            font-size: 4rem;
            color: var(--black);
            margin-bottom: 2rem;
            font-weight: bold;
            line-height: 1.2;
        }

        .about-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            background: rgba(0,0,0,0.1);
            padding: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            color: var(--black);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: var(--gray-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .about-right {
            background: var(--gray-dark);
            padding: 6rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-right p {
            font-size: 1.3rem;
            line-height: 2;
            color: #CCC;
            margin-bottom: 2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .feature-icon {
            font-size: 2rem;
            background: var(--gold);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .feature-text {
            color: var(--gold);
            font-size: 1.3rem;
            letter-spacing: 1px;
        }

        .contact-cards {
            background: var(--black);
            padding: 8rem 4rem;
        }

        .contact-title {
            text-align: center;
            font-size: 4rem;
            color: var(--gold);
            margin-bottom: 4rem;
            font-weight: 200;
        }

        .cards-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .contact-card {
            background: var(--gray);
            padding: 3rem;
            border-left: 4px solid var(--gold);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s;
        }

        .contact-card:hover::before {
            left: 100%;
        }

        
        .contact-card:hover {
            background: var(--gray-dark);
            transform: translateX(10px);
        }
        
        .contact-type-text {
            color: var(--gold-dark)
        }

        .contact-type-link {
            text-decoration: none;
            color: var(--gold-dark)
        }

        .contact-type-icon {
            color: gray;
            
        }

        .contact-type-icon:hover {
            color: var(--gold);
        }

        .contact-card-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .contact-card h3 {
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .contact-card p {
            color: #BBB;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Footer */
        .footer-minimal {
            background: var(--gray-dark);
            padding: 1rem 4rem;
            border-top: 2px solid var(--gold);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo-image, .sidebar-logo-image {
            height: 100px;
            width: 75px;
        }

        .footer-logo-text {
            font-size: 2rem;
            /*color: var(--gold);*/
            background: linear-gradient(90deg, #3a2f0f, #7a6520, #D4AF37);
            background-clip: text;
            --webkit-background-clip: text;
            --webkit-text-fill-color: transparent;
            color:transparent;
            font-weight: bold;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }