/* ===== VARIABLES ===== */
:root {
    --gold: #B8926A;
    --gold-light: #D4B896;
    --gold-lighter: #E8D5BE;
    --gold-dark: #9A7550;
    --brown: #5C4A3A;
    --brown-dark: #3D2E22;
    --brown-deeper: #2A1F17;
    --beige: #F7F2EC;
    --beige-dark: #EDE5DA;
    --beige-darker: #DDD2C4;
    --cream: #FFFBF7;
    --text: #3D2E22;
    --text-light: #7A6A5A;
    --text-muted: #A89888;
    --white: #FFFFFF;
    --border: #E8DDD0;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', -apple-system, sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    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;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--brown-deeper);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-inner span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-light);
    letter-spacing: 3px;
}

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    animation: preloaderLine 1.2s var(--ease) infinite;
}

@keyframes preloaderLine {
    0%, 100% { transform: scaleX(0.3); opacity: 0.3; }
    50% { transform: scaleX(1); opacity: 1; }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--brown-dark);
}

h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-dark);
}

.overline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.overline-light { color: var(--gold-light); }

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
}

.section-desc {
    margin-top: 12px;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 300;
}

.section-header-light h2 { color: var(--white); }
.section-desc-light { color: rgba(255,255,255,0.7) !important; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease);
}

.btn:hover svg {
    transform: translateX(4px);
}

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

.btn-gold:hover {
    background: var(--gold-dark);
    box-shadow: 0 8px 30px rgba(184, 146, 106, 0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
}

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

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

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}

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

/* ===== IMAGE PLACEHOLDERS ===== */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background: linear-gradient(145deg, var(--beige-dark) 0%, var(--beige-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px dashed var(--border);
    border-radius: inherit;
    margin: 12px;
}

.image-placeholder span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.placeholder-lg { min-height: 400px; }
.placeholder-sm { min-height: 80px; width: 80px; border-radius: 8px; flex-shrink: 0; }

.placeholder-dark {
    background: linear-gradient(145deg, #3a3028 0%, #2a2018 100%);
}

.placeholder-dark::before { border-color: rgba(255,255,255,0.1); }
.placeholder-dark span { color: rgba(255,255,255,0.4); }

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

.navbar.scrolled {
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    border-radius: 6px;
    transition: all 0.5s var(--ease);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--text-light); }
.navbar.scrolled .nav-links a:hover { color: var(--gold-dark); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 8px 22px !important;
    border-radius: 2px;
    letter-spacing: 2px !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.navbar.scrolled .nav-toggle span { background: var(--brown-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); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #2A1F17;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(42,31,23,0.4) 0%, rgba(42,31,23,0.2) 40%, rgba(42,31,23,0.6) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 40px 24px;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-out) 0.3s forwards;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.8vw, 1.6rem);
    font-weight: 500;
    font-style: italic;
    color: #F0E4D8;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.6s forwards;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero-pill {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F0E4D8;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #F0E4D8;
    margin: 0 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}

.hero-bottom {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-indicator {
    width: 20px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollBounce 2s var(--ease) infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

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

/* ===== STATS BAR ===== */
.stats {
    background: var(--brown-deeper);
    padding: 40px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* ===== INTRO ===== */
.intro {
    padding: 120px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .overline {
    margin-bottom: 16px;
}

.intro-text h2 {
    margin-bottom: 24px;
}

.intro-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 16px;
}

.intro-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.signature-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.intro-signature span {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold-dark);
}

.intro-visual {
    position: relative;
}

.intro-image-stack {
    position: relative;
}

.intro-image-1 {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 46, 34, 0.15);
}

.intro-image-1 .image-placeholder {
    min-height: 420px;
}

.intro-image-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(61, 46, 34, 0.2);
    border: 4px solid var(--cream);
}

.intro-image-2 .image-placeholder {
    min-height: 160px;
}

.intro-accent-box {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(184, 146, 106, 0.4);
}

.accent-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.accent-text {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ===== GITE ===== */
.gite {
    padding: 120px 0;
    background: var(--beige);
}

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

.gallery-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-main .image-placeholder {
    min-height: 100%;
    border-radius: 8px;
}

.gallery-item .image-placeholder {
    border-radius: 8px;
}

.gallery-item:not(.gallery-main) .image-placeholder {
    min-height: 200px;
}

/* Amenities */
.amenities {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.amenity {
    text-align: center;
    padding: 32px 16px;
    background: var(--cream);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.amenity:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(61, 46, 34, 0.1);
    border-color: var(--gold-lighter);
}

.amenity-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
}

.amenity-icon svg {
    width: 100%;
    height: 100%;
    color: var(--gold);
}

.amenity h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 4px;
}

.amenity p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ===== BIEN-ÊTRE ===== */
.bien-etre {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.bien-etre-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--brown-deeper) 0%, #1a140e 50%, var(--brown-dark) 100%);
}

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

.spa-showcase {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 16px;
}

.spa-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.spa-item-image {
    height: 360px;
}

.spa-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa-item-large .spa-item-image {
    height: 100%;
}

.spa-item-large {
    grid-row: 1 / 3;
}

.spa-item:not(.spa-item-large) .spa-item-image {
    height: 240px;
}

.spa-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(42, 31, 23, 0.95) 0%, rgba(42, 31, 23, 0.6) 60%, transparent 100%);
    transform: translateY(20px);
    opacity: 0.85;
    transition: all 0.5s var(--ease);
}

