        @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Manrope:wght@300;400;600&display=swap');

        :root {
            --bg-dark: #0f0f11;
            --bg-card: #1a1a1c;
            --gold: #bf9b58;
            --gold-light: #e5cca0;
            --text-main: #e0e0e0;
            --text-muted: #888888;
            --shadow-elevation: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
            --shadow-inset: inset 2px 2px 5px rgba(0,0,0,0.5), inset -2px -2px 5px rgba(255,255,255,0.05);
            --texture: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E");
        }

        * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: 'Manrope', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: "";
            position: fixed;
            top: 44%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: min(105vw, 520px);
            height: min(105vw, 520px);
            max-height: 72vh;
            background: url("logo.png") center center no-repeat;
            background-size: contain;
            opacity: 0.07;
            pointer-events: none;
            z-index: 0;
        }

        /* Texture Overlay Global */
        body::after {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: var(--texture);
            pointer-events: none;
            z-index: 9999;
            opacity: 0.6;
        }

        /* --- CONTAINER --- */
        .app-container {
            padding: 25px;
            padding-bottom: 100px; /* Space for floating player */
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 25px;
            position: relative;
            z-index: 1;
        }

        /* --- HEADER --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 10px;
        }
        .brand {
            display: flex;
            align-items: center;
        }
        .brand img {
            height: 56px;
            width: auto;
            display: block;
        }
        .header-right {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .lang-flags {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            backdrop-filter: blur(6px);
        }
        .lang-flag {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 30px;
            padding: 0;
            border: none;
            border-radius: 14px;
            background: transparent;
            font-size: 1.05rem;
            line-height: 1;
            cursor: pointer;
            opacity: 0.45;
            filter: grayscale(0.35);
            transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, filter 0.25s ease;
        }
        .lang-flag:hover {
            opacity: 0.85;
            filter: grayscale(0);
        }
        .lang-flag.active {
            opacity: 1;
            filter: grayscale(0);
            background: rgba(191, 155, 88, 0.18);
            box-shadow: inset 0 0 0 1px rgba(191, 155, 88, 0.35);
        }

        /* --- HERO CARD (Room) --- */
        .hero-card {
            position: relative;
            background: linear-gradient(160deg, color-mix(in srgb, var(--hero-gradient-start, #252528) 72%, transparent) 0%, color-mix(in srgb, var(--hero-gradient-end, #151517) 68%, transparent) 100%);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 24px;
            padding: 30px;
            box-shadow: var(--shadow-elevation);
            border: 1px solid rgba(255,255,255,0.05);
            overflow: hidden;
        }
        .hero-card--interactive {
            cursor: pointer;
            transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
        }
        .hero-card--interactive:hover {
            border-color: rgba(191, 155, 88, 0.22);
            transform: translateY(-1px);
        }
        .hero-card--interactive:active {
            transform: scale(0.995);
        }
        .hero-card-cue {
            position: absolute;
            right: 18px;
            bottom: 18px;
            font-size: 0.75rem;
            color: var(--gold);
            opacity: 0.35;
            pointer-events: none;
            transition: opacity 0.25s ease, transform 0.25s ease;
        }
        .hero-card--interactive:hover .hero-card-cue {
            opacity: 0.7;
            transform: translateX(2px);
        }
        .hero-card::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, color-mix(in srgb, var(--gold) 18%, transparent) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .welcome-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            line-height: 1.1;
            margin-bottom: 10px;
            font-style: italic;
            color: var(--white);
        }
        .room-name {
            font-family: 'Cinzel', serif;
            font-size: 0.72rem;
            letter-spacing: 3px;
            color: var(--gold);
            margin-bottom: 18px;
            text-transform: uppercase;
            opacity: 0.85;
        }
        .remote-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
            margin-bottom: 18px;
            pointer-events: none;
        }
        .remote-title {
            font-family: 'Cinzel', serif;
            font-size: 1.15rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 0;
            background: linear-gradient(120deg, rgba(191,155,88,0.2), rgba(229,204,160,0.9), rgba(191,155,88,0.2));
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: remoteGlow 3.5s ease-in-out infinite;
        }
        .remote-info-icon {
            font-size: 0.9rem;
            color: var(--gold);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .remote-title-wrapper:hover .remote-info-icon {
            opacity: 1;
            transform: scale(1.1);
        }
        @keyframes remoteGlow {
            0% {
                background-position: 200% 0;
                text-shadow: 0 0 8px rgba(229,204,160,0.15);
            }
            50% {
                background-position: 0% 0;
                text-shadow: 0 0 18px rgba(229,204,160,0.35);
            }
            100% {
                background-position: 200% 0;
                text-shadow: 0 0 8px rgba(229,204,160,0.15);
            }
        }
        
        .btn-history {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 4px;
            background: rgba(191, 155, 88, 0.08);
            border: 1px solid rgba(191, 155, 88, 0.35);
            color: var(--gold-light);
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            font-family: 'Cinzel', serif;
        }
        .btn-history::before {
            content: '\f02d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.75rem;
            opacity: 0.85;
        }
        .btn-history:hover {
            background: rgba(191, 155, 88, 0.16);
            border-color: var(--gold);
            color: var(--gold);
        }
        .btn-history:active {
            background: var(--gold);
            color: var(--bg-dark);
        }

        /* --- MAJORDOME GRID (Direct Access) --- */
        .section-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin-left: 5px;
            margin-bottom: -10px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .service-btn {
            background: rgba(18, 18, 20, 0.38);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: none;
            border-radius: 20px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--text-main);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.1s, box-shadow 0.1s, background 0.3s;
            cursor: pointer;
            position: relative;
        }
        .service-btn::after {
            content: ''; position: absolute; inset: 0; border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .service-btn:active {
            transform: scale(0.96);
            box-shadow: var(--shadow-inset);
        }
        .service-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
            filter: grayscale(0.6);
        }
        .service-btn.disabled i {
            opacity: 0.5;
        }
        .service-btn.disabled .service-label,
        .service-btn.disabled .service-sub {
            opacity: 0.6;
        }
        .service-btn-danger {
            background: linear-gradient(140deg, rgba(43, 22, 22, 0.75) 0%, rgba(26, 13, 13, 0.75) 100%);
            backdrop-filter: blur(10px);
            box-shadow: 0 6px 18px rgba(139,0,0,0.45);
        }
        .service-btn-danger::after {
            border-color: rgba(255,150,150,0.2);
        }
        .service-btn-wide {
            grid-column: 1 / -1;
        }
        .service-btn i {
            font-size: 1.5rem;
            color: var(--gold-light);
            margin-bottom: 5px;
        }
        .service-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }
        .service-label {
            font-size: 0.8rem;
            font-weight: 500;
        }
        .service-sub {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* --- GUIDE BUTTON (Full Width) --- */
        .guide-trigger {
            background: url('https://images.unsplash.com/photo-1535959160361-901934430fdb?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') center/cover;
            height: 120px;
            border-radius: 24px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-elevation);
            cursor: pointer;
            overflow: hidden;
        }
        .guide-trigger::before {
            content: ''; position: absolute; inset: 0;
            background: rgba(0,0,0,0.5);
            transition: background 0.3s;
        }
        .guide-trigger:active::before { background: rgba(0,0,0,0.3); }
        
        .guide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px;
            border-radius: 999px;
            background: rgba(0,0,0,0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.12);
        }
        .guide-content i {
            color: var(--gold-light);
            font-size: 1rem;
        }
        .guide-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: #fff;
        }
        .guide-sub {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold);
            margin-top: 5px;
        }

        /* --- WIFI TOGGLE --- */
        .wifi-toggle {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 15px 18px;
            border-radius: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
            gap: 12px;
        }
        .wifi-toggle.revealed {
            background: rgba(191, 155, 88, 0.1);
            border-color: var(--gold);
        }
        .wifi-label { 
            font-size: 0.8rem; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .wifi-text {
            display: flex;
            flex-direction: column;
        }
        .wifi-main {
            font-size: 0.8rem;
        }
        .wifi-sub {
            font-size: 0.7rem;
            color: var(--text-muted);
        }
        .wifi-code { 
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s;
        }
        .wifi-code img {
            width: 48px;
            height: 48px;
            display: block;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .wifi-toggle.revealed .wifi-code { opacity: 1; transform: translateX(0); }
        .wifi-toggle.revealed .wifi-icon { color: var(--gold); }

        /* --- FLOATING MUSIC MACARON --- */
        .music-fab {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: #111;
            border: 2px solid var(--gold);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            overflow: hidden;
        }
        .vinyl-grooves {
            position: absolute;
            width: 100%; height: 100%;
            background: repeating-radial-gradient(
              #111 0, 
              #111 2px, 
              #222 3px, 
              #222 4px
            );
            border-radius: 50%;
            opacity: 0.6;
        }
        .fab-icon {
            position: relative;
            z-index: 2;
            color: var(--gold);
            font-size: 1.2rem;
        }
        /* Animation Rotation */
        @keyframes spin { 100% { transform: rotate(360deg); } }
        .music-fab.playing .vinyl-grooves {
            animation: spin 4s linear infinite;
        }

        /* --- MODALS (Full Screen Overlay) --- */
        .modal-wrapper {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 2000;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        
        .modal-backdrop {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(8px);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .modal-panel {
            background: rgba(20, 20, 20, 0.85);
            backdrop-filter: blur(20px);
            width: 100%;
            height: 85vh;
            border-radius: 30px 30px 0 0;
            padding: 30px;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow-y: auto;
            border-top: 1px solid var(--gold);
            box-shadow: 0 -10px 50px rgba(0,0,0,0.8);
        }

        .modal-wrapper.active { pointer-events: all; }
        .modal-wrapper.active .modal-backdrop { opacity: 1; }
        .modal-wrapper.active .modal-panel { transform: translateY(0); }

        /* Modal Typography */
        .modal-header { text-align: center; margin-bottom: 30px; }
        .modal-title {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        .reception-notice {
            background: rgba(191, 155, 88, 0.1);
            border: 1px solid rgba(191, 155, 88, 0.3);
            border-radius: 8px;
            padding: 12px 16px;
            margin-bottom: 25px;
            text-align: center;
            font-size: 0.85rem;
            color: var(--gold-light);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .reception-notice i {
            color: var(--gold);
        }
        .modal-close-btn {
            position: absolute;
            top: 20px; right: 20px;
            background: rgba(255,255,255,0.1);
            border: none;
            width: 35px; height: 35px;
            border-radius: 50%;
            color: #fff;
            cursor: pointer;
            z-index: 10;
            pointer-events: auto;
            transition: all 0.3s ease;
        }
        .modal-close-btn:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.1);
        }

        /* Content Styling inside Modals */
        .story-block {
            margin-bottom: 35px;
            border-left: 3px solid var(--gold);
            padding-left: 25px;
            padding-top: 5px;
            padding-bottom: 5px;
            transition: all 0.3s ease;
        }
        .story-block:hover {
            border-left-color: var(--gold-light);
            padding-left: 30px;
        }
        .story-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            color: var(--gold-light);
            margin-bottom: 15px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .story-text {
            font-size: 1rem;
            line-height: 1.9;
            color: #d0d0d0;
            font-weight: 300;
        }
        .story-text p {
            margin-bottom: 18px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        .story-text p:hover {
            padding-left: 8px;
            border-bottom-color: rgba(191, 155, 88, 0.2);
        }
        .story-text p:last-child {
            border-bottom: none;
        }
        .story-text strong {
            color: var(--gold-light);
            font-weight: 500;
            font-size: 1.05em;
        }
        .story-text strong a {
            color: var(--gold-light) !important;
            text-decoration: underline !important;
            text-decoration-style: solid !important;
            text-decoration-color: rgba(191, 155, 88, 0.8) !important;
            text-underline-offset: 4px;
            transition: all 0.3s ease;
            cursor: pointer !important;
            font-weight: 500;
            position: relative;
            pointer-events: auto !important;
            display: inline-block;
            padding: 2px 0;
        }
        .story-text strong a:hover {
            color: var(--gold) !important;
            text-decoration-color: var(--gold) !important;
            text-shadow: 0 0 12px rgba(191, 155, 88, 0.6);
            transform: translateY(-1px);
        }
        .story-text strong a::after {
            content: ' 📍';
            font-size: 0.9em;
            opacity: 1;
            display: inline-block;
            margin-left: 4px;
            vertical-align: middle;
        }
        .story-text em {
            display: none; /* Cache les mentions "Cliquez pour..." */
        }
        .story-text a {
            color: var(--gold-light);
            text-decoration: underline;
            text-decoration-color: rgba(191, 155, 88, 0.6);
            text-underline-offset: 3px;
            transition: all 0.3s ease;
            cursor: pointer;
            font-weight: 500;
            position: relative;
        }
        .story-text a:hover {
            color: var(--gold);
            text-decoration-color: var(--gold);
            text-shadow: 0 0 8px rgba(191, 155, 88, 0.4);
        }
        .story-text a::after {
            content: ' 📍';
            font-size: 0.9em;
            opacity: 0.8;
            display: inline-block;
        }
        
        /* Lieu avec icône Maps visible */
        .place-name {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }
        .place-name::before {
            content: '📍';
            font-size: 1.1em;
            display: inline-block;
            transition: transform 0.3s ease;
        }
        .place-name:hover {
            color: var(--gold) !important;
            text-shadow: 0 0 8px rgba(191, 155, 88, 0.4);
        }
        .place-name:hover::before {
            transform: scale(1.2);
        }

        /* Accordéons pour le guide */
        .guide-category {
            margin-bottom: 15px;
            border: 1px solid rgba(191, 155, 88, 0.15);
            border-radius: 16px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.25);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        .guide-category:hover {
            border-color: rgba(191, 155, 88, 0.35);
            background: rgba(0, 0, 0, 0.35);
            box-shadow: 0 4px 12px rgba(191, 155, 88, 0.1);
        }
        .guide-category-header {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(191, 155, 88, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            user-select: none;
        }
        .guide-category-header:hover {
            background: rgba(191, 155, 88, 0.12);
        }
        .guide-category-header.active {
            background: rgba(191, 155, 88, 0.18);
            border-bottom: 1px solid rgba(191, 155, 88, 0.2);
        }
        .guide-category-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--gold);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: 0.3px;
        }
        .guide-category-icon {
            color: var(--gold);
            font-size: 0.9rem;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.8;
        }
        .guide-category-header:hover .guide-category-icon {
            opacity: 1;
        }
        .guide-category-header.active .guide-category-icon {
            transform: rotate(180deg);
            opacity: 1;
        }
        .guide-category-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .guide-category-content.active {
            max-height: 3000px;
        }
        .guide-category-inner {
            padding: 24px;
        }

        /* Sous-accordéons pour les quartiers */
        .guide-subcategory {
            margin-bottom: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }
        .guide-subcategory:hover {
            border-color: rgba(191, 155, 88, 0.25);
            background: rgba(0, 0, 0, 0.2);
        }
        .guide-subcategory-header {
            padding: 14px 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
            user-select: none;
        }
        .guide-subcategory-header:hover {
            background: rgba(191, 155, 88, 0.08);
        }
        .guide-subcategory-header.active {
            background: rgba(191, 155, 88, 0.12);
        }
        .guide-subcategory-title {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--gold-light);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .guide-subcategory-icon {
            color: var(--gold-light);
            font-size: 0.75rem;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.7;
        }
        .guide-subcategory-header:hover .guide-subcategory-icon {
            opacity: 1;
        }
        .guide-subcategory-header.active .guide-subcategory-icon {
            transform: rotate(180deg);
            opacity: 1;
        }
        .guide-subcategory-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .guide-subcategory-content.active {
            max-height: 2000px;
        }
        .guide-subcategory-inner {
            padding: 18px 20px;
        }

        /* Style Bento Box pour les lieux */
        .guide-places-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
            margin-top: 12px;
        }
        .guide-place-card {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(191, 155, 88, 0.15);
            border-radius: 14px;
            padding: 18px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .guide-place-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, rgba(191, 155, 88, 0.6), rgba(191, 155, 88, 0.2));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .guide-place-card:hover {
            background: rgba(0, 0, 0, 0.4);
            border-color: rgba(191, 155, 88, 0.35);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(191, 155, 88, 0.15);
        }
        .guide-place-card:hover::before {
            transform: scaleX(1);
        }
        .guide-place-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.4;
        }
        .guide-place-name a {
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .guide-place-name a:hover {
            color: var(--gold-light);
            text-shadow: 0 0 8px rgba(191, 155, 88, 0.4);
        }
        .guide-place-name a::before {
            content: '📍';
            font-size: 0.9em;
            margin-right: 6px;
        }
        .guide-place-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 10px;
        }
        .guide-place-info {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .guide-place-info strong {
            color: var(--gold-light);
            font-weight: 500;
        }
        .quote {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--gold-light);
            text-align: center;
            margin: 30px 0;
        }

        /* Image Mick Jagger dans l'histoire */
        .history-image-wrapper {
            margin: 0 auto 25px auto;
            border-radius: 22px;
            overflow: hidden;
            max-width: 100%;
            box-shadow: var(--shadow-elevation);
            border: 1px solid rgba(255,255,255,0.08);
        }
        .history-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Bouton Play Flottant */
        .play-fab {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gold);
            border: 3px solid rgba(255,255,255,0.2);
            box-shadow: 0 10px 30px rgba(191, 155, 88, 0.5), 0 0 0 0 rgba(191, 155, 88, 0.7);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: pulse-gold 2s ease-in-out infinite;
        }
        @keyframes pulse-gold {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(191, 155, 88, 0.5), 0 0 0 0 rgba(191, 155, 88, 0.7);
            }
            50% {
                box-shadow: 0 10px 30px rgba(191, 155, 88, 0.7), 0 0 0 10px rgba(191, 155, 88, 0);
            }
        }
        .play-fab:hover {
            transform: scale(1.1);
            background: var(--gold-light);
            box-shadow: 0 15px 40px rgba(191, 155, 88, 0.6), 0 0 0 5px rgba(191, 155, 88, 0.3);
        }
        .play-fab:active {
            transform: scale(0.95);
        }
        .play-fab i {
            color: var(--bg-dark);
            font-size: 1.8rem;
            margin-left: 4px; /* Ajustement visuel pour centrer le triangle play */
        }

        /* Modal Vidéo */
        .video-modal-wrapper {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 2001;
            pointer-events: none;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        .video-modal-backdrop {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .video-modal-panel {
            background: var(--bg-card);
            width: 100%;
            max-width: 1200px;
            max-height: 90vh;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            transform: scale(0.9) translateY(30px);
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            border: 2px solid var(--gold);
            box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(191, 155, 88, 0.3);
            padding: 2rem;
            padding-top: 3.5rem;
        }

        .video-modal-wrapper.active {
            display: flex;
            pointer-events: all;
        }
        .video-modal-wrapper.active .video-modal-backdrop { opacity: 1; }
        .video-modal-wrapper.active .video-modal-panel { transform: scale(1) translateY(0); }

        .video-modal-close {
            position: absolute;
            top: 16px; right: 16px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            width: 40px; height: 40px;
            border-radius: 50%;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 10;
        }
        .video-modal-close:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--bg-dark);
            transform: rotate(90deg);
        }

        .video-modal-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        .video-modal-title {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }
        .video-modal-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-elevation);
            border: 1px solid rgba(255,255,255,0.1);
            background: #000;
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* --- REMOTE INTRO MODAL --- */
        .remote-intro-panel {
            max-width: 900px;
            margin: 0 auto;
            height: auto;
            max-height: 90vh;
            position: relative;
        }
        .remote-intro-panel .modal-close-btn {
            z-index: 1000;
            pointer-events: auto !important;
        }

        .remote-intro-content {
            animation: fadeInUp 0.6s ease-out;
        }

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

        .remote-intro-header {
            text-align: center;
            margin-bottom: 2rem;
            animation: fadeInUp 0.6s ease-out 0.1s both;
        }

        .remote-intro-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, rgba(191, 155, 88, 0.2) 0%, rgba(191, 155, 88, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--gold);
            box-shadow: 0 8px 24px rgba(191, 155, 88, 0.3);
        }

        .remote-intro-icon i {
            font-size: 2rem;
            color: var(--gold);
        }

        .remote-intro-title {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
            letter-spacing: 2px;
        }

        .remote-intro-subtitle {
            font-size: 1rem;
            color: var(--text-muted);
            font-style: italic;
        }

        .remote-intro-description {
            text-align: center;
            margin-bottom: 2.5rem;
            padding: 0 1rem;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .remote-intro-description p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-main);
        }

        .remote-intro-description strong {
            color: var(--gold);
            font-weight: 500;
        }

        .remote-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .remote-feature-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease-out both;
            position: relative;
            overflow: hidden;
        }

        .remote-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .remote-feature-card:nth-child(1) { animation-delay: 0.3s; }
        .remote-feature-card:nth-child(2) { animation-delay: 0.4s; }
        .remote-feature-card:nth-child(3) { animation-delay: 0.5s; }
        .remote-feature-card:nth-child(4) { animation-delay: 0.6s; }
        .remote-feature-card:nth-child(5) { animation-delay: 0.7s; }
        .remote-feature-card:nth-child(6) { animation-delay: 0.8s; }
        .remote-feature-card:nth-child(7) { animation-delay: 0.9s; }
        .remote-feature-card:nth-child(8) { animation-delay: 1s; }
        .remote-feature-card:nth-child(9) { animation-delay: 1.1s; }

        .remote-feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(191, 155, 88, 0.3);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        }

        .remote-feature-card:hover::before {
            opacity: 1;
        }

        .remote-feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(191, 155, 88, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            border: 1px solid rgba(191, 155, 88, 0.2);
        }

        .remote-feature-icon i {
            font-size: 1.5rem;
            color: var(--gold);
        }

        .remote-feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 0.75rem;
            font-family: 'Cinzel', serif;
        }

        .remote-feature-desc {
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .remote-feature-desc strong {
            color: var(--gold-light);
            font-weight: 500;
        }

        .remote-feature-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(191, 155, 88, 0.1);
            border: 1px solid rgba(191, 155, 88, 0.3);
            border-radius: 8px;
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .remote-feature-link:hover {
            background: rgba(191, 155, 88, 0.2);
            border-color: var(--gold);
            transform: translateX(5px);
        }

        .remote-feature-link i {
            transition: transform 0.3s;
        }

        .remote-feature-link:hover i {
            transform: translateX(5px);
        }

        .remote-intro-footer {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeInUp 0.6s ease-out 1.2s both;
        }

        .remote-intro-conclusion {
            font-size: 1rem;
            color: var(--text-main);
            font-style: italic;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        @media (max-width: 768px) {
            .remote-features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .remote-intro-title {
                font-size: 1.5rem;
            }

            .remote-intro-icon {
                width: 60px;
                height: 60px;
            }

            .remote-intro-icon i {
                font-size: 1.5rem;
            }
        }



/* --- Catalog cards (Rooftop / Hammam) --- */
.catalog-grid { gap: 14px; }
.catalog-card {
    display: flex; flex-direction: column; overflow: hidden;
    padding: 0 !important; border-radius: 14px;
}
.catalog-card-media {
    aspect-ratio: 4/3; background: #141416; overflow: hidden;
}
.catalog-card-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.catalog-card-media img.is-placeholder { object-fit: contain; padding: 18px; opacity: 0.55; }
.catalog-card-body { padding: 14px 16px 16px; }
.catalog-card-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.catalog-order-btn {
    margin-top: 12px; width: 100%; padding: 10px 14px;
    border: 1px solid rgba(191, 155, 88, 0.45); border-radius: 999px;
    background: rgba(191, 155, 88, 0.12); color: var(--gold-light);
    font-size: 0.78rem; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.2s, border-color 0.2s;
}
.catalog-order-btn:hover { background: rgba(191, 155, 88, 0.22); border-color: var(--gold); }


/* --- WEATHER COMPACT --- */
.weather-bento {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid color-mix(in srgb, var(--room-accent, var(--gold)) 14%, rgba(255,255,255,0.08));
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(37, 37, 40, 0.85) 0%, rgba(21, 21, 23, 0.92) 100%);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.weather-bento:hover {
    border-color: color-mix(in srgb, var(--gold) 40%, transparent);
    transform: translateY(-1px);
}
.weather-bento-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    min-height: 48px;
}
.weather-bento-now {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.weather-bento-icon {
    font-size: 1.15rem;
    color: var(--gold-light);
    line-height: 1;
    width: 22px;
    text-align: center;
}
.weather-bento-temp {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;
    color: var(--text-main);
}
.weather-bento-now-label {
    font-size: 0.62rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.weather-bento-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}
.weather-bento-tomorrow {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.weather-bento-tomorrow-label {
    font-size: 0.58rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
}
.weather-bento-tomorrow-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-main);
}
.weather-bento-tomorrow-day {
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: capitalize;
    min-width: 2.5rem;
}
.weather-bento-tomorrow-detail i {
    font-size: 0.9rem;
    color: var(--gold-light);
}
.weather-bento-tomorrow-temps {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.weather-bento-chevron {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.5;
    flex-shrink: 0;
    margin-left: auto;
}

/* --- WEATHER MODAL --- */
.weather-current {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}
.weather-current-temp {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold-light);
}
.weather-current-icon { font-size: 2.5rem; color: var(--gold); }
.weather-current-desc { font-size: 0.85rem; color: var(--text-muted); }
.weather-forecast {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.weather-day-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}
.weather-day-name {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.weather-day-icon { font-size: 1.4rem; color: var(--gold-light); margin-bottom: 8px; }
.weather-day-temps { display: flex; justify-content: center; gap: 10px; font-size: 0.85rem; }
.weather-temp-max { color: var(--text-main); font-weight: 600; }
.weather-temp-min { color: var(--text-muted); }

/* --- ROOM HISTORY (dynamic) --- */
.history-paragraph {
    margin: 0 0 1rem;
    line-height: 1.7;
    font-size: 0.92rem;
    color: var(--text-main);
}
.history-paragraph:first-child {
    font-size: 0.95rem;
}
.history-section-title {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}
.history-quote {
    margin: 1.25rem 0;
    padding: 14px 18px;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,0.03);
    border-radius: 0 10px 10px 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold-light);
}

