/* ============================================
   L'Orangerie des Trois Roys — V2 "Éclat Royal"
   DA palette: teal, dark-green, gold, turquoise,
   pink, hot-pink, orange, wine
   ============================================ */

:root {
    /* DA colours */
    --teal: #076470;
    --teal-dark: #15352B;
    --turquoise: #2D9B9C;
    --gold: #795E10;
    --gold-light: #A68A3E;
    --pink: #F2A1B5;
    --pink-vivid: #EF4996;
    --orange: #D95C2B;
    --wine: #5D0C2A;

    /* Functional */
    --color-primary: #076470;
    --color-accent: var(--pink-vivid);
    --color-warm: var(--orange);
    --color-dark: #151515;
    --color-text: #2E2E2E;
    --color-text-light: #6B6B6B;
    --color-cream: #FAF6F0;
    --color-cream-dark: #EDE8DF;
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;

    /* Motion & shape */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.4s var(--ease);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
    --radius: 8px;
    --radius-lg: 16px;
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark);
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

/* ── Buttons ───────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 38px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--pink-vivid), var(--orange));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(239, 73, 150, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(239, 73, 150, 0.45);
}
.btn-outline {
    background: var(--color-white);
    color: var(--color-primary);
    border: 1.5px solid var(--color-white);
}
.btn-outline:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

/* ── Navigation ────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(7, 100, 112, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    border-radius: 50%;
}
.navbar.scrolled .nav-logo img {
    height: 55px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
    border-radius: 50px;
}
.nav-link:hover {
    color: var(--pink);
}
.nav-link--cta {
    background: linear-gradient(135deg, var(--pink-vivid), var(--orange));
    color: var(--color-white) !important;
    margin-left: 8px;
}
.nav-link--cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(239, 73, 150, 0.4);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay { display: none; }

/* ── Hero ──────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(93, 12, 42, 0.55) 0%,
        rgba(7, 100, 112, 0.45) 50%,
        rgba(21, 53, 43, 0.6) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 920px;
    padding: 130px 170px;
}
.hero-diamond {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--pink);
    transform: rotate(45deg);
    margin: 0 auto 32px;
    animation: fadeInDown 1s ease 0.2s both;
}
.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 12px;
    animation: fadeInUp 1s ease 0.4s both;
}
.hero h1 span {
    font-style: italic;
    font-weight: 400;
}
.hero-tagline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.55s both;
}
.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease 0.7s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-white);
    opacity: 0.5;
    animation: bounce 2s infinite;
}
.scroll-indicator:hover { opacity: 1; }

/* ── Sections ──────────────────────────── */
.section { padding: 100px 0; }
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-vivid);
    margin-bottom: 14px;
}
.section-line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-vivid), var(--orange));
    margin: 18px auto 0;
    border-radius: 3px;
}
.section-desc {
    max-width: 600px;
    margin: 24px auto 0;
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* ── Le Lieu ───────────────────────────── */
.section--lieu {
    background: var(--color-cream);
}
.lieu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.lieu-images {
    position: relative;
    height: 560px;
}
.lieu-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: absolute;
    box-shadow: var(--shadow-lg);
}
.lieu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.lieu-img:hover img {
    transform: scale(1.04);
}
.lieu-img--main {
    top: 0;
    left: 0;
    width: 70%;
    height: 75%;
    z-index: 1;
}
.lieu-img--accent {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    z-index: 2;
    border: 4px solid var(--color-cream);
}
.lieu-intro {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 500;
}
.lieu-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
    font-size: 0.92rem;
}
.lieu-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.lieu-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.lieu-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, var(--turquoise), var(--color-primary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}
.lieu-feature strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 2px;
}
.lieu-feature span {
    font-size: 0.82rem;
    color: var(--color-text-light);
}

/* ── Espaces ───────────────────────────── */
.section--espaces {
    background: var(--color-primary);
    color: var(--color-white);
}
.section--espaces .section-tag { color: var(--pink); }
.section--espaces h2 { color: var(--color-white); }

.espaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.espace-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}
.espace-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.15);
}
.espace-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}
.espace-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.espace-card:hover .espace-img img {
    transform: scale(1.08);
}
.espace-content {
    padding: 28px 24px 32px;
    position: relative;
}
.espace-num {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
[data-accent="teal"] .espace-num { color: var(--turquoise); }
[data-accent="pink"] .espace-num { color: var(--pink); }
[data-accent="orange"] .espace-num { color: var(--orange); }

.espace-content h3 {
    color: var(--color-white);
    margin-bottom: 12px;
}
.espace-content p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}

/* ── Événements ────────────────────────── */
.section--privatisation {
    background: var(--color-cream);
}
.section--soirees {
    background: var(--wine);
    color: var(--color-white);
}
.section--soirees .section-tag { color: var(--pink); }
.section--soirees h2 { color: var(--color-white); }
.section--soirees .section-desc { color: rgba(255,255,255,0.7); }
.section--soirees .soiree-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}
.section--soirees .soiree-card:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.section--soirees .soiree-card-content h3 { color: var(--color-white); }
.section--soirees .soiree-card-content p { color: rgba(255,255,255,0.65); }
.section--soirees .soiree-when { color: var(--pink); }
.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.event-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid transparent;
}
.event-card--prive { border-top-color: var(--orange); }
.event-card--pro { border-top-color: var(--orange); }
.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.event-card-img {
    height: 260px;
    overflow: hidden;
}
.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.event-card:hover .event-card-img img {
    transform: scale(1.06);
}
.event-card-content {
    padding: 32px;
}
.event-card-content h3 {
    color: var(--orange);
    margin-bottom: 10px;
}
.event-card-content > p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.event-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.event-list li {
    font-size: 0.84rem;
    color: var(--color-text);
    padding-left: 18px;
    position: relative;
}
.event-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    background: var(--orange);
}

/* Events sub-titles */
.events-subtitle {
    text-align: center;
    margin-bottom: 36px;
}
.events-subtitle h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}
.events-subtitle--location h3 { color: var(--color-primary); }
.events-subtitle--soirees h3 { color: var(--orange); }
.events-subtitle p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* Diamond divider */
.events-separator {
    margin: 64px 0;
    text-align: center;
}
.diamond-divider {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid var(--orange);
    transform: rotate(45deg);
    position: relative;
}
.diamond-divider::before,
.diamond-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    width: 60px;
    background: var(--orange);
    opacity: 0.4;
}
.diamond-divider::before { right: calc(100% + 16px); }
.diamond-divider::after { left: calc(100% + 16px); }

/* Soirées */
.soirees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.soiree-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.soiree-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.soiree-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.soiree-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(93, 12, 42, 0.15));
}
.soiree-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.soiree-card:hover .soiree-card-img img {
    transform: scale(1.06);
}
.soiree-card-content {
    padding: 28px 28px 32px;
    flex: 1;
}
.soiree-day {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--pink-vivid), var(--orange));
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 12px;
}
.soiree-card-content h3 {
    color: var(--wine);
    margin-bottom: 6px;
}
.soiree-when {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 14px;
    display: block;
}
.soiree-card-content p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}
.events-cta {
    text-align: center;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--color-cream-dark);
}
.events-cta p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 24px;
}

/* ── Espaces Chiffres ─────────────────── */
.espaces-chiffres {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}
.espace-chiffre {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    border-left: 3px solid var(--turquoise);
    border: 1px solid rgba(255,255,255,0.1);
}
.espace-chiffre-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 10px;
}
.espace-chiffre-surface {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
}
.espace-chiffre-capacite {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}
.espaces-total {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    margin-bottom: 48px;
}

/* ── Bouton téléchargement ───────────── */
.btn-download {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(7, 100, 112, 0.3);
}
.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(7, 100, 112, 0.45);
}
.events-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Citation ──────────────────────────── */
.section--quote {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.quote-bg {
    position: absolute;
    inset: 0;
}
.quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(93, 12, 42, 0.55) 0%,
        rgba(7, 100, 112, 0.5) 100%
    );
}
.section--quote .container {
    position: relative;
    z-index: 1;
}
.section--quote blockquote {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
    padding: 100px 140px;
}
.quote-diamond {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--pink);
    transform: rotate(45deg);
    margin: 0 auto 32px;
}
.section--quote blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.8;
}
.section--quote blockquote p::before {
    content: '\AB\A0';
}
.section--quote blockquote p::after {
    content: '\A0\BB';
}

