:root {
    --color-primary: #a64736;
    --color-gold: #b08a5a;
    --color-dark: #1a1a1a;
    --color-light: #fcfcfc;
    --color-gray: #f4f4f4;
    --color-text: #333333;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- UTILS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(.25,.46,.45,.94);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--color-dark);
}

.btn-gold {
    background-color: var(--color-gold);
    color: white;
    border: 2px solid var(--color-gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.section-padding {
    padding: 5rem 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }

/* --- HEADER --- */
/* Transparent header that becomes solid on scroll */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px; /* Adjust based on logo aspect ratio */
    filter: brightness(0) invert(1); /* Make logo white for transparent header */
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    filter: none; /* Restore original colors */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--color-dark);
}

.mobile-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
    color: var(--color-dark);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/Chateau-dAgassac-vue-exterieur-arriere-du-chateau-douves-et-pigeonnier-01-1024x683.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 900px;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- FINDER WIDGET --- */
.finder-widget {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 3rem;
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* Animate in */
    animation: slideUp 0.8s ease backwards 0.5s;
}

.finder-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.finder-group {
    text-align: left;
}

.finder-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.finder-select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: #fafafa;
    cursor: pointer;
    appearance: none; /* Remove default arrow */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23b08a5a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right .7em top 50%;
    background-size: .65em auto;
}

.finder-select:focus {
    outline: none;
    border-color: var(--color-gold);
}


/* --- ANIMATIONS --- */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- SCROLL TO TOP --- */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--color-dark);
}

/* --- VALUES SECTION --- */
.values {
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    background: white;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: rgba(176, 138, 90, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

/* --- VENUES SECTION --- */
.venues {
    background-color: var(--color-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-dark);
}

.section-title::after {
    content: '';
    display: block;
    width: 3rem;
    height: 2px;
    background: var(--color-gold);
    margin-top: 0.8rem;
}

.section-header .section-title::after,
.text-center .section-title::after,
[style*="text-align: center"] .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* Disable underline in specific contexts */
.cta-banner .section-title::after,
.venue-hero .section-title::after,
.devis-cta-section .section-title::after,
.map-section .section-title::after,
.hero .section-title::after {
    display: none;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.venue-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    group: hover;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.venue-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
}

.venue-card:hover .venue-image {
    transform: scale(1.05);
}

.venue-content {
    padding: 2rem;
}

.venue-location {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.venue-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.venue-capacity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.venue-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.venue-link:hover {
    gap: 0.8rem;
}

/* --- CTA BANNER --- */
.cta-banner {
    background-color: var(--color-dark);
    color: white;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/20210714_223541-scaled.jpg');
    background-size: cover;
    background-position: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white; /* Explicitly white override */
}

/* --- FOOTER --- */
footer {
    background-color: #111;
    color: #fff;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #888;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        text-align: center;
        z-index: 999;
        gap: 1.5rem;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-menu .nav-link {
        color: var(--color-dark);
        font-size: 1rem;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

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

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    padding: 2rem;
    background-color: var(--color-gray);
    border-radius: 10px;
}

.info-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-right: 1.5rem;
    margin-top: 0.2rem;
}

.contact-form-container {
    padding: 2rem;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(176, 138, 90, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

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

/* --- SCROLL TOP --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--color-gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    text-decoration: none;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scroll-top:hover {
    background: var(--color-dark);
    transform: translateY(-5px);
}

/* --- FINDER WIDGET --- */
.finder-widget {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.finder-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-end;
}

.finder-group {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.finder-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-dark);
    letter-spacing: 1px;
}

.finder-select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s ease;
}

.finder-select:focus {
    border-color: var(--color-gold);
}

@media (max-width: 768px) {
    .finder-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .finder-group {
        width: 100%;
    }
}

/* --- NEW FILTERS --- */
.advanced-filters {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-dark);
    letter-spacing: 1px;
}

.filter-select {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 2rem; /* Space for the arrow */
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
    background-color: #f9f9f9;
    
    /* Custom Arrow using SVG data URI */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23b08a5a%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.filter-select:hover {
    border-color: #ccc;
    background-color: #fff;
}

.filter-select:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(176, 138, 90, 0.1);
    background-color: #fff;
}

@media (max-width: 768px) {
    .advanced-filters {
        flex-direction: column;
        align-items: stretch;
    }
}

/* --- CLIENTS MARQUEE --- */
.clients-section {
    background-color: var(--color-gray);
    overflow: hidden;
    padding: 3rem 0;
}

/* Removed old marquee styles in favor of modern rework at the bottom of the file */
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- STATS SECTION --- */
.stats-section {
    background-color: var(--color-dark);
    /* Image background with overlay */
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/IMG_1601-1024x768.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Optional simple animation on scroll can be done with AOS or custom JS, 
       but here we just static style */
}

.stat-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.8;
}

/* --- MOBILE MENU (règles nav migrées dans le bloc ≤992px ci-dessus) --- */

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- STATS TITLE --- */
.stats-section .section-title {
    color: white;
    margin-bottom: 3rem;
}


/* --- STATS SECTION (MODERN DARK LUXURY) --- */
.stats {
    /* Parallax Background like Hero */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/Agassac_04-1024x685.jpg');
    background-size: cover;
    background-position: center;
    
    color: var(--color-gold);
    padding: 8rem 0;
    position: relative;
    overflow: visible;
}

/* Background watermark */
.stats::before {
    content: 'IN SITU';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05); /* Slightly more visible on image */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: var(--font-heading);
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    padding: 1rem;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
    display: block;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3); /* Legibility */
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9); /* Brighter for image bg */
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.stat-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 1rem auto 0;
    opacity: 0.8;
}