/* --- PRACTICAL INFO --- */
.practical-essentials {
    display: block;
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(30, 30, 33, 0.9) 0%, rgba(18, 18, 20, 0.95) 100%);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}
.practical-essentials:hover {
    border-color: color-mix(in srgb, var(--gold) 35%, transparent);
    transform: translateY(-1px);
}
.essentials-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.essentials-head i:first-child { font-size: 0.85rem; }
.essentials-chevron { margin-left: auto; font-size: 0.6rem; opacity: 0.45; }
.essentials-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.essential-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    min-width: 0;
}
.essential-chip i { font-size: 0.9rem; color: var(--gold-light); flex-shrink: 0; }
.essential-chip small {
    display: block;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    line-height: 1.2;
}
.essential-chip strong { font-size: 0.78rem; color: var(--text-main); font-weight: 600; }
.essential-chip--warn {
    border-color: rgba(200, 80, 60, 0.25);
    background: rgba(120, 40, 30, 0.12);
}
.essential-chip--warn i { color: #e07a6a; }

.info-root { display: flex; flex-direction: column; gap: 14px; }
.info-block {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 14px 16px;
}
.info-block--alert {
    border-color: rgba(200, 80, 60, 0.3);
    background: rgba(80, 30, 25, 0.2);
}
.info-block--tip {
    border-color: rgba(191, 155, 88, 0.25);
    background: rgba(191, 155, 88, 0.06);
}
.info-block-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.info-block-head i { color: var(--gold); font-size: 0.95rem; width: 18px; text-align: center; }
.info-block-head h3 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}
.info-block-note, .info-alert-body, .info-tip-body {
    margin: 0 0 10px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
}
.info-alert-body { color: var(--text-main); }
.info-items { display: flex; flex-direction: column; gap: 8px; }
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    line-height: 1.45;
}
.info-item-icon { color: var(--gold); width: 16px; margin-top: 2px; flex-shrink: 0; font-size: 0.8rem; }
.info-item-label { color: var(--text-muted); }
.info-item-value { color: var(--text-main); }
.info-item-sep { color: var(--text-muted); opacity: 0.5; }