.spa-item:hover .spa-item-overlay {
    transform: translateY(0);
    opacity: 1;
}

.spa-tag {
    display: inline-block;
    padding: 3px 12px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 8px;
}

.spa-item-overlay h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 6px;
}

.spa-item-overlay p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.spa-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 32px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}

.spa-note svg {
    width: 20px;
    height: 20px;
    color: var(--gold-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.spa-note p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ===== GALLERY GITE ===== */
.gallery-gite {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    margin-bottom: 60px;
}

.gallery-gite-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-gite-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-gite-main img {
    min-height: 100%;
}

.gallery-gite-item:not(.gallery-gite-main) img {
    height: 200px;
}

/* ===== GALERIE ===== */
.galerie {
    padding: 120px 0;
}

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

.galerie-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

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

.galerie-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px 12px;
    background: linear-gradient(to top, rgba(42,31,23,0.85) 0%, transparent 100%);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease);
}

.galerie-item:hover .galerie-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Videos */
.galerie-videos {
    margin-top: 60px;
}

.galerie-videos h3 {
    font-size: 1.4rem;
    color: var(--brown-dark);
    text-align: center;
    margin-bottom: 24px;
}

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

.video-item {
    text-align: center;
}

.video-item video {
    width: 100%;
    border-radius: 8px;
    background: var(--brown-deeper);
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-item span {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 11, 8, 0.95);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 1;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 300;
    text-align: center;
}

/* ===== OFFRES ===== */
.offres {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.offres-bg {
    position: absolute;
    inset: 0;
}

.offres-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offres-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(42,31,23,0.92) 0%, rgba(26,20,14,0.95) 50%, rgba(61,46,34,0.92) 100%);
}

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

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

.offre-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.4s var(--ease);
}

.offre-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.offre-card-featured {
    border-color: rgba(184, 146, 106, 0.3);
}

.offre-card-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 16px;
}

.offre-card-badge-alt {
    background: rgba(255,255,255,0.15);
}

.offre-card-badge-summer {
    background: #D4A24C;
}

.offre-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.offre-card h3 em {
    color: var(--gold-light);
}

.offre-card-includes {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.offre-card-excludes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.offre-no,
.offre-yes {
    font-size: 0.8rem;
    font-weight: 400;
}

.offre-no {
    color: rgba(255,255,255,0.4);
}

.offre-no::before {
    content: '✕  ';
    color: #c0736a;
}

.offre-yes {
    color: rgba(255,255,255,0.7);
}

.offre-yes::before {
    content: '✓  ';
    color: #8ab87a;
}

.offre-card-note {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    line-height: 1.6;
}

.offre-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.offre-item:last-child {
    border-bottom: none;
}

.offre-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.offre-icon {
    font-size: 1.2rem;
}

.offre-item-header h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
}

.offre-detail {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
    line-height: 1.5;
}

.offre-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
}

.offre-price-row span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.offre-price-row strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-light);
}

.offre-price-row strong small {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
}

.offre-price-row-demand em {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 400;
}

.offres-horaires {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 24px 32px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.horaire-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.horaire-icon {
    font-size: 1.6rem;
}

.horaire-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 2px;
}

.horaire-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

.horaire-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.offres-cta {
    text-align: center;
    margin-top: 32px;
}

@media (max-width: 640px) {
    .offres-horaires { flex-direction: column; gap: 16px; padding: 20px; }
    .horaire-divider { width: 80%; height: 1px; }
}

/* Option emoji */
.option-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

/* ===== TARIFS ===== */
.tarifs {
    padding: 120px 0;
    background: var(--beige);
    position: relative;
}

.pricing-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.pricing-card-featured {
    border-color: var(--gold-lighter);
    box-shadow: 0 8px 40px rgba(184, 146, 106, 0.12);
}

.pricing-ribbon {
    position: absolute;
    top: 20px;
    right: -32px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(184, 146, 106, 0.3);
}

.pricing-header {
    padding: 40px 40px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
}

.pricing-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 0;
}