/* Partners Section - Clean & Trustworthy */
.partners {
    background-color: white;
    padding: 6rem 0;
    border-top: 1px solid #f0f0f0;
}

.partners-marquee {
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 40s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content img {
    height: 45px; /* Slightly smaller for elegance */
    margin: 0 50px;
    transition: all 0.4s ease;
    opacity: 0.4;
    filter: grayscale(100%);
}

.marquee-content img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ===================================================
   CAPACITY TABLES (Venue Detail Pages)
   =================================================== */
.capacity-table-wrapper {
    margin: 3rem 0;
}

.capacity-table-wrapper .capacity-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    text-align: left;
}

.capacity-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.capacity-table thead th {
    background-color: var(--color-dark);
    color: white;
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
}

.capacity-table thead th:first-child {
    text-align: left;
}

.capacity-table tbody td {
    padding: 0.9rem 1.2rem;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.capacity-table tbody td:first-child {
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.capacity-table tbody td:nth-child(2) {
    color: var(--color-gold);
    font-weight: 600;
    text-align: center;
}

.capacity-table tbody td:nth-child(n+3) {
    text-align: center;
    color: #555;
}

.capacity-table tbody tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.capacity-table tbody tr:last-child td {
    border-bottom: none;
}

.full-row-cell {
    text-align: center !important;
    font-style: italic;
    color: #666 !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 0.9rem !important;
}

/* ===== VENUE PHOTO GALLERY ===== */
.venue-gallery {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-gray);
}

.venue-gallery .gallery-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.venue-gallery .gallery-title span {
    color: var(--color-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    background: var(--color-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.large {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 6, 0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.lightbox-overlay.active {
    display: flex;
}
.lightbox-img {
    max-width: 88vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    animation: fadeIn 0.22s ease;
    display: block;
}
.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.75rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.75);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    padding: 0.25rem 0.5rem;
}
.lightbox-close:hover {
    color: var(--color-gold);
    transform: scale(1.15);
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem 1.25rem;
    transition: color 0.2s;
    user-select: none;
    line-height: 1;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--color-gold);
}
.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }
.lightbox-caption {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    white-space: nowrap;
    max-width: 80vw;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 600px) {
    .lightbox-prev, .lightbox-next { font-size: 1.4rem; padding: 0.75rem; }
    .lightbox-img { max-width: 96vw; max-height: 75vh; }
}

/* ===== PHOTO GALLERY — Editorial Layout ===== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.photo-gallery figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    background: #111;
    height: 240px;
}

.photo-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(.25,.46,.45,.94), opacity 0.3s ease;
    opacity: 0.92;
}

.photo-gallery figure:hover img {
    transform: scale(1.06);
    opacity: 1;
}

/* Photo 1 — featured hero */
.photo-gallery figure:nth-child(1) {
    grid-column: 1 / 4;
    height: 420px;
}

/* Photos 2, 3, 4 — default 1 col (row 2) */

/* Photo 5 — wide (2/3) */
.photo-gallery figure:nth-child(5) {
    grid-column: span 2;
}

/* Photo 6 — 1/3 (default) */

/* Photos 7, 8, 9 — row of 3 (default) */

@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    .photo-gallery figure {
        height: 200px;
    }
    .photo-gallery figure:nth-child(1) {
        grid-column: 1 / 3;
        height: 280px;
    }
    .photo-gallery figure:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .photo-gallery figure:nth-child(1),
    .photo-gallery figure:nth-child(5) {
        grid-column: span 1;
        height: 220px;
    }
}