.info-ext-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.info-ext-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.info-ext-cell.is-current {
    border-color: color-mix(in srgb, var(--gold) 45%, transparent);
    background: rgba(191, 155, 88, 0.1);
}
.info-ext-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
}
.info-ext-name { font-size: 0.68rem; color: var(--text-muted); line-height: 1.3; }
.info-ext-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(191, 155, 88, 0.15);
    padding: 2px 6px;
    border-radius: 8px;
}

.info-price-table { display: flex; flex-direction: column; gap: 6px; }
.info-price-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}
.info-price-row:last-child { border-bottom: none; }
.info-price-val {
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
}

.info-schedule { display: flex; flex-direction: column; gap: 10px; }
.info-schedule-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.04);
}
.info-schedule-row.is-highlight {
    border-color: color-mix(in srgb, var(--gold) 30%, transparent);
    background: rgba(191, 155, 88, 0.08);
}
.info-schedule-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.info-schedule-left i { color: var(--gold); width: 16px; text-align: center; }
.info-schedule-meal { font-size: 0.82rem; font-weight: 600; color: var(--text-main); }
.info-schedule-right { text-align: right; min-width: 0; }
.info-schedule-time { display: block; font-size: 0.8rem; color: var(--gold-light); font-weight: 600; }
.info-schedule-note { display: block; font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; line-height: 1.35; }

