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

        :root {
            --primary: #2C2C2C;
            --accent: #B8860B;
            --light: #FEFEFE;
            --grey: #F8F8F8;
            --dark: #1A1A1A;
            --text: #4A4A4A;
            --border: #E5E5E5;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: var(--text);
            line-height: 1.8;
            overflow-x: hidden;
            background: var(--light);
            font-weight: 300;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(254, 254, 254, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        nav {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 4rem;
        }

        .logo {
            font-size: 1.3rem;
            font-weight: 400;
            letter-spacing: 3px;
            color: var(--primary);
            text-transform: uppercase;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            color: var(--light);
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

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

        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 4rem 2rem;
            max-width: 1200px;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 300;
            letter-spacing: 8px;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .hero-date {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 3rem;
            letter-spacing: 3px;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: transparent;
            border: 1px solid var(--light);
            color: var(--light);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cta-button:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        /* Section Styles */
        section {
            padding: 6rem 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 4px;
            margin-bottom: 4rem;
            color: var(--primary);
            text-align: center;
            text-transform: uppercase;
        }

        /* Featured Events/Collections */
        .featured {
            background: var(--grey);
        }

        .featured-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .event-card {
            background: var(--light);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .event-card:hover {
            transform: translateY(-5px);
        }

        .event-image {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
        }

        .event-content {
            padding: 2rem;
        }

        .event-tags {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .event-tag {
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            color: var(--accent);
            letter-spacing: 1px;
        }

        .event-title {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 1rem;
            line-height: 1.4;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .event-desc {
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.7;
            font-weight: 300;
        }

        /* Catalog Section - Horizontal Scroll */
        .catalog {
            background: var(--light);
            padding: 6rem 0;
        }

        .catalog-header {
            padding: 0 4rem;
            margin-bottom: 3rem;
        }

        .catalog-scroll {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            gap: 2rem;
            padding: 0 4rem 2rem 4rem;
            -webkit-overflow-scrolling: touch;
        }

        .catalog-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .catalog-scroll::-webkit-scrollbar-track {
            background: var(--grey);
        }

        .catalog-scroll::-webkit-scrollbar-thumb {
            background: var(--primary);
        }

        .catalog-item {
            flex: 0 0 350px;
            scroll-snap-align: start;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .catalog-item:hover {
            transform: scale(1.02);
        }

        .catalog-image {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            margin-bottom: 1rem;
        }

        .catalog-name {
            font-size: 1rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .catalog-category {
            font-size: 0.85rem;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 300;
        }

        /* About Section */
        .about {
            background: var(--primary);
            color: var(--light);
            text-align: center;
        }

        .about .section-title {
            color: var(--light);
        }

        .about-content {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: left;
        }

        .about-content h3 {
            font-size: 1.5rem;
            font-weight: 400;
            letter-spacing: 1px;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--light);
        }

        .about-content h4 {
            font-size: 1.2rem;
            font-weight: 400;
            letter-spacing: 1px;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--accent);
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        .about-content ul,
        .about-content ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .about-content li {
            margin-bottom: 0.5rem;
        }

        .about-content strong {
            font-weight: 600;
            color: var(--accent);
        }


        /* Video Section */
        .video-section {
            background: var(--grey);
        }

        .video-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            background: #000;
        }

        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Full Catalog Section */
        .full-catalog {
            background: var(--light);
        }

        .catalog-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .catalog-grid-item {
            cursor: pointer;
            transition: transform 0.3s;
        }

        .catalog-grid-item:hover {
            transform: translateY(-5px);
        }

        .catalog-grid-image {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            margin-bottom: 1rem;
        }

        .catalog-grid-name {
            font-size: 0.95rem;
            font-weight: 400;
            margin-bottom: 0.3rem;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        .catalog-grid-desc {
            font-size: 0.8rem;
            color: var(--text);
            font-weight: 300;
        }

        .blog-section {
            background: var(--grey);
        }

        .blog-grid {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            background: var(--light);
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-title {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 1rem;
            line-height: 1.4;
            color: var(--primary);
            letter-spacing: 0.5px;
        }

        /* Features */
        .features {
            background: var(--grey);
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .feature {
            text-align: center;
        }

        .feature h3 {
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: var(--primary);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .feature p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--text);
            font-weight: 300;
        }

        /* Contact Section */
        .contact {
            background: var(--primary);
            color: var(--light);
            text-align: center;
        }

        .contact .section-title {
            color: var(--light);
        }

        .contact-info {
            max-width: 600px;
            margin: 3rem auto 0;
            font-size: 1.1rem;
            line-height: 2;
        }

        .contact-info a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: var(--light);
            padding: 5rem 4rem 2rem;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: color 0.3s;
        }

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

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text);
            font-size: 0.8rem;
            font-weight: 300;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Scroll Indicator for Catalog */
        .scroll-indicator {
            text-align: center;
            margin-top: 1rem;
            color: #666;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .catalog-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .scroll-btn {
            background: transparent;
            color: var(--text);
            border: 1px solid var(--border);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .scroll-btn:hover {
            background: var(--primary);
            color: var(--light);
            border-color: var(--primary);
        }

        .scroll-btn:disabled {
            border-color: #ccc;
            color: #ccc;
            cursor: not-allowed;
        }

        .scroll-btn:disabled:hover {
            background: transparent;
            color: #ccc;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .catalog-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            .catalog {
                padding: 4rem 0;
            }

            .catalog-header {
                padding: 0 1.5rem;
            }

            .catalog-scroll {
                padding: 0 1.5rem 2rem 1.5rem;
                gap: 1rem;
            }

            .catalog-item {
                flex: 0 0 280px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-date {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--light);
                flex-direction: column;
                gap: 0;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                display: none;
                border-top: 1px solid #eee;
            }

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

            .nav-links li {
                width: 100%;
                text-align: center;
                padding: 1rem 0;
                border-bottom: 1px solid #eee;
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .featured-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

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

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

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

            .about-content {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                background-size: contain;
                background-repeat: no-repeat;
                background-color: #7A624A;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero-date {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

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

            .catalog-item {
                flex: 0 0 250px;
            }
        }
    