/*!
Theme Name: Domaine du Vieux Château
Author: Bloop Communication
Description: Thème personnalisé pour le Domaine du Vieux Château
Version: 2.0
*/

:root {
    --forest: #5a6b55;
    --forest-dark: #3a4a38;
    --earth: #a08260;
    --earth-dark: #7a6345;
    --sand: #f4efe4;
    --white: #ffffff;
    --dark: #1a1a1a;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --heading: 'Rufina', serif;
    --sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --gold: #D4A574;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav.site-nav {
    position: absolute;
    top: var(--frame-size);
    left: var(--frame-size);
    width: calc(100% - var(--frame-size) * 2);
    z-index: 1000;
    padding: 0.45rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    margin: 0;
    overflow: visible;
}
.logo {
    font-family: var(--heading); font-size: 1.1rem; font-weight: 700;
    color: white; text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none;
    display: flex; align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}
.logo::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 160px;
    left: -15px;
    top: -50px;
    transform: rotate(-5deg);
    background: #fff;
    border: 1px solid rgba(160, 130, 96, 0.1);
    z-index: -1;
}
.logo-img {
    height: 76px;
    width: auto;
    filter: brightness(1);
    transition: opacity 0.3s var(--ease);
    position: relative;
    z-index: 1;
}
.logo:hover .logo-img { opacity: 0.85; }
.nav-menu { display: flex; gap: 3rem; list-style: none; align-items: stretch; }
.nav-menu > li { display: flex; align-items: center; }
.nav-menu > li:has(.nav-btn) + li:has(.nav-btn) { margin-left: calc(-2rem); }
.nav-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s;
}
.nav-menu a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: rgba(255,255,255,0.7);
    transition: width 0.4s var(--ease);
}
.nav-menu a:not(.nav-btn):hover { color: white; }
.nav-menu a:not(.nav-btn):hover::after { width: 100%; }
.nav-btn {
    padding: 0.65rem 1.6rem;
    background: var(--earth);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(160,130,96,0.35);
}
.nav-btn::before { display: none; }
.nav-btn:hover {
    background: var(--earth-dark);
    box-shadow: 0 4px 18px rgba(160,130,96,0.45);
    transform: translateY(-1px);
}
.nav-btn::after { display: none !important; }
.nav-btn--ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    box-shadow: none;
}
.nav-btn--ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    box-shadow: none;
}

/* Dropdown gîtes — legacy (kept for fallback) */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 15px); left: 50%; transform: translateX(-50%);
    background: rgba(58, 74, 56, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    min-width: 220px; padding: 1rem 0; border-radius: 8px;
    opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(10px);
    transition: all 0.3s var(--ease);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
    display: block; padding: 0.6rem 1.5rem;
    color: rgba(255,255,255,0.8); font-size: 0.9rem;
    transition: all 0.2s var(--ease);
}
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown-menu li a:hover {
    color: white; background: rgba(255,255,255,0.1);
    padding-left: 1.8rem;
}
.nav-dropdown-menu li a .gite-cap {
    font-size: 0.8rem; opacity: 0.6; margin-left: 0.5rem;
}

/* ===== MEGA MENU GÎTES ===== */
.nav-mega { position: static; }
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    min-width: 480px;
    border: 1px solid rgba(160, 130, 96, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 1.4rem 0.8rem;
    z-index: 999;
    pointer-events: none;
}
/* Pont invisible pour garder le hover entre le lien et le menu */
.mega-menu::before {
    content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-mega:hover .mega-menu,
.mega-menu.is-open {
    opacity: 1; visibility: visible; transform: translateY(0);
    pointer-events: auto;
}
.mega-col {
    padding: 0 0.8rem;
}
.mega-col:first-child {
    border-right: 1px solid rgba(0,0,0,0.06);
    padding-right: 1rem;
}
.mega-col:last-child {
    padding-left: 1rem;
}
.mega-label {
    display: block; font-size: 0.62rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--earth); margin-bottom: 0.7rem;
    font-family: var(--sans);
}
.mega-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.5rem 0.7rem; border-radius: 6px;
    color: var(--text); text-decoration: none;
    transition: background 0.15s var(--ease);
    margin-bottom: 0.1rem;
}
.mega-item::after { display: none !important; }
.mega-item:hover {
    background: rgba(160, 130, 96, 0.07);
}
.mega-item:hover strong {
    color: var(--earth);
}
.mega-item strong {
    font-size: 0.88rem; font-weight: 600;
    font-family: var(--heading); letter-spacing: 0.2px;
    color: var(--dark);
    transition: color 0.15s var(--ease);
}
.mega-cap {
    font-size: 0.75rem; color: var(--text-light);
    background: rgba(160, 130, 96, 0.08);
    padding: 0.15rem 0.45rem; border-radius: 20px;
    white-space: nowrap;
}
.mega-item-featured {
    margin-top: 0.3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 0.7rem;
}
.mega-hint {
    display: block; font-size: 0.72rem; color: var(--text-light);
    margin-top: 0.7rem; padding: 0.5rem 0.7rem;
    font-style: italic; line-height: 1.5;
    border-top: 1px solid rgba(0,0,0,0.05);
}


/* Mobile menu toggle */
.menu-toggle {
    display: none; appearance: none; background: none; border: none;
    color: white; font-size: 1.5rem; cursor: pointer; padding: 0.5rem;
}


