/* ═══════════════════════════════════════════════════
   HPH PAGE-SPECIFIC STYLES
   Consolidated from prototype inline <style> blocks.
   Each section is prefixed by page name for reference.
   ═══════════════════════════════════════════════════ */

/* ─── FULL-PAGE BACKGROUND IMAGE ─── */
.hph-page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
}
.hph-page-bg-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.5;
}
/* Ensure page content scrolls above the fixed bg */
.hph-page-bg ~ * {
    position: relative;
    z-index: 1;
}

/* ─── 3-PANEL HERO TRIPTYCH ─── */
.hph-hero-triptych {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.hph-hero-triptych-panel {
    position: relative;
    overflow: hidden;
}
.hph-hero-triptych-empty {
    background: #1a1a2e;
}
.hph-hero-triptych-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    will-change: opacity, transform;
    animation: heroPanelZoom 18s ease-in-out infinite alternate;
}
.hph-hero-triptych-slide.active {
    opacity: 1;
}
/* Stagger zoom direction per panel for visual variety */
.hph-hero-triptych-panel:nth-child(1) .hph-hero-triptych-slide { animation-delay: 0s; }
.hph-hero-triptych-panel:nth-child(2) .hph-hero-triptych-slide { animation-delay: -6s; }
.hph-hero-triptych-panel:nth-child(3) .hph-hero-triptych-slide { animation-delay: -12s; }

@keyframes heroPanelZoom {
    0%   { transform: scale(1.0); }
    100% { transform: scale(1.12); }
}

.hph-hero-triptych-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    pointer-events: none;
    z-index: 1;
}
/* Ensure content above triptych */
.hph-hero-triptych ~ * {
    position: relative;
    z-index: 2;
}

