
        :root {
            --dark: #1a1a1a; --text: #333; --light: #f8f6f3; --accent: #b08d57;
            --accent-dark: #8a6d3b; --white: #fff; --muted: #777;
            --heading: 'Playfair Display', Georgia, serif;
            --body: 'Inter', -apple-system, sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--body); color: var(--text); line-height: 1.6; background: var(--white); }

        /* Nav */
        nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,26,0.95); backdrop-filter: blur(14px); }
        .nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; height: 68px; }
        .logo { font-family: var(--heading); font-size: 1.25rem; color: #fff; text-decoration: none; }
        .logo span { color: var(--accent); font-weight: 700; }
        .back-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.5px; display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }
        .back-link:hover { color: var(--accent); }
        .back-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

        /* Hero */
        .page-hero {
            padding: 10rem 2rem 4rem; text-align: center; color: #fff;
            background: linear-gradient(135deg, #8B4513 0%, #D2691E 40%, #CD853F 100%);
            position: relative;
        }
        .page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
        .page-hero-content { position: relative; z-index: 2; }
        .page-hero .icon { font-size: 3rem; margin-bottom: 1rem; }
        .page-hero h1 { font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; margin-bottom: 0.8rem; }
        .page-hero p { font-size: 1.05rem; font-weight: 300; max-width: 550px; margin: 0 auto; opacity: 0.85; }

        /* Content */
        .content { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
        .category-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid #eee; }
        .venue-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-bottom: 3.5rem; }

        .venue-card {
            background: var(--light); border-radius: 8px; padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
        }
        .venue-card:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.07); }
        .venue-card h3 { font-family: var(--heading); font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
        .venue-loc { font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 0.8rem; letter-spacing: 0.3px; }
        .venue-card p { font-size: 0.88rem; color: #555; line-height: 1.75; font-weight: 300; margin-bottom: 1.2rem; }
        .venue-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
        .venue-tag { padding: 3px 10px; border: 1px solid #ddd; border-radius: 14px; font-size: 0.7rem; color: var(--muted); }
        .venue-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .venue-cta:hover { color: var(--accent); }
        .venue-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

        /* Tip Box */
        .tip-box {
            background: linear-gradient(135deg, var(--dark), #2a2a2a); color: #fff;
            border-radius: 8px; padding: 2.5rem; margin: 2rem 0 3rem; text-align: center;
        }
        .tip-box h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.8rem; }
        .tip-box p { font-size: 0.9rem; font-weight: 300; opacity: 0.75; max-width: 500px; margin: 0 auto; line-height: 1.7; }

        /* Footer */
        .page-footer { background: var(--dark); color: rgba(255,255,255,0.4); text-align: center; padding: 2rem; font-size: 0.78rem; }
        .page-footer a { color: var(--accent); text-decoration: none; }

        @media (max-width: 768px) {
            .venue-list { grid-template-columns: 1fr; }
            .content { padding: 3rem 1.5rem; }
        }
    

        :root {
            --dark: #1a1a1a; --text: #333; --light: #f8f6f3; --accent: #b08d57;
            --accent-dark: #8a6d3b; --white: #fff; --muted: #777;
            --heading: 'Playfair Display', Georgia, serif;
            --body: 'Inter', -apple-system, sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--body); color: var(--text); line-height: 1.6; background: var(--white); }

        nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,26,0.95); backdrop-filter: blur(14px); }
        .nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; height: 68px; }
        .logo { font-family: var(--heading); font-size: 1.25rem; color: #fff; text-decoration: none; }
        .logo span { color: var(--accent); font-weight: 700; }
        .back-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.5px; display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }
        .back-link:hover { color: var(--accent); }
        .back-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

        .page-hero {
            padding: 10rem 2rem 4rem; text-align: center; color: #fff;
            background: linear-gradient(135deg, #1a1a2e 0%, #4a1942 40%, #6b2fa0 100%);
            position: relative;
        }
        .page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.1); }
        .page-hero-content { position: relative; z-index: 2; }
        .page-hero .icon { font-size: 3rem; margin-bottom: 1rem; }
        .page-hero h1 { font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; margin-bottom: 0.8rem; }
        .page-hero p { font-size: 1.05rem; font-weight: 300; max-width: 550px; margin: 0 auto; opacity: 0.85; }

        .content { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
        .category-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid #eee; }
        .venue-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-bottom: 3.5rem; }

        .venue-card {
            background: var(--light); border-radius: 8px; padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .venue-card:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.07); }
        .venue-card h3 { font-family: var(--heading); font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
        .venue-loc { font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 0.8rem; letter-spacing: 0.3px; }
        .venue-card p { font-size: 0.88rem; color: #555; line-height: 1.75; font-weight: 300; margin-bottom: 1.2rem; }
        .venue-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
        .venue-tag { padding: 3px 10px; border: 1px solid #ddd; border-radius: 14px; font-size: 0.7rem; color: var(--muted); }
        .venue-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .venue-cta:hover { color: var(--accent); }
        .venue-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

        .tip-box {
            background: linear-gradient(135deg, var(--dark), #2a2a2a); color: #fff;
            border-radius: 8px; padding: 2.5rem; margin: 2rem 0 3rem; text-align: center;
        }
        .tip-box h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.8rem; }
        .tip-box p { font-size: 0.9rem; font-weight: 300; opacity: 0.75; max-width: 500px; margin: 0 auto; line-height: 1.7; }

        .page-footer { background: var(--dark); color: rgba(255,255,255,0.4); text-align: center; padding: 2rem; font-size: 0.78rem; }
        .page-footer a { color: var(--accent); text-decoration: none; }

        @media (max-width: 768px) { .venue-list { grid-template-columns: 1fr; } .content { padding: 3rem 1.5rem; } }
    

        :root {
            --dark: #1a1a1a; --text: #333; --light: #f8f6f3; --accent: #b08d57;
            --accent-dark: #8a6d3b; --white: #fff; --muted: #777;
            --heading: 'Playfair Display', Georgia, serif;
            --body: 'Inter', -apple-system, sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--body); color: var(--text); line-height: 1.6; background: var(--white); }

        nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,26,0.95); backdrop-filter: blur(14px); }
        .nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; height: 68px; }
        .logo { font-family: var(--heading); font-size: 1.25rem; color: #fff; text-decoration: none; }
        .logo span { color: var(--accent); font-weight: 700; }
        .back-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.5px; display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }
        .back-link:hover { color: var(--accent); }
        .back-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

        .page-hero {
            padding: 10rem 2rem 4rem; text-align: center; color: #fff;
            background: linear-gradient(135deg, #0f3443 0%, #34795a 40%, #4ecdc4 100%);
            position: relative;
        }
        .page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.1); }
        .page-hero-content { position: relative; z-index: 2; }
        .page-hero .icon { font-size: 3rem; margin-bottom: 1rem; }
        .page-hero h1 { font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; margin-bottom: 0.8rem; }
        .page-hero p { font-size: 1.05rem; font-weight: 300; max-width: 550px; margin: 0 auto; opacity: 0.85; }

        .content { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
        .category-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid #eee; }

        /* Timeline style events */
        .events-list { margin-bottom: 3.5rem; }
        .event-item {
            display: grid; grid-template-columns: 100px 1fr; gap: 1.5rem;
            padding: 1.8rem 0; border-bottom: 1px solid #f0f0f0;
            transition: background 0.3s;
        }
        .event-item:first-child { padding-top: 0; }
        .event-item:hover { background: var(--light); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; border-radius: 8px; }
        .event-date {
            text-align: center; padding-top: 0.2rem;
        }
        .event-date .month {
            font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
            color: var(--accent); font-weight: 600;
        }
        .event-date .day {
            font-family: var(--heading); font-size: 2rem; font-weight: 700; color: var(--dark);
            line-height: 1.1;
        }
        .event-date .year {
            font-size: 0.7rem; color: var(--muted);
        }
        .event-info h3 { font-family: var(--heading); font-size: 1.15rem; font-weight: 400; color: var(--dark); margin-bottom: 0.2rem; }
        .event-venue { font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 0.6rem; }
        .event-info p { font-size: 0.86rem; color: #555; line-height: 1.7; font-weight: 300; margin-bottom: 0.8rem; }
        .event-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem; }
        .event-tag { padding: 3px 10px; border: 1px solid #ddd; border-radius: 14px; font-size: 0.7rem; color: var(--muted); }
        .event-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .event-cta:hover { color: var(--accent); }
        .event-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

        /* Annual highlights */
        .annual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-bottom: 3.5rem; }
        .annual-card {
            background: var(--light); border-radius: 8px; padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .annual-card:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.07); }
        .annual-card h3 { font-family: var(--heading); font-size: 1.15rem; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
        .annual-timing { font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 0.7rem; }
        .annual-card p { font-size: 0.86rem; color: #555; line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }
        .annual-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .annual-cta:hover { color: var(--accent); }
        .annual-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

        .tip-box {
            background: linear-gradient(135deg, var(--dark), #2a2a2a); color: #fff;
            border-radius: 8px; padding: 2.5rem; margin: 2rem 0 3rem; text-align: center;
        }
        .tip-box h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.8rem; }
        .tip-box p { font-size: 0.9rem; font-weight: 300; opacity: 0.75; max-width: 550px; margin: 0 auto; line-height: 1.7; }

        .page-footer { background: var(--dark); color: rgba(255,255,255,0.4); text-align: center; padding: 2rem; font-size: 0.78rem; }
        .page-footer a { color: var(--accent); text-decoration: none; }

        @media (max-width: 768px) {
            .event-item { grid-template-columns: 80px 1fr; gap: 1rem; }
            .annual-grid { grid-template-columns: 1fr; }
            .content { padding: 3rem 1.5rem; }
        }
    

        :root {
            --dark: #1a1a1a;
            --text: #333;
            --light: #f8f6f3;
            --accent: #b08d57;
            --accent-dark: #8a6d3b;
            --white: #ffffff;
            --muted: #777;
            --heading: 'Playfair Display', Georgia, serif;
            --body: 'Inter', -apple-system, sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--body); color: var(--text); line-height: 1.6; background: var(--white); }

        /* ── Nav ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(26,26,26,0.9); backdrop-filter: blur(14px);
            transition: background 0.3s;
        }
        .nav-inner {
            max-width: 1100px; margin: 0 auto; padding: 0 2rem;
            display: flex; justify-content: space-between; align-items: center; height: 68px;
        }
        .logo { font-family: var(--heading); font-size: 1.25rem; color: #fff; text-decoration: none; letter-spacing: 0.5px; }
        .logo span { color: var(--accent); font-weight: 700; }
        nav ul { list-style: none; display: flex; gap: 2.2rem; }
        nav a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.3s; }
        nav a:hover { color: var(--accent); }
        .hamburger { display: none; cursor: pointer; background: none; border: none; padding: 5px; flex-direction: column; gap: 5px; }
        .hamburger span { width: 22px; height: 2px; background: #fff; transition: 0.3s; }

        /* ── Hero Slideshow ── */
        .hero {
            min-height: 100vh; display: flex; align-items: center; justify-content: center;
            text-align: center; color: #fff; position: relative; overflow: hidden;
        }
        .hero-slides {
            position: absolute; inset: 0; z-index: 0;
        }
        .hero-slide {
            position: absolute; inset: 0;
            background-size: cover; background-position: center;
            opacity: 0; transition: opacity 1.5s ease-in-out;
        }
        .hero-slide.active { opacity: 1; }
        .hero-slide::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to bottom, rgba(15,25,35,0.55) 0%, rgba(15,25,35,0.7) 100%);
        }
        .hero-indicators {
            position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%);
            display: flex; gap: 8px; z-index: 3;
        }
        .hero-dot {
            width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35);
            cursor: pointer; transition: all 0.3s; border: none; padding: 0;
        }
        .hero-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
        .hero-slide-label {
            position: absolute; bottom: 8rem; left: 50%; transform: translateX(-50%);
            font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
            color: rgba(255,255,255,0.5); z-index: 3; transition: opacity 0.5s;
        }
        .hero-content { position: relative; z-index: 2; padding: 0 2rem; max-width: 750px; }
        .hero-badge {
            display: inline-block; padding: 6px 18px; border: 1px solid rgba(176,141,87,0.5);
            border-radius: 30px; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
            color: var(--accent); margin-bottom: 2rem;
        }
        .hero h1 {
            font-family: var(--heading); font-size: clamp(2.5rem, 6vw, 4.2rem);
            font-weight: 400; line-height: 1.15; margin-bottom: 1.2rem;
        }
        .hero h1 em { font-style: italic; color: var(--accent); }
        .hero .sub {
            font-size: 1.05rem; font-weight: 300; opacity: 0.8; line-height: 1.8;
            margin-bottom: 2.5rem;
        }
        .hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .btn {
            display: inline-block; padding: 14px 34px; border-radius: 2px;
            text-decoration: none; font-size: 0.82rem; font-weight: 500;
            letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s; cursor: pointer;
        }
        .btn-gold { background: var(--accent); color: #fff; border: 2px solid var(--accent); }
        .btn-gold:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
        .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
        .btn-outline:hover { border-color: #fff; }
        .btn-dark { background: var(--dark); color: #fff; border: 2px solid var(--dark); }
        .btn-dark:hover { background: #333; border-color: #333; }

        .scroll-hint {
            position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
            animation: float 2.5s ease-in-out infinite;
        }
        .scroll-hint svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.4); }
        @keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

        /* ── Sections ── */
        section { padding: 6rem 2rem; }
        .container { max-width: 1100px; margin: 0 auto; }
        .eyebrow { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 500; }
        .section-title { font-family: var(--heading); font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 400; color: var(--dark); margin-bottom: 1rem; }

        /* ── About ── */
        .about { background: var(--white); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .about-visual {
            background: linear-gradient(135deg, #e8ddd0 0%, #d4c4b0 100%);
            border-radius: 4px; min-height: 420px; display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
        }
        .about-visual-inner { text-align: center; color: var(--dark); padding: 2rem; }
        .about-visual-inner .big-number { font-family: var(--heading); font-size: 4rem; font-weight: 700; color: var(--accent); }
        .about-visual-inner .unit { font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.3rem; }
        .about-visual-inner .label { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }
        .about-text p { font-size: 0.95rem; line-height: 1.9; color: #555; font-weight: 300; margin-bottom: 1.2rem; }

        /* ── Stats Bar ── */
        .stats-bar {
            background: var(--dark); color: #fff; padding: 3rem 2rem;
        }
        .stats-grid {
            max-width: 900px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
        }
        .stat-value { font-family: var(--heading); font-size: 2rem; font-weight: 600; color: var(--accent); }
        .stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

        /* ── Amenities ── */
        .amenities { background: var(--light); }
        .amenities-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
        .amenities-header p { color: var(--muted); font-weight: 300; font-size: 1rem; }
        .amenities-grid {
            max-width: 900px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
        }
        .amenity-card {
            background: var(--white); padding: 2rem 1.5rem; border-radius: 4px;
            text-align: center; transition: box-shadow 0.3s;
        }
        .amenity-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
        .amenity-icon {
            width: 50px; height: 50px; margin: 0 auto 1rem;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; background: var(--light);
        }
        .amenity-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
        .amenity-card h4 { font-family: var(--heading); font-size: 1rem; font-weight: 400; margin-bottom: 0.4rem; color: var(--dark); }
        .amenity-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

        /* ── Location ── */
        .location { background: var(--white); }
        .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .location-map {
            border-radius: 4px; overflow: hidden; min-height: 400px;
            background: #e8e0d8;
        }
        .location-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }
        .location-text h3 { font-family: var(--heading); font-size: 1.8rem; font-weight: 400; color: var(--dark); margin-bottom: 1rem; }
        .location-text p { font-size: 0.95rem; line-height: 1.9; color: #555; font-weight: 300; margin-bottom: 1.5rem; }
        .nearby { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
        .nearby-item {
            display: flex; align-items: center; gap: 0.5rem;
            font-size: 0.85rem; color: #555;
        }
        .nearby-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
        .nearby-item a { color: #555; text-decoration: none; transition: color 0.3s; }
        .nearby-item a:hover { color: var(--accent); }

        /* ── Explore Cards ── */
        .explore { background: var(--light); }
        .explore-grid {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
        }
        .explore-card {
            position: relative; border-radius: 8px; overflow: hidden;
            min-height: 380px; display: flex; align-items: flex-end;
            text-decoration: none; color: #fff;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .explore-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
        .explore-card::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
            z-index: 1; transition: background 0.3s;
        }
        .explore-card:hover::before {
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
        }
        .ec-restaurants { background: linear-gradient(135deg, #8B4513 0%, #D2691E 40%, #CD853F 100%); }
        .ec-bars { background: linear-gradient(135deg, #1a1a2e 0%, #4a1942 40%, #6b2fa0 100%); }
        .ec-events { background: linear-gradient(135deg, #0f3443 0%, #34795a 40%, #4ecdc4 100%); }
        .explore-card-icon {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
            font-size: 4rem; z-index: 2; opacity: 0.3; transition: all 0.4s;
        }
        .explore-card:hover .explore-card-icon { opacity: 0.5; transform: translate(-50%, -65%); }
        .explore-card-content {
            position: relative; z-index: 2; padding: 2rem; width: 100%;
        }
        .explore-card-content h3 {
            font-family: var(--heading); font-size: 1.6rem; font-weight: 400;
            margin-bottom: 0.5rem;
        }
        .explore-card-content p {
            font-size: 0.85rem; font-weight: 300; opacity: 0.8;
            line-height: 1.6; margin-bottom: 1rem;
        }
        .explore-card-arrow {
            display: inline-flex; align-items: center; gap: 0.4rem;
            font-size: 0.78rem; font-weight: 500; letter-spacing: 1px;
            text-transform: uppercase; color: var(--accent);
            transition: gap 0.3s;
        }
        .explore-card:hover .explore-card-arrow { gap: 0.8rem; }
        .explore-card-arrow svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; }

        /* ── CTA Strip ── */
        .cta-strip {
            background: linear-gradient(135deg, #1a1a2e 0%, #2c4a5a 100%);
            color: #fff; padding: 5rem 2rem; text-align: center;
        }
        .cta-strip h2 { font-family: var(--heading); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; margin-bottom: 1rem; }
        .cta-strip h2 em { color: var(--accent); font-style: italic; }
        .cta-strip p { max-width: 550px; margin: 0 auto 2rem; font-weight: 300; opacity: 0.75; line-height: 1.8; }

        /* ── Contact ── */
        .contact { background: var(--light); padding: 5rem 2rem; }
        .contact-inner { max-width: 650px; margin: 0 auto; text-align: center; }
        .contact-inner h2 { font-family: var(--heading); font-size: 2rem; font-weight: 400; color: var(--dark); margin-bottom: 0.8rem; }
        .contact-inner > p { color: var(--muted); font-weight: 300; margin-bottom: 2.5rem; font-size: 1rem; }
        .contact-links { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
        .contact-link { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--text); font-size: 0.92rem; transition: color 0.3s; }
        .contact-link:hover { color: var(--accent); }
        .contact-link svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

        /* ── Footer ── */
        footer {
            background: var(--dark); color: rgba(255,255,255,0.4);
            text-align: center; padding: 2rem; font-size: 0.78rem; letter-spacing: 0.5px;
        }

        /* ── Gallery ── */
        .gallery-strip {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
        }
        .gallery-cell {
            height: 260px; position: relative; overflow: hidden; cursor: pointer;
        }
        .gallery-cell img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-cell:hover img { transform: scale(1.05); }
        .gallery-label {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 1.2rem 1rem 0.8rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.55));
            color: #fff; font-size: 0.72rem; letter-spacing: 1.5px;
            text-transform: uppercase; font-weight: 400;
        }

        /* ── Mobile ── */
        @media (max-width: 768px) {
            nav ul { display: none; }
            .hamburger { display: flex; }
            nav.open ul {
                display: flex; flex-direction: column; position: absolute;
                top: 68px; left: 0; right: 0; background: rgba(26,26,26,0.98);
                padding: 2rem; gap: 1.5rem;
            }
            .about-grid, .location-grid { grid-template-columns: 1fr; }
            .about-visual { min-height: 280px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            .amenities-grid { grid-template-columns: 1fr; }
            .gallery-strip { grid-template-columns: 1fr 1fr; }
            .gallery-cell { height: 200px; }
            .nearby { grid-template-columns: 1fr; }
            .explore-grid { grid-template-columns: 1fr; }
            .explore-card { min-height: 260px; }
            section { padding: 4rem 1.5rem; }
            .contact-links { flex-direction: column; align-items: center; gap: 1.2rem; }
        }
    

        :root {
            --dark: #1a1a1a;
            --accent: #b08d57;
            --accent-dark: #8a6d3b;
            --light: #f5f5f5;
            --white: #fff;
            --border: #e0e0e0;
            --success: #2e7d32;
            --danger: #c62828;
            --muted: #888;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; background: var(--light); color: var(--dark); min-height: 100vh; }

        /* ── Login Screen ── */
        .login-screen {
            display: flex; align-items: center; justify-content: center;
            min-height: 100vh; padding: 2rem;
        }
        .login-box {
            background: var(--white); border-radius: 12px; padding: 3rem;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08); max-width: 400px; width: 100%;
            text-align: center;
        }
        .login-box h1 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
        .login-box p { color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem; }
        .login-box input {
            width: 100%; padding: 12px 16px; border: 1px solid var(--border);
            border-radius: 8px; font-size: 0.95rem; font-family: inherit;
            margin-bottom: 1rem; transition: border 0.3s;
        }
        .login-box input:focus { outline: none; border-color: var(--accent); }
        .login-error { color: var(--danger); font-size: 0.82rem; margin-bottom: 1rem; display: none; }

        /* ── Admin Layout ── */
        .admin-layout { display: none; }
        .admin-header {
            background: var(--dark); color: #fff; padding: 0 2rem;
            display: flex; align-items: center; justify-content: space-between; height: 60px;
        }
        .admin-header h1 { font-size: 1rem; font-weight: 500; }
        .admin-header h1 span { color: var(--accent); }
        .admin-header-actions { display: flex; gap: 1rem; align-items: center; }
        .admin-header a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
        .admin-header a:hover { color: #fff; }

        .admin-body { max-width: 1000px; margin: 0 auto; padding: 2rem; }

        /* ── Tabs ── */
        .tabs {
            display: flex; gap: 0; border-bottom: 2px solid var(--border);
            margin-bottom: 2rem; overflow-x: auto;
        }
        .tab {
            padding: 12px 24px; font-size: 0.85rem; font-weight: 500;
            color: var(--muted); cursor: pointer; border: none; background: none;
            border-bottom: 2px solid transparent; margin-bottom: -2px;
            white-space: nowrap; transition: all 0.3s; font-family: inherit;
        }
        .tab:hover { color: var(--dark); }
        .tab.active { color: var(--accent); border-bottom-color: var(--accent); }

        /* ── Panels ── */
        .panel { display: none; }
        .panel.active { display: block; }

        .card {
            background: var(--white); border-radius: 10px; padding: 2rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04); margin-bottom: 1.5rem;
        }
        .card h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem; }
        .card .subtitle { color: var(--muted); font-size: 0.82rem; margin-bottom: 1.5rem; }

        /* ── Forms ── */
        .form-group { margin-bottom: 1.2rem; }
        .form-group label {
            display: block; font-size: 0.78rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: 0.5px; color: #555;
            margin-bottom: 0.4rem;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%; padding: 10px 14px; border: 1px solid var(--border);
            border-radius: 6px; font-size: 0.9rem; font-family: inherit;
            transition: border 0.3s; background: var(--white);
        }
        .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
        .form-group textarea { min-height: 80px; resize: vertical; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

        .btn {
            display: inline-block; padding: 10px 24px; border-radius: 6px;
            font-size: 0.85rem; font-weight: 500; cursor: pointer; border: none;
            font-family: inherit; transition: all 0.3s;
        }
        .btn-primary { background: var(--accent); color: #fff; }
        .btn-primary:hover { background: var(--accent-dark); }
        .btn-outline { background: transparent; color: var(--dark); border: 1px solid var(--border); }
        .btn-outline:hover { border-color: var(--dark); }
        .btn-danger { background: var(--danger); color: #fff; }
        .btn-danger:hover { background: #b71c1c; }
        .btn-sm { padding: 6px 14px; font-size: 0.78rem; }
        .btn-group { display: flex; gap: 0.8rem; margin-top: 1rem; }

        /* ── Item List ── */
        .item-list { margin-top: 1rem; }
        .item-row {
            display: flex; align-items: center; justify-content: space-between;
            padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
            margin-bottom: 0.5rem; background: var(--light);
        }
        .item-row .item-info h4 { font-size: 0.9rem; font-weight: 500; }
        .item-row .item-info p { font-size: 0.78rem; color: var(--muted); }
        .item-actions { display: flex; gap: 0.5rem; }

        /* ── Toast ── */
        .toast {
            position: fixed; bottom: 2rem; right: 2rem; padding: 14px 24px;
            background: var(--success); color: #fff; border-radius: 8px;
            font-size: 0.85rem; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            transform: translateY(100px); opacity: 0; transition: all 0.4s;
            z-index: 1000;
        }
        .toast.show { transform: translateY(0); opacity: 1; }

        /* ── Dashboard Stats ── */
        .dash-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem; margin-bottom: 2rem;
        }
        .dash-card {
            background: var(--white); border-radius: 10px; padding: 1.5rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04); text-align: center;
        }
        .dash-card .dash-value { font-size: 2rem; font-weight: 700; color: var(--accent); }
        .dash-card .dash-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }

        .instructions {
            background: #fdf6e3; border: 1px solid #f0e0b2; border-radius: 8px;
            padding: 1.2rem 1.5rem; margin-bottom: 1.5rem; font-size: 0.85rem;
            line-height: 1.7; color: #5d4e37;
        }
        .instructions strong { color: var(--accent-dark); }
        .instructions code {
            background: rgba(0,0,0,0.06); padding: 2px 6px; border-radius: 3px;
            font-size: 0.82rem;
        }

        /* ── Quick Links ── */
        .quick-links { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1rem; }
        .quick-link {
            padding: 8px 16px; border: 1px solid var(--border); border-radius: 6px;
            text-decoration: none; font-size: 0.82rem; color: var(--dark);
            transition: all 0.3s;
        }
        .quick-link:hover { border-color: var(--accent); color: var(--accent); }

        @media (max-width: 768px) {
            .form-row { grid-template-columns: 1fr; }
            .admin-body { padding: 1rem; }
            .dash-grid { grid-template-columns: 1fr 1fr; }
        }
    

        :root {
            --dark: #1a1a1a; --text: #333; --light: #f8f6f3; --accent: #b08d57;
            --accent-dark: #8a6d3b; --white: #fff; --muted: #777;
            --heading: 'Playfair Display', Georgia, serif;
            --body: 'Inter', -apple-system, sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--body); color: var(--text); line-height: 1.6; background: var(--white); }

        /* Nav */
        nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,26,0.95); backdrop-filter: blur(14px); }
        .nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; height: 68px; }
        .logo { font-family: var(--heading); font-size: 1.25rem; color: #fff; text-decoration: none; }
        .logo span { color: var(--accent); font-weight: 700; }
        .back-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.5px; display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }
        .back-link:hover { color: var(--accent); }
        .back-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

        /* Hero */
        .page-hero {
            padding: 10rem 2rem 4rem; text-align: center; color: #fff;
            background: linear-gradient(135deg, #8B4513 0%, #D2691E 40%, #CD853F 100%);
            position: relative;
        }
        .page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
        .page-hero-content { position: relative; z-index: 2; }
        .page-hero .icon { font-size: 3rem; margin-bottom: 1rem; }
        .page-hero h1 { font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; margin-bottom: 0.8rem; }
        .page-hero p { font-size: 1.05rem; font-weight: 300; max-width: 550px; margin: 0 auto; opacity: 0.85; }

        /* Content */
        .content { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
        .category-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid #eee; }
        .venue-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-bottom: 3.5rem; }

        .venue-card {
            background: var(--light); border-radius: 8px; padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
        }
        .venue-card:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.07); }
        .venue-card h3 { font-family: var(--heading); font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
        .venue-loc { font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 0.8rem; letter-spacing: 0.3px; }
        .venue-card p { font-size: 0.88rem; color: #555; line-height: 1.75; font-weight: 300; margin-bottom: 1.2rem; }
        .venue-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
        .venue-tag { padding: 3px 10px; border: 1px solid #ddd; border-radius: 14px; font-size: 0.7rem; color: var(--muted); }
        .venue-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .venue-cta:hover { color: var(--accent); }
        .venue-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

        /* Tip Box */
        .tip-box {
            background: linear-gradient(135deg, var(--dark), #2a2a2a); color: #fff;
            border-radius: 8px; padding: 2.5rem; margin: 2rem 0 3rem; text-align: center;
        }
        .tip-box h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.8rem; }
        .tip-box p { font-size: 0.9rem; font-weight: 300; opacity: 0.75; max-width: 500px; margin: 0 auto; line-height: 1.7; }

        /* Footer */
        .page-footer { background: var(--dark); color: rgba(255,255,255,0.4); text-align: center; padding: 2rem; font-size: 0.78rem; }
        .page-footer a { color: var(--accent); text-decoration: none; }

        @media (max-width: 768px) {
            .venue-list { grid-template-columns: 1fr; }
            .content { padding: 3rem 1.5rem; }
        }
    

        :root {
            --dark: #1a1a1a; --text: #333; --light: #f8f6f3; --accent: #b08d57;
            --accent-dark: #8a6d3b; --white: #fff; --muted: #777;
            --heading: 'Playfair Display', Georgia, serif;
            --body: 'Inter', -apple-system, sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--body); color: var(--text); line-height: 1.6; background: var(--white); }

        nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,26,0.95); backdrop-filter: blur(14px); }
        .nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; height: 68px; }
        .logo { font-family: var(--heading); font-size: 1.25rem; color: #fff; text-decoration: none; }
        .logo span { color: var(--accent); font-weight: 700; }
        .back-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.5px; display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }
        .back-link:hover { color: var(--accent); }
        .back-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

        .page-hero {
            padding: 10rem 2rem 4rem; text-align: center; color: #fff;
            background: linear-gradient(135deg, #1a1a2e 0%, #4a1942 40%, #6b2fa0 100%);
            position: relative;
        }
        .page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.1); }
        .page-hero-content { position: relative; z-index: 2; }
        .page-hero .icon { font-size: 3rem; margin-bottom: 1rem; }
        .page-hero h1 { font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; margin-bottom: 0.8rem; }
        .page-hero p { font-size: 1.05rem; font-weight: 300; max-width: 550px; margin: 0 auto; opacity: 0.85; }

        .content { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
        .category-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid #eee; }
        .venue-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-bottom: 3.5rem; }

        .venue-card {
            background: var(--light); border-radius: 8px; padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .venue-card:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.07); }
        .venue-card h3 { font-family: var(--heading); font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
        .venue-loc { font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 0.8rem; letter-spacing: 0.3px; }
        .venue-card p { font-size: 0.88rem; color: #555; line-height: 1.75; font-weight: 300; margin-bottom: 1.2rem; }
        .venue-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
        .venue-tag { padding: 3px 10px; border: 1px solid #ddd; border-radius: 14px; font-size: 0.7rem; color: var(--muted); }
        .venue-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .venue-cta:hover { color: var(--accent); }
        .venue-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

        .tip-box {
            background: linear-gradient(135deg, var(--dark), #2a2a2a); color: #fff;
            border-radius: 8px; padding: 2.5rem; margin: 2rem 0 3rem; text-align: center;
        }
        .tip-box h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.8rem; }
        .tip-box p { font-size: 0.9rem; font-weight: 300; opacity: 0.75; max-width: 500px; margin: 0 auto; line-height: 1.7; }

        .page-footer { background: var(--dark); color: rgba(255,255,255,0.4); text-align: center; padding: 2rem; font-size: 0.78rem; }
        .page-footer a { color: var(--accent); text-decoration: none; }

        @media (max-width: 768px) { .venue-list { grid-template-columns: 1fr; } .content { padding: 3rem 1.5rem; } }
    

        :root {
            --dark: #1a1a1a; --text: #333; --light: #f8f6f3; --accent: #b08d57;
            --accent-dark: #8a6d3b; --white: #fff; --muted: #777;
            --heading: 'Playfair Display', Georgia, serif;
            --body: 'Inter', -apple-system, sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--body); color: var(--text); line-height: 1.6; background: var(--white); }

        nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,26,26,0.95); backdrop-filter: blur(14px); }
        .nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; height: 68px; }
        .logo { font-family: var(--heading); font-size: 1.25rem; color: #fff; text-decoration: none; }
        .logo span { color: var(--accent); font-weight: 700; }
        .back-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.5px; display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }
        .back-link:hover { color: var(--accent); }
        .back-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

        .page-hero {
            padding: 10rem 2rem 4rem; text-align: center; color: #fff;
            background: linear-gradient(135deg, #0f3443 0%, #34795a 40%, #4ecdc4 100%);
            position: relative;
        }
        .page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.1); }
        .page-hero-content { position: relative; z-index: 2; }
        .page-hero .icon { font-size: 3rem; margin-bottom: 1rem; }
        .page-hero h1 { font-family: var(--heading); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; margin-bottom: 0.8rem; }
        .page-hero p { font-size: 1.05rem; font-weight: 300; max-width: 550px; margin: 0 auto; opacity: 0.85; }

        .content { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
        .category-label { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1.5rem; padding-bottom: 0.8rem; border-bottom: 1px solid #eee; }

        /* Timeline style events */
        .events-list { margin-bottom: 3.5rem; }
        .event-item {
            display: grid; grid-template-columns: 100px 1fr; gap: 1.5rem;
            padding: 1.8rem 0; border-bottom: 1px solid #f0f0f0;
            transition: background 0.3s;
        }
        .event-item:first-child { padding-top: 0; }
        .event-item:hover { background: var(--light); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; border-radius: 8px; }
        .event-date {
            text-align: center; padding-top: 0.2rem;
        }
        .event-date .month {
            font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
            color: var(--accent); font-weight: 600;
        }
        .event-date .day {
            font-family: var(--heading); font-size: 2rem; font-weight: 700; color: var(--dark);
            line-height: 1.1;
        }
        .event-date .year {
            font-size: 0.7rem; color: var(--muted);
        }
        .event-info h3 { font-family: var(--heading); font-size: 1.15rem; font-weight: 400; color: var(--dark); margin-bottom: 0.2rem; }
        .event-venue { font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 0.6rem; }
        .event-info p { font-size: 0.86rem; color: #555; line-height: 1.7; font-weight: 300; margin-bottom: 0.8rem; }
        .event-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem; }
        .event-tag { padding: 3px 10px; border: 1px solid #ddd; border-radius: 14px; font-size: 0.7rem; color: var(--muted); }
        .event-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .event-cta:hover { color: var(--accent); }
        .event-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

        /* Annual highlights */
        .annual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-bottom: 3.5rem; }
        .annual-card {
            background: var(--light); border-radius: 8px; padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .annual-card:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(0,0,0,0.07); }
        .annual-card h3 { font-family: var(--heading); font-size: 1.15rem; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
        .annual-timing { font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 0.7rem; }
        .annual-card p { font-size: 0.86rem; color: #555; line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }
        .annual-cta { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .annual-cta:hover { color: var(--accent); }
        .annual-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

        .tip-box {
            background: linear-gradient(135deg, var(--dark), #2a2a2a); color: #fff;
            border-radius: 8px; padding: 2.5rem; margin: 2rem 0 3rem; text-align: center;
        }
        .tip-box h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.8rem; }
        .tip-box p { font-size: 0.9rem; font-weight: 300; opacity: 0.75; max-width: 550px; margin: 0 auto; line-height: 1.7; }

        .page-footer { background: var(--dark); color: rgba(255,255,255,0.4); text-align: center; padding: 2rem; font-size: 0.78rem; }
        .page-footer a { color: var(--accent); text-decoration: none; }

        @media (max-width: 768px) {
            .event-item { grid-template-columns: 80px 1fr; gap: 1rem; }
            .annual-grid { grid-template-columns: 1fr; }
            .content { padding: 3rem 1.5rem; }
        }
    

        :root {
            --dark: #1a1a1a;
            --text: #333;
            --light: #f8f6f3;
            --accent: #b08d57;
            --accent-dark: #8a6d3b;
            --white: #ffffff;
            --muted: #777;
            --heading: 'Playfair Display', Georgia, serif;
            --body: 'Inter', -apple-system, sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: var(--body); color: var(--text); line-height: 1.6; background: var(--white); }

        /* ── Nav ── */
        nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            background: rgba(26,26,26,0.9); backdrop-filter: blur(14px);
            transition: background 0.3s;
        }
        .nav-inner {
            max-width: 1100px; margin: 0 auto; padding: 0 2rem;
            display: flex; justify-content: space-between; align-items: center; height: 68px;
        }
        .logo { font-family: var(--heading); font-size: 1.25rem; color: #fff; text-decoration: none; letter-spacing: 0.5px; }
        .logo span { color: var(--accent); font-weight: 700; }
        nav ul { list-style: none; display: flex; gap: 2.2rem; }
        nav a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.3s; }
        nav a:hover { color: var(--accent); }
        .hamburger { display: none; cursor: pointer; background: none; border: none; padding: 5px; flex-direction: column; gap: 5px; }
        .hamburger span { width: 22px; height: 2px; background: #fff; transition: 0.3s; }

        /* ── Hero Slideshow ── */
        .hero {
            min-height: 100vh; display: flex; align-items: center; justify-content: center;
            text-align: center; color: #fff; position: relative; overflow: hidden;
        }
        .hero-slides {
            position: absolute; inset: 0; z-index: 0;
        }
        .hero-slide {
            position: absolute; inset: 0;
            background-size: cover; background-position: center;
            opacity: 0; transition: opacity 1.5s ease-in-out;
        }
        .hero-slide.active { opacity: 1; }
        .hero-slide::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to bottom, rgba(15,25,35,0.55) 0%, rgba(15,25,35,0.7) 100%);
        }
        .hero-indicators {
            position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%);
            display: flex; gap: 8px; z-index: 3;
        }
        .hero-dot {
            width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35);
            cursor: pointer; transition: all 0.3s; border: none; padding: 0;
        }
        .hero-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
        .hero-slide-label {
            position: absolute; bottom: 8rem; left: 50%; transform: translateX(-50%);
            font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
            color: rgba(255,255,255,0.5); z-index: 3; transition: opacity 0.5s;
        }
        .hero-content { position: relative; z-index: 2; padding: 0 2rem; max-width: 750px; }
        .hero-badge {
            display: inline-block; padding: 6px 18px; border: 1px solid rgba(176,141,87,0.5);
            border-radius: 30px; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
            color: var(--accent); margin-bottom: 2rem;
        }
        .hero h1 {
            font-family: var(--heading); font-size: clamp(2.5rem, 6vw, 4.2rem);
            font-weight: 400; line-height: 1.15; margin-bottom: 1.2rem;
        }
        .hero h1 em { font-style: italic; color: var(--accent); }
        .hero .sub {
            font-size: 1.05rem; font-weight: 300; opacity: 0.8; line-height: 1.8;
            margin-bottom: 2.5rem;
        }
        .hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .btn {
            display: inline-block; padding: 14px 34px; border-radius: 2px;
            text-decoration: none; font-size: 0.82rem; font-weight: 500;
            letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s; cursor: pointer;
        }
        .btn-gold { background: var(--accent); color: #fff; border: 2px solid var(--accent); }
        .btn-gold:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
        .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
        .btn-outline:hover { border-color: #fff; }
        .btn-dark { background: var(--dark); color: #fff; border: 2px solid var(--dark); }
        .btn-dark:hover { background: #333; border-color: #333; }

        .scroll-hint {
            position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
            animation: float 2.5s ease-in-out infinite;
        }
        .scroll-hint svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.4); }
        @keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

        /* ── Sections ── */
        section { padding: 6rem 2rem; }
        .container { max-width: 1100px; margin: 0 auto; }
        .eyebrow { font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 500; }
        .section-title { font-family: var(--heading); font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 400; color: var(--dark); margin-bottom: 1rem; }

        /* ── About ── */
        .about { background: var(--white); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .about-visual {
            background: linear-gradient(135deg, #e8ddd0 0%, #d4c4b0 100%);
            border-radius: 4px; min-height: 420px; display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
        }
        .about-visual-inner { text-align: center; color: var(--dark); padding: 2rem; }
        .about-visual-inner .big-number { font-family: var(--heading); font-size: 4rem; font-weight: 700; color: var(--accent); }
        .about-visual-inner .unit { font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.3rem; }
        .about-visual-inner .label { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }
        .about-text p { font-size: 0.95rem; line-height: 1.9; color: #555; font-weight: 300; margin-bottom: 1.2rem; }

        /* ── Stats Bar ── */
        .stats-bar {
            background: var(--dark); color: #fff; padding: 3rem 2rem;
        }
        .stats-grid {
            max-width: 900px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
        }
        .stat-value { font-family: var(--heading); font-size: 2rem; font-weight: 600; color: var(--accent); }
        .stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

        /* ── Amenities ── */
        .amenities { background: var(--light); }
        .amenities-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
        .amenities-header p { color: var(--muted); font-weight: 300; font-size: 1rem; }
        .amenities-grid {
            max-width: 900px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
        }
        .amenity-card {
            background: var(--white); padding: 2rem 1.5rem; border-radius: 4px;
            text-align: center; transition: box-shadow 0.3s;
        }
        .amenity-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
        .amenity-icon {
            width: 50px; height: 50px; margin: 0 auto 1rem;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; background: var(--light);
        }
        .amenity-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
        .amenity-card h4 { font-family: var(--heading); font-size: 1rem; font-weight: 400; margin-bottom: 0.4rem; color: var(--dark); }
        .amenity-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

        /* ── Location ── */
        .location { background: var(--white); }
        .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        .location-map {
            border-radius: 4px; overflow: hidden; min-height: 400px;
            background: #e8e0d8;
        }
        .location-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }
        .location-text h3 { font-family: var(--heading); font-size: 1.8rem; font-weight: 400; color: var(--dark); margin-bottom: 1rem; }
        .location-text p { font-size: 0.95rem; line-height: 1.9; color: #555; font-weight: 300; margin-bottom: 1.5rem; }
        .nearby { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
        .nearby-item {
            display: flex; align-items: center; gap: 0.5rem;
            font-size: 0.85rem; color: #555;
        }
        .nearby-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
        .nearby-item a { color: #555; text-decoration: none; transition: color 0.3s; }
        .nearby-item a:hover { color: var(--accent); }

        /* ── Explore Cards ── */
        .explore { background: var(--light); }
        .explore-grid {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
        }
        .explore-card {
            position: relative; border-radius: 8px; overflow: hidden;
            min-height: 380px; display: flex; align-items: flex-end;
            text-decoration: none; color: #fff;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .explore-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
        .explore-card::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
            z-index: 1; transition: background 0.3s;
        }
        .explore-card:hover::before {
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
        }
        .ec-restaurants { background: linear-gradient(135deg, #8B4513 0%, #D2691E 40%, #CD853F 100%); }
        .ec-bars { background: linear-gradient(135deg, #1a1a2e 0%, #4a1942 40%, #6b2fa0 100%); }
        .ec-events { background: linear-gradient(135deg, #0f3443 0%, #34795a 40%, #4ecdc4 100%); }
        .explore-card-icon {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
            font-size: 4rem; z-index: 2; opacity: 0.3; transition: all 0.4s;
        }
        .explore-card:hover .explore-card-icon { opacity: 0.5; transform: translate(-50%, -65%); }
        .explore-card-content {
            position: relative; z-index: 2; padding: 2rem; width: 100%;
        }
        .explore-card-content h3 {
            font-family: var(--heading); font-size: 1.6rem; font-weight: 400;
            margin-bottom: 0.5rem;
        }
        .explore-card-content p {
            font-size: 0.85rem; font-weight: 300; opacity: 0.8;
            line-height: 1.6; margin-bottom: 1rem;
        }
        .explore-card-arrow {
            display: inline-flex; align-items: center; gap: 0.4rem;
            font-size: 0.78rem; font-weight: 500; letter-spacing: 1px;
            text-transform: uppercase; color: var(--accent);
            transition: gap 0.3s;
        }
        .explore-card:hover .explore-card-arrow { gap: 0.8rem; }
        .explore-card-arrow svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; }

        /* ── CTA Strip ── */
        .cta-strip {
            background: linear-gradient(135deg, #1a1a2e 0%, #2c4a5a 100%);
            color: #fff; padding: 5rem 2rem; text-align: center;
        }
        .cta-strip h2 { font-family: var(--heading); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; margin-bottom: 1rem; }
        .cta-strip h2 em { color: var(--accent); font-style: italic; }
        .cta-strip p { max-width: 550px; margin: 0 auto 2rem; font-weight: 300; opacity: 0.75; line-height: 1.8; }

        /* ── Contact ── */
        .contact { background: var(--light); padding: 5rem 2rem; }
        .contact-inner { max-width: 650px; margin: 0 auto; text-align: center; }
        .contact-inner h2 { font-family: var(--heading); font-size: 2rem; font-weight: 400; color: var(--dark); margin-bottom: 0.8rem; }
        .contact-inner > p { color: var(--muted); font-weight: 300; margin-bottom: 2.5rem; font-size: 1rem; }
        .contact-links { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
        .contact-link { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--text); font-size: 0.92rem; transition: color 0.3s; }
        .contact-link:hover { color: var(--accent); }
        .contact-link svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; }

        /* ── Footer ── */
        footer {
            background: var(--dark); color: rgba(255,255,255,0.4);
            text-align: center; padding: 2rem; font-size: 0.78rem; letter-spacing: 0.5px;
        }

        /* ── Gallery ── */
        .gallery-strip {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
        }
        .gallery-cell {
            height: 260px; position: relative; overflow: hidden; cursor: pointer;
        }
        .gallery-cell img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-cell:hover img { transform: scale(1.05); }
        .gallery-label {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 1.2rem 1rem 0.8rem;
            background: linear-gradient(transparent, rgba(0,0,0,0.55));
            color: #fff; font-size: 0.72rem; letter-spacing: 1.5px;
            text-transform: uppercase; font-weight: 400;
        }

        /* ── Mobile ── */
        @media (max-width: 768px) {
            nav ul { display: none; }
            .hamburger { display: flex; }
            nav.open ul {
                display: flex; flex-direction: column; position: absolute;
                top: 68px; left: 0; right: 0; background: rgba(26,26,26,0.98);
                padding: 2rem; gap: 1.5rem;
            }
            .about-grid, .location-grid { grid-template-columns: 1fr; }
            .about-visual { min-height: 280px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            .amenities-grid { grid-template-columns: 1fr; }
            .gallery-strip { grid-template-columns: 1fr 1fr; }
            .gallery-cell { height: 200px; }
            .nearby { grid-template-columns: 1fr; }
            .explore-grid { grid-template-columns: 1fr; }
            .explore-card { min-height: 260px; }
            section { padding: 4rem 1.5rem; }
            .contact-links { flex-direction: column; align-items: center; gap: 1.2rem; }
        }
    