/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 110%;
    will-change: transform; overflow: hidden;
}
.hero-video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(20, 20, 20, 0.25) 18%, rgba(58, 74, 56, 0.45) 55%, rgba(35, 46, 33, 0.75) 100%);
}
.hero-container {
    position: relative; z-index: 2;
    max-width: 1400px; margin: 0 auto; padding: 0 5%; width: 100%;
}
.hero-content {
    text-align: center; color: white;
    max-width: 990px; margin: 0 auto;
    opacity: 0; transform: translateY(30px);
    animation: fadeIn 1s ease-out 0.3s forwards;
}
@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}
.scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.75); font-size: 0.68rem; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: pointer;
    animation: fadeIn 1s ease-out 1.5s forwards; opacity: 0;
    text-decoration: none;
}
.scroll-indicator::before {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
    margin-bottom: 0.2rem;
}
.scroll-indicator i {
    font-size: 1rem;
    animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
.hero-label {
    font-size: 0.9rem; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 2rem; opacity: 0.8;
}
.hero h1 {
    font-family: var(--heading); font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700; line-height: 1.1; margin-bottom: 1.2rem;
    letter-spacing: -1px; color: white;
}
.hero p {
    font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem;
    max-width: 550px; margin-left: auto; margin-right: auto; opacity: 0.9;
}
.hero-footer {
    display: flex; align-items: center; justify-content: center;
    gap: 4rem; padding-top: 2rem;
}
.hero-stats { display: flex; gap: 4rem; }
.hero-stat { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-stat-value { font-family: var(--heading); font-size: 1.6rem; font-weight: 700; }
.hero-stat-label { font-size: 0.82rem; opacity: 0.8; }
/* === WIPE BASE === */
.btn, .btn-earth, .nav-btn, .prefooter-btn-main, .prefooter-btn-alt, .cta-btn, .map-popup-btn {
    position: relative; overflow: hidden; z-index: 1;
}
.btn::before, .btn-earth::before, .nav-btn::before, .prefooter-btn-main::before, .prefooter-btn-alt::before, .cta-btn::before, .map-popup-btn::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: -1;
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover::before, .btn-earth:hover::before, .nav-btn:hover::before, .prefooter-btn-main:hover::before, .prefooter-btn-alt:hover::before, .cta-btn:hover::before, .map-popup-btn:hover::before {
    transform: scaleX(1); transform-origin: left;
}

.btn {
    display: inline-flex; align-items: center; gap: 0.8rem;
    padding: 1rem 2rem; background: transparent; color: white;
    text-decoration: none; font-size: 1rem; font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50px;
    transition: all 0.4s var(--ease); white-space: nowrap;
}
.btn::before { background: rgba(255,255,255,0.12); }
.btn:hover { border-color: white; }
.btn:hover i { transform: translateX(5px); }
.btn i { transition: transform 0.4s var(--ease); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Photos about — reveal en opacité seule (préserve la rotation) */
.about-photo.reveal {
    transform: rotate(-3deg); opacity: 0;
    transition: opacity 0.8s var(--ease);
}
.about-photo-2.reveal { transform: rotate(5deg); transition-delay: 0.15s; }
.about-photo-3.reveal { transform: rotate(2deg); transition-delay: 0.3s; }
.about-photo-4.reveal { transform: rotate(-4deg); transition-delay: 0.45s; }
.about-photo.reveal.active { opacity: 1; }



/* ===== CONTAINERS ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto; margin-right: auto;
    padding-left: calc(5% + var(--frame-size));
    padding-right: calc(5% + var(--frame-size));
}
.container-lg {
    width: 100%;
    max-width: 1400px;
    margin-left: auto; margin-right: auto;
    padding-left: calc(5% + var(--frame-size));
    padding-right: calc(5% + var(--frame-size));
}
.container-sm {
    width: 100%;
    max-width: 800px;
    margin-left: auto; margin-right: auto;
    padding-left: calc(5% + var(--frame-size));
}
.container-md {
    width: 100%;
    max-width: 1000px;
    margin-left: auto; margin-right: auto;
    padding-left: calc(5% + var(--frame-size));
    padding-right: calc(5% + var(--frame-size));
}
.container-fluid {
    width: 100%;
    padding-left: calc(5% + var(--frame-size));
    padding-right: calc(5% + var(--frame-size));
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-white { background: var(--white); }
.section-sand { background: var(--sand); }
.section-forest { background: var(--forest-dark); color: white; }

/* Illustrations hand-drawn nature */
.nature-deco {
    position: absolute; pointer-events: none; opacity: 0.04; z-index: 0;
}
.section, .about-section, .map-section { position: relative; overflow: visible; }
.nature-leaf-1 {
    top: 5%; right: 3%; width: 200px; height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 20 C60 40 30 80 40 140 C50 160 70 170 100 180 C130 170 150 160 160 140 C170 80 140 40 100 20Z' fill='none' stroke='%235a6b55' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M100 20 C100 60 100 120 100 180' fill='none' stroke='%235a6b55' stroke-width='1.5' stroke-dasharray='4 3'/%3E%3Cpath d='M100 60 C80 50 65 55 55 70' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M100 90 C120 80 140 85 150 100' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M100 120 C75 110 60 115 50 130' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-size: contain;
    transform: rotate(15deg);
}
.nature-branch-1 {
    bottom: 8%; left: 2%; width: 250px; height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 120'%3E%3Cpath d='M10 80 C40 75 80 60 120 50 C160 40 200 45 240 30' fill='none' stroke='%235a6b55' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M60 65 C55 45 50 35 40 25' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M120 50 C125 30 130 20 135 10' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M180 40 C175 55 170 65 165 80' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Ccircle cx='40' cy='22' r='6' fill='none' stroke='%235a6b55' stroke-width='1'/%3E%3Ccircle cx='135' cy='7' r='5' fill='none' stroke='%235a6b55' stroke-width='1'/%3E%3Ccircle cx='165' cy='83' r='7' fill='none' stroke='%235a6b55' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-size: contain;
}
.nature-wheat-1 {
    top: 10%; left: 5%; width: 80px; height: 250px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 250'%3E%3Cpath d='M40 240 C42 200 38 160 40 120 C42 80 40 50 40 20' fill='none' stroke='%235a6b55' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M40 180 C25 170 20 160 18 145' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M40 180 C55 170 60 160 62 145' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M40 140 C25 130 18 120 15 105' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M40 140 C55 130 62 120 65 105' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M40 100 C28 90 22 80 20 65' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M40 100 C52 90 58 80 60 65' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M40 60 C30 50 25 40 24 28' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M40 60 C50 50 55 40 56 28' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-size: contain;
    transform: rotate(-5deg);
}
.nature-flower-1 {
    bottom: 5%; right: 8%; width: 120px; height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='50' r='8' fill='none' stroke='%235a6b55' stroke-width='1.5'/%3E%3Cellipse cx='60' cy='30' rx='8' ry='15' fill='none' stroke='%235a6b55' stroke-width='1' transform='rotate(0 60 50)'/%3E%3Cellipse cx='60' cy='30' rx='8' ry='15' fill='none' stroke='%235a6b55' stroke-width='1' transform='rotate(72 60 50)'/%3E%3Cellipse cx='60' cy='30' rx='8' ry='15' fill='none' stroke='%235a6b55' stroke-width='1' transform='rotate(144 60 50)'/%3E%3Cellipse cx='60' cy='30' rx='8' ry='15' fill='none' stroke='%235a6b55' stroke-width='1' transform='rotate(216 60 50)'/%3E%3Cellipse cx='60' cy='30' rx='8' ry='15' fill='none' stroke='%235a6b55' stroke-width='1' transform='rotate(288 60 50)'/%3E%3Cpath d='M60 65 C58 80 55 95 50 110' fill='none' stroke='%235a6b55' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M55 85 C45 80 38 82 32 88' fill='none' stroke='%235a6b55' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-size: contain;
}
.nature-leaf-2 {
    top: 50%; left: 1%; width: 150px; height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 150'%3E%3Cpath d='M20 130 C30 100 50 70 80 50 C110 30 130 25 140 20' fill='none' stroke='%23a08260' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M50 95 C60 80 75 70 90 62' fill='none' stroke='%23a08260' stroke-width='1' stroke-linecap='round'/%3E%3Cpath d='M35 110 C50 100 60 88 70 75' fill='none' stroke='%23a08260' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-size: contain;
    transform: rotate(-10deg);
}

/* ===== PRÉSENTATION DOMAINE ===== */
.about-section {
    position: relative;
    overflow: visible;
    padding: 10rem 0 7rem;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--sand);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.about-illustration {
    display: block;
    width: 220px;
    height: auto;
    margin: 0 auto 2.5rem;
    opacity: 0.85;
}
.about-content {
    text-align: center;
    position: relative; z-index: 2;
}
.about-content h2 {
    font-family: var(--heading); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; margin-bottom: 1.5rem; line-height: 1.15; color: var(--dark);
}
.about-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 300;
    max-width: 880px;
    margin: 30px auto;
}
.cta-link {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: var(--earth); text-decoration: none; font-weight: 600;
    font-size: 1.05rem; transition: gap 0.3s;
}
.cta-link:hover { gap: 1rem; }

/* Photos collage — masquées, retirées du layout */
.about-photo { display: none; }

/* ===== GÎTES ===== */
#gites {
    position: relative;
    z-index: 5;
    padding-bottom: 3rem;
}
.section-header {
    margin-bottom: 5rem; text-align: center;
}
.section-header--split {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
.section-header--split h2 { margin-bottom: 0; }
.section-header-left { flex: 1; }
.section-header-sub {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 0.8rem;
    max-width: 840px;
}
.section-header h2 {
    font-family: var(--heading); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; margin-bottom: 1rem; line-height: 1.15;
}
.section-header p {
    font-size: 1rem; line-height: 1.75; color: var(--text-light); font-weight: 300;
}
.gites-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; gap: 1.5rem;
}
.gites-row-full { grid-template-columns: 1fr; }
.gites-row-3 { grid-template-columns: repeat(3, 1fr); }
.gite-card {
    position: relative; overflow: hidden; cursor: pointer;
    height: 300px; border-radius: 12px;
}
.gite-card.gite-large { height: 280px; }
.gite-bg {
    width: 100%; height: 100%;
    transition: transform 0.7s var(--ease);
}
.gite-card:hover .gite-bg { transform: scale(1.05); }
.gite-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.82) 100%);
    padding: 1.8rem; display: flex; flex-direction: column; justify-content: flex-end;
    color: white; transition: background 0.4s var(--ease);
}
.gite-card:hover .gite-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.9) 100%);
}
.gite-name {
    font-family: var(--heading); font-size: 1.35rem; font-weight: 700;
    margin-bottom: 0.35rem; letter-spacing: 0.01em; line-height: 1.1;
}
.gite-large .gite-name { font-size: 1.75rem; }
.gite-capacity {
    font-size: 0.78rem; opacity: 1; transform: none;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    color: var(--gold);
    font-weight: 600;
}
.gite-card:hover .gite-capacity { opacity: 1; transform: translateY(0); }
.gite-arrow {
    position: absolute; bottom: 1.6rem; right: 1.6rem;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; opacity: 0; transform: translateY(8px) scale(0.9);
    transition: all 0.35s var(--ease);
}
.gite-card:hover .gite-arrow { opacity: 1; transform: translateY(0) scale(1); }
.gite-arrow:hover { background: var(--earth); border-color: var(--earth); }