@media (max-width: 600px) {
    .hph-hero-triptych {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
}



/* ─── Hero Text Box ─── */
.hero-text-box {
    display: inline-block;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 32px 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-text-box .page-heading {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    margin-bottom: 8px;
}
.hero-text-box .page-subtext {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
    margin: 0;
}
@media (max-width: 768px) {
    .hero-text-box {
        padding: 20px 24px;
    }
}





/* ─── HEADER STATUS BOX ─── */
.header-status-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
    min-height: 32px;
    text-align: center;
}
.header-status-box .status-icon {
    font-size: 14px;
    flex-shrink: 0;
}
/* Type colors */
.header-status--open {
    background: rgba(6, 214, 160, 0.15);
    color: #06D6A0;
    border-top: 1px solid rgba(6, 214, 160, 0.25);
}
.header-status--closed {
    background: rgba(230, 57, 70, 0.15);
    color: #E63946;
    border-top: 1px solid rgba(230, 57, 70, 0.25);
}
.header-status--alert {
    background: rgba(230, 126, 34, 0.15);
    color: #E67E22;
    border-top: 1px solid rgba(230, 126, 34, 0.25);
}
.header-status--info {
    background: rgba(0, 109, 164, 0.15);
    color: #006DA4;
    border-top: 1px solid rgba(0, 109, 164, 0.25);
}
.header-status--event {
    background: rgba(138, 39, 40, 0.12);
    color: #8a2728;
    border-top: 1px solid rgba(138, 39, 40, 0.2);
}
/* Split banner: green open left + event right */
.header-status-split {
    display: flex;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.header-status-split .header-status-box {
    border-top: none;
}
.header-status-split .header-status--left {
    flex: 0 0 33.333%;
    border-right: 1px solid rgba(0,0,0,0.06);
}
.header-status-split .header-status--right {
    flex: 1;
}

@media (max-width: 768px) {
    .header-status-box {
        font-size: 12px;
        padding: 5px 12px;
        flex-wrap: wrap;
    }
    .header-status-split {
        flex-direction: column;
    }
    .header-status-split .header-status--left {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
}

/* ─── PAGE: Events/Front Page (index.html) ─── */

        /* ─── EVENTS PAGE SPECIFIC STYLES ─── */

        /* ─── MAIN LAYOUT ─── */
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
            max-width: 1400px;
            padding: 0 24px;
        }

        /* ─── MAIN CONTENT FRAME ─── */
        .content-frame {
            min-width: 0;
        }

        /* ─── SIDEBAR ─── */
        .sidebar {
            padding-top: 28px;
            position: sticky;
            top: 100px;
            align-self: start;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
        }

        .sidebar-heading {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--caliente);
        }

        .sidebar-event {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
            text-decoration: none;
            transition: all 0.2s;
        }

        .sidebar-event:hover {
            background: var(--bg-card);
            margin: 0 -8px;
            padding: 12px 8px;
            border-radius: 8px;
        }

        .sidebar-event img {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .sidebar-event-info {
            min-width: 0;
        }

        .sidebar-event-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 3px;
        }

        .sidebar-event-date {
            font-size: 11px;
            color: var(--caliente);
            font-weight: 600;
            margin-bottom: 2px;
        }

        .sidebar-event-tickets {
            font-size: 10px;
            color: var(--blue);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ticket-stub {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 6px;
            padding: 6px 10px;
            background: var(--bg-card);
            border: 1px dashed var(--border);
            border-radius: 6px;
            font-size: 10px;
        }

        .ticket-price {
            font-weight: 700;
            color: var(--text-dark);
            white-space: nowrap;
        }

        .ticket-price.free {
            color: #2a8c4a;
        }

        .ticket-sold {
            color: var(--text-light);
            white-space: nowrap;
        }

        .ticket-velocity {
            margin-left: auto;
            font-weight: 600;
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 2px 6px;
            border-radius: 3px;
            white-space: nowrap;
        }

        .velocity-hot {
            background: #fde8e8;
            color: #c0282a;
        }

        .velocity-warm {
            background: #fff3e0;
            color: #c67100;
        }

        .velocity-steady {
            background: var(--blue-light);
            color: var(--blue);
        }

        .velocity-new {
            background: #e8f5e9;
            color: #2a8c4a;
        }

        /* ─── TONIGHT HERO ─── */
        .tonight-section {
            padding: 22px 0 14px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--caliente);
            margin-bottom: 10px;
        }

        .section-label .pulse {
            width: 10px;
            height: 10px;
            background: var(--caliente);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        .tonight-heading {
            font-family: 'Cardo', serif;
            font-size: 54px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
            line-height: 1.1;
        }

        .tonight-date {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 0;
        }

        /* ─── FILTER BLOCKS ─── */
        .tonight-header-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 28px;
        }

        .tonight-header-left {
            flex-shrink: 0;
        }

        .filter-blocks {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            align-items: center;
            justify-content: flex-end;
            padding-top: 6px;
        }

        .filter-block {
            background: var(--bg-card);
            border: 1px solid var(--border);
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-dark);
            padding: 6px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s;
            line-height: 1.3;
        }

        .filter-block:hover {
            border-color: var(--blue);
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(0, 109, 164, 0.08);
        }

        .filter-block.filter-active {
            background: var(--blue);
            color: var(--white-pure);
            border-color: var(--blue);
        }

        /* hide-card transition */
        .tonight-card,
        .event-card,
        .past-card {
            transition: opacity 0.3s, transform 0.3s;
        }

        .card-hidden {
            display: none !important;
        }

        /* ─── TONIGHT'S EVENT (big card) ─── */
        .tonight-card {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 48px;
        }

        .tonight-card .event-image {
            position: relative;
            min-height: 340px;
            overflow: hidden;
        }

        .tonight-card .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tonight-card .event-content {
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .event-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            backdrop-filter: blur(10px);
            padding: 5px 12px;
            border-radius: 16px;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .badge-tonight {
            top: 0;
            left: 0;
            background: var(--blue);
            color: var(--white);
            border-radius: 0 0 0 0;
            padding: 10px 32px 10px 16px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 3px;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
            background-image: repeating-linear-gradient(
                120deg,
                transparent,
                transparent 8px,
                rgba(255,255,255,0.07) 8px,
                rgba(255,255,255,0.07) 16px
            );
            backdrop-filter: none;
        }

        .badge-live {
            background: var(--blue);
            color: var(--white);
        }

        .badge-soldout {
            background: rgba(80, 80, 80, 0.9);
            color: var(--white);
        }

        /* ─── UPCOMING SECTION ─── */
        .upcoming-header {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 20px;
            padding-top: 8px;
            border-top: 1px solid var(--border);
        }

        .upcoming-heading {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .upcoming-sub {
            font-size: 12px;
            color: var(--text-light);
        }

        /* ─── EVENT CARDS (compact) ─── */
        .events-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 48px;
        }

        .event-card {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .event-card:hover {
            border-color: var(--blue);
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(0, 109, 164, 0.08);
        }

        .event-card {
            scroll-margin-top: 100px;
        }

        .event-card.flipped .event-image { order: 2; }
        .event-card.flipped .event-content { order: 1; }

        .event-image {
            position: relative;
            min-height: 200px;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .event-card:hover .event-image img {
            transform: scale(1.03);
        }

        .event-card.flipped .event-badge {
            left: auto;
            right: 14px;
        }

        .event-content {
            padding: 22px 26px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .event-series {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--blue);
            margin-bottom: 4px;
        }

        .event-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .event-datetime {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-mid);
            margin-bottom: 10px;
        }

        .event-datetime .date {
            font-weight: 600;
            color: var(--caliente);
        }

        .event-blurb {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.6;
            margin-bottom: 14px;
        }

        .event-actions {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-tickets {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--caliente);
            color: var(--white);
            text-decoration: none;
            font-size: 11px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn-tickets:hover {
            background: var(--caliente-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(138, 39, 40, 0.25);
        }

        .btn-tickets.sold-out {
            background: var(--text-light);
            cursor: default;
        }

        .btn-tickets.sold-out:hover {
            transform: none;
            box-shadow: none;
        }

        .btn-eventbrite, .btn-instagram {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--text-light);
            text-decoration: none;
            font-size: 11px;
            padding: 7px 12px;
            border: 1px solid var(--border);
            border-radius: 6px;
            transition: all 0.2s;
        }

        .btn-eventbrite:hover {
            color: var(--blue-dark);
            border-color: var(--blue);
            background: var(--blue-light);
        }

        .btn-instagram:hover {
            color: var(--caliente);
            border-color: var(--caliente);
            background: var(--caliente-light);
        }

        /* ─── EVENT TICKET INFO (main cards) ─── */
        .event-ticket-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            padding: 10px 14px;
            background: var(--white-pure);
            border: 1px dashed var(--border);
            border-radius: 8px;
            font-size: 13px;
        }

        .event-ticket-info .ticket-price {
            font-weight: 700;
            font-size: 16px;
            color: var(--text-dark);
        }

        .event-ticket-info .ticket-price.free {
            color: #2a8c4a;
        }

        .event-ticket-info .ticket-sold {
            color: var(--text-mid);
            font-size: 13px;
        }

        .event-ticket-info .ticket-velocity {
            margin-left: auto;
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 4px 10px;
            border-radius: 4px;
            white-space: nowrap;
        }

        /* ─── PAST EVENTS SECTION ─── */
        .past-section {
            padding: 32px 0 48px;
            border-top: 1px solid var(--border);
        }

        .past-heading {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-mid);
            margin-bottom: 16px;
        }

        .past-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .past-card {
            display: grid;
            grid-template-columns: 90px 1fr;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 6px;
            overflow: hidden;
            transition: all 0.2s;
        }

        .past-card:hover {
            border-color: var(--blue);
        }

        .past-card img {
            width: 100%;
            height: 100%;
            min-height: 70px;
            object-fit: cover;
        }

        .past-card-body {
            padding: 8px 12px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .past-card-series {
            font-size: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--blue);
            margin-bottom: 1px;
        }

        .past-card-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
            line-height: 1.2;
        }

        .past-card-datetime {
            font-size: 10px;
            color: var(--caliente);
            font-weight: 600;
        }

        .past-card-datetime span {
            color: var(--text-light);
            font-weight: 400;
            margin-left: 4px;
        }

        .past-card-blurb {
            font-size: 10px;
            color: var(--text-mid);
            line-height: 1.4;
            margin-top: 2px;
        }

        .past-month-divider {
            font-family: 'Cardo', serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-light);
            padding: 12px 0 4px;
            border-bottom: 1px solid var(--border-light);
            margin-bottom: 4px;
        }

        /* ─── RESPONSIVE (events page specific) ─── */
        @media (max-width: 1100px) {
            .main-layout { grid-template-columns: 1fr; }
            .sidebar {
                position: static;
                max-height: none;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
                padding: 24px 0;
                border-top: 1px solid var(--border);
            }
            .sidebar-heading { grid-column: 1 / -1; margin-bottom: 0; }
            .sidebar-event { border-bottom: none; flex-direction: column; gap: 8px; background: var(--bg-card); padding: 10px; border-radius: 8px; }
            .sidebar-event img { width: 100%; height: 100px; }
        }
        @media (max-width: 960px) {
            .event-card { grid-template-columns: 240px 1fr; }
            .tonight-card { grid-template-columns: 1fr; }
            .tonight-card .event-image { min-height: 260px; }
        }
        @media (max-width: 700px) {
            .event-card { grid-template-columns: 1fr; }
            .event-card.flipped .event-image { order: 1; }
            .event-card.flipped .event-content { order: 2; }
            .event-card.flipped .event-badge { left: 14px; right: auto; }
            .event-image { min-height: 200px; }
            .past-card { grid-template-columns: 140px 1fr; }
            .tonight-heading { font-size: 32px; }
            .tonight-header-row { flex-direction: column; gap: 14px; }
        }
        @media (max-width: 500px) {
            .content-frame { padding: 0 16px; }
            .past-card { grid-template-columns: 1fr; }
        }


/* ─── PAGE: Home (home.html) ─── */

        .home-section {
            margin-bottom: 48px;
        }
        .home-section-header {
            text-align: center;
            margin-bottom: 28px;
        }
        .home-section-header h2 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
        }
        .home-section-header p {
            font-size: 14px;
            color: var(--text-mid);
        }

        /* Location card */
        .location-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }
        .location-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px;
        }
        .location-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .location-card p,
        .location-card li {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.6;
        }
        .location-card ul {
            list-style: none;
            padding: 0;
        }
        .location-card li {
            padding: 4px 0;
        }
        .map-placeholder {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 700px) {
            .location-row { grid-template-columns: 1fr; }
        }


