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

/* ========================================
   ACCESSIBILITÉ
   ======================================== */

/* Focus visible pour tous les éléments interactifs */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Focus visible spécifique pour les liens navbar */
.navbar-link:focus-visible {
    outline-offset: 8px;
}

/* Enlever le outline par défaut mais garder focus-visible */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
    outline: 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;
    /* Scroll margin pour compenser la navbar fixe */
    scroll-margin-top: 100px;
}

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
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        right 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-radius 0.3s ease,
        box-shadow 0.3s ease;
}

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

/* Floating mode - navbar becomes a floating pill */
.navbar.navbar-floating {
    top: 1.5rem;
    left: 2rem;
    right: 2rem;
    background: rgba(26, 26, 26, 0.98);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(196, 167, 117, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

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

.navbar.navbar-floating .navbar-brand-number {
    font-size: 1.6rem;
}

.navbar.navbar-floating .navbar-brand-text {
    font-size: 0.95rem;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.navbar-logo img {
    height: 70px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-brand-number {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 0.9;
}

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

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-link {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

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

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

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

.navbar-link.active {
    color: var(--color-gold);
}

.navbar-link.active::after {
    width: 100%;
}

.navbar-cta {
    white-space: nowrap;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.navbar-toggle-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.navbar-toggle-icon::before,
.navbar-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.navbar-toggle-icon::before {
    top: -8px;
}

.navbar-toggle-icon::after {
    top: 8px;
}

.navbar-toggle[aria-expanded="true"] .navbar-toggle-icon {
    background: transparent;
}

.navbar-toggle[aria-expanded="true"] .navbar-toggle-icon::before {
    transform: rotate(45deg) translateY(0);
    top: 0;
}

.navbar-toggle[aria-expanded="true"] .navbar-toggle-icon::after {
    transform: rotate(-45deg) translateY(0);
    top: 0;
}

/* Menu Mobile Overlay */
.navbar-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(13, 13, 13, 0.98) 50%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.navbar-mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
}

.navbar-mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.navbar-mobile-link {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.navbar-mobile-link.active {
    color: var(--color-gold);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

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

.navbar-mobile-overlay.active .navbar-mobile-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

/* Responsive - Desktop large screens */
@media (min-width: 1400px) {
    .navbar.navbar-floating {
        left: 8rem;
        right: 8rem;
    }
}

@media (min-width: 1600px) {
    .navbar.navbar-floating {
        left: 12rem;
        right: 12rem;
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .navbar.navbar-floating {
        left: 1.5rem;
        right: 1.5rem;
    }

    .navbar-menu {
        gap: 1.5rem;
    }

    .navbar-link {
        font-size: 0.9rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .navbar-brand {
        display: flex;
    }

    .navbar.navbar-floating {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        border-radius: 30px;
    }

    .navbar.navbar-floating .navbar-container {
        padding: 0.65rem 1.25rem;
    }

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

    .navbar.navbar-floating .navbar-brand-number {
        font-size: 1.4rem;
    }

    .navbar.navbar-floating .navbar-brand-text {
        font-size: 0.85rem;
    }

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

    .navbar-toggle {
        display: flex;
    }

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

    .navbar-brand-number {
        font-size: 1.6rem;
    }

    .navbar-brand-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0.75rem 1rem;
    }

    .navbar.navbar-floating {
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }

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

    .navbar-logo img {
        height: 50px;
    }

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

    .navbar-brand-number {
        font-size: 1.4rem;
    }

    .navbar-brand-text {
        font-size: 0.8rem;
    }

    .navbar.navbar-floating .navbar-brand-number {
        font-size: 1.2rem;
    }

    .navbar.navbar-floating .navbar-brand-text {
        font-size: 0.75rem;
    }
}


/* ========================================
   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);
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    /* Empêche l'animation du logo */
    transform: translateZ(0);
    background: transparent;
    overflow: visible;
}

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

/* Logo SVG animé */
.hero-logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.2));
    shape-rendering: geometricPrecision;
    background: transparent;
    overflow: visible;
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: block;
}

/* Logo image pour mobile - caché par défaut */
.hero-logo-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(196, 167, 117, 0.3));
}

/* Cercle de fond */
.bg-circle {
    fill: #1F2022;
    transform-origin: center;
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    will-change: transform, opacity;
}

/* Traits dorés */
.gold-stroke {
    fill: none;
    stroke: #BFA37C;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    opacity: 0;
    will-change: stroke-dashoffset, opacity;
}

/* Textes */
.text-main {
    font-family: 'Playfair Display', serif;
    fill: #BFA37C;
    font-size: 70px;
    font-weight: 400;
    text-anchor: middle;
    opacity: 0;
}

.text-secondary {
    font-family: 'Montserrat', sans-serif;
    fill: #BFA37C;
    font-size: 26px;
    letter-spacing: 14px;
    text-anchor: middle;
    font-weight: 700;
    opacity: 0;
}

.text-small {
    font-family: 'Montserrat', sans-serif;
    fill: #BFA37C;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-anchor: middle;
    font-weight: 600;
    opacity: 0;
}

/* Animations */
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drawArc {
    0% {
        opacity: 1;
        stroke-dashoffset: 600;
    }

    100% {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

.arc-top {
    animation: drawArc 1.2s ease-out 0.6s forwards;
}

.arc-bottom {
    animation: drawArc 1.2s ease-out 0.6s forwards;
}

.anim-text-1 {
    animation: fadeIn 0.6s ease-out 0.9s forwards;
}

.anim-text-2 {
    animation: fadeIn 0.6s ease-out 1.1s forwards;
}

.anim-text-3 {
    animation: fadeIn 0.6s ease-out 1.3s forwards;
}

.anim-text-4 {
    animation: fadeIn 0.6s ease-out 1.5s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

/* Informations dans le hero */
.hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: 0.95rem;
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 167, 117, 0.2);
    transition: all 0.3s ease;
}

.hero-info-item:hover {
    background: rgba(196, 167, 117, 0.15);
    border-color: rgba(196, 167, 117, 0.4);
    transform: translateY(-2px);
}

.hero-info-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

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

/* Mobile responsive pour les nouvelles sections */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.5rem;
    }

    .logo-container {
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }

    .hero-info {
        display: none;
    }

    .hero-cta {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}

/* ========================================
   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);
    position: relative;
    overflow: visible;
}

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

.about-image {
    position: relative;
    z-index: 5;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 15;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.image-wrapper:hover img {
    transform: scale(1.08) translateY(-5px);
}

.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.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 167, 117, 0.3);
}

.read-more-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.read-more-btn:hover .read-more-icon {
    transform: translateY(3px);
}

.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::before,
.scroll-velocity::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.scroll-velocity::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.scroll-velocity::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

.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: linear-gradient(135deg, #f8f8f8 0%, #f0ede8 50%, #f5f3ef 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 167, 117, 0.1);
    position: relative;
    z-index: 15;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.instagram-cta:hover {
    box-shadow: 0 8px 30px rgba(196, 167, 117, 0.15);
    border-color: rgba(196, 167, 117, 0.25);
}

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

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

.instagram-cta .btn svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.instagram-cta .btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* ========================================
   BRUSH STROKE TRANSITION
   ======================================== */

.brush-transition {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 150px;
    overflow: visible;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.brush-stroke {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    min-height: 100px;
    object-fit: contain;
    object-position: left center;
    pointer-events: none;
    opacity: 0.4;
}

@media (max-width: 1024px) {
    .brush-transition {
        display: none;
    }
}

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

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

/* Grain doré avec dégradé vertical du centre */
.videos::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
    background-color: rgba(196, 167, 117, 0.12);
    background-blend-mode: multiply;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(
        ellipse 100% 70% at center 60%,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.1) 75%,
        rgba(0, 0, 0, 0) 95%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 100% 70% at center 60%,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.25) 55%,
        rgba(0, 0, 0, 0.1) 75%,
        rgba(0, 0, 0, 0) 95%
    );
}