.info-tours { display: flex; flex-direction: column; gap: 8px; }
.info-tour-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.04);
}
.info-tour-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(191, 155, 88, 0.15);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-tour-body { flex: 1; min-width: 0; }
.info-tour-name { display: block; font-size: 0.8rem; color: var(--text-main); line-height: 1.4; margin-bottom: 4px; }
.info-tour-price { font-size: 0.85rem; font-weight: 600; color: var(--gold-light); }

.reception-notice--spa {
    border-color: rgba(191, 155, 88, 0.25);
    background: rgba(191, 155, 88, 0.08);
}
.catalog-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    margin: 4px 0 6px;
    letter-spacing: 0.3px;
}

/* --- PRACTICAL INFO --- */
.practical-essentials {
    display: block;
    width: 100%;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(30, 30, 33, 0.9) 0%, rgba(18, 18, 20, 0.95) 100%);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}
.practical-essentials:hover {
    border-color: color-mix(in srgb, var(--gold) 35%, transparent);
    transform: translateY(-1px);
}
.essentials-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.essentials-head i:first-child { font-size: 0.85rem; }
.essentials-chevron { margin-left: auto; font-size: 0.6rem; opacity: 0.45; }
.essentials-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.essential-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    min-width: 0;
}
.essential-chip i { font-size: 0.9rem; color: var(--gold-light); flex-shrink: 0; }
.essential-chip small {
    display: block;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    line-height: 1.2;
}
.essential-chip strong { font-size: 0.78rem; color: var(--text-main); font-weight: 600; }
.essential-chip--warn {
    border-color: rgba(200, 80, 60, 0.25);
    background: rgba(120, 40, 30, 0.12);
}
.essential-chip--warn i { color: #e07a6a; }

.info-root { display: flex; flex-direction: column; gap: 14px; }
.info-block {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 14px 16px;
}
.info-block--alert {
    border-color: rgba(200, 80, 60, 0.3);
    background: rgba(80, 30, 25, 0.2);
}
.info-block--tip {
    border-color: rgba(191, 155, 88, 0.25);
    background: rgba(191, 155, 88, 0.06);
}
.info-block-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.info-block-head i { color: var(--gold); font-size: 0.95rem; width: 18px; text-align: center; }
.info-block-head h3 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
}
.info-block-note, .info-alert-body, .info-tip-body {
    margin: 0 0 10px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-muted);
}
.info-alert-body { color: var(--text-main); }
.info-items { display: flex; flex-direction: column; gap: 8px; }
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    line-height: 1.45;
}
.info-item-icon { color: var(--gold); width: 16px; margin-top: 2px; flex-shrink: 0; font-size: 0.8rem; }
.info-item-label { color: var(--text-muted); }
.info-item-value { color: var(--text-main); }
.info-item-sep { color: var(--text-muted); opacity: 0.5; }