/* ─── PAGE: About (about.html) ─── */

        .about-hero {
            text-align: center;
            padding: 60px 24px 40px;
        }
        .about-hero .page-heading {
            color: #fff;
            text-shadow: 0 2px 12px rgba(0,0,0,0.5);
            font-size: 38px;
        }
        .about-hero .page-subtext {
            color: rgba(255,255,255,0.9);
            text-shadow: 0 1px 6px rgba(0,0,0,0.4);
            margin: 8px auto 0;
        }
        .about-hero .page-heading {
            font-size: 38px;
        }
        .about-hero .page-subtext {
            margin: 8px auto 0;
            text-align: center;
        }

        /* ── Content container background (over fixed hero) ── */
        .page-content-bg {
            background: #fff;
            border-radius: 20px 20px 0 0;
            padding-top: 40px;
            margin-top: -20px;
            position: relative;
            z-index: 2;
        }

        .about-story {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 36px;
            margin-bottom: 40px;
        }
        .about-story .story-tagline {
            font-family: 'Cardo', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--caliente);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        .about-story p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .about-story p:last-child {
            margin-bottom: 0;
        }

        .visit-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px;
        }
        .visit-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .visit-card p {
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.6;
        }
        .visit-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        @media (max-width: 600px) {
            .about-hero .page-heading { font-size: 28px; }
            .about-story .story-tagline { font-size: 22px; }
            .visit-row { grid-template-columns: 1fr; }
        }
        /* ── Enhanced Stat Box Types ── */
        .stat-box-large {
            grid-column: span 2;
        }
        .stat-box-image {
            padding: 0;
            overflow: hidden;
        }
        .stat-box-image img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            display: block;
        }
        .stat-box-image .stat-label {
            padding: 10px 12px 12px;
        }
        .stat-box-embed {
            padding: 0;
            overflow: hidden;
        }
        .stat-box-embed iframe {
            display: block;
        }
        .stat-box-embed .stat-label {
            padding: 10px 12px 12px;
        }
        @media (max-width: 700px) {
            .stat-box-large { grid-column: span 2; }
        }
        @media (max-width: 500px) {
            .stat-box-large { grid-column: span 1; }
        }



