/* ============================================
   L'Orangerie des Trois Roys — Stylesheet
   Color palette inspired by the logo: teal, cream, gold
   ============================================ */

:root {
    --color-primary: #2A6B6B;
    --color-primary-dark: #1E4F4F;
    --color-primary-light: #3A8585;
    --color-gold: #C5A572;
    --color-gold-light: #D4BB8A;
    --color-dark: #1A1A1A;
    --color-text: #333333;
    --color-text-light: #6B6B6B;
    --color-cream: #F8F5F0;
    --color-cream-dark: #EDE8E0;
    --color-white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.15);
    --radius: 4px;
}

/* 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: 400;
    line-height: 1.2;
    color: var(--color-dark);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 107, 107, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-white);
    transition: var(--transition);
    border-radius: var(--radius);
}

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

.nav-link:hover {
    color: var(--color-gold-light);
}

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

.nav-link--cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--color-primary-dark);
    color: var(--color-white) !important;
}

/* 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;
}

.navbar.scrolled .nav-toggle span {
    background: var(--color-dark);
}

.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);
}

/* Mobile nav overlay — hidden by default, shown via media query */
.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;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
    border-radius: var(--radius);
    animation: fadeInDown 1s ease 0.3s both;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero h1 span {
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 44px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    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.6;
    animation: bounce 2s infinite;
    transition: opacity var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
}

/* ============================================
   Sections Common
   ============================================ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 20px auto 0;
}

.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: 64px;
    align-items: center;
}

.lieu-intro {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.lieu-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.lieu-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lieu-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.lieu-feature svg {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.lieu-feature strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.lieu-feature span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.lieu-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 520px;
}

.lieu-img {
    border-radius: var(--radius);
    overflow: hidden;
}

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

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

.lieu-img--main {
    grid-row: 1 / 3;
}

/* ============================================
   Nos Espaces
   ============================================ */
.section--espaces {
    background: var(--color-white);
}

.espaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.espace-card {
    position: relative;
    background: var(--color-cream);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.espace-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.espace-img {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.espace-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.15));
    pointer-events: none;
}

.espace-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.espace-card:hover .espace-img img {
    transform: scale(1.07);
}

.espace-content {
    padding: 32px 28px 36px;
    position: relative;
}

.espace-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: -30px;
    right: 24px;
    line-height: 1;
    transition: var(--transition);
}

.espace-card:hover .espace-num {
    opacity: 0.5;
    color: var(--color-primary);
}

.espace-content h3 {
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.espace-line {
    width: 36px;
    height: 2px;
    background: var(--color-gold);
    margin-bottom: 16px;
    transition: width var(--transition);
}

.espace-card:hover .espace-line {
    width: 56px;
    background: var(--color-primary);
}

.espace-content p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   Événements
   ============================================ */
.section--evenements {
    background: var(--color-cream);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.event-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.event-card-img {
    height: 280px;
    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: 36px;
}

.event-card-content h3 {
    color: var(--color-primary);
    margin-bottom: 12px;
}

.event-card-content > p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.event-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.event-list li {
    font-size: 0.85rem;
    color: var(--color-text);
    padding-left: 16px;
    position: relative;
}

.event-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

.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;
}

/* ============================================
   Citation
   ============================================ */
.section--quote {
    position: relative;
    padding: 120px 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: rgba(26, 26, 26, 0.75);
}

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

.section--quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section--quote blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.7;
    position: relative;
}

.section--quote blockquote p::before {
    content: '\201C';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    line-height: 1;
    opacity: 0.5;
}

/* ============================================
   Galerie
   ============================================ */
.section--galerie {
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
}

.gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 107, 107, 0);
    transition: var(--transition);
}

.gallery-item:hover::after {
    background: rgba(42, 107, 107, 0.2);
}

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

/* ============================================
   FAQ
   ============================================ */
.section--faq {
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-cream-dark);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-dark);
    cursor: pointer;
    transition: color var(--transition);
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--transition);
}

details[open] .faq-question::after {
    content: '−';
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-answer {
    padding: 0 0 24px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--color-primary);
    font-weight: 500;
    transition: color var(--transition);
}

.faq-answer a:hover {
    color: var(--color-primary-dark);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    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%);
}

/* ============================================
   Contact
   ============================================ */
.section--contact {
    background: var(--color-cream);
}

.contact-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 48px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 32px 20px;
    background: var(--color-cream);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
    width: 28px;
    height: 28px;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 0;
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    justify-content: center;
}

.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--color-cream-dark);
    border-radius: 50%;
    color: var(--color-text-light);
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}


/* ============================================
   Map
   ============================================ */
.section--map {
    padding: 0;
    line-height: 0;
}

.section--map iframe {
    filter: grayscale(0.3) contrast(1.05);
}

/* ============================================
   Page Mentions légales
   ============================================ */
.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(--color-primary);
    transition: color var(--transition);
}

.legal-section a:hover {
    color: var(--color-primary-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer h4 {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-nav a,
.footer-contact a {
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-nav li {
    margin-bottom: 10px;
    font-size: 0.88rem;
}

.footer-contact 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(--color-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-credit a {
    color: var(--color-gold-light);
}

/* ============================================
   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: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    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.85rem;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.cookie-banner-content a {
    color: var(--color-gold-light);
    text-decoration: underline;
}

.cookie-banner-content a:hover {
    color: var(--color-gold);
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn--accept {
    background: var(--color-primary);
    color: var(--color-white);
}

.cookie-btn--accept:hover {
    background: var(--color-primary-dark);
}

.cookie-btn--refuse {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn--refuse:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

/* ============================================
   Legal page lists
   ============================================ */
.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: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

/* ============================================
   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); }
}

/* Scroll reveal */
.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: 40px;
    }

    .events-grid {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@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-white);
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 60px 40px;
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    .nav-menu.active {
        right: 0;
    }

    /* Overlay behind mobile menu */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition), visibility var(--transition);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        color: var(--color-text) !important;
        font-size: 0.95rem;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-cream);
        width: 100%;
    }

    .nav-link--cta {
        border-bottom: none;
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        padding: 14px 24px;
    }

    /* 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;
    }

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

    .espace-img {
        height: 260px;
    }

    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card-img {
        height: 200px;
    }

    .event-list {
        grid-template-columns: 1fr;
    }

    .event-card-content {
        padding: 24px;
    }

    /* Contact */
    .contact-details {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .contact-item a,
    .contact-item span {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Quote */
    .section--quote {
        padding: 72px 0;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-item--tall {
        grid-row: span 1;
        aspect-ratio: 1;
    }

    /* 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-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

    .cookie-banner-actions {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .section { padding: 56px 0; }

    .section-header { margin-bottom: 40px; }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .lieu-images {
        grid-template-columns: 1fr;
        height: auto;
    }

    .lieu-img--main {
        grid-row: auto;
        height: 280px;
    }

    .lieu-img--secondary {
        height: 200px;
    }
}