/* ===== PRIVATISATION + ÉQUIPEMENTS DOMAINE ===== */
#equipements, #equipements-domaine {
    padding-top: 12rem;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}
.domaine-extras {
    max-width: 1400px; margin: 0 auto;
}
.privatisation-editorial {
    text-align: center;
    max-width: 680px; margin: 0 auto 3.5rem;
}
.privatisation-editorial h3 {
    font-family: var(--heading); font-size: clamp(1.4rem, 2vw, 1.6rem);
    font-weight: 700; color: var(--dark); margin-bottom: 1rem; line-height: 1.2;
}
.privatisation-editorial h3 em {
    font-style: italic; color: var(--earth);
}
.privatisation-editorial p {
    font-size: 1rem; line-height: 1.75; color: var(--text-light);
    font-weight: 300; margin-bottom: 1.5rem;
}
.privatisation-editorial .cta-link {
    font-size: 0.95rem;
}
.equip-section-title {
    font-family: var(--heading); font-size: clamp(1.4rem, 2vw, 1.6rem); font-weight: 700;
    color: var(--dark); text-align: center; margin-bottom: 2rem;
}
.equip-icons-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}
.equip-icon-card {
    background: var(--white); border-radius: 12px;
    padding: 2rem 1.2rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    transition: transform 0.3s var(--ease);
}
.equip-icon-card:hover {
    transform: translateY(-4px);
}
.equip-icon-card i {
    font-size: 2rem; color: var(--forest); margin-bottom: 0.3rem;
}
.equip-icon-card strong {
    font-size: 0.9rem; color: var(--dark);
}
.equip-icon-card span {
    font-size: 0.78rem; color: var(--text-light); line-height: 1.4;
}

/* ===== ÉVÉNEMENTS IMMERSIF ===== */
.events-imm {
    position: relative;
    min-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    margin-top: 5rem;
}
/* Slider fond — zoom très lent + fondu entre images */
.events-imm-slider {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.events-imm-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease;
}
.events-imm-slide.active {
    opacity: 1;
    animation: slowZoom 12s ease-out forwards;
}
@keyframes slowZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
.events-imm-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg,
        rgba(35, 46, 33, 0.55) 0%,
        rgba(58, 74, 56, 0.7) 50%,
        rgba(35, 46, 33, 0.8) 100%);
}
.events-imm-content {
    position: relative; z-index: 2;
    text-align: center; color: white;
    max-width: 800px; padding: 0 5%;
}
.events-imm-label {
    display: block;
    font-size: 0.9rem; font-weight: 400;
    text-transform: uppercase; letter-spacing: 3px;
    opacity: 0.8;
    margin-bottom: 2rem;
}
.events-imm-content h2 {
    font-family: var(--heading); font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700; line-height: 1.1; margin-bottom: 1.2rem;
    letter-spacing: -1px; color: white;
}
.events-imm-content > p {
    font-size: 1rem; line-height: 1.75; opacity: 0.85;
    margin-bottom: 3rem; font-weight: 300;
}
/* Liste simple séparée par des dots */
.events-imm-types {
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; flex-wrap: wrap;
    margin-bottom: 3rem;
}
.events-imm-types span:not(.events-imm-dot) {
    font-size: 1rem; font-weight: 400;
    letter-spacing: 0.5px;
}
.events-imm-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    flex-shrink: 0;
}
.events-imm .btn {
    border-color: rgba(255,255,255,0.5);
}
.events-imm .btn:hover {
    border-color: white;
}

/* ===== CARTE INTERACTIVE ===== */
.map-section { padding: 6rem 0; background: white; }
.map-header {
    margin-bottom: 4rem; text-align: center;
    max-width: 100% !important;
}
.map-header h2 {
    font-family: var(--heading); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; margin-bottom: 0.8rem; line-height: 1.15;
}
.map-header p { font-size: 1.1rem; line-height: 1.9; color: var(--text-light); }
.map-container { position: relative; width: 100%; }
.map-image {
    width: 100%; height: 550px;
    background: url('/domaine/img/bg-plan.jpg') center/cover no-repeat;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 5;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
}
.map-dot {
    position: absolute; width: 24px; height: 24px;
    background: var(--earth); border: 4px solid white; border-radius: 50%;
    cursor: pointer; transition: all 0.4s var(--ease);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 0 rgba(160, 130, 96, 0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 0 rgba(160, 130, 96, 0.5); }
    50% { box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 10px rgba(160, 130, 96, 0); }
}
.map-dot:hover {
    transform: scale(1.4); background: var(--forest);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    animation: none;
}
.map-dot-1 { top: 30%; left: 20%; }
.map-dot-2 { top: 40%; left: 40%; }
.map-dot-3 { top: 25%; left: 60%; }
.map-dot-4 { top: 55%; left: 25%; }
.map-dot-5 { top: 50%; left: 65%; }
.map-dot-6 { top: 65%; left: 45%; }
.map-dot-7 { top: 38%; left: 78%; }
.map-popup {
    position: absolute; background: white; padding: 1.8rem;
    border: 2px solid var(--sand); width: 260px; z-index: 10;
    opacity: 0; transform: scale(0.9); pointer-events: none;
    transition: all 0.4s var(--ease); box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.map-popup.active { opacity: 1; transform: scale(1); pointer-events: all; }
.map-popup h4 {
    font-family: var(--heading); font-size: 1.4rem; color: var(--forest-dark);
    margin-bottom: 0.5rem; font-weight: 700;
}
.map-popup p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 1.2rem; }
.map-popup-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.7rem; background: var(--earth); color: white;
    text-decoration: none; border: 2px solid var(--earth); border-radius: 50px;
    font-weight: 500; font-size: 0.9rem;
    transition: all 0.3s;
}
.map-popup-btn::before { background: var(--earth-dark); }
.map-popup-btn i { transition: transform 0.3s var(--ease); }
.map-popup-btn:hover i { transform: translateX(3px); }

/* ===== CÔTE D'OPALE ===== */
.region-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; max-width: 1400px; margin: 0 auto;
}
.region-card {
    position: relative; overflow: hidden; cursor: pointer;
    height: 320px; border-radius: 8px;
}
.region-img {
    width: 100%; height: 100%;
    transition: transform 0.8s var(--ease);
}
.region-card:hover .region-img { transform: scale(1.05); }
.region-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 2.5rem; color: white;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}
.region-overlay h3 {
    font-family: var(--heading); font-size: 1.3rem; font-weight: 700;
    margin-bottom: 0.3rem; color: white;
}
.region-overlay p { font-size: 0.85rem; line-height: 1.6; opacity: 0.9; }
.region-cta-wrapper {
    text-align: center; margin-top: 4rem;
}
.btn-earth {
    display: inline-flex; align-items: center; gap: 0.8rem;
    padding: 1rem 2.5rem; background: var(--earth); color: white;
    text-decoration: none; font-size: 1rem; font-weight: 500;
    border: 2px solid var(--earth); border-radius: 50px; transition: all 0.4s var(--ease);
}
.btn-earth::before { background: var(--earth-dark); }
.btn-earth:hover i { transform: translateX(4px); }
.btn-earth i { transition: transform 0.3s var(--ease); }

