    @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Lato:wght@300;400;700;900&display=swap');

    :root {
      --primary: #8B0000;
      --primary-hover: #6B0000;
      --gold: #C4A962;
      --gold-dark: #A8873C;
      --dark: #2C2416;
      --dark-bg: #1a1612;
      --text-dark: #2a2420;
      --text-light: #666;
      --bg-light: #f5f1ed;
      --bg-dark: #2a2420;
      --bg-cream: #f9f6f2;
      --border: #d4c5b0;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: var(--bg-cream);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    .hero-wrapper { width: 100%; overflow: hidden; <?= $showBande ? '' : 'margin-top: 111px;' ?> }
    .hero {
      width: 100%; height: calc(100vh - 111px); min-height: 600px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45)), url('assets/spectacle/bd.png') center / cover no-repeat;
    }
    .hero::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 150px; background: linear-gradient(to bottom, transparent, var(--bg-cream));
      pointer-events: none; z-index: 1;
    }
    .hero-content { position: relative; z-index: 2; text-align: center; color: white; padding: 20px; max-width: 1000px; animation: fadeInUp 1.2s ease; }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
    .hero-logo { height: 170px; margin-bottom: 45px; filter: drop-shadow(0 15px 40px rgba(0,0,0,0.6)); animation: float 4s ease-in-out infinite; }
    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
    .hero h1 { font-family: 'Cinzel', serif; font-size: 4.2rem; font-weight: 700; margin-bottom: 28px; text-shadow: 0 6px 25px rgba(0,0,0,0.5); letter-spacing: 2px; line-height: 1.2; }
    .hero p { font-size: 1.45rem; margin-bottom: 50px; font-weight: 300; text-shadow: 0 3px 15px rgba(0,0,0,0.6); max-width: 750px; margin-left: auto; margin-right: auto; line-height: 1.6; }

    .scroll-indicator { position: absolute; bottom: 55px; left: 50%; transform: translateX(-50%); z-index: 3; cursor: pointer; animation: bounceArrow 2s ease-in-out infinite; }
    .scroll-indicator svg { width: 42px; height: 42px; stroke: rgba(255,255,255,0.85); fill: none; stroke-width: 2; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); }
    @keyframes bounceArrow { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(14px); } }

    .btn {
      display: inline-block; background: var(--primary); color: white;
      padding: 20px 55px; border-radius: 4px; font-size: 16px; font-weight: 700;
      text-decoration: none; letter-spacing: 1.2px; text-transform: uppercase;
      transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(139,0,0,0.4);
      position: relative; overflow: hidden;
    }
    .btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.6s ease; }
    .btn:hover::before { left: 100%; }
    .btn:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(139,0,0,0.5); }

    section { padding: 110px 5%; max-width: 1500px; margin: 0 auto; }
    section h2 { font-family: 'Cinzel', serif; font-size: 3rem; font-weight: 700; margin-bottom: 30px; text-align: center; color: var(--dark); letter-spacing: 1.5px; }
    .section-subtitle { text-align: center; font-size: 1.18rem; color: var(--text-light); max-width: 950px; margin: 0 auto 55px; line-height: 1.8; font-weight: 300; }
    .divider { width: 90px; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 35px auto 55px; position: relative; }
    .divider::before, .divider::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
    .divider::before { left: -15px; }
    .divider::after  { right: -15px; }

    .stats-section { background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1612 100%); padding: 110px 5%; margin: 0; max-width: none; position: relative; overflow: hidden; }
    .stats-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(196,169,98,0.03) 35px, rgba(196,169,98,0.03) 70px); pointer-events: none; }
    .stats-section h2 { color: white; }
    .stats-section .section-subtitle { color: rgba(255,255,255,0.8); }
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 35px; margin-top: 70px; max-width: 1200px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
    .stat-card { background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05)); border: 2px solid rgba(196,169,98,0.3); padding: 45px 30px; border-radius: 8px; text-align: center; transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1); position: relative; overflow: hidden; backdrop-filter: blur(10px); }
    .stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
    .stat-card:hover::before { transform: scaleX(1); }
    .stat-card:hover { border-color: var(--gold); transform: translateY(-8px); box-shadow: 0 12px 35px rgba(196,169,98,0.3); }
    .stat-icon { color: var(--gold); margin-bottom: 25px; transition: all 0.3s ease; }
    .stat-card:hover .stat-icon { transform: scale(1.1); filter: drop-shadow(0 0 10px rgba(196,169,98,0.5)); }
    .stat-number { font-family: 'Cinzel', serif; font-size: 3rem; font-weight: 700; color: white; margin-bottom: 12px; transition: all 0.3s ease; }
    .stat-card:hover .stat-number { color: var(--gold); }
    .stat-label { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 400; }
    .stat-loading { opacity: 0.6; font-style: italic; }
    .stat-error { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

    .history-section { background: linear-gradient(to bottom, var(--bg-cream) 0%, #ede8e0 100%); padding: 110px 5%; margin: 0; max-width: none; position: relative; }
    .history-section::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4a962' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.6; pointer-events: none; }
    .history-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
    .history-text h2 { text-align: left; margin-bottom: 25px; }
    .history-text .divider { margin: 30px 0 40px; }
    .history-text p { font-size: 1.08rem; line-height: 1.85; color: var(--text-light); margin-bottom: 25px; }
    .history-stats { display: flex; gap: 50px; margin-top: 50px; }
    .history-stat-item { display: flex; flex-direction: column; gap: 8px; }
    .history-stat-item strong { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--primary); font-weight: 700; }
    .history-stat-item span { font-size: 0.95rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
    .history-image { position: relative; overflow: hidden; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
    .history-image img { width: 100%; height: 550px; object-fit: cover; transition: transform 0.6s ease; }
    .history-image:hover img { transform: scale(1.08); }

    .experience-section { background: var(--bg-cream); }
    .experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; margin-top: 75px; }
    .experience-item { text-align: center; padding: 40px 30px; transition: transform 0.3s ease; background: white; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
    .experience-item:hover { transform: translateY(-8px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
    .experience-icon { color: var(--primary); margin-bottom: 30px; }
    .experience-icon svg { filter: drop-shadow(0 4px 10px rgba(139,0,0,0.2)); }
    .experience-item h3 { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--dark); margin-bottom: 20px; font-weight: 600; }
    .experience-item p { font-size: 1.02rem; color: var(--text-light); line-height: 1.75; }

    .gallery-section { background: linear-gradient(135deg, #1a1612 0%, var(--bg-dark) 100%); padding: 110px 5%; margin: 0; max-width: none; position: relative; }
    .gallery-section h2 { color: white; }
    .gallery-section .section-subtitle { color: rgba(255,255,255,0.8); }
    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 75px; max-width: 1400px; margin-left: auto; margin-right: auto; }
    .gallery-item { position: relative; overflow: hidden; border-radius: 4px; height: 350px; cursor: pointer; box-shadow: 0 8px 25px rgba(0,0,0,0.4); border: 2px solid rgba(196,169,98,0.2); }
    .gallery-item:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(196,169,98,0.3); }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .gallery-item:hover img { transform: scale(1.15); }
    .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); padding: 30px 25px; transform: translateY(100%); transition: transform 0.4s ease; }
    .gallery-overlay span { color: white; font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 600; }
    .gallery-item:hover .gallery-overlay { transform: translateY(0); }

    .testimonials-section { background: var(--bg-cream); padding: 110px 5%; margin: 0; max-width: none; }
    .testimonials-section h2 { color: var(--dark); text-align: center; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; margin-top: 75px; max-width: 1400px; margin-left: auto; margin-right: auto; }
    .testimonials-empty { max-width: 650px; margin: 70px auto 0; background: white; border: 1px dashed var(--border); border-radius: 8px; padding: 55px 40px; text-align: center; }
    .testimonials-empty p { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
    .testimonials-empty a { display: inline-block; background: var(--primary); color: white; padding: 14px 36px; border-radius: 4px; font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: 0.8px; text-transform: uppercase; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(139,0,0,0.2); }
    .testimonials-empty a:hover { background: var(--primary-hover); transform: translateY(-2px); }

    .testimonial-card { background: white; border-radius: 8px; padding: 40px 35px; box-shadow: 0 6px 25px rgba(0,0,0,0.08); border: 1px solid var(--border); position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.14); }
    .testimonial-card::before { content: '\201C'; font-family: 'Cinzel', serif; font-size: 5rem; color: var(--gold); opacity: 0.3; position: absolute; top: 15px; left: 25px; line-height: 1; }
    .testimonial-stars { display: flex; gap: 5px; margin-bottom: 20px; }
    .testimonial-stars svg { width: 18px; height: 18px; fill: var(--gold); stroke: var(--gold-dark); stroke-width: 1; }
    .testimonial-stars .star-empty { fill: #e0e0e0; stroke: #ccc; }
    .testimonial-text { font-size: 1.02rem; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; font-style: italic; position: relative; z-index: 1; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 22px; }
    .testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 1.1rem; color: white; font-weight: 700; flex-shrink: 0; }
    .testimonial-info strong { display: block; font-size: 0.98rem; color: var(--dark); font-weight: 700; margin-bottom: 3px; }
    .testimonial-info span { font-size: 0.85rem; color: var(--text-light); }

    .faq-section { background: linear-gradient(to bottom, #ede8e0 0%, var(--bg-cream) 100%); padding: 110px 5%; margin: 0; max-width: none; }
    .faq-section h2 { color: var(--dark); }
    .faq-list { max-width: 900px; margin: 75px auto 0; display: flex; flex-direction: column; gap: 16px; }
    .faq-item { background: white; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: box-shadow 0.3s ease; }
    .faq-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
    .faq-item.active { border-color: var(--gold); box-shadow: 0 6px 20px rgba(196,169,98,0.2); }
    .faq-question { width: 100%; background: none; border: none; padding: 24px 30px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; gap: 20px; transition: background 0.2s ease; }
    .faq-question:hover { background: var(--bg-cream); }
    .faq-question span { font-family: 'Cinzel', serif; font-size: 1.05rem; color: var(--dark); font-weight: 600; line-height: 1.4; }
    .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-cream); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; }
    .faq-item.active .faq-icon { background: var(--primary); border-color: var(--primary); transform: rotate(45deg); }
    .faq-icon svg { width: 14px; height: 14px; stroke: var(--text-dark); fill: none; stroke-width: 2.5; transition: stroke 0.3s ease; }
    .faq-item.active .faq-icon svg { stroke: white; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 30px; }
    .faq-item.active .faq-answer { max-height: 300px; padding: 0 30px 26px; }
    .faq-answer p { font-size: 1.02rem; color: var(--text-light); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 20px; }

    .community-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%); color: white; text-align: center; padding: 100px 5%; margin: 0; max-width: none; position: relative; overflow: hidden; }
    .community-cta::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 70px); pointer-events: none; }
    .community-cta h2 { color: white; }
    .community-content { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
    .community-content p { font-size: 1.2rem; line-height: 1.8; margin-bottom: 45px; color: rgba(255,255,255,0.95); }
    .community-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 50px; text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; }
    .community-feature { display: flex; align-items: center; gap: 15px; font-size: 1.08rem; color: rgba(255,255,255,0.95); }
    .community-feature svg { flex-shrink: 0; color: var(--gold); }
    .community-cta .btn { background: white; color: var(--primary); font-weight: 700; }
    .community-cta .btn:hover { background: var(--bg-light); color: var(--primary-hover); }

    .video-container { position: relative; max-width: 1150px; margin: 70px auto; border-radius: 2px; overflow: hidden; box-shadow: 0 25px 70px rgba(0,0,0,0.2); border: 1px solid rgba(0,0,0,0.05); }
    .video-container iframe { width: 100%; aspect-ratio: 16/9; display: block; }

    .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 45px; margin-top: 75px; }
    .card { background: white; border-radius: 2px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.12); transition: all 0.5s cubic-bezier(0.165,0.84,0.44,1); cursor: pointer; position: relative; border: 2px solid var(--border); }
    .card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(139,0,0,0.05), transparent); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; z-index: 1; }
    .card:hover::before { opacity: 1; }
    .card:hover { transform: translateY(-12px); box-shadow: 0 20px 60px rgba(0,0,0,0.25); border-color: var(--gold); }
    .card-img { position: relative; overflow: hidden; height: 300px; background: #f0f0f0; }
    .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.165,0.84,0.44,1); }
    .card:hover .card-img img { transform: scale(1.12); }
    .card-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.75)); opacity: 0.8; transition: opacity 0.5s ease; }
    .card:hover .card-overlay { opacity: 1; }
    .card-body { padding: 35px 32px; background: white; position: relative; z-index: 2; }
    .card-body h3 { font-family: 'Cinzel', serif; font-size: 1.6rem; font-weight: 600; margin-bottom: 18px; color: var(--dark); letter-spacing: 0.5px; transition: color 0.3s ease; }
    .card:hover .card-body h3 { color: var(--primary); }
    .card-body p { font-size: 1.02rem; color: var(--text-light); line-height: 1.75; font-weight: 300; }
    .cta-section { text-align: center; margin-top: 80px; }

    .map-section { background: linear-gradient(to bottom, #ede8e0 0%, var(--bg-cream) 100%); padding: 110px 5%; margin: 0; max-width: none; position: relative; overflow: hidden; }
    .map-section::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c4a962' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
    .map-section h2 { color: var(--dark); }
    .map-wip { max-width: 600px; margin: 60px auto 0; background: white; border: 1px dashed var(--border); border-radius: 8px; padding: 60px 40px; text-align: center; }
    .map-wip svg { color: var(--gold); margin-bottom: 22px; }
    .map-wip h3 { font-family: 'Cinzel', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 14px; }
    .map-wip p { color: var(--text-light); font-size: 1rem; line-height: 1.75; }
    .map-outer { max-width: 1450px; margin: 60px auto 0; border-radius: 8px; overflow: hidden; box-shadow: 0 25px 70px rgba(0,0,0,0.18); border: 2px solid var(--border); }
    .pub-map-toolbar { display: flex; align-items: center; justify-content: space-between; background: var(--bg-dark); padding: 14px 22px; border-bottom: 1px solid rgba(196,169,98,0.2); }
    .pub-map-title { font-family: 'Cinzel', serif; color: var(--gold); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
    .pub-map-title-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pubDotPulse 2s ease-in-out infinite; }
    @keyframes pubDotPulse { 0%,100%{opacity:1}50%{opacity:.35} }
    .pub-map-controls { display: flex; gap: 8px; }
    .pub-map-btn { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.75); width: 34px; height: 34px; border-radius: 6px; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all .2s; font-family: 'Lato', sans-serif; font-weight: 700; }
    .pub-map-btn:hover { background: rgba(196,169,98,0.18); border-color: var(--gold); color: var(--gold); }
    .pub-map-stage-wrap { position: relative; background: #0f0e0c; overflow: hidden; height: 580px; cursor: grab; user-select: none; }
    .pub-map-stage-wrap:active { cursor: grabbing; }
    #pub-map-stage { position: absolute; top: 0; left: 0; transform-origin: 0 0; will-change: transform; }
    #pub-map-bg { display: block; max-width: none; pointer-events: none; user-select: none; }
    .pub-map-no-img { width: 100%; height: 580px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.25); font-style: italic; font-size: 14px; }
    .pub-map-hint { position: absolute; bottom: 14px; right: 16px; font-size: 11px; color: rgba(255,255,255,.3); background: rgba(0,0,0,.4); padding: 4px 12px; border-radius: 10px; pointer-events: none; letter-spacing: .4px; }
    .pub-marker { position: absolute; transform: translate(-50%,-100%); cursor: pointer; z-index: 10; transition: transform .2s, filter .2s; }
    .pub-marker:hover { transform: translate(-50%,-100%) scale(1.2); z-index: 20; filter: drop-shadow(0 6px 14px rgba(0,0,0,.5)); }
    .pub-pin { display: flex; flex-direction: column; align-items: center; filter: drop-shadow(0 4px 8px rgba(0,0,0,.6)); }
    .pub-pin-head { width: 38px; height: 38px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,.3); }
    .pub-pin-inner { transform: rotate(45deg); display: flex; align-items: center; justify-content: center; }
    .pub-pin-letter { font-family: 'Cinzel', serif; font-size: 13px; font-weight: 700; color: #fff; }
    .pub-pin-tail { width: 3px; height: 12px; margin-top: -2px; }
    .pub-circle { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid rgba(255,255,255,.3); font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700; color: #fff; filter: drop-shadow(0 4px 8px rgba(0,0,0,.5)); }
    .pub-pulse-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
    .pub-pulse-ring { position: absolute; width: 46px; height: 46px; border-radius: 50%; border: 2px solid currentColor; animation: pubPulse 2s ease-out infinite; opacity: 0; }
    .pub-pulse-ring:nth-child(2) { animation-delay: .6s; }
    .pub-pulse-ring:nth-child(3) { animation-delay: 1.2s; }
    @keyframes pubPulse { 0%{transform:scale(.5);opacity:.8} 100%{transform:scale(2.2);opacity:0} }
    .pub-pulse-dot { width: 22px; height: 22px; border-radius: 50%; border: 3px solid rgba(255,255,255,.35); position: relative; z-index: 1; filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
    .pub-map-legend { background: var(--bg-dark); padding: 14px 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; border-top: 1px solid rgba(196,169,98,0.12); }
    .legend-title { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); font-weight: 700; margin-right: 4px; }
    .legend-item { display: flex; align-items: center; gap: 7px; }
    .legend-dot { width: 9px; height: 9px; border-radius: 50%; }
    .legend-label { font-size: 12px; color: rgba(255,255,255,.65); }
    .map-popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(5px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
    .map-popup-overlay.open { opacity: 1; pointer-events: all; }
    .map-popup { background: white; border-radius: 12px; max-width: 520px; width: 100%; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.4); transform: scale(.92) translateY(20px); transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s ease; opacity: 0; position: relative; }
    .map-popup-overlay.open .map-popup { transform: scale(1) translateY(0); opacity: 1; }
    .map-popup-img { width: 100%; height: 220px; object-fit: cover; display: block; }
    .map-popup-color-bar { height: 5px; width: 100%; }
    .map-popup-body { padding: 28px 30px 32px; }
    .map-popup-title { font-family: 'Cinzel', serif; font-size: 1.5rem; color: var(--dark); margin-bottom: 14px; line-height: 1.3; }
    .map-popup-desc { font-size: 1rem; color: var(--text-light); line-height: 1.78; margin-bottom: 24px; }
    .map-popup-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,.45); border: none; cursor: pointer; color: #fff; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .2s; }
    .map-popup-close:hover { background: rgba(0,0,0,.7); }
    .map-popup-btn { display: inline-block; background: var(--primary); color: white; padding: 13px 30px; border-radius: 4px; font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: .8px; text-transform: uppercase; transition: all .3s ease; box-shadow: 0 6px 18px rgba(139,0,0,.25); }
    .map-popup-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }

    #cookie-popup { position: fixed; bottom: 35px; left: 50%; transform: translateX(-50%); background: white; border: 1px solid var(--border); padding: 28px 45px; border-radius: 6px; box-shadow: 0 15px 50px rgba(0,0,0,0.2); max-width: 600px; display: none; z-index: 10000; animation: slideUp 0.6s ease; }
    @keyframes slideUp { from { opacity: 0; transform: translate(-50%, 50px); } to { opacity: 1; transform: translate(-50%, 0); } }
    #cookie-popup p { margin-bottom: 22px; font-size: 14px; color: var(--text-dark); line-height: 1.65; }
    #cookie-popup button { background: var(--primary); color: white; border: none; padding: 14px 40px; border-radius: 4px; cursor: pointer; font-weight: 700; transition: all 0.3s ease; width: 100%; font-size: 14px; letter-spacing: 0.8px; text-transform: uppercase; box-shadow: 0 4px 12px rgba(139,0,0,0.2); }
    #cookie-popup button:hover { background: var(--primary-hover); transform: translateY(-2px); }

    #back-to-top { position: fixed; bottom: 40px; right: 35px; width: 50px; height: 50px; background: var(--primary); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(139,0,0,0.35); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s ease; z-index: 999; }
    #back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    #back-to-top:hover { background: var(--primary-hover); transform: translateY(-4px); box-shadow: 0 10px 28px rgba(139,0,0,0.45); }
    #back-to-top svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    footer.footer-dark { background: var(--bg-dark); border-top: 2px solid rgba(196,169,98,0.3); padding: 80px 5% 45px; text-align: center; }
    footer.footer-dark .footer-disclaimer { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 50px; font-style: italic; font-weight: 300; }
    footer.footer-dark strong { display: block; font-family: 'Cinzel', serif; font-size: 1.5rem; margin-bottom: 35px; color: white; letter-spacing: 1.2px; font-weight: 600; }
    footer.footer-dark .social-links { display: flex; justify-content: center; gap: 35px; flex-wrap: wrap; margin: 40px 0 60px; }
    footer.footer-dark .social-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-weight: 400; font-size: 15px; transition: all 0.3s ease; position: relative; padding-bottom: 3px; }
    footer.footer-dark .social-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
    footer.footer-dark .social-links a:hover { color: var(--gold); }
    footer.footer-dark .social-links a:hover::after { width: 100%; }
    footer.footer-dark hr { border: none; height: 1px; background: rgba(196,169,98,0.3); margin: 60px auto 40px; max-width: 1300px; }
    footer.footer-dark .legal { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; }
    footer.footer-dark .legal a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s ease; }
    footer.footer-dark .legal a:hover { color: var(--gold); }

    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 968px) {
      .menu { position: fixed; top: 0; left: -100%; width: 85%; max-width: 420px; height: 100vh; flex-direction: column; background: white; padding: 130px 45px 50px; transition: left 0.4s cubic-bezier(0.165,0.84,0.44,1); box-shadow: 8px 0 30px rgba(0,0,0,0.2); align-items: flex-start; gap: 32px; overflow-y: auto; }
      .menu.show { left: 0; }
      .menu-toggle { display: flex; }
      nav { padding: 16px 20px; }
      .logo { height: 65px; }
      .hero h1 { font-size: 3rem; }
      .hero p { font-size: 1.2rem; }
      section { padding: 80px 20px; }
      section h2 { font-size: 2.4rem; }
      .cards { grid-template-columns: 1fr; gap: 30px; }
      .stats-grid { grid-template-columns: 1fr; gap: 30px; }
      .history-content { grid-template-columns: 1fr; gap: 50px; }
      .history-text h2 { text-align: center; }
      .history-stats { justify-content: center; flex-wrap: wrap; gap: 30px; }
      .experience-grid { grid-template-columns: 1fr; gap: 40px; }
      .gallery-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .pub-map-stage-wrap { height: 380px; }
    }
    @media (max-width: 640px) {
      .status-badge { display: none; }
      .hero { min-height: 85vh; height: auto; padding: 80px 20px; }
      .hero-logo { height: 130px; margin-bottom: 35px; }
      .hero h1 { font-size: 2.2rem; margin-bottom: 22px; }
      .hero p { font-size: 1.05rem; margin-bottom: 40px; }
      .btn { padding: 16px 40px; font-size: 14px; }
      section { padding: 60px 20px; }
      section h2 { font-size: 2rem; }
      .section-subtitle { font-size: 1.05rem; }
      .card-img { height: 240px; }
      .stat-number { font-size: 2.5rem; }
      .history-stats { gap: 25px; }
      .history-stat-item strong { font-size: 1.6rem; }
      .social-links { flex-direction: column; gap: 20px; }
      #cookie-popup { width: calc(100% - 40px); padding: 25px 30px; }
      #back-to-top { bottom: 25px; right: 20px; width: 44px; height: 44px; }
      .faq-question { padding: 20px 22px; }
      .faq-question span { font-size: 0.95rem; }
      .faq-answer { padding: 0 22px; }
      .faq-item.active .faq-answer { padding: 0 22px 22px; }
      .pub-map-stage-wrap { height: 280px; }
      #site-bandeau .band-text { white-space: normal; }
    }
  </style>
