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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.7;
            color: #1a1a1a;
            background: #fafafa;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #2c1810 0%, #3d2817 50%, #8b6914 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="0.3" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.4" fill="rgba(255,255,255,0.025)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
            max-width: 800px;
            padding: 2rem;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 300;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
            line-height: 1.1;
            opacity: 0;
            animation: fadeInUp 1.2s ease-out 0.3s forwards;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            margin-bottom: 2rem;
            opacity: 0.9;
            font-weight: 300;
            letter-spacing: 1px;
            opacity: 0;
            animation: fadeInUp 1.2s ease-out 0.6s forwards;
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.2rem);
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto 3rem;
            opacity: 0;
            animation: fadeInUp 1.2s ease-out 0.9s forwards;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: #d4af37;
            color: #2c1810;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            animation: fadeInUp 1.2s ease-out 1.2s forwards;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            background: #f4c430;
        }

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

        .section {
            padding: 6rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 300;
            color: #2c1810;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .event-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .event-image {
            height: 250px;
            background: linear-gradient(135deg, #f8f6f3 0%, #f0ede8 100%);
            position: relative;
            overflow: hidden;
        }

        .event-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: #d4af37;
            border-radius: 50%;
            opacity: 0.3;
        }

        .event-date {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: #2c1810;
            color: white;
            padding: 0.8rem 1.2rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .event-day {
            font-size: 1.5rem;
            line-height: 1;
            margin-bottom: 0.2rem;
        }

        .event-month {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .event-content {
            padding: 2rem;
        }

        .event-category {
            display: inline-block;
            background: #f8f6f3;
            color: #8b6914;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .event-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .event-description {
            color: #666666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .event-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #f0f0f0;
        }

        .event-location {
            color: #999999;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .event-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #d4af37;
        }

        .featured-events {
            background: #f8f6f3;
            border-radius: 20px;
            padding: 4rem 3rem;
            margin: 4rem 0;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .featured-card {
            background: #ffffff;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .featured-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .featured-icon {
            width: 60px;
            height: 60px;
            background: #d4af37;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #2c1810;
        }

        .featured-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .featured-description {
            color: #666666;
            line-height: 1.6;
        }

        .newsletter {
            background: #2c1810;
            color: white;
            padding: 4rem 3rem;
            border-radius: 20px;
            text-align: center;
            margin: 4rem 0;
        }

        .newsletter-title {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .newsletter-description {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            max-width: 400px;
            margin: 0 auto;
            gap: 1rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
        }

        .newsletter-button {
            padding: 1rem 2rem;
            background: #d4af37;
            color: #2c1810;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .newsletter-button:hover {
            background: #f4c430;
            transform: translateY(-2px);
        }

        .footer {
            background: #1a1a1a;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #d4af37;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .footer-section p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 2rem;
            text-align: center;
            opacity: 0.6;
        }

        @media (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .events-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
            }

            .featured-events {
                padding: 3rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .hero-content {
                padding: 1rem;
            }

            .section {
                padding: 4rem 0;
            }

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

            .event-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

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

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                margin-bottom: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .events-grid {
                grid-template-columns: 1fr;
            }

            .event-card {
                margin: 0 -0.5rem;
            }

            .featured-events,
            .newsletter {
                margin-left: -0.5rem;
                margin-right: -0.5rem;
                border-radius: 15px;
            }
        }