/* Dégradé blanc en bas de la section pour transition fluide */
.videos::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
    z-index: 1;
}

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

/* Section header au-dessus du grain */
.videos .section-header {
    position: relative;
    z-index: 2;
}

.video-item {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 150px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 167, 117, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(196, 167, 117, 0.5);
    box-shadow:
        0 0 30px rgba(196, 167, 117, 0.4),
        0 0 60px rgba(196, 167, 117, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 8px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

/* Loading skeleton pour les vidéos */
.video-item.loading video {
    opacity: 0;
}

.video-item.loading::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(196, 167, 117, 0.05) 0%,
        rgba(196, 167, 117, 0.15) 50%,
        rgba(196, 167, 117, 0.05) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.video-item.loaded video {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Texte d'indication sous les vidéos */
.video-hint {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--color-gray);
    font-style: italic;
    opacity: 0.7;
    position: relative;
    z-index: 3;
}

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

    .video-item {
        width: 100%;
        /* Désactiver les effets et transitions en mobile */
        transition: none;
        transform: none !important;
    }

    /* Désactiver l'effet hover sur mobile */
    .video-item:hover {
        transform: none;
        border-color: rgba(196, 167, 117, 0.15);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.15),
            0 2px 8px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

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

.booking {
    padding: var(--spacing-xl) 0 0 0;
    background: linear-gradient(to bottom, var(--color-light-gray) 0%, #ffffff 25%);
}

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

/* New Cal.com embed styles */
#my-cal-inline-30min {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 var(--spacing-md) !important;
    background: transparent !important;
    overflow: visible !important;
}

#my-cal-inline-30min *,
#my-cal-inline-30min div,
#my-cal-inline-30min>div,
#my-cal-inline-30min>div>div,
#my-cal-inline-30min [class*="cal"] {
    background: transparent !important;
    max-width: 100% !important;
}

#my-cal-inline-30min>div,
#my-cal-inline-30min>div>div {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

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

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.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: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.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);
    color: var(--color-white);
}

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