/* ─── PAGE: Contact (contact.html) ─── */

        .contact-hero {
            text-align: center;
            padding: 60px 24px 40px;
        }
        .contact-hero .page-heading {
            color: #fff;
            text-shadow: 0 2px 12px rgba(0,0,0,0.5);
            font-size: 38px;
        }
        .contact-hero .page-subtext {
            color: rgba(255,255,255,0.9);
            text-shadow: 0 1px 6px rgba(0,0,0,0.4);
            margin: 8px auto 0;
        }
        .contact-hero .page-heading {
            font-size: 38px;
        }
        .contact-hero .page-subtext {
            margin: 8px auto 0;
            text-align: center;
        }

        /* Quick contact cards */
        .quick-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }
        .quick-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
            transition: all 0.2s;
            text-decoration: none;
            color: inherit;
        }
        .quick-card:hover {
            border-color: var(--blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 109, 164, 0.08);
        }
        .quick-card-icon {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .quick-card-label {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--blue);
            margin-bottom: 6px;
        }
        .quick-card-value {
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Form card */
        .contact-form-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 36px;
        }
        .contact-form-card h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .contact-form-card .form-intro {
            font-size: 13px;
            color: var(--text-mid);
            margin-bottom: 28px;
        }
        .contact-form-card .btn-primary {
            width: 100%;
            padding: 14px;
            font-size: 14px;
        }

        /* Success state */
        .form-success {
            display: none;
            text-align: center;
            padding: 48px 24px;
        }
        .form-success.visible {
            display: block;
        }
        .success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #e8f5e9;
            color: #2a8c4a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 16px;
            animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        @keyframes popIn {
            0% { transform: scale(0); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }
        .form-success h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .form-success p {
            font-size: 14px;
            color: var(--text-mid);
            margin-bottom: 20px;
        }
        .form-success a {
            color: var(--blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
        }
        .form-success a:hover { text-decoration: underline; }

        @media (max-width: 600px) {
            .quick-cards { grid-template-columns: 1fr; }
            .contact-form-card { padding: 24px 20px; }
            .contact-hero .page-heading { font-size: 28px; }
        }


/* ─── PAGE: Register (register.html) ─── */

        /* ─── HERO ─── */
        .register-hero {
            text-align: center;
            padding: 48px 0 24px;
        }
        .register-hero .page-heading { font-size: 36px; }
        .register-hero .page-subtext {
            margin: 8px auto 0;
            text-align: center;
            max-width: 560px;
        }
        .free-badge {
            display: inline-block;
            background: #e8f5e9;
            color: #2a8c4a;
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 6px;
            margin-left: 8px;
            vertical-align: middle;
            letter-spacing: 0.5px;
        }

        /* ─── BENEFITS ROW ─── */
        .benefits-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }
        .benefit-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px 20px;
            text-align: center;
        }
        .benefit-icon { font-size: 32px; margin-bottom: 10px; }
        .benefit-title { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
        .benefit-desc { font-size: 12px; color: var(--text-mid); line-height: 1.5; }

        /* ─── WIZARD CARD ─── */
        .wizard-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 36px;
            overflow: hidden;
        }

        /* ─── STEP PROGRESS ─── */
        .step-progress {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 32px;
            padding: 0 8px;
        }
        .step-dot-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .step-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--border);
            background: var(--white-pure);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            transition: all 0.3s ease;
        }
        .step-dot.active {
            border-color: var(--blue);
            background: var(--blue);
            color: var(--white-pure);
        }
        .step-dot.done {
            border-color: #2a8c4a;
            background: #2a8c4a;
            color: var(--white-pure);
        }
        .step-label {
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--text-light);
            margin-top: 6px;
            white-space: nowrap;
            transition: color 0.3s;
        }
        .step-dot-wrap.active .step-label { color: var(--blue); }
        .step-dot-wrap.done .step-label { color: #2a8c4a; }
        .step-line {
            flex: 1;
            height: 2px;
            background: var(--border);
            margin: 0 -2px;
            margin-bottom: 18px;
            transition: background 0.3s;
        }
        .step-line.done { background: #2a8c4a; }

        /* ─── STEP PANELS ─── */
        .wizard-steps {
            position: relative;
            overflow: hidden;
        }
        .wizard-step {
            display: none;
            animation: fadeSlideIn 0.3s ease;
        }
        .wizard-step.active { display: block; }
        @keyframes fadeSlideIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .step-heading {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .step-subtext {
            font-size: 13px;
            color: var(--text-mid);
            margin-bottom: 24px;
        }

        /* ─── FORM OVERRIDES ─── */
        .wizard-card .form-input,
        .wizard-card .form-select {
            padding: 14px 16px;
            font-size: 15px;
        }
        .wizard-card .form-group { margin-bottom: 18px; }
        .form-row-3 {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
        }

        /* ─── CONSENT ─── */
        .consent-group {
            background: var(--blue-light);
            border: 1px solid rgba(0, 109, 164, 0.12);
            border-radius: 10px;
            padding: 24px;
            transition: all 0.3s ease;
        }
        .consent-group.opted-out {
            background: #fef3f3;
            border-color: rgba(138, 39, 40, 0.15);
        }
        .consent-checkbox {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            cursor: pointer;
        }
        .consent-checkbox input[type="checkbox"] {
            width: 22px;
            height: 22px;
            margin-top: 2px;
            flex-shrink: 0;
            accent-color: var(--blue);
        }
        .consent-checkbox span {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.6;
        }
        .consent-warning {
            display: none;
            background: #fff3e0;
            border: 1px solid #ffe0b2;
            border-radius: 8px;
            padding: 14px 16px;
            margin-top: 14px;
            font-size: 13px;
            color: #bf360c;
            line-height: 1.6;
        }
        .consent-warning.visible { display: block; }
        .consent-privacy {
            font-size: 11px;
            color: var(--text-light);
            margin-top: 12px;
            padding-left: 36px;
        }
        .consent-info {
            margin-top: 16px;
            padding-left: 36px;
        }
        .consent-info p {
            font-size: 12px;
            color: var(--text-mid);
            line-height: 1.7;
            margin-bottom: 6px;
        }
        .consent-info p:last-child { margin-bottom: 0; }
        .consent-info strong {
            color: #2a8c4a;
            font-weight: 700;
        }

        /* ─── NAVIGATION BUTTONS ─── */
        .wizard-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 28px;
            gap: 12px;
        }
        .wizard-nav .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: var(--text-mid);
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 500;
            padding: 12px 20px;
            border-radius: 8px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.2s;
        }
        .wizard-nav .btn-back:hover {
            color: var(--blue-dark);
            border-color: var(--blue);
            background: var(--blue-light);
        }
        .wizard-nav .btn-next {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: var(--caliente);
            color: var(--white);
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 8px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            flex: 1;
            max-width: 280px;
        }
        .wizard-nav .btn-next:hover {
            background: var(--caliente-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(138, 39, 40, 0.25);
        }
        .wizard-nav .btn-next:disabled {
            background: var(--border);
            color: var(--text-light);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        .wizard-nav.first-step { justify-content: flex-end; }

        /* ─── FIELD ERROR ─── */
        .form-input.error,
        .form-select.error {
            border-color: #d32f2f;
            box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
        }
        .field-error {
            font-size: 11px;
            color: #d32f2f;
            margin-top: 4px;
            display: none;
        }
        .field-error.visible { display: block; }

        /* ─── SUCCESS STATE ─── */
        .register-success {
            display: none;
            text-align: center;
            padding: 48px 24px;
        }
        .register-success.visible { display: block; }
        .register-success .success-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: #e8f5e9;
            color: #2a8c4a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 16px;
            animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .register-success h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .register-success p {
            font-size: 14px;
            color: var(--text-mid);
            margin-bottom: 6px;
            line-height: 1.6;
        }
        .member-number-display {
            display: inline-block;
            background: var(--text-dark);
            color: var(--white);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 10px 24px;
            border-radius: 10px;
            margin: 16px 0 20px;
        }
        .register-success a {
            color: var(--blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
        }
        .register-success a:hover { text-decoration: underline; }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 700px) {
            .benefits-row { grid-template-columns: 1fr; gap: 10px; margin-bottom: 28px; }
            .benefit-card {
                display: flex;
                align-items: center;
                text-align: left;
                padding: 16px 18px;
                gap: 14px;
            }
            .benefit-icon { font-size: 26px; margin-bottom: 0; flex-shrink: 0; }
            .benefit-text { flex: 1; }
            .benefit-title { font-size: 13px; margin-bottom: 2px; }
            .benefit-desc { font-size: 11px; }
            .form-row-3 { grid-template-columns: 1fr; }
            .wizard-card { padding: 24px 20px; }
            .register-hero .page-heading { font-size: 26px; }
            .register-hero { padding: 32px 0 16px; }
            .register-hero .page-subtext { font-size: 14px; margin-bottom: 20px; }
            .step-progress { margin-bottom: 24px; }
            .step-dot { width: 32px; height: 32px; font-size: 12px; }
            .step-label { font-size: 8px; }
            .step-heading { font-size: 18px; }
        }
        @media (max-width: 500px) {
            .register-hero .page-heading { font-size: 22px; }
            .free-badge { font-size: 9px; padding: 2px 8px; margin-left: 4px; }
            .wizard-card { padding: 20px 16px; }
            .step-progress { gap: 0; padding: 0; }
            .step-dot { width: 28px; height: 28px; font-size: 11px; }
            .step-label { font-size: 7px; letter-spacing: 0.3px; }
            .consent-checkbox span { font-size: 13px; }
            .consent-group { padding: 16px; }
            .consent-privacy { padding-left: 0; margin-top: 8px; }
            .consent-info { padding-left: 0; margin-top: 12px; }
            .consent-info p { font-size: 11px; }
            .wizard-nav .btn-next { padding: 14px 20px; font-size: 13px; }
            .wizard-nav .btn-back { padding: 10px 14px; font-size: 12px; }
            .register-success h3 { font-size: 20px; }
            .member-number-display { font-size: 16px; padding: 8px 20px; }
        }


/* ─── PAGE: Bookings (bookings.html) ─── */

        .bookings-hero {
            padding: 36px 0 32px;
            text-align: center;
        }
        .bookings-hero .page-heading { font-size: 34px; }
        .bookings-hero .page-subtext { margin: 8px auto 0; text-align: center; max-width: 600px; }

        /* Space cards */
        .spaces-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 48px;
        }
        .space-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }
        .space-card:hover {
            border-color: var(--blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 109, 164, 0.08);
        }
        .space-card.selected {
            border-color: var(--caliente);
            box-shadow: 0 0 0 2px var(--caliente);
        }
        .space-image {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            position: relative;
        }
        .space-image .capacity-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(0,0,0,0.7);
            color: #fff;
            font-size: 10px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 8px;
        }
        .ph-train { background: linear-gradient(135deg, #f5e8e8 0%, #e8dcd0 100%); }
        .ph-private { background: linear-gradient(135deg, #e6f0f7 0%, #d4e8f5 100%); }
        .ph-main { background: linear-gradient(135deg, #fff3e0 0%, #fce4b8 100%); }

        .space-body { padding: 20px; }
        .space-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .space-subtitle {
            font-size: 12px;
            color: var(--blue);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .space-features {
            list-style: none;
            margin-bottom: 16px;
        }
        .space-features li {
            font-size: 13px;
            color: var(--text-mid);
            padding: 4px 0;
            padding-left: 20px;
            position: relative;
        }
        .space-features li::before {
            content: '\2713';
            position: absolute;
            left: 0;
            color: #2a8c4a;
            font-weight: 700;
            font-size: 12px;
        }
        .space-best-for {
            font-size: 11px;
            color: var(--text-light);
            font-style: italic;
        }
        .space-best-for strong {
            font-style: normal;
            color: var(--text-mid);
        }
        .space-select-btn {
            display: block;
            width: 100%;
            margin-top: 14px;
            padding: 10px;
            border: 1px solid var(--caliente);
            border-radius: 8px;
            background: transparent;
            color: var(--caliente);
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .space-select-btn:hover, .space-card.selected .space-select-btn {
            background: var(--caliente);
            color: var(--white);
        }

        /* Booking form */
        .booking-form-section {
            scroll-margin-top: 100px;
        }
        .booking-form-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 36px;
        }
        .booking-form-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .booking-form-card .form-intro {
            font-size: 13px;
            color: var(--text-mid);
            margin-bottom: 28px;
        }

        /* Radio group */
        .radio-group {
            display: flex;
            gap: 12px;
        }
        .radio-option {
            flex: 1;
            position: relative;
        }
        .radio-option input { position: absolute; opacity: 0; }
        .radio-option label {
            display: block;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 13px;
            color: var(--text-mid);
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
        }
        .radio-option input:checked + label {
            border-color: var(--blue);
            background: var(--blue-light);
            color: var(--blue);
            font-weight: 600;
        }

        .booking-form-card .btn-primary {
            width: 100%;
            padding: 14px;
            font-size: 14px;
        }

        /* Success state */
        .booking-success {
            display: none;
            text-align: center;
            padding: 48px 24px;
        }
        .booking-success.visible { display: block; }
        .booking-success .success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #e8f5e9;
            color: #2a8c4a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 16px;
        }
        .booking-success h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
        .booking-success p { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; }

        /* Note box */
        .note-box {
            background: var(--blue-light);
            border: 1px solid rgba(0, 109, 164, 0.15);
            border-radius: 10px;
            padding: 16px 20px;
            font-size: 13px;
            color: var(--text-body);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        .note-box strong { color: var(--blue-dark); }

        @media (max-width: 800px) {
            .spaces-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 550px) {
            .spaces-grid { grid-template-columns: 1fr; }
            .booking-form-card { padding: 24px 20px; }
            .radio-group { flex-direction: column; }
        }


/* ─── PAGE: Calendar (calendar.html) ─── */

        .calendar-hero {
            padding: 36px 0 28px;
            text-align: center;
        }

        /* Month navigation */
        .month-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-bottom: 28px;
        }
        .month-nav button {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--bg-card);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-mid);
        }
        .month-nav button:hover {
            border-color: var(--blue);
            color: var(--blue);
            background: var(--blue-light);
        }
        .month-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            min-width: 200px;
            text-align: center;
        }

        /* Calendar grid */
        .calendar-grid {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 24px;
        }
        .calendar-header {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            background: var(--white-warm);
            border-bottom: 1px solid var(--border);
        }
        .calendar-header-cell {
            padding: 10px 4px;
            text-align: center;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-mid);
        }
        .calendar-body {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
        }
        .calendar-day {
            min-height: 90px;
            padding: 8px;
            border-right: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            cursor: default;
            transition: background 0.15s;
            position: relative;
        }
        .calendar-day:nth-child(7n) { border-right: none; }
        .calendar-day.empty {
            background: rgba(0,0,0,0.015);
        }
        .calendar-day.has-event {
            cursor: pointer;
        }
        .calendar-day.has-event:hover {
            background: var(--blue-light);
        }
        .calendar-day.past {
            opacity: 0.45;
        }
        .calendar-day.today .day-number {
            background: var(--blue);
            color: var(--white-pure);
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .day-number {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .day-events {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        .day-event-dot {
            font-size: 10px;
            font-weight: 500;
            padding: 2px 6px;
            border-radius: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.4;
        }
        .dot-free {
            background: var(--blue-light);
            color: var(--blue);
        }
        .dot-paid {
            background: var(--caliente-light);
            color: var(--caliente);
        }

        /* Event detail panel */
        .event-detail-panel {
            display: none;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            animation: slideDown 0.2s ease-out;
        }
        .event-detail-panel.visible { display: block; }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .detail-date {
            font-size: 12px;
            font-weight: 600;
            color: var(--caliente);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        .detail-events-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .detail-event {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 18px;
            background: var(--white-pure);
            border: 1px solid var(--border-light);
            border-radius: 10px;
        }
        .detail-event-info {
            flex: 1;
        }
        .detail-event-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 3px;
        }
        .detail-event-time {
            font-size: 12px;
            color: var(--text-mid);
        }
        .detail-event-price {
            font-size: 14px;
            font-weight: 700;
            margin-right: 16px;
        }
        .detail-event-price.free { color: #2a8c4a; }
        .detail-event-price.paid { color: var(--text-dark); }
        .detail-event-link {
            font-size: 11px;
            font-weight: 600;
            color: var(--caliente);
            text-decoration: none;
            padding: 6px 14px;
            border: 1px solid var(--caliente);
            border-radius: 6px;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .detail-event-link:hover {
            background: var(--caliente);
            color: var(--white);
        }
        .detail-close {
            text-align: right;
            margin-top: 12px;
        }
        .detail-close a {
            font-size: 12px;
            color: var(--text-light);
            text-decoration: none;
            cursor: pointer;
        }
        .detail-close a:hover { color: var(--text-dark); }

        /* No events message */
        .no-events {
            text-align: center;
            padding: 40px 24px;
            color: var(--text-light);
            font-size: 14px;
        }

        @media (max-width: 700px) {
            .calendar-day { min-height: 70px; padding: 6px 4px; }
            .day-number { font-size: 12px; }
            .day-event-dot { font-size: 8px; padding: 1px 4px; }
            .detail-event { flex-wrap: wrap; gap: 8px; }
        }
        @media (max-width: 500px) {
            .calendar-day { min-height: 56px; }
            .calendar-header-cell { font-size: 9px; padding: 8px 2px; }
            .month-title { font-size: 18px; min-width: 160px; }
        }


/* ─── PAGE: For Sale (for-sale.html) ─── */

        .sale-hero {
            padding: 36px 0 24px;
        }

        .sale-filters {
            margin-bottom: 28px;
        }

        /* Product grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 48px;
        }

        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .product-card:hover {
            border-color: var(--blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 109, 164, 0.08);
        }

        .product-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .product-image .placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }
        .product-image .price-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--caliente);
            color: var(--white);
            font-size: 13px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 8px;
        }

        .product-body {
            padding: 18px;
        }
        .product-category {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--blue);
            margin-bottom: 4px;
        }
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
            line-height: 1.3;
        }
        .product-desc {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.5;
            margin-bottom: 12px;
        }
        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .product-condition {
            font-size: 10px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .condition-excellent { background: #e8f5e9; color: #2a8c4a; }
        .condition-good { background: var(--blue-light); color: var(--blue); }
        .condition-fair { background: #fff3e0; color: #c67100; }
        .condition-asis { background: var(--caliente-light); color: var(--caliente); }

        .product-inquire {
            font-size: 11px;
            font-weight: 600;
            color: var(--caliente);
            text-decoration: none;
            padding: 5px 12px;
            border: 1px solid var(--caliente);
            border-radius: 6px;
            transition: all 0.2s;
        }
        .product-inquire:hover {
            background: var(--caliente);
            color: var(--white);
        }

        /* Placeholder gradients per category */
        .ph-furniture { background: linear-gradient(135deg, #f5e8e8 0%, #e8dcd0 100%); }
        .ph-lighting { background: linear-gradient(135deg, #fff3e0 0%, #fce4b8 100%); }
        .ph-decor { background: linear-gradient(135deg, #e6f0f7 0%, #d4e8f5 100%); }
        .ph-theatrical { background: linear-gradient(135deg, #f3e8f9 0%, #e8d4f0 100%); }
        .ph-vintage { background: linear-gradient(135deg, #e8f5e9 0%, #d4ecd6 100%); }
        .ph-signage { background: linear-gradient(135deg, #fde8e8 0%, #f5d4d4 100%); }

        @media (max-width: 900px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 550px) {
            .product-grid { grid-template-columns: 1fr; }
            .product-image { height: 200px; }
        }


/* ─── PAGE: Loyalty ─── */

        /* Hero welcome card (matches tonight-card style) */
        .loyalty-hero-card {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 48px;
        }
        .loyalty-hero-content {
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .loyalty-hero-badge {
            display: inline-block;
            background: #e8f5e9;
            color: #2a8c4a;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 4px 12px;
            border-radius: 4px;
            margin-bottom: 12px;
            align-self: flex-start;
        }
        .loyalty-hero-content h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .loyalty-hero-content p {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .loyalty-hero-actions {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .loyalty-hero-visual {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
        }
        .loyalty-card-mini {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 14px;
            padding: 20px;
            width: 100%;
            max-width: 260px;
        }
        .loyalty-card-mini-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .loyalty-tier-badge {
            background: rgba(155, 89, 182, 0.2);
            color: #c39bd3;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 3px 10px;
            border-radius: 10px;
            border: 1px solid rgba(155, 89, 182, 0.3);
        }

        /* 3-step cards */
        .loyalty-steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 48px;
        }
        .loyalty-step-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px 20px;
            text-align: center;
            position: relative;
        }
        .loyalty-step-number {
            position: absolute;
            top: 10px;
            left: 12px;
            font-size: 10px;
            font-weight: 700;
            color: var(--text-light);
            background: var(--border-light);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .loyalty-step-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }
        .loyalty-step-card h3 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
        }
        .loyalty-step-card p {
            font-size: 12px;
            color: var(--text-mid);
            line-height: 1.6;
        }

        /* Rewards list */
        .loyalty-rewards-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .loyalty-reward-card {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 18px 20px;
            transition: all 0.2s;
        }
        .loyalty-reward-card:hover {
            border-color: var(--blue);
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(0, 109, 164, 0.08);
        }
        .loyalty-reward-coming {
            opacity: 0.6;
            border-style: dashed;
        }
        .loyalty-reward-coming:hover {
            opacity: 0.7;
            border-color: var(--border);
            transform: none;
            box-shadow: none;
        }
        .loyalty-reward-icon {
            font-size: 32px;
            flex-shrink: 0;
            width: 50px;
            text-align: center;
        }
        .loyalty-reward-info {
            flex: 1;
            min-width: 0;
        }
        .loyalty-reward-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 3px;
        }
        .loyalty-reward-desc {
            font-size: 12px;
            color: var(--text-mid);
            line-height: 1.5;
        }
        .loyalty-reward-pts {
            text-align: center;
            flex-shrink: 0;
            padding: 8px 14px;
            background: var(--white-pure);
            border: 1px dashed var(--border);
            border-radius: 8px;
        }
        .loyalty-reward-pts-num {
            font-size: 22px;
            font-weight: 700;
            color: var(--caliente);
            line-height: 1;
        }
        .loyalty-reward-pts-label {
            font-size: 8px;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 2px;
        }

        /* Perks grid */
        .loyalty-perks-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .loyalty-perk {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
        }
        .loyalty-perk-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }
        .loyalty-perk-icon.purple { background: #f3e8f9; color: #9B59B6; }
        .loyalty-perk-icon.green { background: #e8f5e9; color: #2a8c4a; }
        .loyalty-perk-icon.blue { background: var(--blue-light); color: var(--blue); }
        .loyalty-perk-icon.orange { background: #fff3e0; color: #E67E22; }
        .loyalty-perk strong {
            display: block;
            font-size: 13px;
            color: var(--text-dark);
            margin-bottom: 2px;
        }
        .loyalty-perk span {
            font-size: 12px;
            color: var(--text-mid);
            line-height: 1.5;
        }

        /* Points progress bar (logged in) */
        .loyalty-points-bar-wrap {
            margin-bottom: 16px;
        }
        .loyalty-points-bar {
            width: 100%;
            height: 12px;
            background: var(--border-light);
            border-radius: 6px;
            overflow: hidden;
            margin-bottom: 6px;
        }
        .loyalty-points-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--caliente), #E67E22);
            border-radius: 6px;
            transition: width 1s ease;
            min-width: 4px;
        }
        .loyalty-points-bar-labels {
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            color: var(--text-light);
        }
        .loyalty-points-bar-target {
            font-weight: 600;
            color: var(--text-mid);
        }

        /* Visit history (logged in) */
        .loyalty-visits {
            display: flex;
            flex-direction: column;
        }
        .loyalty-visit-row {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-light);
            font-size: 13px;
            gap: 12px;
        }
        .loyalty-visit-row:last-child { border-bottom: none; }
        .loyalty-visit-event {
            flex: 1;
            font-weight: 500;
            color: var(--text-dark);
        }
        .loyalty-visit-date {
            color: var(--text-light);
            font-size: 12px;
            flex-shrink: 0;
        }
        .loyalty-visit-pts {
            background: #e8f5e9;
            color: #2a8c4a;
            font-size: 10px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 10px;
            flex-shrink: 0;
        }

        /* Sidebar links */
        .loyalty-sidebar-link {
            display: flex;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
            text-decoration: none;
            transition: all 0.2s;
            align-items: center;
        }
        .loyalty-sidebar-link:hover {
            background: var(--bg-card);
            margin: 0 -8px;
            padding: 14px 8px;
            border-radius: 8px;
        }
        .loyalty-sidebar-icon {
            font-size: 24px;
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background: var(--bg-card);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .loyalty-sidebar-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.3;
        }
        .loyalty-sidebar-desc {
            font-size: 11px;
            color: var(--text-light);
        }
        .loyalty-sidebar-tier {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .loyalty-sidebar-tier:last-child { border-bottom: none; }
        .loyalty-sidebar-tier-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .loyalty-sidebar-tier-name {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-dark);
        }
        .loyalty-sidebar-tier-reward {
            font-size: 11px;
            color: var(--text-mid);
        }

        /* Keep loyalty card styles (logged in) */
        .loyalty-card {
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
            border-radius: 16px;
            padding: 28px;
            color: #e0e0e0;
            position: relative;
            overflow: hidden;
            margin-bottom: 28px;
        }
        .loyalty-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            pointer-events: none;
        }
        .loyalty-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .loyalty-card-logo { height: 40px; opacity: 0.9; }
        .loyalty-tier {
            background: rgba(155,89,182,0.2);
            color: #c39bd3;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 12px;
            border-radius: 12px;
            border: 1px solid rgba(155,89,182,0.3);
        }
        .loyalty-card-name { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
        .loyalty-card-number { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 2px; margin-bottom: 20px; }
        .loyalty-card-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
        .loyalty-points-display { font-size: 36px; font-weight: 700; color: #E67E22; line-height: 1; }
        .loyalty-points-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
        .loyalty-qr {
            width: 72px; height: 72px; background: #fff; border-radius: 8px;
            background-image:linear-gradient(45deg,#1a1a1a 25%,transparent 25%),linear-gradient(-45deg,#1a1a1a 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#1a1a1a 75%),linear-gradient(-45deg,transparent 75%,#1a1a1a 75%);
            background-size:8px 8px; background-position:0 0,0 4px,4px -4px,-4px 0px;
        }

        /* Wallet buttons */
        .wallet-buttons { display: flex; gap: 12px; margin-bottom: 16px; }
        .wallet-btn {
            flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
            padding: 12px 16px; border-radius: 10px; font-size: 12px; font-weight: 600;
            text-decoration: none; cursor: pointer; transition: all 0.2s; border: none;
        }
        .wallet-btn.apple { background: #000; color: #fff; }
        .wallet-btn.apple:hover { background: #222; }
        .wallet-btn.google { background: var(--white-pure); color: var(--text-dark); border: 1px solid var(--border); }
        .wallet-btn.google:hover { border-color: var(--blue); }
        .resend-links { display: flex; gap: 16px; justify-content: center; }
        .resend-links a { font-size: 12px; color: var(--blue); text-decoration: none; }
        .resend-links a:hover { text-decoration: underline; }

        /* Dev toggle + Toast */
        .dev-toggle { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px dashed var(--border-light); }
        .dev-toggle button { background: none; border: 1px dashed var(--border); color: var(--text-light); font-size: 11px; padding: 6px 16px; border-radius: 6px; cursor: pointer; }
        .dev-toggle button:hover { color: var(--text-mid); border-color: var(--text-light); }
        .toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--text-dark); color: var(--white-pure); padding: 12px 24px; border-radius: 10px; font-size: 13px; font-weight: 500; opacity: 0; transition: all 0.3s; z-index: 200; }
        .toast.visible { transform: translateX(-50%) translateY(0); opacity: 1; }

        @media (max-width: 768px) {
            .loyalty-hero-card { grid-template-columns: 1fr; }
            .loyalty-hero-visual { min-height: 200px; }
            .loyalty-steps-grid { grid-template-columns: 1fr; }
            .loyalty-perks-grid { grid-template-columns: 1fr; }
            .wallet-buttons { flex-direction: column; }
        }


/* ─── PAGE: Props (props.html) ─── */

        .props-hero {
            text-align: center;
            padding: 48px 0 32px;
        }
        .props-hero .page-heading { font-size: 38px; }
        .props-hero .page-subtext { margin: 8px auto 0; text-align: center; }

        .set-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }
        .set-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.2s;
        }
        .set-card:hover {
            border-color: var(--blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 109, 164, 0.08);
        }
        .set-placeholder {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }
        .set-body {
            padding: 20px;
        }
        .set-body h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .set-body p {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.5;
        }
        .set-tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 3px 8px;
            border-radius: 4px;
            margin-top: 8px;
        }
        .set-tag-cinemini { background: var(--blue-light); color: var(--blue-dark); }
        .set-tag-vintage { background: #e8f5e9; color: #2a6e3f; }
        .set-tag-miniature { background: #f3e8f9; color: #7b2d9e; }
        .set-tag-wardrobe { background: #fff3e0; color: #b35900; }

        /* Aviary section */
        .aviary-card {
            display: flex;
            gap: 24px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 40px;
            align-items: center;
        }
        .aviary-icon { font-size: 56px; flex-shrink: 0; }
        .aviary-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .aviary-card p {
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.6;
        }

        @media (max-width: 700px) {
            .set-grid { grid-template-columns: 1fr; }
            .props-hero .page-heading { font-size: 28px; }
            .aviary-card { flex-direction: column; text-align: center; }
        }
        @media (max-width: 900px) and (min-width: 701px) {
            .set-grid { grid-template-columns: repeat(2, 1fr); }
        }


/* ─── PAGE: Filming (filming.html) ─── */

        .filming-hero {
            text-align: center;
            padding: 48px 0 32px;
        }
        .filming-hero .page-heading { font-size: 38px; }
        .filming-hero .page-subtext { margin: 8px auto 0; text-align: center; }

        .space-list {
            margin-bottom: 40px;
        }
        .space-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 12px;
            transition: all 0.2s;
        }
        .space-item:hover {
            border-color: var(--blue);
        }
        .space-item-icon {
            font-size: 32px;
            flex-shrink: 0;
        }
        .space-item h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
        }
        .space-item p {
            font-size: 13px;
            color: var(--text-mid);
        }
        .space-item .space-size {
            font-size: 12px;
            font-weight: 600;
            color: var(--blue);
            margin-left: auto;
            white-space: nowrap;
        }

        .productions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 40px;
        }
        .production-badge {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }
        .production-badge .prod-icon {
            font-size: 28px;
            margin-bottom: 8px;
        }
        .production-badge h4 {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
        }
        .production-badge p {
            font-size: 11px;
            color: var(--text-mid);
            margin-top: 2px;
        }

        @media (max-width: 600px) {
            .filming-hero .page-heading { font-size: 28px; }
            .productions-grid { grid-template-columns: 1fr; }
            .space-item { flex-direction: column; text-align: center; gap: 8px; }
            .space-item .space-size { margin-left: 0; }
        }


/* ─── PAGE: Media (media.html) ─── */

        .media-hero {
            text-align: center;
            padding: 48px 0 32px;
        }
        .media-hero .page-heading { font-size: 38px; }
        .media-hero .page-subtext { margin: 8px auto 0; text-align: center; }

        .press-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }

        .insta-section {
            margin-bottom: 40px;
        }
        .insta-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
            margin-bottom: 16px;
        }
        .insta-placeholder {
            aspect-ratio: 1;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        .insta-cta {
            text-align: center;
        }
        .insta-cta a {
            color: var(--blue);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
        }
        .insta-cta a:hover { text-decoration: underline; }
        .insta-cta .follower-count {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 4px;
        }

        .press-kit-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 32px;
            text-align: center;
        }
        .press-kit-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .press-kit-card p {
            font-size: 13px;
            color: var(--text-mid);
            margin-bottom: 16px;
        }

        @media (max-width: 700px) {
            .media-hero .page-heading { font-size: 28px; }
            .press-grid { grid-template-columns: 1fr; }
            .insta-grid { grid-template-columns: repeat(3, 1fr); }
        }


/* ─── PAGE: Bar (bar.html) ─── */

        .bar-hero {
            text-align: center;
            padding: 60px 24px 40px;
        }
        .bar-hero .page-heading {
            color: #fff;
            text-shadow: 0 2px 12px rgba(0,0,0,0.5);
            font-size: 38px;
        }
        .bar-hero .page-subtext {
            color: rgba(255,255,255,0.9);
            text-shadow: 0 1px 6px rgba(0,0,0,0.4);
            margin: 8px auto 0;
        }
        .bar-hero .page-heading { font-size: 38px; }
        .bar-hero .page-subtext { margin: 8px auto 0; text-align: center; }

        .two-bars {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 40px;
        }
        .bar-card {
            border-radius: 16px;
            padding: 32px;
            border: 1px solid var(--border);
        }
        .bar-card-cocktail {
            background: linear-gradient(135deg, #fde8e8 0%, #f5d4d4 100%);
        }
        .bar-card-wellness {
            background: linear-gradient(135deg, #e8f5e9 0%, #d4ecd6 100%);
        }
        .bar-card-icon { font-size: 40px; margin-bottom: 12px; }
        .bar-card h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .bar-card p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
        }
        .bar-card .partner-tag {
            display: inline-block;
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 4px 10px;
            border-radius: 4px;
            margin-top: 12px;
            background: rgba(0,0,0,0.06);
            color: var(--text-mid);
        }

        /* ─── MENU GRID LAYOUTS ─── */
        .menu-grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }
        .menu-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }
        .bar-menu-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
        }
        .bar-menu-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--caliente);
        }
        .bar-menu-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .bar-menu-card li {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 8px;
            font-size: 13px;
            color: var(--text-mid);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .bar-menu-card li:last-child { border-bottom: none; }
        .drink-name {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 13px;
        }
        .drink-desc {
            font-size: 11px;
            color: var(--text-light);
            line-height: 1.3;
            margin-top: 2px;
        }
        .drink-detail {
            font-size: 10px;
            color: var(--text-light);
            font-weight: 400;
        }
        .drink-price {
            font-size: 13px;
            font-weight: 600;
            color: var(--blue);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .menu-note {
            font-size: 13px;
            color: var(--blue);
            font-weight: 600;
            margin-bottom: 16px;
            text-align: center;
        }

        .events-bar-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px;
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 24px;
        }
        .events-bar-card .ev-icon { font-size: 36px; flex-shrink: 0; }
        .events-bar-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .events-bar-card p {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.5;
        }

        @media (max-width: 700px) {
            .bar-hero .page-heading { font-size: 28px; }
            .two-bars { grid-template-columns: 1fr; }
            .menu-grid-2 { grid-template-columns: 1fr; }
            .menu-grid-3 { grid-template-columns: 1fr; }
            .events-bar-card { flex-direction: column; text-align: center; }
        }


/* ─── PAGE: Wellness (wellness.html) ─── */

        .wellness-hero {
            text-align: center;
            padding: 60px 24px 40px;
        }
        .wellness-hero .page-heading {
            color: #fff;
            text-shadow: 0 2px 12px rgba(0,0,0,0.5);
            font-size: 38px;
        }
        .wellness-hero .page-subtext {
            color: rgba(255,255,255,0.9);
            text-shadow: 0 1px 6px rgba(0,0,0,0.4);
            margin: 8px auto 0;
        }
        .wellness-hero .page-heading { font-size: 38px; }
        .wellness-hero .page-subtext { margin: 8px auto 0; text-align: center; }

        .wellness-intro {
            background: linear-gradient(135deg, #e8f5e9 0%, #d4ecd6 100%);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 36px;
            margin-bottom: 40px;
            text-align: center;
        }
        .wellness-intro .intro-icon { font-size: 48px; margin-bottom: 12px; }
        .wellness-intro h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        .wellness-intro p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }
        .wellness-intro .partner-badge {
            display: inline-block;
            margin-top: 16px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(0,0,0,0.06);
            color: var(--text-mid);
        }

        /* ─── MENU GRID LAYOUTS ─── */
        .menu-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }
        .wellness-menu-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
        }
        .wellness-menu-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--caliente);
        }
        .wellness-menu-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }
        .wellness-menu-card li {
            font-size: 13px;
            color: var(--text-mid);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 8px;
        }
        .wellness-menu-card li:last-child { border-bottom: none; }

        .wellness-events {
            margin-bottom: 40px;
        }
        .wellness-event-card {
            display: flex;
            gap: 20px;
            align-items: center;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 12px;
            transition: all 0.2s;
        }
        .wellness-event-card:hover {
            border-color: var(--blue);
        }
        .wellness-event-card .we-icon { font-size: 32px; flex-shrink: 0; }
        .wellness-event-card h3 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
        }
        .wellness-event-card p {
            font-size: 13px;
            color: var(--text-mid);
            line-height: 1.5;
        }
        .wellness-event-card .event-label {
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--blue);
            margin-bottom: 4px;
        }

        @media (max-width: 700px) {
            .wellness-hero .page-heading { font-size: 28px; }
            .menu-grid-3 { grid-template-columns: 1fr; }
            .wellness-event-card { flex-direction: column; text-align: center; }
        }


/* ─── PAGE: Cafe (cafe.html) ─── */

        .cafe-hero {
            text-align: center;
            padding: 60px 24px 40px;
        }
        .cafe-hero .page-heading {
            color: #fff;
            text-shadow: 0 2px 12px rgba(0,0,0,0.5);
            font-size: 38px;
        }
        .cafe-hero .page-subtext {
            color: rgba(255,255,255,0.9);
            text-shadow: 0 1px 6px rgba(0,0,0,0.4);
            margin: 8px auto 0;
        }
        .cafe-hero .page-heading { font-size: 38px; }
        .cafe-hero .page-subtext { margin: 8px auto 0; text-align: center; }

        .experience-card {
            background: linear-gradient(135deg, #f5e8e8 0%, #e8dcd0 100%);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 36px;
            margin-bottom: 40px;
            display: flex;
            gap: 24px;
            align-items: center;
        }
        .experience-icon { font-size: 64px; flex-shrink: 0; }
        .experience-card h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .experience-card p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 40px;
        }
        .menu-card .menu-icon {
            font-size: 24px;
            margin-bottom: 8px;
        }
        .menu-price {
            font-size: 11px;
            color: var(--text-light);
            font-style: italic;
        }

        .hours-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 28px;
            margin-bottom: 24px;
            display: flex;
            gap: 24px;
            align-items: center;
        }
        .hours-card .hours-icon { font-size: 36px; flex-shrink: 0; }
        .hours-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .hours-card p {
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.6;
        }

        @media (max-width: 600px) {
            .cafe-hero .page-heading { font-size: 28px; }
            .menu-grid { grid-template-columns: 1fr; }
            .experience-card { flex-direction: column; text-align: center; }
            .hours-card { flex-direction: column; text-align: center; }
        }
/* ─── Photo Gallery ─── */
.hph-gallery-section {
    margin: 40px 0;
}
.hph-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.hph-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hph-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.hph-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.hph-gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
}
@media (max-width: 600px) {
    .hph-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .hph-gallery-item img {
        height: 140px;
    }
}