.info-ext-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.info-ext-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.info-ext-cell.is-current {
    border-color: color-mix(in srgb, var(--gold) 45%, transparent);
    background: rgba(191, 155, 88, 0.1);
}
.info-ext-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
}
.info-ext-name { font-size: 0.68rem; color: var(--text-muted); line-height: 1.3; }
.info-ext-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(191, 155, 88, 0.15);
    padding: 2px 6px;
    border-radius: 8px;
}

.info-price-table { display: flex; flex-direction: column; gap: 6px; }
.info-price-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}
.info-price-row:last-child { border-bottom: none; }
.info-price-val {
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
}

.info-schedule { display: flex; flex-direction: column; gap: 10px; }
.info-schedule-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.04);
}
.info-schedule-row.is-highlight {
    border-color: color-mix(in srgb, var(--gold) 30%, transparent);
    background: rgba(191, 155, 88, 0.08);
}
.info-schedule-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.info-schedule-left i { color: var(--gold); width: 16px; text-align: center; }
.info-schedule-meal { font-size: 0.82rem; font-weight: 600; color: var(--text-main); }
.info-schedule-right { text-align: right; min-width: 0; }
.info-schedule-time { display: block; font-size: 0.8rem; color: var(--gold-light); font-weight: 600; }
.info-schedule-note { display: block; font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; line-height: 1.35; }