/* ===== SIDEBAR CTA CARD ===== */
.venue-cta-row {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(176, 138, 90, 0.2);
}

.cap-table-block {
    min-width: 0;
}

.cap-table-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.cap-table-compact {
    font-size: 0.82rem !important;
}

.cap-table-compact th,
.cap-table-compact td {
    padding: 0.55rem 0.75rem !important;
}

@media (max-width: 900px) {
    .venue-cta-row {
        grid-template-columns: 1fr;
    }
}

.sidebar-cta-card {
    background: var(--color-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.sidebar-cta-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.sidebar-cta-card h3 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.sidebar-cta-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.btn-sidebar-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--color-primary);
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    margin-bottom: 1.25rem;
}

.btn-sidebar-cta:hover {
    background: #c0532a;
    transform: translateY(-1px);
}

.sidebar-venues-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.1rem;
}

.sidebar-venues-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.75rem;
}

.sidebar-venue-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
}

.sidebar-venue-link:last-child {
    border-bottom: none;
}

.sidebar-venue-link:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.sidebar-venue-link i {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.sidebar-venue-link:hover i {
    color: var(--color-gold);
}

/* ===== ACCESSIBILITY SECTION ===== */
.access-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.access-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.access-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--color-gray);
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
}

.access-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.access-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.access-item strong {
    font-size: 0.9rem;
    color: var(--color-dark);
    font-weight: 600;
}

.access-item span {
    font-size: 0.85rem;
    color: #777;
}

/* ===== AUTRES LIEUX SECTION ===== */
.autres-lieux-section {
    background: var(--color-gray);
}

.autres-lieux-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.autres-lieux-title span {
    color: var(--color-gold);
}

.autres-lieux-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.autre-lieu-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.autre-lieu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.autre-lieu-img {
    height: 180px;
    overflow: hidden;
}

.autre-lieu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.autre-lieu-card:hover .autre-lieu-img img {
    transform: scale(1.05);
}

.autre-lieu-info {
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.autre-lieu-location {
    font-size: 0.72rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.autre-lieu-info strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-dark);
}

.autre-lieu-link {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-top: 0.3rem;
}

.autre-lieu-link i {
    font-size: 0.75rem;
}

/* ===== DEVIS CTA SECTION ===== */
.devis-cta-section {
    background: var(--color-dark);
    padding: 5rem 2rem;
}

.devis-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.devis-cta-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.6rem;
}

.devis-cta-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.7rem;
    line-height: 1.2;
}

.devis-cta-text p {
    color: #aaa;
    font-size: 0.95rem;
    max-width: 500px;
    line-height: 1.6;
}

.devis-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    flex-shrink: 0;
}

.devis-phone {
    color: #bbb;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    white-space: nowrap;
}

.devis-phone i {
    color: var(--color-gold);
    margin-right: 6px;
}

.devis-phone:hover {
    color: white;
}

.btn-lg {
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .access-grid { grid-template-columns: 1fr; }
    .autres-lieux-grid { grid-template-columns: 1fr; }
    .devis-cta-inner { flex-direction: column; text-align: center; }
    .devis-cta-text h2 { font-size: 1.6rem; }
    .devis-cta-text p { max-width: 100%; margin: 0 auto; }
    .devis-cta-actions { width: 100%; align-items: stretch; }
    .btn-lg { text-align: center; }
}


/* ===== VENUE PAGE V2 LAYOUT ===== */

.venue-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.venue-breadcrumb {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    padding: 1rem 2rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.venue-breadcrumb a,
.venue-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.venue-breadcrumb a:hover { color: var(--color-gold); }
.venue-breadcrumb .sep { margin: 0 0.5rem; color: rgba(255,255,255,0.3); }
.venue-breadcrumb span:last-child { color: rgba(255,255,255,0.9); }

.venue-hero-content {
    padding-bottom: 5rem;
    padding-top: 4rem;
}

.venue-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.venue-tag::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--color-gold);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .venue-breadcrumb { display: none; }
    .venue-tag { display: none !important; }
}

.venue-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.venue-hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    font-size: 1.1em;
    margin-top: -0.05em;
}

.venue-hero-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.venue-hero-location i { color: var(--color-gold); }