.pricing-body-simple {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
    padding: 8px 40px 24px;
}

.pricing-column {
    padding: 32px 40px;
}

.pricing-column-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.pricing-column-header svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.pricing-column-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.pricing-divider {
    width: 1px;
    background: var(--border);
    margin: 24px 0;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(232, 221, 208, 0.6);
}

.price-row:last-child { border-bottom: none; }

.price-row span {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 400;
}

.price-row strong {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.price-row strong small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-row-highlight {
    background: var(--beige);
    margin: 8px -16px 0;
    padding: 14px 16px !important;
    border-radius: 6px;
    border-bottom: none !important;
}

.price-row-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.price-row-note em {
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Options */
.options-section {
    margin-top: 60px;
}

.options-header {
    text-align: center;
    margin-bottom: 32px;
}

.options-header h3 {
    font-size: 1.6rem;
    color: var(--brown-dark);
    margin-bottom: 4px;
}

.options-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 400;
}

.options-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s var(--ease);
}

.option:hover {
    border-color: var(--gold-lighter);
    box-shadow: 0 4px 20px rgba(61, 46, 34, 0.06);
}

.option-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown-dark);
}

.option-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
}

.option-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-left: auto;
    white-space: nowrap;
}

/* ===== LOCALISATION ===== */
.localisation {
    padding: 120px 0;
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.loc-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.loc-address svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.loc-address strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 2px;
}

.loc-address span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.loc-distances {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.loc-distance {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.loc-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 4px 14px;
    background: var(--brown-dark);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 20px;
    flex-shrink: 0;
}

.loc-time-accent {
    background: var(--gold);
    color: var(--white);
}

.loc-distance strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--brown-dark);
    line-height: 1.2;
}

.loc-distance span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
}

.loc-note {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.loc-map {
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(61, 46, 34, 0.1);
    border: 1px solid var(--border);
}

.loc-map iframe {
    width: 100%;
    height: 100%;
}

/* ===== CONTACT ===== */
.contact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--brown-deeper) 0%, #1a140e 50%, var(--brown-dark) 100%);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 28px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--white);
    transition: all 0.3s var(--ease);
}

.contact-block:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(184, 146, 106, 0.3);
    transform: translateY(-2px);
}

.contact-block-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
}

.contact-block-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.contact-block-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.contact-block strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
}

/* Social links */
.contact-socials {
    text-align: center;
    padding: 20px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
}

.contact-socials .contact-block-label {
    display: block;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--white);
    transition: all 0.3s var(--ease);
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link span {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer socials */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s var(--ease);
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-socials svg {
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,0.6);
}

.footer-socials a:hover svg {
    color: var(--white);
}

.contact-info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    margin-top: 8px;
}

.contact-info-note svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0.6;
}

.contact-info-note p {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(184, 146, 106, 0.1);
}

.form-group select {
    appearance: none;
    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 fill='%23B8926A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--brown-deeper);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.checkbox-label:hover {
    background: rgba(255,255,255,0.04);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

/* ===== FOOTER ===== */
.footer {
    background: #0f0b08;
    padding: 56px 0 24px;
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer-address {
    margin-top: 8px;
    font-size: 0.8rem !important;
    color: rgba(255,255,255,0.3) !important;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s var(--ease);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s var(--ease);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
}

/* ===== TRUSTINDEX WIDGET ===== */
.trustindex-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trustindex-wrapper > div,
.trustindex-wrapper iframe {
    max-width: 100% !important;
}

/* ===== TEMOIGNAGES ===== */
.temoignages {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.temoignages-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--brown-deeper) 0%, #1a140e 50%, var(--brown-dark) 100%);
}

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

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

.temoignage-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 32px 28px;
    transition: all 0.4s var(--ease);
}

.temoignage-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.temoignage-stars {
    color: #D4A24C;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.temoignage-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.temoignage-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.temoignage-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.temoignage-author span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

/* ===== DISPONIBILITES ===== */
.disponibilites {
    padding: 120px 0;
    background: var(--beige);
}

.dispo-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.dispo-calendar {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(61,46,34,0.06);
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cal-header h3 {
    font-size: 1.2rem;
    color: var(--brown-dark);
    text-transform: capitalize;
}

.cal-nav {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.3s var(--ease);
}

.cal-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.cal-weekdays span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 0;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    text-align: center;
    padding: 10px 4px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text);
    cursor: default;
    transition: all 0.2s;
}

.cal-day.empty {
    visibility: hidden;
}

.cal-day.today {
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    border-radius: 50%;
}

.cal-day.past {
    color: var(--beige-darker);
}

.cal-day.booked {
    background: rgba(192, 115, 106, 0.15);
    color: #c0736a;
    text-decoration: line-through;
}