/* ===== PRÉ-FOOTER CTA ===== */
/* ===== PRÉ-FOOTER CTA ===== */
.prefooter-cta {
    position: relative;
    min-height: 50vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.prefooter-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.1s ease-out;
    will-change: transform;
}
.prefooter-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(35, 46, 33, 0.55) 0%, rgba(58, 74, 56, 0.8) 100%);
}
.prefooter-content {
    position: relative; z-index: 2;
    text-align: center; color: white;
    padding: 4rem 5%;
}
.prefooter-label {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--earth); margin-bottom: 1.2rem;
}
.prefooter-content h2 {
    font-family: var(--heading); font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
    color: white;
}
.prefooter-content > p {
    font-size: 1.05rem; opacity: 0.75;
    font-weight: 300; line-height: 1.7;
    max-width: 450px;
    margin: 0 auto 30px;
}
.prefooter-btns {
    display: flex; justify-content: center; gap: 1rem;
    flex-wrap: wrap;
}
.prefooter-btn-main {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 1.1rem 2.8rem; background: var(--earth); color: white;
    text-decoration: none; font-size: 1rem; font-weight: 600;
    border: 2px solid var(--earth); border-radius: 50px; transition: all 0.4s var(--ease);
}
.prefooter-btn-main::before { background: var(--earth-dark); }
.prefooter-btn-main i { transition: transform 0.3s; }
.prefooter-btn-main:hover i { transform: translateX(4px); }
.prefooter-btn-alt {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1.1rem 2.2rem; background: transparent; color: white;
    text-decoration: none; font-size: 1rem; font-weight: 400;
    border: 1.5px solid rgba(255,255,255,0.25); border-radius: 50px;
    transition: all 0.3s var(--ease);
}
.prefooter-btn-alt::before { background: rgba(255,255,255,0.1); }
.prefooter-btn-alt:hover { border-color: white; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--forest-dark); color: rgba(255,255,255,0.6);
}
.footer-main-simple {
    text-align: center;
    padding: 4rem 0 3rem;
}
.footer-logo-link {
    display: inline-block; margin-bottom: 1.2rem;
}
.footer-logo-img {
    height: 60px; width: auto;
    opacity: 0.85;
    transition: opacity 0.3s;
}
.footer-logo-link:hover .footer-logo-img { opacity: 1; }
.footer-tagline {
    font-size: 0.9rem; line-height: 1.65;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
}
.footer-contact-inline {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 1.8rem;
}
.footer-contact-inline a,
.footer-contact-inline span {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    text-decoration: none; transition: color 0.2s;
    display: inline-flex; align-items: center; gap: 0.35rem;
}
.footer-contact-inline a:hover { color: rgba(255,255,255,0.9); }
.footer-contact-inline i { font-size: 0.95rem; opacity: 0.7; }
.footer-sep { color: rgba(255,255,255,0.15); }
.footer-social {
    display: flex; justify-content: center; gap: 0.7rem;
}
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.35); text-decoration: none;
    transition: all 0.3s var(--ease);
    font-size: 1.1rem;
}
.social-link:hover { background: rgba(255,255,255,0.12); color: white; }

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 0 5%;
}
.footer-bottom-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 1.3rem 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.8rem;
    font-size: 0.75rem;
}
.footer-bottom-inner > span {
    color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
    display: flex; gap: 1.5rem;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.3); text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.footer-credit {
    color: rgba(255,255,255,0.2);
}
.footer-credit a {
    color: rgba(255,255,255,0.3); text-decoration: none;
    transition: color 0.2s;
}
.footer-credit a:hover { color: rgba(255,255,255,0.5); }

/* ===== PAGE GÎTE ===== */

/* Hero Gîte */
.gite-hero {
    position: relative;
    height: 100vh;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.gite-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 110%;
    will-change: transform;
}
.gite-hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(35, 46, 33, 0.2) 0%, rgba(35, 46, 33, 0.4) 50%, rgba(35, 46, 33, 0.75) 100%);
}
.gite-hero-content {
    position: relative; z-index: 2; text-align: center; color: white;
    padding: 0 5%;
    max-width: 900px;
    opacity: 0; transform: translateY(20px); animation: fadeIn 0.8s ease-out 0.3s forwards;
}
.gite-hero-label {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    opacity: 0.7; margin-bottom: 1rem; font-weight: 500;
}
.gite-hero-content h1 {
    font-family: var(--heading); font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700; margin-bottom: 1rem; letter-spacing: -1px; color: white;
    line-height: 1.1;
}
.gite-hero-meta {
    display: flex; gap: 1.5rem; align-items: center;
    font-size: 1rem; color: white; opacity: 0.95;
    flex-wrap: wrap; justify-content: center;
}
.gite-hero-meta span {
    display: flex; align-items: center; gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 30px;
}
.gite-hero-meta i {
    font-size: 1.1rem;
}
.scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.5rem;
    animation: bounce 2s infinite; z-index: 3;
    text-decoration: none;
}
.scroll-indicator:hover { background: rgba(255,255,255,0.15); }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Bloc infos flottant */
.gite-info-float {
    position: absolute; right: 5%; bottom: -60px; z-index: 10;
    width: auto; max-width: 600px;
}
.gite-info-float-inner {
    background: white; border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    padding: 1.75rem 2rem;
    display: flex; flex-direction: row; gap: 2rem;
    align-items: center;
}
.gite-info-left {
    display: flex; gap: 2rem; align-items: center;
}
.gite-info-item {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.95rem; color: var(--text);
}
.gite-info-item i {
    font-size: 1.5rem; color: var(--forest);
    width: 28px; text-align: center;
}
.gite-info-item.gite-info-price {
    background: var(--forest); color: white;
    padding: 1.25rem 2rem; border-radius: 8px;
    flex-direction: column; align-items: flex-start; gap: 0.3rem;
    margin-left: auto;
}
.gite-info-price .price-label {
    font-size: 0.75rem; opacity: 0.85; text-transform: uppercase;
    letter-spacing: 1px;
}
.gite-info-price .price-value {
    font-size: 1.5rem; font-weight: 700; color: white;
}

/* Photos flottantes */
.floating-photo-wrapper { position: relative; height: 80px; z-index: 5; }
.floating-photo {
    position: absolute; border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15); overflow: hidden;
}
.floating-photo img { width: 100%; height: 100%; object-fit: cover; }
.fp-1 { width: 280px; height: 200px; top: -140px; left: 8%; transform: rotate(-3deg); }
.fp-2 { width: 220px; height: 160px; top: -120px; right: 10%; transform: rotate(4deg); }
.fp-3 { width: 180px; height: 130px; top: -80px; left: 35%; transform: rotate(-1.5deg); }

/* Description + Équipements */
.desc-section {
    padding: 5rem 0;
    background: var(--white);
    transform: rotate(-1.5deg);
    margin: -3rem 0;
    position: relative;
    z-index: 15;
}
.desc-section .container { transform: rotate(1.5deg); }
.desc-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.desc-content h2 { font-family: var(--heading); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; margin-bottom: 1.2rem; color: var(--dark); }
.desc-content p { font-size: 0.95rem; line-height: 1.75; color: var(--text); margin-bottom: 1rem; }
.desc-highlight {
    font-size: 0.95rem; line-height: 1.75; color: var(--earth);
    padding-left: 1.2rem; border-left: 2px solid var(--earth); margin-top: 1.5rem;
}
.equip-box { background: var(--sand); padding: 2rem; border-radius: 8px; }
.equip-box h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--dark); }
.equip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.equip-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--text); }
.equip-item i { font-size: 1.2rem; color: var(--forest); width: 20px; text-align: center; }

/* Galerie */
.gallery-section {
    position: relative;
    z-index: 999;
    margin-top: 50px;
    padding-bottom: 3rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 450px;
}
.gallery-main {
    grid-row: 1 / 3;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-main:hover img { transform: scale(1.05); }
.gallery-side {
    display: contents;
}
.gallery-small {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-small:hover img { transform: scale(1.05); }
.gallery-small:first-child { border-radius: 0; }
.gallery-small:nth-child(2) { border-radius: 0 16px 0 0; }
.gallery-small:nth-child(3) { border-radius: 0; }
.gallery-small:last-child { border-radius: 0 0 16px 0; }
.gallery-small { border-radius: 8px; overflow: hidden; cursor: pointer; }

/* Lightbox */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999;
    background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.3s var(--ease);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 4px;
    transform: scale(0.95); transition: transform 0.3s var(--ease);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 2rem; right: 2rem;
    width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1);
    color: white; border: none; font-size: 1.4rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1);
    color: white; border: none; font-size: 1.4rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-counter { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* Infos pratiques */
.infos-section { padding: 2.5rem 0 4rem; background: var(--white); position: relative; z-index: 10; }
.infos-title { font-family: var(--heading); font-size: clamp(1.4rem, 2vw, 1.6rem); font-weight: 700; text-align: center; margin-bottom: 2rem; color: var(--dark); }
.infos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.info-card { background: var(--sand); padding: 1.8rem; border-radius: 8px; }
.info-card-tarifs {
    border: 1px solid var(--sand);
    background: transparent;
}
.info-card-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.2rem; }
.info-card-header i { font-size: 1.2rem; color: var(--forest); }
.info-card-header h3 { font-family: var(--heading); font-size: 1rem; font-weight: 700; color: var(--dark); }
.info-card ul { list-style: none; }
.info-card li {
    padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.82rem; display: flex; justify-content: space-between; align-items: center;
}
.info-card li:last-child { border-bottom: none; }
.info-card li .label { color: var(--text-light); }
.info-card li .value { font-weight: 600; color: var(--text); }
.info-card li.simple { display: block; color: var(--text-light); }
.info-card li.simple i { color: var(--forest); margin-right: 0.4rem; font-size: 0.85rem; }
.info-card li.simple-info { opacity: 0.75; font-style: italic; font-size: 0.85rem; }
/* Bloc tarif redesign */
/* Tarifs simplifiés - hero price, note et CTA retirés */