.info-tours { display: flex; flex-direction: column; gap: 8px; }
.info-tour-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.04);
}
.info-tour-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(191, 155, 88, 0.15);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-tour-body { flex: 1; min-width: 0; }
.info-tour-name { display: block; font-size: 0.8rem; color: var(--text-main); line-height: 1.4; margin-bottom: 4px; }
.info-tour-price { font-size: 0.85rem; font-weight: 600; color: var(--gold-light); }

.reception-notice--spa {
    border-color: rgba(191, 155, 88, 0.25);
    background: rgba(191, 155, 88, 0.08);
}
.catalog-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    margin: 4px 0 6px;
    letter-spacing: 0.3px;
}

/* --- HUB SECTIONS (Riad / Ville) --- */
.hub-section {
    margin: 10px 0 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    background: linear-gradient(160deg, rgba(28,28,30,0.85) 0%, rgba(16,16,18,0.95) 100%);
    overflow: hidden;
}
.hub-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}
.hub-section-header:hover { background: rgba(255,255,255,0.02); }
.hub-section-heading { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hub-section-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Cinzel', serif;
}
.hub-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.2;
}
.hub-section-chevron {
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0.5;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 12px;
}
.hub-section-header.active .hub-section-chevron { transform: rotate(180deg); opacity: 0.85; }
.hub-section-body { display: none; padding: 0 12px 12px; }
.hub-section-body.active { display: block; }
.hub-section--riad { border-color: rgba(191, 155, 88, 0.15); }
.hub-section--city { border-color: rgba(255,255,255,0.05); }
.services-grid--compact { gap: 8px; }
.service-btn--compact { padding: 10px 12px; min-height: auto; }
.service-btn--compact i { font-size: 1rem; }
.service-btn--compact .service-label { font-size: 0.78rem; }
.service-btn--compact .service-sub { font-size: 0.62rem; }
.remote-essentials {
    margin: 16px 0 20px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(191, 155, 88, 0.2);
    background: rgba(191, 155, 88, 0.06);
    text-align: left;
}
.remote-essentials-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.remote-essentials-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}
.remote-essentials-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: none;
    background: none;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-family: inherit;
    cursor: pointer;
}
.remote-essentials-link:hover { color: var(--gold); }
.remote-essentials-link i { font-size: 0.6rem; }
.info-root--inline { margin-bottom: 18px; }
.info-block-actions { margin-top: 12px; }
.info-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.1);
    color: #5ddea0;
    font-size: 0.72rem;
    font-family: inherit;
    cursor: pointer;
}
.info-cta-btn:hover { background: rgba(37, 211, 102, 0.18); }
.info-cta-btn--compact { margin-top: 6px; padding: 5px 10px; font-size: 0.65rem; }
.info-schedule-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.catalog-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(37, 211, 102, 0.35);
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.1);
    color: #5ddea0;
    font-size: 0.72rem;
    font-family: inherit;
    cursor: pointer;
}
.catalog-order-btn:hover { background: rgba(37, 211, 102, 0.18); }

