/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
    /* Color scheme support for Safari - enables proper light/dark mode handling */
    color-scheme: light dark;

    /* Colors */
    --color-gold: #C4A775;
    --color-gold-light: #D4B885;
    --color-gold-dark: #B49765;
    --color-dark: #1a1a1a;
    --color-dark-light: #2a2a2a;
    --color-gray: #666;
    --color-light-gray: #f5f5f5;
    --color-white: #ffffff;
    --color-blue: #066aab;

    /* Browser UI color (for theme-color meta tag sync) */
    --browser-ui-light: #f5f5f5;
    --browser-ui-dark: #1a1a1a;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

html {
    /* Optimisation pour le scroll sur mobile */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Amélioration de la fluidité du scroll */
    overflow-x: hidden;
    overflow-y: scroll;
}

/* Smooth scroll uniquement sur desktop */
@media (min-width: 769px) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    /* Optimisation critique pour la fluidité du scroll */
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

/* Optimisation globale des performances */
*,
*::before,
*::after {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Amélioration critique de la fluidité du scroll */
    -webkit-overflow-scrolling: touch;
    /* REMOVED: transform breaks position:fixed for navbar */
    /* transform: translate3d(0, 0, 0); */
    /* -webkit-transform: translate3d(0, 0, 0); */
}

/* Fix spécifique Safari iOS pour le décalage au changement de direction */
@supports (-webkit-touch-callout: none) {
    body {
        /* Désactiver l'elastic scrolling sur Safari */
        overscroll-behavior-y: none;
        -webkit-overscroll-behavior-y: none;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Optimisation des images pour le scroll */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

/* Optimisation globale pour toutes les sections */
section {
    /* REMOVED: transform breaks position:fixed for navbar */
    /* transform: translate3d(0, 0, 0); */
    /* -webkit-transform: translate3d(0, 0, 0); */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

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

ul {
    list-style: none;
}

/* ========================================
   UTILITIES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(196, 167, 117, 0.2);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 167, 117, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

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

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

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.text-large {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-dark);
}

/* ========================================
   NAVIGATION
   ======================================== */

/* Z-INDEX HIERARCHY:
   - Navbar: 900
   - Nav Toggle Button: 9999
   - Nav Menu Mobile: 9998
*/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease,
                border-radius 0.3s ease,
                left 0.3s ease,
                right 0.3s ease,
                top 0.3s ease;
    transform: translateY(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: layout style paint;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

/* Mode floating bar - quand on remonte après avoir scrollé */
.navbar.navbar-floating {
    top: 2rem;
    left: 18rem;
    right: 18rem;
    background: rgba(26, 26, 26, 0.98);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(196, 167, 117, 0.1);
    backdrop-filter: blur(20px);
}

.navbar.navbar-floating .container {
    padding: 0.75rem 1.5rem;
}

.navbar.navbar-floating .logo-nav img {
    height: 60px;
}

/* Responsive floating bar */
@media (max-width: 768px) {
    .navbar.navbar-floating {
        left: 1rem;
        right: 1rem;
        border-radius: 30px;
    }

    .navbar.navbar-floating .container {
        padding: 0.6rem 1rem;
    }
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--spacing-md);
    position: relative;
    z-index: 1;
}

.logo-nav img {
    height: 50px;
    width: auto;
}

/* Texte central de la navbar (visible sur mobile) */
.navbar-center-text {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.02rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-number {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
}

.navbar-text {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 0.2em;
}

/* Afficher le texte sur mobile (mode normal et floating) */
@media (max-width: 768px) {
    .navbar-center-text {
        display: flex;
    }
}

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

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    position: relative;
}

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

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

.nav-cta {
    margin-left: var(--spacing-md);
}

/* ========================================
   MENU HAMBURGER MOBILE
   ======================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
}

/* Cacher le bouton quand la navbar est cachée */
.mobile-menu-toggle.hidden {
    transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

/* Mode floating - ajuster la position pour centrer avec la navbar */
.mobile-menu-toggle.floating {
    top: 2rem;
    transform: translateY(75%);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Transformation en croix quand le menu est ouvert */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
    background: var(--color-gold);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
    background: var(--color-gold);
}

/* Responsive du bouton hamburger */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        top: 1.25rem;
        right: 2.5rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu-toggle {
        top: 1.5rem;
        right: 2.5rem;
    }

    .mobile-menu-toggle.floating {
        top: 2.5rem;
    }
}

/* Menu Mobile Full Screen */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: none;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active .mobile-nav-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active .mobile-nav-link:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }
}


/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Optimisation maximale pour le scroll fluide */
    /* REMOVED: transform breaks position:fixed for navbar */
    /* transform: translate3d(0, 0, 0); */
    /* -webkit-transform: translate3d(0, 0, 0); */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: blur(8px);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    z-index: 0;
    /* Optimisation GPU uniquement sur desktop */
    will-change: transform;
}