/* Autres gîtes */
.others-section { padding: 5rem 0; background: var(--white); }
.others-title { font-family: var(--heading); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; text-align: center; margin-bottom: 3rem; color: var(--dark); }
.others-section .gites-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px;
    margin-bottom: 0;
}
.others-section .gites-bento .gite-card { height: auto; min-height: 300px; }
.other-card { position: relative; overflow: hidden; cursor: pointer; height: 260px; border-radius: 8px; display: block; text-decoration: none; }
.other-card-bg { width: 100%; height: 100%; transition: transform 0.6s var(--ease); }
.other-card:hover .other-card-bg { transform: scale(1.03); }
.other-card-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; color: white;
}
.other-card-name { font-family: var(--heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.2rem; color: white; }
.other-card-cap { font-size: 0.85rem; opacity: 0.9; }
.other-card-arrow {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    width: 38px; height: 38px; border-radius: 50%; background: white; color: var(--forest-dark);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease);
}
.other-card:hover .other-card-arrow { opacity: 1; transform: translateY(0); }

/* CTA Réservation */
.cta-section { background: var(--forest-dark); color: white; padding: 4rem 0; text-align: center; }
.cta-section h2 { font-family: var(--heading); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; margin-bottom: 1.5rem; color: white; }
.cta-btn {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 1rem 2.5rem; background: white; color: var(--forest-dark);
    text-decoration: none; font-size: 0.95rem; font-weight: 600;
    border: 2px solid white; border-radius: 50px;
    transition: all 0.4s var(--ease);
}
.cta-btn::before { background: rgba(0,0,0,0.06); }
.cta-btn i { transition: transform 0.3s var(--ease); }
.cta-btn:hover i { transform: translateX(4px); }

/* Gîte map dot active */
.map-dot.active {
    background: var(--forest); width: 28px; height: 28px;
    border-color: var(--earth); border-width: 5px;
    box-shadow: 0 8px 30px rgba(90, 107, 85, 0.6);
    animation: none;
}
.map-popup-current {
    display: flex; align-items: center; gap: 0.4rem; margin-top: 0.8rem;
    font-size: 0.8rem; color: var(--earth); font-weight: 600; font-style: italic;
}

/* Gîte responsive */
@media (max-width: 1024px) {
    .desc-grid, .infos-grid, .others-grid { grid-template-columns: 1fr; }
    .gallery-grid { height: auto; grid-template-columns: 1fr; }
    .gallery-side { grid-template-columns: 1fr 1fr; }
    .gallery-main { height: 300px; }
    .gallery-small { height: 150px; }
}
@media (max-width: 768px) {
    .floating-photo { display: none; }
    .floating-photo-wrapper { display: none; }
    .equip-grid { grid-template-columns: 1fr; }
    .gite-hero { min-height: 60vh; }
    .gite-hero-content { padding-bottom: 3rem; }
    .gite-hero-specs { flex-wrap: wrap; gap: 0.8rem; }
}

/* ===== WP UTILITIES ===== */
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}
img { max-width: 100%; height: auto; display: block; }

/* ===== CONTOUR BLANC ===== */
:root {
    --frame-size: 20px;
    --frame-color: #fff;
    --frame-z: 100;
}
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    border: var(--frame-size) solid var(--frame-color);
    pointer-events: none;
    z-index: var(--frame-z);
}



/* ===== GÎTE SHOWCASE ===== */
.gite-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 500px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}
.gite-showcase-img {
    width: 100%; height: 100%; min-height: 500px;
    overflow: hidden;
    position: relative;
}
.gite-showcase-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transition: transform 0.8s var(--ease);
}
.gite-showcase:hover .gite-showcase-img::before {
    transform: scale(1.05);
}
.gite-showcase:hover .gite-showcase-img {
    transform: none;
}
.gite-showcase-content {
    padding: 4rem 4rem 4rem 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
    background: var(--forest-dark); color: white;
}
.gite-showcase-label {
    display: inline-block; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px; color: var(--earth);
    margin-bottom: 1.2rem;
}
.gite-showcase-name {
    font-family: var(--heading); font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700; margin-bottom: 0.5rem; line-height: 1.15; color: white;
}
.gite-showcase-capacity {
    font-size: 0.95rem; opacity: 0.7; margin-bottom: 1.5rem;
}
.gite-showcase-desc {
    font-size: 0.95rem; line-height: 1.75; opacity: 0.85;
    margin-bottom: 2rem; max-width: 420px;
}
.gite-showcase .cta-link { color: var(--earth); }

/* ===== GRILLE BENTO ASYMÉTRIQUE ===== */
.gites-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 250px;
    gap: 1.6rem;
    position: relative;
    z-index: 2;
    margin-bottom: -5rem; /* Chevauche la section suivante */
}
/* Override le height fixe des gite-card dans la bento */
.gites-bento .gite-card { height: auto; display: block; text-decoration: none; }
.gite-bento-wide { grid-column: span 2; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .mega-menu { grid-template-columns: 1fr; min-width: 260px; max-width: 300px; padding: 1.2rem; }
    .mega-col { padding: 0.8rem 0; }
    .mega-col:first-child { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .events-imm { min-height: 70vh; }
    .events-imm-types { gap: 1rem; }
    .footer-contact-inline { flex-direction: column; gap: 0.6rem; }
    .footer-sep { display: none; }
    .region-grid { grid-template-columns: repeat(2, 1fr); }
    .gites-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gite-bento-wide { grid-column: span 2; }
    .gite-showcase {
        grid-template-columns: 1fr;
    }
    .equip-icons-grid { grid-template-columns: repeat(3, 1fr); }
    .gite-showcase-img { min-height: 300px; }
    .hero-footer { flex-direction: column; gap: 2rem; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .menu-toggle { display: block; }
    .mega-menu { display: none; }
    /* Menu mobile ouvert */
    .nav-menu[style*="flex"] {
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(35,46,33,0.97); flex-direction: column; gap: 0;
        padding: 1rem 0 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-menu[style*="flex"] li { width: 100%; }
    .nav-menu[style*="flex"] a:not(.nav-btn) {
        display: block; padding: 0.8rem 5%; font-size: 1rem; color: rgba(255,255,255,0.9);
    }
    .nav-menu[style*="flex"] .nav-btn {
        margin: 0.5rem 5%; display: inline-block;
    }
    .region-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .about-photo { display: none; }
    :root { --frame-size: 12px; }
    .gites-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gites-bento .gite-card { min-height: 240px; }
    .gite-bento-wide { grid-column: span 1; }
    .gite-showcase-content { padding: 2.5rem; }
    .equip-icons-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ===== PAGE CONTACT ===== */

/* Hero */
.contact-hero {
    position: relative; min-height: 55vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--forest-dark);
    overflow: hidden;
}
.contact-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(35, 46, 33, 0.6) 0%, rgba(58, 74, 56, 0.8) 100%);
}
.contact-hero-content {
    position: relative; z-index: 2; text-align: center; color: white;
    padding: 6rem 2rem 4rem;
}
.contact-hero-label {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--earth); margin-bottom: 1.2rem;
}
.contact-hero h1 {
    font-family: var(--heading); font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
}
.contact-hero p {
    font-size: 1.05rem; opacity: 0.75; line-height: 1.6; max-width: 480px; margin: 0 auto;
}