/* 2-column venue layout */
.venue-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.venue-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.venue-desc p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

/* Stats row */
.venue-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
}

.venue-stat {
    background: var(--color-gray, #f4f4f4);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    text-align: center;
}

.venue-stat strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
}

.venue-stat span {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin-top: 0.4rem;
}

/* Partnership box */
.venue-partnership {
    background: var(--color-dark);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2.5rem;
}

.partnership-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.venue-partnership > p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.partnership-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.partnership-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    transition: background 0.2s;
}

.partnership-tag:hover { background: rgba(255, 255, 255, 0.12); }

.partnership-tag i {
    color: var(--color-gold);
    font-size: 0.72rem;
}

/* Event types light grid (replaces dark partnership box) */
.event-types {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--color-gray);
    border-radius: 10px;
    border-left: 3px solid var(--color-gold);
}

.event-types-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.6rem;
    display: block;
}

.event-types-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.event-type-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--color-dark);
    padding: 0.4rem 0;
}

.event-type-item i {
    color: var(--color-gold);
    font-size: 0.9rem;
    width: 1.1rem;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .event-types-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Sidebar */
.venue-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.25rem;
}

.sidebar-card-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-info-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
    font-size: 0.87rem;
    color: #444;
    line-height: 1.5;
}

.sidebar-info-item:last-child { margin-bottom: 0; }

.sidebar-info-item > i {
    color: var(--color-gold);
    width: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Equipment tags in sidebar */
.equip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.equip-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--color-gray);
    color: var(--color-dark);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    border: 1px solid #e8e8e8;
}

.equip-tag i {
    color: var(--color-gold);
    font-size: 0.68rem;
}

/* Access items in sidebar */
.sidebar-access-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
    color: #444;
    line-height: 1.5;
}

.sidebar-access-item:last-child { margin-bottom: 0; }