.cal-day.available:not(.past):not(.today) {
    color: var(--brown-dark);
}

.cal-day.available:not(.past):not(.today):hover {
    background: var(--beige-dark);
}

.cal-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.cal-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cal-dot-available {
    background: var(--beige-dark);
    border: 1px solid var(--border);
}

.cal-dot-booked {
    background: rgba(192, 115, 106, 0.15);
    border: 1px solid #c0736a;
}

.dispo-info h3 {
    font-size: 1.4rem;
    color: var(--brown-dark);
    margin-bottom: 28px;
}

.dispo-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.dispo-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dispo-step-num {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.dispo-step strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--brown-dark);
    margin-bottom: 2px;
}

.dispo-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.5;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease);
    color: var(--white);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--text);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 1001;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.lang-switch span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
}

.lang-switch:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.navbar.scrolled ~ .lang-switch {
    background: rgba(255,251,247,0.9);
    border-color: var(--border);
}

.navbar.scrolled ~ .lang-switch span {
    color: var(--text);
}

/* ===== IMAGE PARALLAX ===== */
.parallax-img {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .amenities { grid-template-columns: repeat(3, 1fr); }

    .spa-showcase { grid-template-columns: 1fr 1fr; }
    .spa-item-large { grid-column: 1 / 3; grid-row: auto; }
    .spa-item-large .spa-item-image { height: 320px; }

    .galerie-grid { grid-template-columns: repeat(3, 1fr); }
    .offres-grid { grid-template-columns: 1fr 1fr; }
    .offre-card-summer { grid-column: 1 / 3; }
    .temoignages-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        background: var(--cream); flex-direction: column; justify-content: center;
        padding: 48px; gap: 28px; transition: right 0.4s var(--ease-out);
        box-shadow: -16px 0 48px rgba(0,0,0,0.15);
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--text) !important; font-size: 0.9rem !important; }

    .intro-grid { grid-template-columns: 1fr; gap: 48px; }
    .intro-image-2 { left: auto; right: 16px; bottom: -24px; width: 140px; }
    .intro-accent-box { top: auto; bottom: -24px; left: 16px; right: auto; }

    .gallery-gite { grid-template-columns: 1fr 1fr; }
    .gallery-gite-main { grid-column: 1 / 3; grid-row: auto; }

    .amenities { grid-template-columns: repeat(2, 1fr); }

    .spa-showcase { grid-template-columns: 1fr; }
    .spa-item-large { grid-column: auto; }
    .spa-item-large .spa-item-image { height: 280px; }
    .spa-item:not(.spa-item-large) .spa-item-image { height: 200px; }
    .spa-item-overlay { transform: translateY(0); opacity: 1; }

    .galerie-grid { grid-template-columns: repeat(2, 1fr); }
    .galerie-item-wide { grid-column: span 2; }
    .videos-grid { grid-template-columns: 1fr; }

    .pricing-body { grid-template-columns: 1fr; }
    .pricing-divider { width: 100%; height: 1px; margin: 0; }
    .pricing-column { padding: 24px; }
    .options-row { grid-template-columns: 1fr; }

    .offres-grid { grid-template-columns: 1fr; }
    .offre-card-summer { grid-column: auto; }

    .loc-grid { grid-template-columns: 1fr; }
    .loc-map { height: 350px; }
    .contact-grid { grid-template-columns: 1fr; }
    .temoignages-grid { grid-template-columns: 1fr; }
    .dispo-content { grid-template-columns: 1fr; }

    .stats-grid { gap: 24px; }
    .stat-divider { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }

    .whatsapp-btn { width: 52px; height: 52px; bottom: 20px; right: 20px; }
    .whatsapp-btn svg { width: 26px; height: 26px; }
    .whatsapp-tooltip { display: none; }
    .lang-switch { top: auto; bottom: 20px; left: 20px; right: auto; }
}

@media (max-width: 480px) {
    .hero-logo img { width: 180px; }
    .hero-pill { font-size: 0.72rem; letter-spacing: 1px; }
    .hero-pill-dot { margin: 0 4px; }
    .hero-pills { flex-direction: column; gap: 4px; }
    .hero-pill-dot { display: none; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn { width: 100%; justify-content: center; }

    .gallery-gite { grid-template-columns: 1fr; }
    .gallery-gite-main { grid-column: auto; }
    .gallery-gite-item:not(.gallery-gite-main) img { height: 180px; }

    .galerie-grid { grid-template-columns: 1fr; }
    .galerie-item-wide { grid-column: auto; }

    .amenities { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .option { flex-wrap: wrap; }
    .option-price { margin-left: 0; }
    .pricing-ribbon { display: none; }

    .lightbox-prev, .lightbox-next { width: 36px; height: 36px; font-size: 1rem; }
}