/* Section formulaire */
.contact-section {
    padding: 5rem 0;
}
.contact-container {
    display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 4rem;
    align-items: start;
}

/* Form wrapper */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.contact-form-header {
    margin-bottom: 2.5rem;
}
.contact-form-header h2 {
    font-family: var(--heading); font-size: 1.8rem; font-weight: 700;
    color: var(--forest-dark); margin-bottom: 0.5rem;
}
.contact-form-header p {
    font-size: 0.95rem; color: var(--text-light); line-height: 1.6;
}

/* CF7 form grid */
.dvc-form-grid { display: flex; flex-direction: column; gap: 0.2rem; }
.dvc-form-row {
    display: flex; gap: 1.2rem;
}
.dvc-form-field {
    flex: 1; margin-bottom: 1rem;
}
.dvc-form-field-full { flex: 0 0 100%; }
.dvc-form-field-small { flex: 0 0 120px; }
.dvc-form-field label {
    display: block; font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.8px;
    color: var(--forest-dark); margin-bottom: 0.5rem;
    font-family: var(--heading);
}
.dvc-form-field label .required { color: var(--earth); }

/* Inputs CF7 */
.dvc-form-field input[type="text"],
.dvc-form-field input[type="email"],
.dvc-form-field input[type="tel"],
.dvc-form-field input[type="number"],
.dvc-form-field input[type="date"],
.dvc-form-field select,
.dvc-form-field textarea {
    width: 100%; padding: 0.85rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 8px; background: var(--sand);
    font-family: var(--sans); font-size: 0.9rem;
    color: var(--text);
    transition: all 0.25s var(--ease);
    outline: none;
}
.dvc-form-field input:focus,
.dvc-form-field select:focus,
.dvc-form-field textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(90, 107, 85, 0.1);
}
.dvc-form-field textarea {
    min-height: 140px; resize: vertical;
}
.dvc-form-field select {
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%235a6b55' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.dvc-form-field input::placeholder,
.dvc-form-field textarea::placeholder {
    color: var(--text-light); opacity: 0.5;
}

/* Submit */
.dvc-form-submit { margin-top: 0.5rem; }
.wpcf7-submit.dvc-submit,
input.dvc-submit[type="submit"] {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--forest-dark); color: white;
    border: 2px solid var(--forest-dark); border-radius: 50px;
    font-family: var(--heading); font-size: 0.95rem; font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative; overflow: hidden; z-index: 1;
}
.wpcf7-submit.dvc-submit::before,
input.dvc-submit[type="submit"]::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; z-index: -1;
    background: var(--forest);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.wpcf7-submit.dvc-submit:hover::before,
input.dvc-submit[type="submit"]::before {
    transform: scaleX(1); transform-origin: left;
}
.wpcf7-submit.dvc-submit:hover,
input.dvc-submit[type="submit"]:hover {
    border-color: var(--forest);
}

/* CF7 messages */
.wpcf7-response-output {
    border-radius: 8px !important; padding: 1rem 1.2rem !important;
    font-size: 0.88rem; margin-top: 1rem !important;
}
.wpcf7-not-valid-tip {
    font-size: 0.78rem; color: #c44; margin-top: 0.3rem;
}
.wpcf7 .wpcf7-not-valid {
    border-color: #c44 !important;
}
span.wpcf7-spinner {
    margin-left: 1rem;
}

/* Sidebar info */
.contact-info {
    display: flex; flex-direction: column; gap: 1.5rem;
    position: sticky; top: 6rem;
}
.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.contact-info-card h3 {
    font-family: var(--heading); font-size: 1.1rem; font-weight: 700;
    color: var(--forest-dark); margin-bottom: 1.2rem;
}
.contact-info-card ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 1.2rem;
}
.contact-info-card > ul > li {
    display: flex; gap: 0.8rem; align-items: flex-start;
}
.contact-info-card > ul > li > i {
    font-size: 1.3rem; color: var(--earth); flex-shrink: 0; margin-top: 0.15rem;
}
.contact-info-card > ul > li strong {
    display: block; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-light); margin-bottom: 0.2rem;
}
.contact-info-card > ul > li span {
    font-size: 0.9rem; color: var(--text); line-height: 1.5;
}
.contact-info-card > ul > li a {
    color: var(--forest-dark); text-decoration: none;
    transition: color 0.2s;
}
.contact-info-card > ul > li a:hover { color: var(--earth); }

/* Highlights */
.contact-highlights {
    gap: 0.8rem !important;
}
.contact-highlights li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.88rem; color: var(--text);
}
.contact-highlights li i {
    font-size: 1.1rem; color: var(--forest); flex-shrink: 0;
}

/* Map & accès */
.contact-map-section {
    padding: 5rem 0;
}
.contact-map-header {
    text-align: center; margin-bottom: 3rem;
}
.contact-map-header .section-label {
    display: block; font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--earth); margin-bottom: 0.8rem;
}
.contact-map-header h2 {
    font-family: var(--heading); font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--forest-dark);
}
.contact-map-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: start;
}
.contact-map-embed {
    min-height: 480px; border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.contact-map-embed iframe { display: block; min-height: 480px; }
.contact-access {
    display: flex; flex-direction: column; gap: 1.8rem;
}
.contact-access-item {
    display: flex; gap: 1.2rem; align-items: flex-start;
}
.contact-access-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--sand); border-radius: 10px;
    color: var(--forest); font-size: 1.3rem;
}
.contact-access-item h4 {
    font-family: var(--heading); font-size: 1rem; font-weight: 700;
    color: var(--forest-dark); margin-bottom: 0.4rem;
}
.contact-access-item p {
    font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin: 0;
}
.contact-access-time {
    display: inline-block; margin-top: 0.4rem;
    font-size: 0.78rem; font-weight: 600;
    color: var(--earth); letter-spacing: 0.3px;
}

/* Contact responsive */
@media (max-width: 1024px) {
    .contact-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-info { position: static; flex-direction: row; }
    .contact-info-card { flex: 1; }
    .contact-map-grid { grid-template-columns: 1fr; }
    .contact-map-embed { min-height: 350px; }
    .contact-map-embed iframe { min-height: 350px; }
}
@media (max-width: 768px) {
    .contact-form-wrapper { padding: 2rem 1.5rem; }
    .dvc-form-row { flex-direction: column; gap: 0; }
    .dvc-form-field-small { flex: 1; }
    .contact-hero { min-height: 45vh; }
    .contact-hero h1 { font-size: 2rem; }
    .contact-info { flex-direction: column; }
    .contact-section { padding: 3rem 5%; }
    .contact-map-section { padding: 3rem 5%; }
    .contact-map-embed { min-height: 280px; }
    .contact-map-embed iframe { min-height: 280px; }
}

/* ===== MARQUEE PHOTOS ===== */
.photo-marquee {
    padding: 2rem 0;
    overflow: hidden;
    background: #fff;
    transform: rotate(-2deg) scaleX(1.08);
    margin: -3rem 0;
    position: relative;
    z-index: 2;
}
.photo-marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: photo-marquee-scroll 45s linear infinite;
    will-change: transform;
}
.photo-marquee:hover .photo-marquee-track {
    animation-play-state: paused;
}
.photo-marquee-item {
    flex: 0 0 350px;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
}
.photo-marquee-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.8rem 1rem 0.9rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    color: white;
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.photo-marquee-item:hover .photo-marquee-label {
    opacity: 1;
    transform: translateY(0);
}
.photo-marquee-item:hover {
    transform: scale(1.02);
    transition: transform 0.3s var(--ease);
}
@keyframes photo-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 6 - 1.5rem * 6)); }
}

/* Marquee responsive */
@media (max-width: 768px) {
    .photo-marquee-item {
        flex: 0 0 260px;
        height: 180px;
    }
    @keyframes photo-marquee-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-260px * 6 - 1.5rem * 6)); }
    }
}