.social-link:hover svg {
    color: #000000;
}

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


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

    /* Cacher le SVG animé et afficher l'image sur mobile */
    .hero-logo-svg {
        display: none;
    }

    .hero-logo-img {
        display: block;
    }

    .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);
        padding: 0 var(--spacing-sm);
    }

    .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 {
        height: 350px;
    }

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

/* ========================================
   PRICE ANNOUNCEMENT POP-UP
   ======================================== */

.price-announcement-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.price-announcement-modal {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    padding: 2.5rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(196, 167, 117, 0.2) inset;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.price-announcement-overlay.active .price-announcement-modal {
    transform: scale(1);
}

.price-announcement-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(196, 167, 117, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.price-announcement-close:hover {
    background: rgba(196, 167, 117, 0.2);
    border-color: var(--color-gold);
    transform: rotate(90deg);
}

.price-announcement-close svg {
    width: 18px;
    height: 18px;
}

.price-announcement-content {
    text-align: center;
}

.price-announcement-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(196, 167, 117, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.price-announcement-icon svg {
    width: 32px;
    height: 32px;
}

.price-announcement-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.price-announcement-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price-announcement-text strong {
    color: var(--color-gold);
    font-weight: 600;
}

.price-announcement-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-style: italic;
}

.price-announcement-btn {
    margin-top: 0.5rem;
}

/* Mobile responsive pour la pop-up */
@media (max-width: 768px) {
    .price-announcement-overlay {
        padding: 1rem;
    }

    .price-announcement-modal {
        padding: 2rem 1.5rem;
    }

    .price-announcement-title {
        font-size: 1.5rem;
    }

    .price-announcement-text {
        font-size: 1rem;
    }

    .price-announcement-icon {
        width: 56px;
        height: 56px;
    }

    .price-announcement-icon svg {
        width: 28px;
        height: 28px;
    }
}

@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,
    .logo-container {
        width: 130px;
        height: 130px;
    }

    /* Cacher le SVG animé et afficher l'image sur petit mobile */
    .hero-logo-svg {
        display: none;
    }

    .hero-logo-img {
        display: block;
    }

    .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-grid {
        padding: 0 1rem;
        gap: 1rem;
    }

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

    .map-container {
        height: 300px;
    }

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