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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #000;
            color: #fff;
            line-height: 1.5;
            height: 100vh;
            display: flex;
            flex-direction: column;
            font-weight: 400;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: auto;
        }

        body {
            overflow-x: hidden;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            background: transparent;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav.scrolled {
            background: transparent;
            padding: 0.5rem 0;
        }

        .nav-content {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            width: 100%;
            padding: 0 2rem;
        }

        .logo {
            position: absolute;
            left: 2rem;
            top: 1rem;
            z-index: 1001;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: auto;
            display: block;
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }

        .logo:hover img {
            filter: brightness(0) invert(0.8);
        }

        .nav-links {
            list-style: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            z-index: 999;
            padding: 0;
        }

        .nav-links.active {
            right: 0;
            display: flex;
        }

        .nav-links li {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .nav-links.active li {
            opacity: 1;
            transform: translateX(0);
        }

        .nav-links.active li:nth-child(1) { transition-delay: 0.2s; }
        .nav-links.active li:nth-child(2) { transition-delay: 0.3s; }
        .nav-links.active li:nth-child(3) { transition-delay: 0.4s; }
        .nav-links.active li:nth-child(4) { transition-delay: 0.5s; }
        .nav-links.active li:nth-child(5) { transition-delay: 0.6s; }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 2rem;
            padding: 1rem 2rem;
            display: block;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #fff;
            background: #222;
        }

        .burger {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 20px;
            cursor: pointer;
            padding: 0;
            background: transparent;
            border: none;
            z-index: 1001;
        }

        .burger span {
            display: block;
            width: 100%;
            height: 2px;
            background: #fff;
            border-radius: 10px;
            transition: all 0.3s ease-in-out;
        }

        .burger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Hero Section */
        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-background-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -2;
            object-fit: cover;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        .hero-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(3rem, 8vw, 9rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1.2s ease 0.3s forwards;
            color: #fff;
            text-shadow: none;
            line-height: 0.9;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1.2s ease 0.6s forwards;
            color: #e8e8e8;
        }

        .hero-cta {
            display: inline-block;
            padding: 1.2rem 2.5rem;
            border: 3px solid #fff;
            background: transparent;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 700;
            transition: all 0.2s ease;
            opacity: 0;
            animation: fadeInUp 1.2s ease 0.9s forwards;
        }

        .hero-cta:hover {
            background: #fff;
            color: #000;
            transform: none;
            box-shadow: none;
        }

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

        /* Video Showcase Section */
        #video-showcase {
            padding: 0;
            max-width: 100%;
            margin: 0;
        }

        .video-container-showcase {
            width: 100%;
            height: 70vh;
            min-height: 500px;
            position: relative;
            overflow: hidden;
            border-top: 5px solid #fff;
            border-bottom: 5px solid #fff;
        }

        .showcase-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }

        /* Section Styling */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            background-color: transparent;
        }

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

        .section-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            margin-bottom: 3rem;
            text-align: left;
            position: relative;
            color: #fff;
            line-height: 1;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 5px;
            background: #fff;
        }

        /* About Section */
        .about-content-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .about-portrait {
            position: relative;
            width: 200px;
            height: 200px;
            margin: 0 auto;
        }

        .about-portrait img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 4px solid #fff;
            display: block;
        }

        .portrait-label {
            position: absolute;
            bottom: -15px;
            right: -15px;
            background: #fff;
            color: #000;
            padding: 0.5rem 1rem;
            font-weight: 900;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            border: 3px solid #000;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            text-align: center;
        }

        .about-text strong {
            font-weight: 700;
            color: #fff;
        }

        /* Services Section */
        #services {
            position: relative;
            overflow: visible;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .service-item {
            padding: 2rem;
            background: transparent;
            border-radius: 0;
            border: 3px solid #fff;
            transition: all 0.2s ease;
        }

        .service-item:hover {
            background: #fff;
            border-color: #fff;
            transform: none;
            box-shadow: none;
        }

        .service-item:hover h4,
        .service-item:hover p,
        .service-item:hover .price-label {
            color: #000;
        }

        .service-item h4 {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 0.8rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -0.01em;
        }

        .service-item p {
            color: #ccc;
            font-size: 1.05rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .service-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .service-btn {
            display: block !important;
            width: 100% !important;
            padding: 1rem 2rem !important;
            background: #fff !important;
            color: #000 !important;
            border: 3px solid #000 !important;
            text-decoration: none !important;
            font-weight: 900 !important;
            font-size: 1.1rem !important;
            text-transform: uppercase !important;
            letter-spacing: 0.05em !important;
            transition: all 0.2s ease !important;
            text-align: center !important;
            cursor: pointer !important;
            box-sizing: border-box !important;
        }

        .service-btn:hover {
            background: #000 !important;
            color: #fff !important;
            border-color: #fff !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2) !important;
        }

        .service-btn:active {
            transform: translateY(-1px) !important;
        }

        .service-btn:visited {
            color: #000 !important;
        }

        .service-btn:hover:visited {
            color: #fff !important;
        }

        /* Gallery Carousel Section */
        #gallery {
            position: relative;
            overflow: visible;
        }

        .gallery-carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
            border: 5px solid #fff;
            background: #000;
        }

        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            display: none;
            justify-content: center;
            align-items: center;
        }

        .carousel-slide.active {
            display: flex;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: #fff;
            border: 3px solid #000;
            cursor: pointer;
            transition: all 0.2s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .carousel-btn svg {
            width: 30px;
            height: 30px;
            color: #000;
        }

        .carousel-btn:hover {
            background: #000;
            border-color: #fff;
        }

        .carousel-btn:hover svg {
            color: #fff;
        }

        .carousel-btn-prev {
            left: -30px;
        }

        .carousel-btn-next {
            right: -30px;
        }

        .carousel-counter {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            color: #000;
            padding: 0.8rem 1.5rem;
            border: 3px solid #000;
            font-weight: 900;
            font-size: 1.2rem;
            letter-spacing: 0.1em;
        }

        /* Instagram Section */
        #instagram {
            position: relative;
            overflow: visible;
        }

        .instagram-header {
            margin-bottom: 2rem;
            text-align: left;
        }

        .instagram-link {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1.5rem;
            border: 3px solid #fff;
            background: transparent;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .instagram-link .instagram-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
        }

        .instagram-link:hover {
            background: #fff;
            color: #000;
        }

        .instagram-widget-container {
            border: 5px solid #fff;
            background: #000;
            padding: 0.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 340px;
            overflow: hidden;
        }

        .instagram-widget-container iframe {
            max-width: 100%;
            width: 100%;
            height: 340px;
        }


        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: flex-start;
        }

        .reservation-form,
        .google-map {
            background: transparent;
            padding: 2rem;
            border-radius: 0;
            border: 3px solid #fff;
        }

        .reservation-form h3,
        .google-map h3 {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: #fff;
            text-transform: uppercase;
        }

        /* Contact Buttons */
        .whatsapp-button,
        .instagram-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            width: 100%;
            padding: 1.5rem 2rem;
            background: #fff;
            color: #000;
            border: 4px solid #000;
            text-decoration: none !important;
            font-weight: 900;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.2s ease;
            margin-bottom: 1rem;
        }

        .whatsapp-button:hover,
        .instagram-button:hover {
            background: #000;
            color: #fff;
            border-color: #fff;
        }

        .whatsapp-icon,
        .instagram-icon-btn {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }

        .instagram-button {
            margin-bottom: 2rem;
        }

        .form-separator {
            text-align: center;
            margin: 2rem 0;
            position: relative;
        }

        .form-separator::before,
        .form-separator::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40%;
            height: 2px;
            background: #fff;
        }

        .form-separator::before {
            left: 0;
        }

        .form-separator::after {
            right: 0;
        }

        .form-separator span {
            background: #000;
            padding: 0 1rem;
            font-weight: 900;
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            margin-bottom: 2rem;
            line-height: 2;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        .contact-info a {
            color: #fff;
            text-decoration: underline;
            font-weight: 600;
            transition: opacity 0.2s ease;
        }

        .contact-info a:hover {
            opacity: 0.7;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1rem;
            color: #ccc;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #fff;
            border-radius: 0;
            background: transparent;
            color: #fff;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: background 0.2s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.05);
        }

        .form-group select option {
            background: #1a1a1a;
            color: #fff;
        }

        .reservation-form .hero-cta {
            width: 100%;
            text-align: center;
            margin-top: 1.5rem;
        }

        .map-container {
            border-radius: 0;
            overflow: hidden;
            margin-top: 1.5rem;
            border: 2px solid #fff;
        }

        .map-container iframe {
            display: block;
        }

        /* Footer */
        footer {
            background: #000;
            padding: 3rem 2rem 2rem;
            text-align: center;
            color: #888;
            margin-top: 4rem;
            border-top: 3px solid #fff;
        }

        footer p {
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-logo {
            width: 150px;
            height: auto;
            max-width: 150px;
            animation: pulse 2s ease-in-out infinite;
            filter: brightness(0) invert(1);
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: #fff;
            z-index: 1001;
            transition: width 0.1s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                padding: 4rem 1rem;
                right: -100%;
                gap: 1.5rem;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.5rem;
            }

            .burger {
                display: flex;
                z-index: 1001;
            }

            .burger.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }

            .burger.active span:nth-child(2) {
                opacity: 0;
            }

            .burger.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-item {
                padding: 1.5rem;
            }

            .service-item h4 {
                font-size: 1.2rem;
            }

            .price-options {
                flex-direction: column;
            }

            .service-item .price {
                min-width: 100%;
            }

            .about-portrait {
                width: 150px;
                height: 150px;
            }

            .portrait-label {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .section {
                padding: 3rem 1rem;
            }

            .hero-content {
                padding: 0 1rem;
            }

            .instagram-widget-container {
                padding: 0.3rem;
                border-width: 3px;
                min-height: 270px;
            }

            .instagram-widget-container iframe {
                width: 100% !important;
                height: 270px !important;
                max-width: 100% !important;
            }

            .carousel-container {
                height: 400px;
                border-width: 3px;
            }

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

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

            .carousel-btn-prev {
                left: 10px;
            }

            .carousel-btn-next {
                right: 10px;
            }

            .carousel-counter {
                bottom: -45px;
                font-size: 1rem;
                padding: 0.6rem 1.2rem;
            }

            .instagram-link {
                font-size: 0.9rem;
                padding: 0.6rem 1rem;
                gap: 0.5rem;
            }

            .instagram-link .instagram-icon {
                width: 22px;
                height: 22px;
            }

            .whatsapp-button,
            .instagram-button {
                font-size: 1rem;
                padding: 1.2rem 1.5rem;
            }

            .whatsapp-icon,
            .instagram-icon-btn {
                width: 24px;
                height: 24px;
            }

            .form-separator::before,
            .form-separator::after {
                width: 35%;
            }

            .hero-title {
                font-size: clamp(2.5rem, 8vw, 4rem);
            }

            .video-container-showcase {
                height: 50vh;
                min-height: 300px;
                border-width: 3px;
            }

            .logo img {
                height: 40px;
            }

            .logo {
                left: 1rem;
            }

            .loader-logo {
                width: 100px;
                max-width: 100px;
            }
        }