/* ===== TARIFS - LISTE AVEC TOGGLE ===== */
.tarif-list {
    list-style: none; padding: 0; margin: 0;
}
.tarif-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tarif-item:first-child {
    padding-top: 0;
}
.tarif-item-hidden {
    display: none !important;
}
.tarif-label {
    font-size: 0.82rem;
    color: var(--text);
}
.tarif-prix {
    font-weight: 700;
    color: var(--forest);
    font-size: 0.82rem;
}
.tarif-toggle {
    background: none; border: none; color: var(--forest);
    font-size: 0.85rem; font-weight: 500; cursor: pointer;
    padding: 1rem 0; margin-top: 0.5rem;
    display: flex; align-items: center; gap: 0.4rem;
    transition: opacity 0.2s;
}
.tarif-toggle:hover {
    opacity: 0.7;
}

/* ===== WIDGET CALENDRIER ELLOHA ===== */
.calendar-section {
    padding: 4rem 0; background: var(--sand);
}
.calendar-title {
    font-family: var(--heading); font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700; text-align: center; margin-bottom: 2rem; color: var(--dark);
}
.calendar-widget {
    background: white; border-radius: 12px; padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.container-sm {
    max-width: 800px; margin: 0 auto; padding: 0 5%;
    padding-left: calc(5% + var(--frame-size));
    padding-right: calc(5% + var(--frame-size));
}

/* ===== RESPONSIVE GITE INFO FLOAT ===== */
@media (max-width: 1024px) {
    .gite-info-float {
        position: relative; right: auto; top: auto;
        width: 100%; max-width: 600px; margin: -4rem auto 3rem;
    }
    .gite-info-float-inner {
        flex-direction: column; align-items: stretch;
    }
    .gite-info-left {
        justify-content: center;
    }
    .gite-info-price {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .gite-hero-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .gite-info-float-inner {
        padding: 1.5rem;
    }
    .scroll-indicator {
        bottom: 1rem;
    }
}

/* ===== PAGE RÉGION ===== */
.region-hero {
    position: relative; min-height: 70vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.region-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 110%;
    will-change: transform;
}
.region-hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(35, 46, 33, 0.3) 0%, rgba(35, 46, 33, 0.6) 100%);
}
.region-hero-content {
    position: relative; z-index: 2; text-align: center; color: white;
    max-width: 700px; padding: 0 5%;
}
.region-hero-label {
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
    opacity: 0.8; margin-bottom: 1rem;
}
.region-hero-content h1 {
    font-family: var(--heading); font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700; margin-bottom: 1rem; line-height: 1.1;
}
.region-hero-content p {
    font-size: 1.1rem; opacity: 0.9;
}

.region-intro {
    padding: 5rem 0; background: var(--white);
}
.region-intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.region-intro-content h2 {
    font-family: var(--heading); font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700; margin-bottom: 1.5rem; color: var(--dark); line-height: 1.2;
}
.region-intro-content p {
    font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 1rem;
}
.region-intro-image {
    border-radius: 12px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.region-intro-image img {
    width: 100%; height: auto; display: block;
}

.region-sites {
    padding: 5rem 0; background: var(--sand);
}
.region-sites-header {
    text-align: center; margin-bottom: 3rem;
}
.region-sites-header h2 {
    font-family: var(--heading); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; margin-bottom: 0.5rem; color: var(--dark);
}
.region-sites-header p {
    font-size: 1.1rem; color: var(--text-light);
}
.region-sites-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.region-card {
    position: relative; border-radius: 12px; overflow: hidden;
    min-height: 320px; display: flex; align-items: flex-end;
    cursor: pointer; transition: transform 0.4s var(--ease);
}
.region-card:hover {
    transform: translateY(-8px);
}
.region-card-large {
    grid-column: span 2; min-height: 420px;
}
.region-card-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    transition: transform 0.6s var(--ease);
}
.region-card:hover .region-card-bg {
    transform: scale(1.05);
}
.region-card-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(35, 46, 33, 0) 0%, rgba(35, 46, 33, 0.85) 100%);
}
.region-card-content {
    position: relative; z-index: 2; padding: 2rem; color: white;
}
.region-card-distance {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; opacity: 0.8; margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(5px);
    padding: 0.3rem 0.8rem; border-radius: 20px;
}
.region-card h3 {
    font-family: var(--heading); font-size: 1.5rem; font-weight: 700;
    margin-bottom: 0.5rem;
}
.region-card-large h3 {
    font-size: 2rem;
}
.region-card p {
    font-size: 0.95rem; opacity: 0.9; line-height: 1.5;
}

.region-activities {
    padding: 5rem 0; background: var(--white);
}
.region-activities-title {
    font-family: var(--heading); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; text-align: center; margin-bottom: 3rem; color: var(--dark);
}
.region-activities-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.activity-card {
    background: var(--sand); border-radius: 12px; padding: 2rem;
    text-align: center; transition: transform 0.3s var(--ease);
}
.activity-card:hover {
    transform: translateY(-4px);
}
.activity-icon {
    width: 64px; height: 64px; margin: 0 auto 1.5rem;
    background: var(--forest); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}
.activity-card h3 {
    font-family: var(--heading); font-size: 1.3rem; font-weight: 600;
    margin-bottom: 0.75rem; color: var(--dark);
}
.activity-card p {
    font-size: 0.9rem; color: var(--text); line-height: 1.6;
}

.region-villages {
    padding: 5rem 0; background: var(--sand);
}
.region-villages h2 {
    font-family: var(--heading); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; text-align: center; margin-bottom: 3rem; color: var(--dark);
}
.villages-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.village-card {
    background: white; border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s var(--ease);
}
.village-card:hover {
    transform: translateY(-4px);
}
.village-card img {
    width: 100%; height: 220px; object-fit: cover;
}
.village-content {
    padding: 1.5rem;
}
.village-content h3 {
    font-family: var(--heading); font-size: 1.3rem; font-weight: 600;
    margin-bottom: 0.5rem; color: var(--dark);
}
.village-content p {
    font-size: 0.9rem; color: var(--text); line-height: 1.6;
}

.region-practical {
    padding: 5rem 0; background: var(--white);
}
.practical-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.practical-col h3 {
    font-family: var(--heading); font-size: 1.5rem; font-weight: 600;
    margin-bottom: 1rem; color: var(--dark);
    display: flex; align-items: center; gap: 0.75rem;
}
.practical-col h3 i {
    font-size: 1.8rem; color: var(--forest);
}
.practical-col p {
    font-size: 0.95rem; line-height: 1.7; color: var(--text); margin-bottom: 1rem;
}
.practical-list {
    list-style: none; padding: 0;
}
.practical-list li {
    font-size: 0.95rem; padding: 0.5rem 0; padding-left: 1.5rem;
    position: relative; color: var(--text);
}
.practical-list li::before {
    content: "→"; position: absolute; left: 0; color: var(--forest);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .region-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .region-sites-grid { grid-template-columns: repeat(2, 1fr); }
    .region-card-large { grid-column: span 2; }
    .region-activities-grid { grid-template-columns: repeat(2, 1fr); }
    .villages-grid { grid-template-columns: repeat(2, 1fr); }
    .practical-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .region-sites-grid { grid-template-columns: 1fr; }
    .region-card-large { grid-column: span 1; min-height: 320px; }
    .region-activities-grid { grid-template-columns: 1fr; }
    .villages-grid { grid-template-columns: 1fr; }
}

/* Bon à savoir - Banner sous les cartes */
.notes-banner {
    background: var(--sand); border-radius: 12px;
    padding: 2rem; margin-top: 2rem;
}
.notes-banner-header {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.notes-banner-header i {
    font-size: 1.8rem; color: var(--forest);
}
.notes-banner-header h3 {
    font-family: var(--heading); font-size: 1.3rem;
    font-weight: 600; margin: 0; color: var(--dark);
}
.notes-banner-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.note-item {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem; color: var(--text);
}
.note-item i {
    font-size: 1.3rem; color: var(--forest);
}
.note-item-info {
    opacity: 0.8; font-style: italic;
}

/* Carte calendrier */
.info-card-calendar {
    grid-column: span 1;
}
.info-card-calendar .info-card-header {
    margin-bottom: 1rem;
}
.calendar-widget-embed {
    min-height: 300px;
}

@media (max-width: 768px) {
    .notes-banner-list {
        grid-template-columns: 1fr;
    }
}

/* Overlay "Voir plus" sur dernière image */
.gallery-more {
    position: relative;
}
.gallery-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.3s var(--ease);
}
.gallery-more-overlay i {
    font-size: 2rem;
}
.gallery-more:hover .gallery-more-overlay {
    background: rgba(0, 0, 0, 0.85);
}