/* --- WhatsApp CTA (icon only, premium) --- */
.wa-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    border: 1px solid rgba(37, 211, 102, 0.32);
    border-radius: 50%;
    background: rgba(18, 18, 20, 0.6);
    color: #25D366;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.wa-cta i {
    font-size: 1.22rem;
    line-height: 1;
    display: block;
}
.wa-cta:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.55);
    box-shadow: 0 0 14px rgba(37, 211, 102, 0.15);
    transform: scale(1.06);
}
.wa-cta:active { transform: scale(0.98); }
.wa-cta--sm {
    width: 36px;
    height: 36px;
}
.wa-cta--sm i { font-size: 1.05rem; }
.wa-cta--catalog {
    border-color: rgba(191, 155, 88, 0.35);
    background: rgba(191, 155, 88, 0.06);
}
.wa-cta--catalog:hover {
    background: rgba(191, 155, 88, 0.14);
    border-color: rgba(191, 155, 88, 0.55);
    box-shadow: 0 0 14px rgba(191, 155, 88, 0.12);
}

.info-item { align-items: center; }
.info-item-text { flex: 1; min-width: 0; }
.info-item .wa-cta { margin-left: auto; }

.info-schedule-row { align-items: center; }
.info-schedule-right {
    flex: 1;
    text-align: right;
    min-width: 0;
}
.info-tour-row { align-items: center; }
.info-tour-body {
    flex: 1;
    min-width: 0;
}