@media (min-width: 769px) {
    .hero-background {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(196, 167, 117, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(196, 167, 117, 0.08) 0%, transparent 40%);
    /* Animation supprimée pour optimiser les performances */
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 900px;
    padding: 0 var(--spacing-md);
    will-change: transform, opacity;
    /* Optimisations pour éviter les scintillements */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sur mobile: optimisations maximales pour la fluidité */
@media (max-width: 768px) {
    .hero-content {
        will-change: opacity;
        /* Forcer l'accélération GPU uniquement pour l'opacité */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .hero-background {
        will-change: auto;
        /* Fixer le background sur mobile pour éviter les repaints */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .hero {
        /* Améliorer le scroll sur iOS */
        -webkit-overflow-scrolling: touch;
        /* Isolation du compositing pour éviter les scintillements */
        isolation: isolate;
    }
}

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

.logo-container {
    margin-bottom: var(--spacing-lg);
    /* Empêche l'animation du logo */
    transform: translateZ(0);
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    /* Animation float supprimée pour un look plus premium et stable */
    filter: drop-shadow(0 10px 30px rgba(196, 167, 117, 0.3));
    transition: filter 0.3s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 15px 40px rgba(196, 167, 117, 0.4));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-gold-light);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-content .btn {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

/* Scroll indicator caché (supprimé visuellement) */
.scroll-indicator {
    display: none;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    /* Optimisation pour transition fluide depuis hero */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

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

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-subtitle {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
}

.about-text-extra.expanded {
    max-height: 1000px;
    opacity: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-gold);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.read-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.read-more-btn:hover {
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.read-more-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.read-more-btn.expanded .read-more-icon {
    transform: rotate(180deg);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: left;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--color-gold);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    color: var(--color-white);
}

.service-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.85);
}

.service-duration {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background: var(--color-light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
}

.service-card.featured .service-duration {
    background: rgba(196, 167, 117, 0.2);
    color: var(--color-gold-light);
}

/* ========================================
   SCROLL VELOCITY SECTION
   ======================================== */

.scroll-velocity {
    background: #000;
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}

.scroll-velocity-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.scroll-velocity-content {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.scroll-velocity-content span {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

/* Taille normale sur desktop */
@media (min-width: 769px) {
    .scroll-velocity {
        padding: 1.25rem 0;
    }

    .scroll-velocity-content span {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .scroll-velocity {
        padding: 1.5rem 0;
    }

    .scroll-velocity-content span {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-velocity {
        padding: 1rem 0;
    }

    .scroll-velocity-content span {
        font-size: 1.25rem;
        padding: 0 0.75rem;
    }
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.125rem;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.instagram-section {
    background: var(--color-white);
    padding: var(--spacing-md) 0 var(--spacing-xl) 0;
}

.instagram-cta {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-light-gray);
    border-radius: var(--radius-md);
    border: none;
}

.instagram-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark);
}

.instagram-cta .btn {
    gap: 0.75rem;
}

/* ========================================
   VIDEO SECTION
   ======================================== */

.videos {
    padding: var(--spacing-md) 0 var(--spacing-xl) 0;
    background: var(--color-white);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 150px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-white);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(196, 167, 117, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-dark);
}

.video-play-btn:hover {
    background: var(--color-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .video-item {
        width: 100%;
    }
}

/* ========================================
   BOOKING SECTION
   ======================================== */

.booking {
    padding: var(--spacing-xl) 0 0 0;
    background: var(--color-light-gray);
}

.booking .section-header {
    margin-bottom: 2rem;
}

.booking-calendar {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: transparent !important;
    color-scheme: dark !important;
}

.booking-calendar * {
    max-width: none !important;
}

.booking-calendar > div,
.booking-calendar > div > div,
.booking-calendar [data-cal-namespace] {
    width: 100% !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.booking-calendar iframe {
    width: 100% !important;
    height: 1200px !important;
    color-scheme: dark !important;
    border: none !important;
}

@media (min-width: 768px) {
    .booking-calendar iframe {
        height: 600px !important;
    }
}

@media (min-width: 1024px) {
    .booking-calendar iframe {
        height: 600px !important;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
}

.contact-info {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon-inline {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.contact-item span,
.contact-item a {
    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.6;
    transition: var(--transition);
}

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

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: transparent;
    height: 450px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    color: var(--color-gray);
}

.map-placeholder svg {
    color: var(--color-gold);
}

.apple-maps-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.map-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    transition: var(--transition);
    cursor: pointer;
}

.map-preview:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
}

.map-preview svg {
    color: var(--color-gold);
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.3));
}

.map-preview p {
    color: var(--color-light);
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
}

.map-preview small {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.apple-maps-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
    padding: 0.75rem 1.5rem;
    background: var(--color-gold);
    color: var(--color-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.apple-maps-button:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.apple-maps-button svg {
    flex-shrink: 0;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-sm);
}

.footer-logo p {
    color: var(--color-gray);
    font-size: 0.875rem;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
}

.footer ul li {
    margin-bottom: var(--spacing-xs);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(196, 167, 117, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: var(--color-gray);
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.made-by a {
    color: var(--color-gold);
}

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

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .booking-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Navigation - Pas de menu mobile */
    .nav-menu {
        display: none;
    }

    /* Hero */
    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Section headers */
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* About */
    .about {
        padding: var(--spacing-lg) 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .image-decoration {
        display: none;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    /* Services */
    .services {
        padding: var(--spacing-lg) 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .service-card {
        padding: var(--spacing-md);
    }

    /* Gallery - Optimisation importante */
    .gallery {
        padding: var(--spacing-lg) 0;
    }

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

    .gallery-item {
        aspect-ratio: 1;
    }

    .gallery-overlay span {
        font-size: 0.875rem;
    }

    /* Booking - Optimisation importante */
    .booking {
        padding: var(--spacing-lg) 0;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .booking-info {
        padding: var(--spacing-md);
    }

    .booking-info h3 {
        font-size: 1.25rem;
    }

    .booking-info li {
        font-size: 0.875rem;
    }

    .booking-calendar {
        padding: var(--spacing-md);
        min-height: 400px;
    }

    .detail-item {
        padding: var(--spacing-sm);
    }

    .detail-item strong,
    .detail-item span {
        font-size: 0.875rem;
    }

    /* Contact */
    .contact {
        padding: var(--spacing-lg) 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .contact-info {
        padding: var(--spacing-md);
        gap: 1.25rem;
    }

    .contact-item {
        padding-bottom: 1.25rem;
        gap: 0.875rem;
    }

    .contact-icon-inline {
        width: 22px;
        height: 22px;
    }

    .contact-item span,
    .contact-item a {
        font-size: 0.95rem;
    }

    .map-container {
        min-height: 300px;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-md) 0 var(--spacing-sm);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .footer-logo img {
        margin: 0 auto var(--spacing-sm);
    }

    .footer h4 {
        font-size: 1rem;
    }

    .footer ul li {
        font-size: 0.875rem;
    }

    /* Instagram CTA */
    .instagram-cta {
        padding: var(--spacing-md);
    }

    .instagram-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
    }

    .container {
        padding: 0 0.875rem;
    }

    /* Hero */
    .hero {
        /* Hauteur stable augmentée pour mobile (évite le bug Safari iOS) */
        min-height: 115vh;
        height: 115vh;
        /* Optimisation supplémentaire pour mobile */
        -webkit-overflow-scrolling: touch;
    }

    .hero-content {
        padding: 0 var(--spacing-sm);
    }

    .logo-container {
        margin-bottom: var(--spacing-md);
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-sm);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Section headers */
    .section-header {
        margin-bottom: var(--spacing-md);
    }

    .section-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: var(--spacing-sm);
    }

    .section-description {
        font-size: 0.875rem;
    }

    /* About */
    .about-subtitle {
        font-size: 1.25rem;
    }

    .about-text p {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    /* Services */
    .service-card {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* Gallery - Grid 2 colonnes plus compact */
    .gallery-grid {
        gap: 0.5rem;
    }

    /* Booking */
    .booking-info h3 {
        font-size: 1.125rem;
    }

    .booking-info ul {
        margin-bottom: var(--spacing-md);
    }

    .booking-info li {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .booking-info li svg {
        width: 16px;
        height: 16px;
    }

    .booking-calendar {
        min-height: 350px;
    }

    /* Contact */
    .contact-info {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-item {
        padding-bottom: 1rem;
        gap: 0.75rem;
    }

    .contact-icon-inline {
        width: 20px;
        height: 20px;
    }

    .contact-item span,
    .contact-item a {
        font-size: 0.875rem;
    }

    /* Footer */
    .footer-logo p {
        font-size: 0.8rem;
    }

    .footer h4 {
        font-size: 0.95rem;
    }

    .footer ul li {
        font-size: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }

    /* Instagram CTA */
    .instagram-cta p {
        font-size: 0.95rem;
    }

    .instagram-cta .btn {
        font-size: 0.875rem;
    }
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 80vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--color-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: scale(1.15);
}

.lightbox-close:active,
.lightbox-prev:active,
.lightbox-next:active {
    transform: scale(0.95);
}

.lightbox-close {
    top: 10px;
    right: 10px;
}

.lightbox-close svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.lightbox-prev {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.15);
}

.lightbox-prev:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-next {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.15);
}

.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 90vw;
        max-height: 90vh;
    }

    .lightbox-content img {
        max-width: 90vw;
        max-height: 75vh;
        border-radius: 8px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.9);
    }

    .lightbox-close svg {
        width: 24px;
        height: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.8);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-prev svg,
    .lightbox-next svg {
        width: 28px;
        height: 28px;
    }

    .lightbox-counter {
        bottom: 1.5rem;
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--color-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.scroll-to-top svg {
    color: var(--color-white);
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