.sidebar-access-item > i {
    color: var(--color-gold);
    width: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.sidebar-access-item strong {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
    color: var(--color-dark);
}

/* Responsive venue layout */
@media (max-width: 1024px) {
    .venue-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .venue-sidebar { position: static; }
}

@media (max-width: 768px) {
    .venue-hero { min-height: 65vh; }
    .venue-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .venue-stats { grid-template-columns: 1fr 1fr; }
    .venue-hero-title { font-size: 2.4rem; }
}

/* ===== HERO INFOBAR ===== */
.venue-hero-infobar {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(176, 138, 90, 0.3);
    padding: 0;
}

.venue-hero-infobar-inner {
    display: flex;
    align-items: stretch;
    min-height: 80px;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 1.3rem 1.5rem;
    transition: background 0.2s;
}

.hero-info-item:hover {
    background: rgba(176, 138, 90, 0.08);
}

.hero-info-item > i {
    color: var(--color-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-info-item strong {
    display: block;
    color: white;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-info-item span {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
    white-space: nowrap;
}

.hero-info-sep {
    width: 1px;
    background: rgba(176, 138, 90, 0.25);
    margin: 0.8rem 0;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .venue-hero-infobar-inner {
        flex-wrap: wrap;
        min-height: auto;
    }
    .hero-info-item {
        flex: 1 0 45%;
        padding: 1rem;
    }
    .hero-info-sep { display: none; }
}

@media (max-width: 480px) {
    .hero-info-item { flex: 1 0 100%; }
}

/* ===== PREMIUM — Accent label ===== */
.venue-accent-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.venue-accent-label::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2px;
    background: var(--color-gold);
    flex-shrink: 0;
}

/* ===== PREMIUM — KPI metrics strip ===== */
.venue-kpi-bar {
    display: flex;
    align-items: center;
    margin: 2.5rem 0;
    padding: 2.2rem 0;
    border-top: 1px solid rgba(176, 138, 90, 0.2);
    border-bottom: 1px solid rgba(176, 138, 90, 0.2);
}

.venue-kpi {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.venue-kpi + .venue-kpi::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--color-gold);
    opacity: 0.25;
}

.venue-kpi strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.venue-kpi span {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #aaa;
    margin-top: 0.6rem;
}

.venue-gallery .section-header {
    margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
    .venue-kpi-bar { flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem 0; }
    .venue-kpi { flex: 1 0 30%; }
    .venue-kpi + .venue-kpi::before { display: none; }
}

/* ===== VENUE MAP SECTION ===== */
.venue-map-section {
    background: var(--color-gray);
    padding: 5rem 0;
}

.venue-map-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

#venue-map {
    height: 460px;
    width: 100%;
    z-index: 1;
}

/* Fix: empêcher le reset global img{max-width:100%} de casser les tuiles Leaflet */
.leaflet-container img {
    max-width: none !important;
    max-height: none !important;
}

.venue-map-panel {
    background: var(--color-dark);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-map-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.venue-map-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: white;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.venue-map-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.venue-map-info-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.venue-map-info-item > i {
    color: var(--color-gold);
    font-size: 0.9rem;
    width: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.venue-map-info-item > div strong {
    display: block;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.venue-map-info-item > div span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    line-height: 1.55;
}

.btn-map-itinerary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.btn-map-itinerary:hover {
    background: var(--color-gold);
    color: white;
}

@media (max-width: 900px) {
    .venue-map-layout { grid-template-columns: 1fr; }
    #venue-map { height: 300px; }
    .venue-map-panel { padding: 2rem 1.5rem; }
}

/* =====================================================
   RESPONSIVE MOBILE — Patches v2
   ===================================================== */

/* 1. Empêcher le scroll horizontal parasite (body exclu : bug iOS fixed) */
html { overflow-x: hidden; }

/* 3. Nav : dropdown unifié dans le bloc @media (max-width: 992px) */

/* 4. Tableaux capacités : scroll horizontal sur mobile */
@media (max-width: 768px) {
    .capacity-table-wrapper,
    .cap-table-block {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 4px;
    }
    .capacity-table {
        min-width: 420px;
        font-size: 0.78rem !important;
    }
    .capacity-table thead th,
    .capacity-table tbody td {
        padding: 0.55rem 0.65rem !important;
    }
}

/* 4b. Tableaux capacités : layout carte sur très petit écran */
@media (max-width: 480px) {
    .cap-table-block,
    .capacity-table-wrapper {
        overflow-x: visible;
    }
    .capacity-table {
        min-width: 0 !important;
        width: 100% !important;
        font-size: 0.82rem !important;
        box-shadow: none;
    }
    .capacity-table thead {
        display: none;
    }
    .capacity-table tbody tr {
        display: block;
        margin-bottom: 0.75rem;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        background: white;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    }
    .capacity-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.55rem 0.9rem !important;
        border-bottom: 1px solid #f0f0f0;
        text-align: right !important;
        font-size: 0.82rem !important;
    }
    .capacity-table tbody td:last-child {
        border-bottom: none;
    }
    .capacity-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-dark);
        text-align: left;
        flex-shrink: 0;
        margin-right: 0.5rem;
    }
    .capacity-table tbody td:first-child {
        background: var(--color-dark);
        color: white !important;
        font-size: 0.78rem !important;
        letter-spacing: 0.08em;
        justify-content: center;
        text-align: center !important;
    }
    .capacity-table tbody td:first-child::before {
        display: none;
    }
    .capacity-table tbody tr:nth-child(even) td {
        background-color: transparent;
    }
    .capacity-table tbody tr:nth-child(even) td:first-child {
        background: var(--color-dark);
    }
}

/* 5. Hero infobar : supprimer le nowrap qui cause du dépassement */
@media (max-width: 480px) {
    .hero-info-item strong,
    .hero-info-item span {
        white-space: normal;
        word-break: break-word;
    }
    .hero-info-item {
        padding: 0.85rem 0.75rem;
        gap: 0.6rem;
    }
}

/* 6. Autres lieux : 2 colonnes sur tablette (entre 481 et 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .autres-lieux-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 7. Très petits écrans (< 380px) */
@media (max-width: 380px) {
    .container { padding: 0 1rem; }
    .section-padding { padding: 3rem 0; }
    .venue-kpi strong { font-size: 2rem; }
    .venue-kpi span { font-size: 0.6rem; letter-spacing: 0.08em; }
    .venue-stats { grid-template-columns: 1fr; }
    .event-types-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 1.9rem; }
    .venue-hero-title { font-size: 2rem; }
}

/* 8. Taille des touches : minimum 44px de hauteur tactile (WCAG 2.5.5) */
@media (max-width: 768px) {
    .btn,
    .btn-sidebar-cta,
    .btn-map-itinerary,
    .scroll-top {
        min-height: 44px;
    }
    .btn-lg { width: 100%; text-align: center; display: block; }
    /* mobile-toggle sizing géré dans le bloc ≤992px */
}