/* ── Galerie ───────────────────────────── */
.section--galerie {
    background: var(--color-white);
    padding-bottom: 80px;
}
.gallery-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 24px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--turquoise) var(--color-cream);
    cursor: grab;
}
.gallery-scroll-wrapper:active { cursor: grabbing; }
.gallery-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--color-cream);
    border-radius: 3px;
}
.gallery-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--turquoise);
    border-radius: 3px;
}
.gallery-scroll {
    display: flex;
    gap: 16px;
    width: max-content;
}
.gallery-item {
    width: 320px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(239, 73, 150, 0), rgba(7, 100, 112, 0));
    transition: var(--transition);
    border-radius: var(--radius-lg);
}
.gallery-item:hover::after {
    background: linear-gradient(135deg, rgba(239, 73, 150, 0.15), rgba(7, 100, 112, 0.15));
}
.gallery-item:hover img {
    transform: scale(1.06);
}

/* ── Lightbox ──────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(21, 21, 21, 0.96);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 2.5rem;
    padding: 16px;
    opacity: 0.7;
    transition: opacity var(--transition);
    z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 20px; right: 30px; font-size: 3rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ── FAQ ───────────────────────────────── */
.section--faq {
    background: var(--turquoise);
    color: var(--color-white);
}
.section--faq .section-tag { color: var(--pink); }
.section--faq h2 { color: var(--color-white); }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-white);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--pink);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--transition);
}
details[open] .faq-question::after { content: '\2212'; }
.faq-question:hover { color: var(--teal-dark); }
.faq-answer { padding: 0 0 24px; }
.faq-answer p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}
.faq-answer a {
    color: var(--turquoise);
    font-weight: 500;
    transition: color var(--transition);
}
.faq-answer a:hover { color: var(--pink); }

/* ── Contact ───────────────────────────── */
.section--contact {
    background: var(--color-cream);
}
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.contact-intro {
    margin-bottom: 44px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-dark);
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px 20px;
    min-height: 180px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    text-align: center;
}
.contact-card--phone { border-bottom-color: var(--turquoise); }
.contact-card--email { border-bottom-color: var(--pink-vivid); }
.contact-card--address { border-bottom-color: var(--orange); }
.contact-card--horaires { border-bottom-color: var(--gold-light); }
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.contact-card svg {
    color: var(--color-primary);
}
.contact-card strong {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
}
.contact-card span {
    font-size: 0.88rem;
    color: var(--color-text-light);
}
.contact-socials {
    display: flex;
    gap: 14px;
    justify-content: center;
}
.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--color-text-light);
    border: 1.5px solid var(--color-cream-dark);
    transition: var(--transition);
}
.contact-socials a:hover {
    background: linear-gradient(135deg, var(--pink-vivid), var(--orange));
    border-color: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ── Map ───────────────────────────────── */
.section--map { padding: 0; line-height: 0; }
.section--map iframe { filter: saturate(0.8) contrast(1.05); }

/* ── Footer ────────────────────────────── */
.footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer h4 {
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: var(--font-body);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.88rem;
}
.footer-col a {
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--pink); }
.footer-col p {
    font-size: 0.88rem;
    margin-bottom: 8px;
}
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-social-links a {
    font-size: 0.88rem;
    transition: color var(--transition);
}
.footer-social-links a:hover { color: var(--pink); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.78rem;
    opacity: 0.5;
}
.footer-credit a { color: var(--pink); }