/* =====================================================
   ÉVÉNEMENTS — Layout éditorial 2 colonnes
   ===================================================== */
.section-events {
    background: var(--forest-dark);
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.section-events::before { display: none; }
/* On garde .events-bg vide, le fond est géré via ::before */
.events-bg { display: none; }
.events-text-block {
    position: relative; z-index: 1;
    text-align: left;
    padding: 3rem 0;
    flex: none;
}
.label-pill {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212,165,116,0.4);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.6rem;
}
.events-text-block h2 {
    font-family: var(--heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
.events-text-block h2 em {
    font-style: italic;
    color: var(--gold);
}
.events-subtitle {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    max-width: 420px;
    margin: 0 0 1.2rem;
    line-height: 1.75;
}
.events-priv-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
    font-family: var(--heading);
    margin-bottom: 0;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
/* Layout 2 colonnes */
.events-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 calc(5% + 25px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
/* Colonne droite : marquee vertical */
.events-marquee-wrap {
    overflow: hidden;
    height: 580px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-self: center;
}
/* Fondu haut et bas sur chaque colonne */
.events-marquee-col::before,
.events-marquee-col::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}
.events-marquee-col::before {
    top: 0;
    background: linear-gradient(to bottom, var(--forest-dark), transparent);
}
.events-marquee-col::after {
    bottom: 0;
    background: linear-gradient(to top, var(--forest-dark), transparent);
}
.events-marquee-col {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 580px;
}
.events-marquee-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: events-marquee-down 35s linear infinite;
}
.events-marquee-track--up {
    animation: events-marquee-up 35s linear infinite;
}
.events-marquee-wrap:hover .events-marquee-track {
    animation-play-state: paused;
}
@keyframes events-marquee-down {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
@keyframes events-marquee-up {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}
.events-marquee-photo {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.event-equip-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    transition: transform 0.3s var(--ease);
    cursor: default;
    user-select: none;
}
.event-equip-card:hover {
}
/* Icône */
.event-equip-card .equip-card-icon {
    background: rgba(90,107,85,0.08);
}
.event-equip-card .equip-card-icon i {
    color: var(--forest);
}
.event-equip-card strong {
    font-family: var(--heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}
.event-equip-card span {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
}
/* Masquer l'ancienne structure des cards */
.events-cards-wrapper { display: none; }
.events-cards, .event-card { display: none; }

/* Responsive événements */
@media (max-width: 900px) {
    .events-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .events-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .events-cards-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   CÔTE D'OPALE — Bento grid (rework v1)
   ===================================================== */
.section-opale {
    background: var(--sand);
    padding: 5rem 2rem 5.5rem;
}
.opale-header {
    text-align: center;
    margin-bottom: 3rem;
}
.opale-header h2 {
    font-family: var(--heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.opale-header h2 span { color: var(--earth); }
.opale-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}
.opale-grid {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 320px 260px;
    gap: 14px;
}
.opale-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}
.opale-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.opale-card:hover img { transform: scale(1.06); }
.opale-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.05) 55%,
        transparent 100%
    );
    z-index: 1;
}
.bento-plages  { grid-column: 1; grid-row: 1 / 3; }
.bento-nature  { grid-column: 2; grid-row: 1; }
.bento-patrimoine { grid-column: 3; grid-row: 1; }
.bento-gastro  { grid-column: 2 / 4; grid-row: 2; }
.badge-distance {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 2;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
}
.opale-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.8rem 1.8rem;
}
.opale-card-text h3 {
    font-family: var(--heading);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.4rem;
}
.bento-plages .opale-card-text h3 { font-size: clamp(1.5rem, 2vw, 2rem); }
.bento-nature .opale-card-text h3,
.bento-patrimoine .opale-card-text h3,
.bento-gastro .opale-card-text h3 { font-size: 1.1rem; }
.opale-card-text p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
}
.opale-cta { text-align: center; }

/* Responsive — Bento */
@media (max-width: 900px) {
    .opale-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bento-plages     { grid-column: 1 / 3; grid-row: auto; height: 280px; }
    .bento-nature     { grid-column: 1; grid-row: auto; height: 200px; }
    .bento-patrimoine { grid-column: 2; grid-row: auto; height: 200px; }
    .bento-gastro     { grid-column: 1 / 3; grid-row: auto; height: 200px; }
    .events-cards { gap: 1rem; }
    .event-card { width: 180px; min-width: 160px; padding: 1.4rem 1rem; }
    .section-events { margin-top: 4rem; }
}
@media (max-width: 640px) {
    .event-card { width: 155px; padding: 1.2rem 0.8rem; }
    .section-opale { padding: 4rem 1rem 4rem; }
}

/* ===== CAROUSEL ÉQUIPEMENTS ===== */

/* Header : titre + flèches sur la même ligne */
.equip-carousel-header-wrap {
    margin-bottom: 2rem;
}
.equip-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.equip-carousel-title {
    font-family: var(--heading);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.equip-carousel-nav {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}
.equip-carousel-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(90,107,85,0.4);
    background: transparent;
    color: var(--forest);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.equip-carousel-nav button:hover {
    background: rgba(90,107,85,0.1);
    border-color: var(--forest);
}
.equip-carousel-nav button.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Wrapper pleine largeur, débordement à droite seulement */
.equip-carousel-wrapper {
    width: 100%;
    overflow: hidden;
}
.equip-carousel-wrapper .swiper {
    overflow: visible;
}
.equip-carousel-wrapper .swiper-wrapper {
    box-sizing: content-box;
}
/* Masque uniquement le débordement gauche */
.equip-carousel-wrapper {
    clip-path: inset(0 -100vw 0 0);
    -webkit-clip-path: inset(0 -100vw 0 0);
}

/* Slides équipements — largeur fixe pour slidesPerView: 'auto' */
.equip-swiper .swiper-slide,
.equip-swiper-gite .swiper-slide,
.equip-swiper-domaine .swiper-slide {
    width: 200px !important;
    height: auto;
    flex-shrink: 0;
}

/* Cards équipements */
.swiper-slide .equip-card {
    width: 100%;
    background: var(--white);
    border-radius: 14px;
    padding: 2rem 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    transition: transform 0.3s var(--ease);
    user-select: none;
}
.swiper-slide .equip-card:hover {
}
.equip-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(90,107,85,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.2rem;
    flex-shrink: 0;
}
.equip-card-icon i {
    font-size: 1.6rem;
    color: var(--forest);
}
.swiper-slide .equip-card strong {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}
.swiper-slide .equip-card span {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* section-sand : retrait du padding interne pour que le carousel déborde correctement */
#equipements .equip-carousel-wrapper,
#equipements-domaine .equip-carousel-wrapper {
    margin-top: 0;
    padding-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .equip-carousel-wrapper .swiper-wrapper {
        padding-left: 5%;
    }
    .equip-swiper .swiper-slide,
    .equip-swiper-gite .swiper-slide,
    .equip-swiper-domaine .swiper-slide {
        width: 170px !important;
    }
    .swiper-slide .equip-card {
        padding: 1.6rem 1rem;
    }
}
@media (max-width: 480px) {
    .equip-carousel-title { font-size: 1.1rem; }
    .equip-carousel-nav button { width: 40px; height: 40px; font-size: 1rem; }
    .equip-swiper .swiper-slide,
    .equip-swiper-gite .swiper-slide,
    .equip-swiper-domaine .swiper-slide {
        width: 150px !important;
    }
    .swiper-slide .equip-card { padding: 1.4rem 0.8rem; }
}

/* ===== BANDEAU AILLEURS ===== */
.ailleurs-band {
    padding: 4rem 0;
    background: var(--sand);
}
.ailleurs-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}
.ailleurs-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.ailleurs-content {
    padding: 2rem 2.5rem 2rem 0;
}
.ailleurs-title {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0.5rem 0 0.8rem;
    line-height: 1.2;
}
.ailleurs-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.2rem;
    max-width: 480px;
}