.info-block-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.info-cta-btn,
.catalog-order-btn { display: none !important; }

/* --- Riad quick actions --- */
.riad-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}
.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 88px;
    padding: 10px 8px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    color: inherit;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.quick-action:hover {
    border-color: color-mix(in srgb, var(--gold) 35%, transparent);
    background: rgba(255,255,255,0.05);
    transform: translateY(-1px);
}
.quick-action:active { transform: translateY(0); }
.quick-action-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.quick-action-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.quick-action-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.25;
}
.quick-action-sub {
    font-size: 0.58rem;
    color: var(--text-muted);
    line-height: 1.2;
}
.quick-action--emergency {
    border-color: rgba(200, 80, 60, 0.28);
    background: rgba(120, 40, 30, 0.12);
}
.quick-action--emergency .quick-action-icon {
    background: rgba(200, 80, 60, 0.18);
    color: #e07a6a;
}
.quick-action--emergency:hover {
    border-color: rgba(200, 80, 60, 0.45);
    background: rgba(120, 40, 30, 0.2);
}
.quick-action--wa .quick-action-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    font-size: 1.1rem;
}
.quick-action--wa:hover {
    border-color: rgba(37, 211, 102, 0.3);
}
@media (max-width: 360px) {
    .quick-action-label { font-size: 0.62rem; }
    .quick-action-sub { font-size: 0.54rem; }
    .quick-action-icon { width: 32px; height: 32px; font-size: 0.9rem; }
}

/* --- Logo filigrane & transparence premium --- */
.weather-bento {
    background: linear-gradient(155deg, rgba(37, 37, 40, 0.48) 0%, rgba(21, 21, 23, 0.55) 100%) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.wifi-toggle {
    background: rgba(255,255,255,0.04) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hub-section {
    background: linear-gradient(160deg, rgba(24,24,26,0.5) 0%, rgba(14,14,16,0.62) 100%) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.hub-section--riad {
    border-color: rgba(191, 155, 88, 0.18) !important;
    background: linear-gradient(160deg, rgba(22,22,24,0.46) 0%, rgba(12,12,14,0.58) 100%) !important;
}
.hub-section--city {
    border-color: rgba(255,255,255,0.12) !important;
    background: linear-gradient(160deg, rgba(56,56,62,0.58) 0%, rgba(42,42,48,0.72) 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.hub-section--city .hub-section-eyebrow { color: #d4c4a0; }
.quick-action {
    background: rgba(255,255,255,0.04) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.quick-action--emergency {
    background: rgba(120, 40, 30, 0.14) !important;
}

/* --- HISTORY ARTICLE --- */
.modal-panel--story {
    max-width: 540px;
    padding-bottom: 28px;
}
.modal-header--story {
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modal-story-subtitle {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 6px;
}
.history-article {
    padding: 0 2px 8px;
}
.history-lead {
    margin: 0 0 1.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--gold-light);
}
.history-paragraph {
    margin: 0 0 1rem;
    line-height: 1.75;
    font-size: 0.9rem;
    color: var(--text-main);
}
.history-section-title {
    margin: 1.85rem 0 0.85rem;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.history-quote {
    margin: 1.35rem 0;
    padding: 16px 18px;
    border-left: 3px solid var(--gold);
    background: rgba(191, 155, 88, 0.06);
    border-radius: 0 14px 14px 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.45;
    color: var(--gold-light);
}
.history-quote-cite {
    display: block;
    margin-top: 8px;
    font-size: 0.72rem;
    font-style: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.history-figure {
    margin: 1.5rem 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 32px -12px rgba(0,0,0,0.55);
    background: rgba(0,0,0,0.2);
}
.history-figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.history-figure--inset {
    max-width: 88%;
    margin-left: auto;
    margin-right: auto;
}
.history-divider {
    display: flex;
    justify-content: center;
    margin: 1.75rem 0;
}
.history-divider span {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.45;
}
.history-youtube {
    margin: 2rem 0 0;
}
.history-youtube-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.22);
    background: rgba(255, 0, 0, 0.06);
    color: inherit;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.history-youtube-link:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.35);
    transform: translateY(-1px);
}
.history-youtube-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.history-youtube-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.history-youtube-text strong {
    font-size: 0.82rem;
    color: var(--text-main);
}
.history-youtube-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.history-youtube-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
}
.history-rooms {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.history-rooms-title {
    margin: 0 0 0.65rem;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.history-rooms-intro {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.history-rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.history-room-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    color: inherit;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.history-room-card:hover {
    border-color: rgba(191, 155, 88, 0.3);
    background: rgba(191, 155, 88, 0.06);
}
.history-room-card.is-current {
    border-color: rgba(191, 155, 88, 0.4);
    background: rgba(191, 155, 88, 0.1);
    cursor: default;
}
.history-room-card-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
}
.history-room-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.25;
}
.history-room-card-tag {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.35;
}