/* ── Cookie Banner ─────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--color-dark);
    color: rgba(255,255,255,0.9);
    padding: 18px 24px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.active { transform: translateY(0); }
.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-banner-content p {
    font-size: 0.84rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.cookie-banner-content a {
    color: var(--pink);
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.cookie-btn--accept {
    background: linear-gradient(135deg, var(--pink-vivid), var(--orange));
    color: var(--color-white);
}
.cookie-btn--accept:hover {
    box-shadow: 0 4px 16px rgba(239, 73, 150, 0.4);
}
.cookie-btn--refuse {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn--refuse:hover {
    background: rgba(255,255,255,0.08);
    color: var(--color-white);
}

/* ── Legal pages ───────────────────────── */
.legal-page {
    padding: 140px 0 80px;
    min-height: 60vh;
}
.legal-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-dark);
}
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.legal-section p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}
.legal-section a {
    color: var(--pink-vivid);
    transition: color var(--transition);
}
.legal-section a:hover { color: var(--orange); }
.legal-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
}
.legal-list li {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}
.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
    background: var(--pink-vivid);
}

/* ── Cadre Art Déco (SVG) ──────────────── */
.artdeco-frame {
    position: relative;
    padding: 120px 160px;
}
.artdeco-frame::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: url('images/cadre-blanc.svg') center / 100% 100% no-repeat;
    pointer-events: none;
}
/* Version couleur pour fonds clairs */
.artdeco-frame--teal::before {
    background-image: url('images/cadre-teal.svg');
}

/* ── Animations ────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ────────────────────────── */
@media (max-width: 1024px) {
    .lieu-grid { gap: 48px; }
    .espaces-grid { grid-template-columns: 1fr 1fr; }
    .espaces-chiffres { grid-template-columns: 1fr 1fr; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    /* Nav mobile */
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 360px;
        height: 100vh;
        background: var(--color-primary);
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 60px 36px;
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-menu.active { right: 0; }
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
    }
    .nav-overlay.active { opacity: 1; visibility: visible; }
    .nav-link {
        color: rgba(255,255,255,0.85) !important;
        font-size: 0.92rem;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        width: 100%;
    }
    .nav-link--cta {
        border-bottom: none;
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        padding: 14px 24px;
    }

    /* Art déco frame mobile */
    .artdeco-frame { padding: 50px 36px; }
    .artdeco-frame::before { inset: -10px; }
    .hero-content { padding: 56px 40px; }
    .contact-intro-wrapper { padding: 50px 36px; }

    /* Hero */
    .hero { min-height: 100vh; min-height: 100svh; }
    .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

    /* Lieu */
    .lieu-grid { grid-template-columns: 1fr; gap: 40px; }
    .lieu-images {
        height: 400px;
        position: relative;
    }

    /* Espaces */
    .espaces-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .espace-img { height: 240px; }

    /* Espaces chiffres */
    .espaces-chiffres { grid-template-columns: 1fr 1fr; }

    /* Events */
    .events-grid,
    .soirees-grid { grid-template-columns: 1fr; }
    .event-card-img { height: 200px; }
    .event-list { grid-template-columns: 1fr; }
    .event-card-content { padding: 24px; }
    .soiree-card-img { height: 200px; }
    .soiree-card-content { padding: 24px; }

    /* Contact */
    .contact-cards {
        grid-template-columns: 1fr 1fr;
        margin: 0 auto 36px;
    }

    /* Quote */
    .section--quote { padding: 48px 0; }
    .section--quote blockquote { padding: 60px 40px; }

    /* Gallery */
    .gallery-item { width: 260px; height: 340px; }

    /* Lightbox mobile */
    .lightbox-close { top: 10px; right: 16px; font-size: 2.5rem; padding: 12px; }
    .lightbox-prev, .lightbox-next {
        font-size: 2rem; padding: 12px; min-width: 48px; min-height: 48px;
    }
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }

    /* Map */
    .section--map iframe { height: 280px; }

    /* Footer */
    .footer-columns { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Cookie */
    .cookie-banner-content { flex-direction: column; text-align: center; }
    .cookie-banner-actions { justify-content: center; }

    /* Legal */
    .legal-page { padding: 100px 0 60px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 40px; }

    .lieu-images { height: 320px; }
    .lieu-img--main { width: 75%; height: 70%; }
    .lieu-img--accent { width: 50%; height: 45%; }

    .espaces-chiffres { grid-template-columns: 1fr; }
    .espace-chiffre-surface { font-size: 1.4rem; }
    .contact-cards { grid-template-columns: 1fr; max-width: 360px; }

    .gallery-item { width: 220px; height: 290px; }
}
