:root {
            --forest: #1a2e1c;
            --moss: #2d4a2e;
            --mist: #f5f0e8;
            --gold: #c9a84c;
            --gold-light: #e8d5a3;
            --cream: #faf7f2;
            --bark: #7a6250;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--cream);
            color: var(--forest);
            overflow-x: hidden;
        }
        h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

        /* ── NAV ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            padding: 20px 60px;
            display: flex; align-items: center; justify-content: space-between;
            background: rgba(26,46,28,0.97); backdrop-filter: blur(10px);
        }
        .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: white; letter-spacing: 3px; text-decoration: none; font-weight: 300; }
        .nav-logo span { color: var(--gold); }
        .nav-links { display: flex; gap: 32px; list-style: none; }
        .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color 0.2s; }
        .nav-links a:hover { color: var(--gold); }
        .nav-book { background: var(--gold); color: var(--forest) !important; padding: 9px 24px; border-radius: 2px; }
        .nav-hamburger { display: none; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }
        .mobile-menu { display: flex; flex-direction: column; align-items: flex-start; position: fixed; top: 0; right: 0; width: 280px; height: 100%; background: var(--forest); z-index: 1001; padding: 80px 40px 40px; gap: 24px; transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1); box-shadow: -4px 0 30px rgba(0,0,0,0.3); overflow-y: auto; }
        .mobile-menu.open { transform: translateX(0); }
        .mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: rgba(255,255,255,0.9); text-decoration: none; width: 100%; }
        .mobile-menu a:hover { color: var(--gold); }
        .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }
        .mobile-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; }
        .mobile-backdrop.open { display: block; }

        /* ── CINEMATIC HERO ── */
        .event-hero {
            height: 85vh;
            min-height: 500px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }

        .event-hero-bg {
            position: absolute; inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.06);
            animation: heroZoom 18s ease infinite alternate;
            transition: background-image 0.5s;
        }

        .event-hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.06);
            animation: heroZoom 18s ease infinite alternate;
        }

        @keyframes heroZoom {
            from { transform: scale(1.06); }
            to { transform: scale(1.12); }
        }

        .event-hero-content {
            position: relative; z-index: 2;
            padding: 0 80px 70px;
            max-width: 900px;
        }

        .breadcrumb {
            display: flex; align-items: center; gap: 8px;
            margin-bottom: 24px;
            font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
            color: rgba(255,255,255,0.5);
        }
        .breadcrumb a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
        .breadcrumb a:hover { color: var(--gold-light); }

        .event-cat-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--forest);
            font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
            font-weight: 700; padding: 7px 18px; border-radius: 2px;
            margin-bottom: 20px;
        }

        .event-hero h1 {
            font-size: clamp(3rem, 6vw, 5.5rem);
            color: white; line-height: 1.05;
            margin-bottom: 20px;
        }
        .event-hero h1 em { font-style: italic; color: var(--gold-light); }

        .event-hero-meta {
            display: flex; gap: 32px; flex-wrap: wrap;
            margin-top: 24px;
        }
        .event-meta-pill {
            display: flex; align-items: center; gap: 8px;
            color: rgba(255,255,255,0.75); font-size: 14px;
        }
        .event-meta-pill i { color: var(--gold); font-size: 16px; }

        /* ── SCROLL INDICATOR ── */
        .scroll-hint {
            position: absolute; bottom: 28px; right: 80px; z-index: 2;
            display: flex; align-items: center; gap: 10px;
            color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
        }
        .scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.3); }

        /* ── MAIN CONTENT LAYOUT ── */
        .event-body-wrap {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 0;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 60px 100px;
            align-items: start;
        }

        /* ── LEFT: CONTENT ── */
        .event-content { padding: 70px 60px 0 0; }

        .section-label {
            font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
            color: var(--gold); margin-bottom: 16px; font-family: 'DM Sans', sans-serif;
        }

        .event-description {
            font-size: 1.05rem; line-height: 1.95;
            color: var(--bark); margin-bottom: 48px;
        }

        .event-description p { margin-bottom: 20px; }

        /* ── HIGHLIGHTS ── */
        .highlights-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 60px;
        }

        .highlight-card {
            background: white;
            border: 1px solid rgba(26,46,28,0.08);
            border-radius: 4px;
            padding: 28px 24px;
            transition: all 0.3s;
        }
        .highlight-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(26,46,28,0.09);
            border-color: var(--gold);
        }

        .highlight-icon {
            width: 48px; height: 48px;
            background: var(--forest); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }
        .highlight-icon i { color: var(--gold); font-size: 1.2rem; }
        .highlight-card h4 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; margin-bottom: 6px; color: var(--forest); }
        .highlight-card p { font-size: 13px; color: var(--bark); line-height: 1.6; }

        /* ── IMAGE GALLERY ── */
        .event-gallery-title {
            margin-bottom: 24px;
        }
        .event-gallery-title h2 { font-size: 2rem; color: var(--forest); }

        .event-photo-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: 260px 200px;
            gap: 10px;
            margin-bottom: 60px;
        }

        .event-photo-grid .photo-item {
            overflow: hidden; border-radius: 4px; cursor: pointer; position: relative;
        }
        .event-photo-grid .photo-item.main { grid-row: span 2; }
        .event-photo-grid .photo-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s;
        }
        .event-photo-grid .photo-item:hover img { transform: scale(1.05); }
        .photo-overlay {
            position: absolute; inset: 0;
            background: rgba(10,20,10,0.5);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transition: 0.3s;
        }
        .photo-overlay i { color: white; font-size: 2rem; }
        .event-photo-grid .photo-item:hover .photo-overlay { opacity: 1; }

        /* ── RIGHT: SIDEBAR ── */
        .event-sidebar {
            padding-top: 70px;
            position: sticky; top: 80px;
        }

        .inquiry-card {
            background: var(--forest);
            border-radius: 4px;
            padding: 36px 32px;
            margin-bottom: 24px;
        }

        .inquiry-card h3 {
            font-size: 1.6rem; color: white; margin-bottom: 8px;
        }
        .inquiry-card .sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }

        .inquiry-card input,
        .inquiry-card textarea,
        .inquiry-card select {
            width: 100%; background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 2px; padding: 13px 16px;
            color: white; font-family: 'DM Sans', sans-serif;
            font-size: 14px; outline: none; margin-bottom: 12px;
            transition: border-color 0.2s;
        }
        .inquiry-card input::placeholder,
        .inquiry-card textarea::placeholder { color: rgba(255,255,255,0.35); }
        .inquiry-card input:focus,
        .inquiry-card textarea:focus,
        .inquiry-card select:focus { border-color: var(--gold); }
        .inquiry-card select option { background: var(--forest); }
        .inquiry-card textarea { height: 90px; resize: none; }

        .btn-gold-full {
            width: 100%; background: var(--gold); color: var(--forest);
            border: none; padding: 15px; border-radius: 2px;
            font-family: 'DM Sans', sans-serif; font-size: 13px;
            letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
            cursor: pointer; transition: all 0.3s; margin-top: 4px;
        }
        .btn-gold-full:hover { background: var(--gold-light); transform: translateY(-2px); }

        .info-card {
            background: white;
            border: 1px solid rgba(26,46,28,0.08);
            border-radius: 4px; padding: 28px;
        }

        .info-row {
            display: flex; align-items: flex-start; gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(26,46,28,0.06);
        }
        .info-row:last-child { border-bottom: none; padding-bottom: 0; }
        .info-row i { color: var(--gold); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
        .info-row-text strong { display: block; font-size: 13px; color: var(--forest); margin-bottom: 2px; }
        .info-row-text span { font-size: 13px; color: var(--bark); }

        /* ── OTHER EVENTS ── */
        .other-events-section {
            background: var(--mist);
            padding: 80px 60px;
        }
        .other-events-header {
            display: flex; justify-content: space-between; align-items: flex-end;
            max-width: 1180px; margin: 0 auto 40px;
        }
        .other-events-header h2 { font-size: 2.2rem; color: var(--forest); }
        .other-events-header a { color: var(--gold); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 3px; }

        .other-events-grid {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 24px; max-width: 1180px; margin: 0 auto;
        }

        .other-event-card {
            background: white; border-radius: 4px; overflow: hidden;
            border: 1px solid rgba(26,46,28,0.07);
            transition: all 0.3s; text-decoration: none; display: block;
        }
        .other-event-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,46,28,0.1); }

        .other-event-img { height: 180px; overflow: hidden; }
        .other-event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .other-event-card:hover .other-event-img img { transform: scale(1.05); }

        .other-event-body { padding: 22px; }
        .other-event-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; display: block; margin-bottom: 8px; }
        .other-event-body h4 { font-size: 1.2rem; color: var(--forest); margin-bottom: 8px; }
        .other-event-body p { font-size: 13px; color: var(--bark); line-height: 1.6; }

        /* ── FOOTER ── */
        footer { background: #0d1a0e; color: rgba(255,255,255,0.7); padding: 60px; }
        .footer-bottom { text-align: center; font-size: 13px; color: rgba(255,255,255,0.3); padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); max-width: 1200px; margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto 60px; }
        .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: white; letter-spacing: 3px; margin-bottom: 20px; display: block; }
        .footer-logo span { color: var(--gold); }
        .footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 28px; }
        .footer-social { display: flex; gap: 12px; }
        .footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 14px; transition: all 0.3s; text-decoration: none; }
        .footer-social a:hover { border-color: var(--gold); color: var(--gold); }
        .footer-col h5 { color: white; font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; font-weight: 500; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
        .footer-col ul li a:hover { color: var(--gold); }

        /* ── LIGHTBOX ── */
        .lb { position: fixed; inset: 0; background: rgba(5,12,6,0.96); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
        .lb.open { opacity: 1; pointer-events: all; }
        .lb img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; transform: scale(0.95); transition: transform 0.3s; }
        .lb.open img { transform: scale(1); }
        .lb-close { position: fixed; top: 24px; right: 28px; background: rgba(255,255,255,0.1); border: none; color: white; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; }

        /* ── ANIMATIONS ── */
        .fade-up { opacity: 0; transform: translateY(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .fade-up.visible { opacity: 1; transform: translateY(0); }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .event-body-wrap { grid-template-columns: 1fr; padding: 0 24px 80px; }
            .event-content { padding: 50px 0 0 0; }
            .event-sidebar { position: static; }
            .event-hero-content { padding: 0 24px 50px; }
            .scroll-hint { display: none; }
            nav { padding: 16px 20px; }
            .nav-links { display: none; }
            .nav-hamburger { display: block; }
            .other-events-section { padding: 60px 24px; }
            .other-events-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            footer { padding: 60px 24px 30px; }
            .highlights-grid { grid-template-columns: 1fr; }
            .event-photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .event-photo-grid .photo-item.main { grid-row: span 1; height: 260px; }
            .event-photo-grid .photo-item { height: 180px; }
        }