/* 9. Formulaire contact : padding réduit sur mobile */
@media (max-width: 600px) {
    .contact-form-container,
    .contact-info { padding: 1.25rem 1rem; }
    .contact-grid { gap: 1.5rem; margin-top: 1.5rem; }
}

/* 10. Photo gallery : hauteurs adaptées à l'écran */
@media (max-width: 480px) {
    .photo-gallery figure { height: 180px; }
    .photo-gallery figure:nth-child(1) { height: 230px; }
}

/* 11. Venue map panel : texte lisible sur mobile */
@media (max-width: 600px) {
    .venue-map-panel h3 { font-size: 1.3rem; }
    .btn-map-itinerary { width: 100%; justify-content: center; }
}

/* 12. Stats numbers : font-size fluide */
@media (max-width: 600px) {
    .stat-number { font-size: 2.8rem; }
}

/* 13. Footer nav : flex-wrap si trop long */
@media (max-width: 600px) {
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* =====================================================
   iOS SAFARI — Background image rendering fixes
   ===================================================== */

/* 14. Forcer le compositing GPU sur toutes les sections background-image
       → corrige le "gris au premier paint" sur iPhone/iPad Safari */
.hero,
.venue-hero,
.cta-banner,
.stats,
.stats-section {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* S'assurer que background-attachment est bien scroll (jamais fixed) */
    background-attachment: scroll !important;
}

/* 15. Couleurs de secours : visibles si image en cours de chargement */
.hero        { background-color: #1a1a1a; }
.venue-hero  { background-color: #1a1a1a; }
.cta-banner  { background-color: #111111; }
.stats       { background-color: #111111; }
.stats-section { background-color: #1a1a1a; }

/* 16. Hauteur hero responsive : 100dvh sur iOS récent, 100svh fallback,
       -webkit-fill-available pour iOS < 15.4 */
.hero {
    height: 100vh;               /* ≤ iOS 14 */
    height: -webkit-fill-available; /* Safari WebKit exact viewport */
    height: 100svh;              /* iOS 15.4+ safe viewport */
    min-height: 500px;           /* Plancher absolu */
}

/* 17. venue-hero min-height plus stable sur petits écrans */
@media (max-width: 768px) {
    .venue-hero {
        min-height: 60svh;
        min-height: 60vh; /* fallback */
    }
}

/* 18. Sections homepage avec grid inline → 1 colonne sur mobile */
@media (max-width: 768px) {
    /* L'Excellence In Situ */
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .values-grid img {
        width: 100%;
        max-height: 280px;
        object-fit: cover;
        margin-top: 0;
    }

    /* Section Propriétaires */
    .owners-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    /* Grille 2×2 des icônes Propriétaires : 2 colonnes sur mobile */
    .owners-grid > div:last-child {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    /* Partners marquee : logos plus petits */
    .marquee-content img {
        height: 32px;
        margin: 0 24px;
    }
    .partners {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    /* Grille icônes Propriétaires : 1 colonne sur très petit écran */
    .owners-grid > div:last-child {
        grid-template-columns: 1fr !important;
    }
    .marquee-content img {
        height: 26px;
        margin: 0 16px;
    }
}

/* =====================================================
   CTA FLOTTANT — "Demander un devis" sur pages lieux
   ===================================================== */
.venue-cta-float {
    display: none; /* caché sur desktop */
}

@media (max-width: 992px) {
    .venue-cta-float {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        position: fixed;
        bottom: 1.25rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 900;
        background: var(--color-gold, #b8963e);
        color: #fff;
        font-family: var(--font-heading, sans-serif);
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        padding: 0.9rem 2rem;
        border-radius: 50px;
        box-shadow: 0 6px 24px rgba(0,0,0,0.35);
        white-space: nowrap;
        min-height: 48px;
        transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .venue-cta-float:hover,
    .venue-cta-float:active {
        background: #9a7a2f;
        transform: translateX(-50%) translateY(-2px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    }
    /* Espace en bas pour éviter que le contenu soit caché sous le bouton */
    body.has-venue-cta { padding-bottom: 80px; }
}

/* 19. KPI bar : 2 colonnes sur mobile (évite le groupement de 3+1) */
@media (max-width: 480px) {
    .venue-kpi-bar { flex-wrap: wrap; gap: 1rem; padding: 1.25rem 0; }
    .venue-kpi { flex: 1 0 45%; text-align: center; }
}

@media (max-width: 380px) {
    .venue-kpi { flex: 1 0 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.75rem; }
    .venue-kpi:last-child { border-bottom: none; }
}
