        /* ═══════════════════════════════════════════════════════
           CSS VARIABLES
           ═══════════════════════════════════════════════════════ */
        :root {
            --navy-deepest: #06061a;
            --navy-deep: #0a0a2e;
            --navy: #0f0f3a;
            --navy-mid: #161650;
            --navy-light: #1e1e6a;
            --gold: #c9a84c;
            --gold-bright: #d4af37;
            --gold-light: #f0d060;
            --gold-pale: #f5e6a3;
            --gold-dim: #8a7432;
            --white: #f4f0e8;
            --white-soft: #e8e0d0;
            --gray: #9a95a8;
            --font-display: 'Cinzel Decorative', serif;
            --font-body: 'Marcellus', serif;
            --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* ═══════════════════════════════════════════════════════
           RESET & BASE
           ═══════════════════════════════════════════════════════ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        p { text-align: justify; }

        html { scrollbar-width: thin; scrollbar-color: var(--gold-dim) var(--navy-deep); }
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--navy-deep); }
        ::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

        body {
            font-family: var(--font-body);
            background: #0a0a2e;
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.8;
            font-size: 17px;
            -webkit-font-smoothing: antialiased;
        }

        .container { max-width: 1340px; margin: 0 auto; padding: 0 20px; width: 100%; }
        .row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
        .row > * { padding: 0 15px; }
        .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
        .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
        .order-lg-1 { order: 1; }
        .order-lg-2 { order: 2; }
        .text-center { text-align: center; }
        .text-left { text-align: left; }
        .mt-10 { margin-top: 10px; }
        .mt-20 { margin-top: 20px; }
        .mt-30 { margin-top: 30px; }
        .mt-40 { margin-top: 40px; }
        .mt-50 { margin-top: 50px; }
        img { max-width: 100%; }

        /* ═══════════════════════════════════════════════════════
           PRELOADER
           ═══════════════════════════════════════════════════════ */
        #preloader {
            position: fixed;
            inset: 0;
            background: #0a0a2e;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .loader-logo { position: relative; width: 120px; height: 120px; display: flex; align-items: center; justify-content: center; }
        .loader-logo img { width: 70px; position: relative; z-index: 1; }
        .loader-ring {
            position: absolute;
            inset: 0;
            border: 3px solid transparent;
            border-top-color: var(--gold);
            border-right-color: var(--gold-dim);
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
        }
        .loader-ring::after {
            content: '';
            position: absolute;
            inset: 6px;
            border: 3px solid transparent;
            border-bottom-color: var(--gold-light);
            border-left-color: var(--gold-dim);
            border-radius: 50%;
            animation: spin 0.8s linear infinite reverse;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ═══════════════════════════════════════════════════════
           DECORATIVE VERTICAL LINES
           ═══════════════════════════════════════════════════════ */

        /* ═══════════════════════════════════════════════════════
           GOLDEN DUST CANVAS
           ═══════════════════════════════════════════════════════ */
        #golden-dust { display: none; }

        /* ═══════════════════════════════════════════════════════
           NAVIGATION — FULL SCREEN OVERLAY
           ═══════════════════════════════════════════════════════ */
        header nav .logo {
            position: fixed;
            left: 3%;
            top: 8px;
            z-index: 1000;
            height: 60px;
            opacity: 0;
            transition: height 0.4s;
        }
        header nav .logo.scrolled { height: 55px; }

        .toggle-btn {
            position: fixed;
            right: 3%;
            top: 10px;
            z-index: 1000;
            width: 50px;
            height: 50px;
            border: 1px solid var(--gold);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            background: rgba(6,6,26,0.5);
            backdrop-filter: blur(10px);
        }
        .burger-menu { display: flex; flex-direction: column; gap: 5px; }
        .burger-menu span { width: 22px; height: 1.5px; background: var(--gold); transition: all 0.4s var(--ease-expo); display: block; }
        .toggle-btn.active .burger-menu .one { transform: rotate(45deg) translate(4px, 5px); }
        .toggle-btn.active .burger-menu .two { opacity: 0; }
        .toggle-btn.active .burger-menu .tre { transform: rotate(-45deg) translate(4px, -5px); }

        .bg-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: rgba(6,6,26,0.6);
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            z-index: 998;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-70px);
            transition: transform 0.5s var(--ease-expo);
            border-bottom: 1px solid rgba(201,168,76,0.1);
        }
        .bg-nav.visible { transform: translateY(0); }
        .localisation p { font-family: var(--font-body); font-size: 0.9rem; color: var(--gold-dim); letter-spacing: 0.2em; font-weight: normal; }

        .menu-overlay {
            position: fixed;
            inset: 0;
            background: rgba(6,6,26,0.97);
            backdrop-filter: blur(30px);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s, visibility 0.6s;
        }
        .menu-overlay.open { opacity: 1; visibility: visible; }

        .menu-overlay .menu-inner { text-align: center; }
        .menu-overlay .menu-links { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
        .menu-overlay .menu-links li { opacity: 0; transform: translateX(40px); transition: all 0.5s var(--ease-expo); }
        .menu-overlay.open .menu-links li {
            opacity: 1;
            transform: translateX(0);
        }
        .menu-overlay.open .menu-links li:nth-child(1) { transition-delay: 0.1s; }
        .menu-overlay.open .menu-links li:nth-child(2) { transition-delay: 0.15s; }
        .menu-overlay.open .menu-links li:nth-child(3) { transition-delay: 0.2s; }
        .menu-overlay.open .menu-links li:nth-child(4) { transition-delay: 0.25s; }
        .menu-overlay.open .menu-links li:nth-child(5) { transition-delay: 0.3s; }
        .menu-overlay.open .menu-links li:nth-child(6) { transition-delay: 0.35s; }
        .menu-overlay.open .menu-links li:nth-child(7) { transition-delay: 0.4s; }

        .menu-overlay .menu-links a {
            font-family: var(--font-display);
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            color: var(--white-soft);
            text-decoration: none;
            letter-spacing: 0.1em;
            transition: color 0.3s;
            display: inline-block;
        }
        .menu-overlay .menu-links a:hover { color: var(--gold); }
        .menu-overlay .menu-admin { display: block; text-align: center; margin-top: 2rem; font-size: 1.2rem; text-decoration: none; opacity: 0.35; transition: opacity .3s; }
        .menu-overlay .menu-admin:hover { opacity: 0.7; }
        .menu-overlay .menu-logo { margin-top: 3rem; }
        .menu-overlay .menu-logo img { width: 80px; opacity: 0.5; }

        /* ═══════════════════════════════════════════════════════
           HERO — CSS SLIDESHOW
           ═══════════════════════════════════════════════════════ */
        .hero { position: relative; width: 100%; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
        .hero-bg { position: absolute; inset: 0; z-index: 0; }
        .square-overlay {
            position: absolute;
            inset: 0;
            background: #0a0a2e;
            z-index: 15;
            width: 100%;
        }

        .cb-slideshow { position: absolute; inset: 0; list-style: none; margin: 0; padding: 0; }
        .cb-slideshow li span {
            width: 100%; height: 100%;
            position: absolute; top: 0; left: 0;
            color: transparent;
            background-size: cover; background-position: 50% 50%;
            opacity: 0;
            filter: brightness(0.45) saturate(0.6);
            animation: heroImgAnim 20s linear infinite 0s;
        }
		
		
		
		.cb-slideshow li:nth-child(1) span { background-image: url(../../images/hero/1.jpg?w=1920&q=80); }
        .cb-slideshow li:nth-child(2) span { background-image: url(../../images/hero/2.jpg?w=1920&q=80); animation-delay: 5s; }
        .cb-slideshow li:nth-child(3) span { background-image: url(../../images/hero/3.jpg?w=1920&q=80); animation-delay: 10s; }
        .cb-slideshow li:nth-child(4) span { background-image: url(../../images/hero/4.jpg?w=1920&q=80); animation-delay: 15s; }
		

        .cb-slideshow-titles { position: absolute; inset: 0; list-style: none; margin: 0; padding: 0; z-index: 2; pointer-events: none; }
        .cb-slideshow-titles li div {
            position: absolute; bottom: 5px; right: 0; width: 100%; text-align: right;
            opacity: 0; animation: heroTitleAnim 20s linear infinite 0s;
        }
        .cb-slideshow-titles li:nth-child(2) div { animation-delay: 5s; }
        .cb-slideshow-titles li:nth-child(3) div { animation-delay: 10s; }
        .cb-slideshow-titles li:nth-child(4) div { animation-delay: 15s; }
        .cb-slideshow-titles li div span {
            font-family: var(--font-body); font-size: 6rem; font-weight: 400;
            padding: 0 2rem 0 0; margin: 0; line-height: 1;
            color: rgba(201,168,76,0.15); -webkit-text-stroke: 1px rgba(201,168,76,0.35);
            letter-spacing: 0.08em; text-transform: uppercase;
        }

        @keyframes heroImgAnim {
            0% { opacity:0; animation-timing-function:ease-in; }
            8% { opacity:1; animation-timing-function:ease-out; }
            25% { opacity:1; } 33% { opacity:0; } 100% { opacity:0; }
        }
        @keyframes heroTitleAnim {
            0% { opacity:0; transform:translateY(20px); }
            8% { opacity:1; transform:translateY(0); }
            25% { opacity:1; transform:translateY(0); }
            30% { opacity:0; transform:translateY(-10px); }
            100% { opacity:0; }
        }

        .hero-overlay {
            position: absolute; inset: 0; z-index: 1;
            background:
                radial-gradient(ellipse 80% 50% at 20% 50%, rgba(15,15,58,0.7) 0%, transparent 70%),
                radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 50% 100%, rgba(10,10,46,0.9) 0%, transparent 70%),
                linear-gradient(180deg, rgba(10,10,46,0.2) 0%, rgba(10,10,46,0.05) 50%, rgba(10,10,46,0.85) 100%);
            pointer-events: none;
        }

        .hero-content {
            position: relative; z-index: 10; text-align: center;
            display: flex; flex-direction: column; align-items: center;
        }

        .hero-rings {
            position: absolute; top: 50%; left: 50%; z-index: 2; pointer-events: none;
        }
        .hero-ring {
            position: absolute; top: 50%; left: 50%;
            border-radius: 50%;
            border: 1.5px solid rgba(201, 168, 76, 0.24);
            animation: ringPulse 8s ease-in-out infinite;
            animation-play-state: paused;
        }
        .section-visible .hero-ring { animation-play-state: running; }
        .hero-ring:nth-child(1) { width: 300px; height: 300px; margin: -150px 0 0 -150px; animation-delay: 0s; }
        .hero-ring:nth-child(2) { width: 500px; height: 500px; margin: -250px 0 0 -250px; animation-delay: 1.5s; }
        .hero-ring:nth-child(3) { width: 700px; height: 700px; margin: -350px 0 0 -350px; animation-delay: 3s; }
        .hero-ring:nth-child(4) { width: 900px; height: 900px; margin: -450px 0 0 -450px; animation-delay: 4.5s; border-color: rgba(201, 168, 76, 0.12); }
        @keyframes ringPulse {
            0%, 100% { opacity: 0.45; transform: scale(1); }
            50% { opacity: 0.95; transform: scale(1.04); }
        }

        .hero-content .hero-logo {
            position: relative; z-index: 3;
            width: clamp(120px, 18vw, 180px); margin-bottom: 2.5rem;
            filter: drop-shadow(0 0 40px rgba(201,168,76,0.25));
            animation: logoFloat 6s ease-in-out infinite;
        }
        @keyframes logoFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }

        .hero-content h1 {
            position: relative; z-index: 3;
            font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, 3.8rem);
            font-weight: 400; color: var(--white); letter-spacing: 0.08em;
            margin-bottom: 0.5rem; line-height: 1.2;
        }
        .hero-content .hero-subtitle {
            position: relative; z-index: 3;
            font-family: var(--font-display); font-size: clamp(0.7rem, 1.8vw, 1.1rem);
            letter-spacing: 0.4em; color: var(--gold); margin-bottom: 2.5rem;
        }
        .hero-content .hero-tagline {
            position: relative; z-index: 3;
            font-family: var(--font-body); font-size: clamp(0.95rem, 1.5vw, 1.15rem);
            color: var(--gray); max-width: 500px; margin-bottom: 3rem; line-height: 1.8;
			text-align: center;
        }

        .btn-main {
            display: inline-flex; align-items: center; gap: 0.8rem;
            padding: 1rem 2.5rem;
            border: 1px solid var(--gold); color: var(--gold);
            font-family: var(--font-display); font-size: 0.75rem;
            letter-spacing: 0.25em; text-transform: uppercase;
            text-decoration: none; transition: all 0.5s var(--ease-expo);
            position: relative; z-index: 3; overflow: hidden;
        }
        .btn-main::before { content:''; position:absolute; inset:0; background:var(--gold); transform:scaleX(0); transform-origin:right; transition:transform 0.5s var(--ease-expo); z-index:-1; }
        .btn-main:hover::before { transform:scaleX(1); transform-origin:left; }
        .btn-main:hover { color: var(--navy-deepest); }
        .btn-main svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease-expo); }
        .btn-main:hover svg { transform: translateX(4px); }

        .hero .social {
            position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
            z-index: 10; display: flex; flex-direction: column; gap: 1.2rem;
        }
        .hero .social a {
            color: var(--gold); font-size: 1.1rem; transition: color 0.3s, transform 0.3s;
        }
        .hero .social a:hover { color: var(--gold-light); transform: scale(1.2); }

        .hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; text-align: center; color: var(--gold-dim); font-size: 0.6rem; letter-spacing: 0.3em; }
        .scroll-line { width: 1px; height: 35px; background: linear-gradient(180deg, var(--gold), transparent); margin: 0.5rem auto 0; animation: scrollPulse 2s ease-in-out infinite; }
        @keyframes scrollPulse { 0%,100% { opacity:1; transform:scaleY(1); } 50% { opacity:0.3; transform:scaleY(0.5); transform-origin:top; } }

        /* ═══════════════════════════════════════════════════════
           ABOUT SECTIONS — ALTERNATING LAYOUT
           ═══════════════════════════════════════════════════════ */
        .section-about {
            position: relative;
            padding: 3rem 0;
            overflow: hidden;
            background: 
				radial-gradient(ellipse 80% 50% at 20% 50%, rgba(15,15,58,0.7) 0%, transparent 70%),
                radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 50% 100%, rgba(10,10,46,0.9) 0%, transparent 70%),
                linear-gradient(180deg, rgba(10,10,46,0.2) 0%, rgba(10,10,46,0.05) 50%, rgba(10,10,46,0.85) 100%);
        }
        .section-about > .container { position: relative; z-index: 1; }
        .float-num {
            position: absolute; pointer-events: none;
            font-family: var(--font-display);
            color: rgba(201,168,76,0.25);
            font-size: 4rem;
            line-height: 1;
            z-index: 0;
            will-change: transform;
            animation-play-state: paused;
        }
        .section-visible .float-num { animation-play-state: running; }
        .fn1  { top: 5%;  left: 8%;  font-size: 5rem;   animation: numFloat1 20s ease-in-out infinite; }
        .fn2  { top: 12%; left: 55%; font-size: 3.5rem; animation: numFloat2 25s ease-in-out infinite; }
        .fn3  { top: 25%; right: 8%; font-size: 6rem;   color: rgba(240,208,96,0.20); animation: numFloat3 18s ease-in-out infinite; }
        .fn4  { top: 35%; left: 25%; font-size: 3rem;   animation: numFloat4 22s ease-in-out infinite; }
        .fn5  { top: 50%; right: 20%; font-size: 4.5rem; color: rgba(212,175,55,0.20); animation: numFloat5 28s ease-in-out infinite; }
        .fn6  { top: 60%; left: 5%;  font-size: 5.5rem; animation: numFloat6 24s ease-in-out infinite; }
        .fn7  { top: 70%; left: 45%; font-size: 3rem;   color: rgba(240,208,96,0.18); animation: numFloat7 19s ease-in-out infinite; }
        .fn8  { top: 80%; right: 5%; font-size: 4rem;   animation: numFloat8 26s ease-in-out infinite; }
        .fn9  { top: 88%; left: 30%; font-size: 5rem;   color: rgba(212,175,55,0.18); animation: numFloat9 21s ease-in-out infinite; }

        @keyframes numFloat1 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(30px,-20px) rotate(15deg); } 66% { transform: translate(-15px,25px) rotate(-10deg); } }
        @keyframes numFloat2 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(-25px,30px) rotate(-12deg); } 66% { transform: translate(20px,-15px) rotate(8deg); } }
        @keyframes numFloat3 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(20px,25px) rotate(10deg); } 66% { transform: translate(-30px,-10px) rotate(-15deg); } }
        @keyframes numFloat4 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(-20px,-25px) rotate(-8deg); } 66% { transform: translate(25px,15px) rotate(12deg); } }
        @keyframes numFloat5 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(15px,30px) rotate(10deg); } 66% { transform: translate(-25px,-20px) rotate(-12deg); } }
        @keyframes numFloat6 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(-30px,15px) rotate(-15deg); } 66% { transform: translate(20px,-25px) rotate(8deg); } }
        @keyframes numFloat7 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(25px,-20px) rotate(12deg); } 66% { transform: translate(-15px,30px) rotate(-10deg); } }
        @keyframes numFloat8 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(-20px,25px) rotate(-8deg); } 66% { transform: translate(30px,-15px) rotate(15deg); } }
        @keyframes numFloat9 { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(15px,-30px) rotate(10deg); } 66% { transform: translate(-25px,20px) rotate(-12deg); } }


        /* Blobs */
        .blob {
            position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
            will-change: transform;
            animation-play-state: paused;
        }
        .section-visible .blob { animation-play-state: running; }
        .blob-1 {
            width: 180px; height: 180px;
            background: radial-gradient(circle, #f0d060 0%, rgba(212,175,55,0.6) 35%, transparent 65%);
            filter: blur(25px);
            top: 8%; left: 5%; animation: blobFloat1 13s ease-in-out infinite;
        }
        .blob-2 {
            width: 150px; height: 150px;
            background: radial-gradient(circle, #ffe680 0%, rgba(201,168,76,0.55) 35%, transparent 65%);
            filter: blur(28px);
            top: 15%; right: 12%; animation: blobFloat2 16s ease-in-out infinite;
        }
        .blob-3 {
            width: 200px; height: 200px;
            background: radial-gradient(circle, #f5d862 0%, rgba(212,175,55,0.6) 35%, transparent 65%);
            filter: blur(22px);
            bottom: 15%; left: 15%; animation: blobFloat3 12s ease-in-out infinite;
        }
        .blob-4 {
            width: 130px; height: 130px;
            background: radial-gradient(circle, #f0d060 0%, rgba(201,168,76,0.55) 35%, transparent 65%);
            filter: blur(25px);
            bottom: 10%; right: 8%; animation: blobFloat4 14s ease-in-out infinite;
        }
        @keyframes blobFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 25% { transform: translate(120px,-80px) scale(1.2); } 50% { transform: translate(-60px,100px) scale(0.85); } 75% { transform: translate(80px,60px) scale(1.1); } }
        @keyframes blobFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 25% { transform: translate(-100px,70px) scale(1.15); } 50% { transform: translate(90px,-90px) scale(0.9); } 75% { transform: translate(-50px,-60px) scale(1.2); } }
        @keyframes blobFloat3 { 0%,100% { transform: translate(0,0) scale(1); } 25% { transform: translate(80px,90px) scale(1.25); } 50% { transform: translate(-110px,-40px) scale(0.85); } 75% { transform: translate(60px,-80px) scale(1.1); } }
        @keyframes blobFloat4 { 0%,100% { transform: translate(0,0) scale(1); } 25% { transform: translate(-90px,-100px) scale(1.2); } 50% { transform: translate(100px,60px) scale(0.88); } 75% { transform: translate(-70px,80px) scale(1.15); } }

        /* Wave concentric single */
        .wave-single {
            position: absolute; width: 500px; height: 500px; pointer-events: none; z-index: 0;
        }
        .wave-single-mobile { display: none; }
        @media (max-width: 991px) {
            .wave-single-desktop { display: none; }
            .wave-single-mobile { display: block; top: 0; left: 50%; margin: -250px 0 0 -250px; }
        }
        .ws-ring {
            position: absolute; top: 50%; left: 50%;
            border-radius: 50%;
            border: 1px solid rgba(201,168,76,0.5);
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            animation: wsPulse 8s ease-out infinite;
        }
        .ws1 { width: 100px; height: 100px; animation-delay: 0s; }
        .ws2 { width: 200px; height: 200px; animation-delay: 1.6s; }
        .ws3 { width: 300px; height: 300px; animation-delay: 3.2s; }
        .ws4 { width: 400px; height: 400px; animation-delay: 4.8s; }
        .ws5 { width: 500px; height: 500px; animation-delay: 6.4s; }

        @keyframes wsPulse {
            0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
            10% { opacity: 0.9; }
            60% { opacity: 0.3; }
            100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
        }

        /* Gold line separator */
        .section-about::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .about-text .title h2 {
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 3vw, 2.2rem);
            color: var(--white);
            margin-bottom: 0.5rem;
			line-height: 1.2em;
        }
        .about-text .title h2 span { color: var(--gold-bright); }
        .about-text .title h3 {
            font-family: var(--font-display);
            font-size: clamp(0.6rem, 1.2vw, 0.8rem);
            color: var(--gold);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }
        .about-text .gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); margin: 1.5rem 0; }

        .about-text p { color: var(--gray); font-size: 1rem; margin-bottom: 1rem; line-height: 1.8; }
        .about-text p strong { color: var(--white); font-weight: normal; }
        .about-text .highlight { color: var(--gold); }

        .about-text ul { list-style: none; margin: 1rem 0; }
        .about-text ul li { color: var(--white-soft); padding: 0.4rem 0; display: flex; align-items: center; gap: 0.8rem; }
        .about-text ul li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

        .about-quote {
            font-family: var(--font-display); font-size: 1rem; color: var(--gold);
            border-left: 2px solid var(--gold); padding-left: 1.5rem; margin: 2rem 0;
            letter-spacing: 0.03em; line-height: 1.6;
        }

        .about-img { position: relative; border-radius: 10px; overflow: hidden; box-shadow: 0px 9px 31px 6px rgba(201, 168, 76, 0.4); }
        .about-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; }
        .about-img::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,168,76,0.2); border-radius: 10px; pointer-events: none; }

        .about-img .corner-accent {
            position: absolute; top: -12px; left: -12px; width: 80px; height: 80px;
            border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); z-index: 2;
        }

        /* Activities list for Vocation section */
        .activity-item {
            display: flex; align-items: flex-start; gap: 1rem;
            padding: 1rem 1.2rem; background: rgba(201,168,76,0.12);
            border-left: 2px solid var(--gold); margin-bottom: 0.8rem;
            transition: background 0.3s;
        }
        .activity-item:hover { background: rgba(201,168,76,0.08); }
        .activity-item p { margin: 0; font-size: 0.95rem; }

        /* Swiper styling */
        .about-img .swiper { border-radius: 4px; height: 500px; }
        .about-img-portrait { aspect-ratio: 3 / 4; max-height: 650px; margin-left: auto; }
        .about-img-portrait .swiper { height: 100%; }
        .col-img-portrait { flex: 0 0 auto; max-width: none; width: auto; }
        .col-text-portrait { flex: 1 1 0%; max-width: none; }
        .about-img .swiper img { width: 100%; height: 100%; object-fit: cover; }
        .swiper-button-prev, .swiper-button-next { color: var(--gold) !important; }
        .swiper-button-prev::after, .swiper-button-next::after { font-size: 1.2rem !important; }
        .swiper-pagination-bullet { background: var(--gold) !important; opacity: 0.4; }
        .swiper-pagination-bullet-active { opacity: 1 !important; }

        /* ═══════════════════════════════════════════════════════
           SCROLLING TICKER
           ═══════════════════════════════════════════════════════ */
        .scrolling-ticker {
            position: relative; z-index: 1; overflow: hidden;
            padding: 2rem 0;
            background: linear-gradient(160deg, #8a7432 0%, #b89940 12%, #c9a84c 25%, #d4b050 38%, #f0d060 50%, #d4b050 62%, #c9a84c 75%, #b89940 88%, #8a7432 100%);
            border-top: 2px solid var(--gold);
            border-bottom: 2px solid var(--gold);
        }
        .scrolling-ticker-box { display: flex; width: max-content; }
        .scrolling-content {
            display: flex; align-items: center; gap: 40px;
            animation: tickerScroll 40s linear infinite;
            padding-right: 40px;
        }
        .scrolling-content span {
            font-family: var(--font-body); font-size: 2.5rem;
            color: #f4e6bb; white-space: nowrap; display: flex; align-items: center; gap: 40px;
            letter-spacing: 0.05em; line-height: 1;
        }
        .scrolling-content .asterisk {font-size: 1.5rem; }
        @keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(calc(-100% - 40px)); } }

        /* ═══════════════════════════════════════════════════════
           PRICING SECTION
           ═══════════════════════════════════════════════════════ */
        .section-prestations {
            position: relative; padding: 3rem 3rem; overflow: hidden;
            background: 
				radial-gradient(ellipse 80% 50% at 20% 50%, rgba(15,15,58,0.7) 0%, transparent 70%),
                radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 50% 100%, rgba(10,10,46,0.9) 0%, transparent 70%),
                linear-gradient(180deg, rgba(10,10,46,0.2) 0%, rgba(10,10,46,0.05) 50%, rgba(10,10,46,0.85) 100%);
        }
        .section-prestations::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 0px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }
        .section-prestations::after {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .presta-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
            max-width: 1200px; margin: 4rem auto 0; text-align: center;
        }

        /* ── Card base: faceted glass case ── */
        .presta-card {
            background:
                linear-gradient(135deg, rgba(201,168,76,0.03) 0%, transparent 50%, rgba(201,168,76,0.02) 100%),
                linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
            border: 1.5px solid rgba(212,175,55,0.5);
            border-radius: 12px; padding: 2.5rem 2rem; display: flex; flex-direction: column;
            transition: all 0.6s var(--ease-expo); position: relative; overflow: hidden;
            box-shadow:
                0 0 8px rgba(201,168,76,0.12),
                0 0 30px rgba(201,168,76,0.06),
                0 0 60px rgba(201,168,76,0.03),
                inset 0 0 12px rgba(201,168,76,0.04);
            animation: borderGlow 4s ease-in-out infinite;
            animation-play-state: paused;
            will-change: transform;
        }
        .section-visible .presta-card { animation-play-state: running; }
        @keyframes borderGlow {
            0%, 100% { border-color: rgba(212,175,55,0.4); box-shadow: 0 0 8px rgba(201,168,76,0.1), 0 0 30px rgba(201,168,76,0.06), 0 0 60px rgba(201,168,76,0.03), inset 0 0 12px rgba(201,168,76,0.04); }
            50% { border-color: rgba(240,208,96,0.6); box-shadow: 0 0 14px rgba(240,208,96,0.18), 0 0 35px rgba(201,168,76,0.1), 0 0 70px rgba(201,168,76,0.05), inset 0 0 15px rgba(201,168,76,0.06); }
        }

        /* ── Corner diamond accents ── */
        .presta-card::before {
            content: '';
            position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(201,168,76,0.25), transparent 40%, transparent 60%, rgba(201,168,76,0.15));
            opacity: 0; transition: opacity 0.6s var(--ease-expo);
            z-index: -1;
        }
        .presta-card:hover::before, .presta-card.card-active::before { opacity: 1; }

        /* ── Sweeping light reflection on hover ── */
        .presta-card::after {
            content: '';
            position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
            background: linear-gradient(105deg, transparent 30%, rgba(255,245,220,0.06) 45%, rgba(201,168,76,0.08) 50%, rgba(255,245,220,0.06) 55%, transparent 70%);
            transform: skewX(-15deg); transition: left 0.8s var(--ease-expo);
            z-index: 1; pointer-events: none;
        }
        /* ── Hover (desktop only) ── */
        @media (hover: hover) {
            .presta-card:hover::after { left: 120%; }
            .presta-card:hover::before { opacity: 1; }
            .presta-card.revealed:hover, .presta-card:hover {
                animation: none;
                border-color: rgba(240,208,96,0.6);
                transform: translateY(-10px);
                box-shadow:
                    0 25px 60px rgba(0,0,0,0.4),
                    0 0 40px rgba(201,168,76,0.06),
                    0 0 80px rgba(201,168,76,0.03),
                    inset 0 1px 0 rgba(255,245,220,0.06);
            }
            .presta-card.featured:hover::before { opacity: 1; }
            .presta-card.featured:hover {
                box-shadow:
                    0 25px 60px rgba(0,0,0,0.4),
                    0 0 50px rgba(201,168,76,0.1),
                    0 0 100px rgba(201,168,76,0.05),
                    inset 0 1px 0 rgba(255,245,220,0.08);
            }
        }

        /* ── Mobile active (scroll-triggered) ── */
        .presta-card.card-active::after { left: 120%; }
        .presta-card.card-active::before { opacity: 1; }
        .presta-card.card-active {
            animation: none !important;
            border-color: rgba(240,208,96,0.6) !important;
            transform: translateY(-10px) !important;
            box-shadow:
                0 25px 60px rgba(0,0,0,0.4),
                0 0 40px rgba(201,168,76,0.06),
                0 0 80px rgba(201,168,76,0.03),
                inset 0 1px 0 rgba(255,245,220,0.06) !important;
        }
        .presta-card.featured.card-active::before { opacity: 1; }
        .presta-card.featured.card-active {
            box-shadow:
                0 25px 60px rgba(0,0,0,0.4),
                0 0 50px rgba(201,168,76,0.1),
                0 0 100px rgba(201,168,76,0.05),
                inset 0 1px 0 rgba(255,245,220,0.08) !important;
        }

        /* ── Featured card: perpetual golden aura ── */
        .presta-card.featured {
            border-color: rgba(201,168,76,0.3);
            background:
                radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%),
                linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 50%, rgba(201,168,76,0.03) 100%),
                linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.005) 100%);
            box-shadow:
                0 0 30px rgba(201,168,76,0.06),
                0 0 60px rgba(201,168,76,0.03);
        }
        .presta-card.featured::before { opacity: 0.5; }

        /* ── Badge: floating golden star ── */
        .presta-badge {
            display: none; position: absolute; top: 1rem; right: 1rem;
            font-size: 1.4rem; line-height: 1;
            color: var(--gold-bright);
            filter: drop-shadow(0 0 6px rgba(212,175,55,0.7)) drop-shadow(0 0 15px rgba(212,175,55,0.4));
            animation: starGlow 3s ease-in-out infinite;
            z-index: 2;
        }
        @keyframes starGlow {
            0%, 100% { filter: drop-shadow(0 0 6px rgba(212,175,55,0.7)) drop-shadow(0 0 15px rgba(212,175,55,0.4)); }
            50% { filter: drop-shadow(0 0 12px rgba(240,208,96,0.9)) drop-shadow(0 0 30px rgba(212,175,55,0.6)); }
        }
        .presta-card.featured .presta-badge { display: block; }

        /* ── Icon: ringed gold emblem ── */
        .presta-icon {
            width: 64px; height: 64px; margin: 0 auto 1.8rem;
            display: flex; align-items: center; justify-content: center; position: relative;
        }
        .presta-icon::before {
            content: ''; position: absolute; inset: 0;
            border-radius: 50%;
            border: 1px solid rgba(201,168,76,0.2);
            background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
        }
        .presta-icon::after {
            content: ''; position: absolute; inset: -6px;
            border-radius: 50%;
            border: 1px solid rgba(201,168,76,0.08);
        }
        .presta-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.2; position: relative; z-index: 1; }
        .presta-card .presta-icon { transition: transform 0.6s var(--ease-expo); }
        @media (hover: hover) {
            .presta-card:hover .presta-icon::before {
                border-color: rgba(201,168,76,0.35);
                background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
                box-shadow: 0 0 20px rgba(201,168,76,0.08);
            }
            .presta-card:hover .presta-icon { transform: scale(1.08); }
        }
        .presta-card.card-active .presta-icon::before {
            border-color: rgba(201,168,76,0.35);
            background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
            box-shadow: 0 0 20px rgba(201,168,76,0.08);
        }
        .presta-card.card-active .presta-icon { transform: scale(1.08); }

        /* ── Name ── */
        .presta-name {
            font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.15em;
            color: var(--gold-light); margin-bottom: 1rem; text-align: center;
            position: relative; z-index: 2;
        }

        /* ── Meta (duration) ── */
        .presta-meta {
            display: flex; align-items: center; justify-content: center; gap: 1.5rem;
            margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--gray);
            position: relative; z-index: 2;
        }
        .presta-meta span { display: flex; align-items: center; gap: 0.4rem; }
        .presta-meta svg { width: 14px; height: 14px; stroke: var(--gold-dim); fill: none; stroke-width: 1.5; }

        /* ── Price: shimmer gold text ── */
        .presta-price {
            font-family: var(--font-display); font-size: 2.4rem;
            background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, var(--gold-dim) 100%);
            background-size: 200% 100%;
            -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
            animation: priceShimmer 4s ease-in-out infinite;
            margin-bottom: 0.3rem; text-align: center;
            position: relative; z-index: 2;
        }
        @keyframes priceShimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        .presta-price-suffix {
            font-size: 0.8rem; color: var(--gray); margin-bottom: 1.5rem;
            letter-spacing: 0.05em; text-align: center; position: relative; z-index: 2;
        }

        /* ── Description ── */
        .presta-desc {
            color: var(--gray); font-size: 0.92rem; line-height: 1.7; flex: 1;
            position: relative; z-index: 2; text-align:center;
        }

        /* ── CTA button: gold border with fill sweep ── */
        .presta-cta {
            display: inline-block; margin-top: 1rem; padding: 0.8rem 2rem;
            border: 1px solid rgba(201,168,76,0.3); color: var(--gold);
            text-decoration: none; font-family: var(--font-display);
            font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
            transition: all 0.5s var(--ease-expo);
            position: relative; z-index: 2; overflow: hidden;
            border-radius: 2px;
            background: transparent;
        }
        .presta-cta::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            transform: scaleX(0); transform-origin: right;
            transition: transform 0.5s var(--ease-expo); z-index: -1;
        }
        .presta-cta:hover { color: var(--navy-deepest); border-color: var(--gold); }
        .presta-cta:hover::before { transform: scaleX(1); transform-origin: left; }

        /* ── Separator line between icon and content ── */
        .presta-name::after {
            content: ''; display: block;
            width: 30px; height: 1px; margin: 1rem auto 0;
            background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
        }

        /* ═══════════════════════════════════════════════════════
           TIMELINE / DÉROULEMENT
           ═══════════════════════════════════════════════════════ */
        .section-deroulement {
            position: relative; padding: 3rem 0; overflow: hidden;
            background:
                linear-gradient(160deg, #8a7432 0%, #b89940 12%, #c9a84c 25%, #d4b050 38%, #f0d060 50%, #d4b050 62%, #c9a84c 75%, #b89940 88%, #8a7432 100%);
        }
        /* Background photo */
        .section-deroulement::before {
            content: ''; position: absolute; inset: 0;
            background: url('../../images/section5/processus.jpg') center/cover no-repeat;
            opacity: 0.22;
            mix-blend-mode: luminosity;
            pointer-events: none;
        }
        /* Gold shimmer overlay */
        .section-deroulement::after {
            content: ''; position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 30% 30% at 85% 10%, rgba(255,245,220,0.3) 0%, transparent 70%),
                radial-gradient(ellipse 25% 25% at 10% 20%, rgba(255,245,220,0.25) 0%, transparent 70%),
                radial-gradient(ellipse 50% 40% at 20% 20%, rgba(240,208,96,0.35) 0%, transparent 70%),
                radial-gradient(ellipse 40% 50% at 80% 80%, rgba(240,208,96,0.25) 0%, transparent 60%),
                radial-gradient(ellipse 35% 25% at 65% 30%, rgba(255,255,255,0.12) 0%, transparent 50%),
                radial-gradient(ellipse 25% 35% at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(ellipse 15% 15% at 75% 25%, rgba(255,240,200,0.2) 0%, transparent 60%),
                radial-gradient(ellipse 10% 10% at 45% 50%, rgba(255,255,240,0.15) 0%, transparent 60%);
            opacity: 0.85;
            pointer-events: none;
        }
        /* Lens flare container (éléments masqués, effet remplacé par ::after) */
        .lens-flare-container { display: none; }

        .section-deroulement > .container { position: relative; z-index: 1; }
        .section-deroulement .section-label { color: var(--navy-mid); }
        .section-deroulement .section-label::before { background: linear-gradient(90deg, transparent, var(--navy-mid)); }
        .section-deroulement .section-label::after { background: linear-gradient(90deg, var(--navy-mid), transparent); }
        .section-deroulement .stitle { color: var(--navy-deepest); }
        .section-deroulement .stitle span { color: var(--navy); }
        .section-deroulement .gold-line-d { width: 60px; height: 2px; background: linear-gradient(90deg, var(--navy), var(--navy-mid), var(--navy)); margin: 1.5rem auto; }

        .process-flow {
            position: relative; max-width: 900px; margin: 4rem auto 0;
            padding-left: 80px;
        }
        .process-flow::before {
            content: ''; position: absolute;
            left: 30px; top: 0; bottom: 0; width: 1px;
            background: linear-gradient(180deg, transparent, var(--navy-mid), var(--navy-deepest), var(--navy-mid), transparent);
        }

        .process-step {
            position: relative; padding: 0 0 2.5rem 0;
        }
        .process-step:last-child { padding-bottom: 0; }

        .process-step-inner {
            position: relative; padding: 1rem 2rem; border-radius: 15px;
            background: linear-gradient(145deg, #1b1b44 0%, #0a0a2e 60%, #1b1b44 100%);
            border: none;
            transition: transform 0.6s var(--ease-expo), box-shadow 0.6s var(--ease-expo);
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            z-index: 0;
        }
        .process-step-inner::after {
            content: ''; position: absolute;
            inset: -2.5px; border-radius: 16px; z-index: -2;
            background: linear-gradient(
                135deg,
                #8a7432 0%, #c9a84c 15%, #f0d060 25%, #f5e6a3 35%,
                #f0d060 45%, #c9a84c 55%, #8a7432 65%, #c9a84c 75%,
                #f0d060 85%, #f5e6a3 90%, #c9a84c 100%
            );
        }
        .process-step-inner::before {
            content: ''; position: absolute; inset: 1px; border-radius: 14px;
            background: linear-gradient(145deg, #1b1b44 0%, #0a0a2e 60%, #1b1b44 100%);
            z-index: -1;
        }
        .process-step-inner:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(201,168,76,0.08);
        }

        .process-node {
            position: absolute; top: 1.8rem; left: -76px;
            width: 52px; height: 52px;
            z-index: 2;
        }
        .process-node-diamond {
            width: 52px; height: 52px; position: relative;
            display: flex; align-items: center; justify-content: center;
        }
        .process-node-diamond::before {
            content: ''; position: absolute; inset: 4px;
            background: #1b1b44;
            border: 1px solid rgba(201,168,76,0.6);
            transform: rotate(45deg);
            transition: all 0.5s var(--ease-expo);
        }
        .process-step-inner:hover ~ .process-node .process-node-diamond::before,
        .process-step:hover .process-node-diamond::before {
            background: #1b1b44;
            border-color: var(--gold-light);
            box-shadow: 0 0 24px rgba(201,168,76,0.5), inset 0 0 12px rgba(201,168,76,0.15);
        }
        .process-node-num {
            position: relative; z-index: 1;
            font-family: var(--font-display); font-size: 0.85rem;
            color: var(--gold-light); letter-spacing: 0.05em;
            transition: color 0.5s var(--ease-expo);
        }
        .process-step:hover .process-node-num { color: var(--gold-light); }

        .process-step-header {
            display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem;
        }
        .process-icon {
            width: 36px; height: 36px; min-width: 36px;
            display: flex; align-items: center; justify-content: center;
            position: relative;
        }
        .process-icon svg {
            width: 28px; height: 28px; stroke: var(--gold); fill: none;
            stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round;
        }
        .process-icon::after {
            content: ''; position: absolute; inset: 0;
            border: 1px solid rgba(201,168,76,0.2); border-radius: 50%;
            transition: all 0.5s var(--ease-expo);
        }
        .process-step-inner:hover .process-icon::after {
            border-color: rgba(201,168,76,0.5);
            box-shadow: 0 0 18px rgba(201,168,76,0.12);
        }

        .process-step h3 {
            font-family: var(--font-display); font-size: 0.85rem;
            color: var(--gold-light); letter-spacing: 0.12em;
            margin: 0; position: relative; z-index: 1;
        }
        .process-step p {
            color: var(--gray); font-size: 0.92rem;
            line-height: 1.8; position: relative; z-index: 1;
        }
        .process-step p strong { color: var(--white-soft); }

        /* ═══════════════════════════════════════════════════════
           CONTACT SECTION — SPLIT LAYOUT
           ═══════════════════════════════════════════════════════ */
        .section-contact {
            position: relative; padding: 3rem 0;
            background:
				radial-gradient(ellipse 80% 50% at 20% 50%, rgba(15,15,58,0.7) 0%, transparent 70%),
                radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
                radial-gradient(ellipse 60% 40% at 50% 100%, rgba(10,10,46,0.9) 0%, transparent 70%),
                linear-gradient(180deg, rgba(10,10,46,0.2) 0%, rgba(10,10,46,0.05) 50%, rgba(10,10,46,0.85) 100%);
        }
        .section-contact::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .contact-wrapper {
            max-width: 1000px; margin: 3rem auto 0;
            display: flex; border-radius: 4px; overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .contact-form-side, .contact-info-side { flex: 1; padding: 3rem; border-radius: 20px; }
        .contact-form-side { background: var(--navy); }
        .contact-info-side {
            background: linear-gradient(135deg, #8a7432, #c9a84c 30%, #f0d060 60%, #c9a84c);
        }

        .contact-form-side h3 { font-family: var(--font-display); font-size: 1rem; color: var(--gold); text-align: center; margin-bottom: 2rem; letter-spacing: 0.1em; }
        .contact-form-side input, .contact-form-side textarea {
            width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.15);
            padding: 0.9rem 1.2rem; color: var(--white); font-family: var(--font-body);
            font-size: 0.95rem; border-radius: 2px; margin-bottom: 1rem; outline: none; transition: border-color 0.3s;
        }
        .contact-form-side input:focus, .contact-form-side textarea:focus { border-color: var(--gold); }
        .contact-form-side textarea { min-height: 120px; resize: vertical; }
        .contact-form-side input::placeholder, .contact-form-side textarea::placeholder { color: var(--gray); }
        .contact-form-side .btn-submit {
            width: 100%; padding: 1rem; background: transparent; border: 1px solid var(--gold);
            color: var(--gold); font-family: var(--font-display); font-size: 0.7rem;
            letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
            transition: all 0.4s var(--ease-expo);
        }
        .contact-form-side .btn-submit:hover { background: var(--gold); color: var(--navy-deepest); }
        #form-message-success { display: none; text-align: center; color: var(--gold); padding: 1rem; }

        .contact-info-side h3 { font-family: var(--font-display); font-size: 1rem; color: var(--navy-deepest); text-align: center; margin-bottom: 2rem; letter-spacing: 0.1em; }
        .dbox { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
        .dbox .icon { width: 40px; height: 40px; border: 1px solid var(--navy-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .dbox .icon span { color: var(--navy-deepest); font-size: 1rem; }
        .dbox .text a, .dbox .text p { color: var(--navy-mid); text-decoration: none; font-size: 0.95rem; margin: 0; transition: color 0.3s; }
        .dbox .text a:hover { color: var(--navy-deepest); }
        .dbox .text .label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); }

        /* ═══════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════ */
        .footer {
            text-align: center; padding: 3rem;
            border-top: 1px solid rgba(201,168,76,0.1);
        }
        .footer img { width: 60px; margin-bottom: 1rem; opacity: 0.6; }
        .footer p {text-align: center; color: var(--gray); font-size: 0.8rem; }
        .footer a { color: var(--gold-dim); text-decoration: none; }
        .footer a:hover { color: var(--gold); }

        /* ═══════════════════════════════════════════════════════
           SECTION LABELS
           ═══════════════════════════════════════════════════════ */
        .section-label {
            font-family: var(--font-body); font-size: clamp(0.8rem, 1.2vw, 1.1rem);
            letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
            display: flex; align-items: center; gap: 1rem; margin-bottom: 0.1rem;
        }
        .section-label::before { content: ''; width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
        .section-label::after { content: ''; width: 40px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
        .section-label.center { justify-content: center; }

        .stitle {
            font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.5rem);
            color: var(--white); margin-bottom: 0.5rem; line-height: 1.3;
        }
        .stitle span { color: var(--gold-bright); }
        .gold-line-d { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); margin: 1.5rem 0; }
        .gold-line-d.center { margin-left: auto; margin-right: auto; }

        /* ═══════════════════════════════════════════════════════
           UNIVERSAL MODAL
           ═══════════════════════════════════════════════════════ */
        #universalModal {
            display: none; position: fixed; inset: 0; z-index: 9999;
            background: rgba(0,0,0,0.7); align-items: center; justify-content: center;
        }
        #universalModal.show { display: flex; }
        #universalModal .modal-content {
            width: 90%; max-width: 1200px; height: 90vh;
            background: var(--navy); border: 1px solid rgba(201,168,76,0.2);
            border-radius: 8px; position: relative; overflow: hidden;
        }
        #universalModal .close-modal {
            position: absolute; top: 10px; right: 15px; color: var(--gold); font-size: 1.5rem;
            cursor: pointer; z-index: 1; background: none; border: none;
        }
        #universalModal iframe { width: 100%; height: 100%; border: none; }

        @keyframes zoomIn {
            from { opacity: 0; transform: scale(0.85); }
            to { opacity: 1; transform: scale(1); }
        }
        @keyframes zoomOut {
            from { opacity: 1; transform: scale(1); }
            to { opacity: 0; transform: scale(0.85); }
        }

        /* ═══════════════════════════════════════════════════════
           COOKIE CONSENT
           ═══════════════════════════════════════════════════════ */
        .cookie-bar {
            display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
            background: var(--navy); border-top: 1px solid rgba(201,168,76,0.2);
            padding: 1rem 2rem; text-align: center; font-size: 0.85rem; color: var(--gray);
        }
        .cookie-bar a { color: var(--gold); }
        .cookie-bar button {
            margin-left: 1rem; padding: 0.4rem 1.2rem; background: var(--gold); color: var(--navy-deepest);
            border: none; font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.15em;
            cursor: pointer; text-transform: uppercase;
        }

        /* ═══════════════════════════════════════════════════════
           GSAP REVEAL CLASSES
           ═══════════════════════════════════════════════════════ */
        .gs-reveal { opacity: 0; transform: translateY(40px); transition: none; }
        .gs-reveal.revealed { opacity: 1; transform: translateY(0); }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
        }
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.12s; }
        .reveal-delay-2 { transition-delay: 0.24s; }

        /* ═══════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════ */
        /* ——— Petit laptop / tablette paysage ——— */
        @media (max-width: 1140px) {
            .cb-slideshow-titles li div span { font-size: 4.5rem; }
            .presta-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
            .section-about, .section-prestations, .section-contact { padding: 2rem 0; }
            .section-deroulement { padding: 2rem 0; }
        }

        /* ——— Tablette portrait (iPad, Android tablet) ——— */
        @media (max-width: 991px) {
            .col-lg-6 { flex: 0 0 100%; max-width: 100%; }
            .row { flex-direction: column; align-items: stretch !important; }
            .order-lg-1, .order-lg-2 { order: unset; }
            .section-about, .section-prestations, .section-contact { padding: 2rem 0; }
            .section-deroulement { padding: 2rem 0; }
            .about-img .swiper { height: 400px; }
            .about-img { width: 100%; display: block; }
            .about-img-portrait { aspect-ratio: 1 / 1; max-height: none; margin-left: 0; }
            .about-img-portrait .swiper { height: 100%; }
            .section-about .about-img img { height: 400px !important; }
            .section-about .about-img-portrait img { height: 100% !important; }
            .process-flow { max-width: 100%; }
            .scrolling-content span { font-size: 2.5rem; }
            .scrolling-ticker { padding: 1.5rem 0; }
            .contact-form-side, .contact-info-side { padding: 2rem; }
            .localisation p { font-size: 0.9rem; letter-spacing: 0.1em; }
            .cb-slideshow-titles li div span { font-size: 3.5rem; }
            .blob { display: none; }
        }

        /* ——— Mobile large ——— */
        @media (max-width: 768px) {
            .section-about, .section-prestations, .section-contact { padding: 2rem 0; }
            .section-deroulement { padding: 2rem 0; }
            .about-img .swiper { height: 350px; }
            .about-img-portrait .swiper { height: 100%; }
            .section-about .about-img img { height: 350px !important; }
            .section-about .about-img-portrait img { height: 100% !important; }
            .hero .social { display: none; }
            .hero-content { margin: 0 15px; }
            .hero-content .hero-subtitle { letter-spacing: 0.2em; }
            .btn-main { padding: 0.8rem 1.5rem; letter-spacing: 0.15em; }
            /* Point focal mobile — recentre le sujet sur smartphone */
            .cb-slideshow li:nth-child(1) span { background-position: 60% 30%; }
            .cb-slideshow li:nth-child(2) span { background-position: 60% 50%; }
            .cb-slideshow li:nth-child(3) span { background-position: 50% 30%; }
            .cb-slideshow li:nth-child(4) span { background-position: 80% 60%; }
            .presta-grid { grid-template-columns: 1fr; padding: 0 15px; }
            .contact-wrapper { flex-direction: column; margin: 2rem 15px 0; }
            .contact-form-side, .contact-info-side { padding: 1.5rem; }
            .scrolling-content span { font-size: 2.5rem; }
            .process-flow { padding-left: 55px; margin-top: 2.5rem; }
            .process-flow::before { left: 18px; }
            .process-node { left: -57px; width: 40px; height: 40px; top: 1.2rem; }
            .process-node-diamond { width: 40px; height: 40px; }
            .process-node-diamond::before { inset: 3px; }
            .process-node-num { font-size: 0.7rem; }
            .process-step-inner {
                padding: 1.4rem 1.5rem;
                backdrop-filter: none; -webkit-backdrop-filter: none;
                will-change: auto;
                transition: none;
            }
            .process-step-inner::before,
            .process-step-inner::after { will-change: auto; }
            .process-step, .process-node-diamond { will-change: auto; }
            .process-step-inner:hover { transform: none; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
            .section-deroulement::after { animation: none; opacity: 0.7; }
            .cb-slideshow-titles li div { text-align: center; }
            .cb-slideshow-titles li div span { font-size: 2.5rem; padding-right: 0; }
            .footer { padding: 2rem; }
            .float-num { font-size: 2.5rem !important; }
            body { line-height: 1.6; }
            .about-text p, .about-text ul { line-height: 1.6; font-size: 0.95rem; }
            .presta-desc { line-height: 1.6; }
            .process-step p { line-height: 1.6; }
        }

        /* ——— Smartphone portrait ——— */
        @media (max-width: 576px) {
            .section-about, .section-prestations, .section-contact { padding: 2rem 0; }
            .section-deroulement { padding: 2rem 0; }
            .cb-slideshow-titles li div span { font-size: 2rem; }
            .hero-content .hero-subtitle { letter-spacing: 0.15em; }
            .hero-tagline { letter-spacing: 0.08em; }
			.hero .social { display: none; }
            .presta-card { padding: 1.5rem; }
            .presta-price { font-size: 1.8rem; }
            .contact-form-side, .contact-info-side { padding: 1.2rem; }
            .localisation p { font-size: 0.9rem; letter-spacing: 0.08em; line-height: 1.4; text-align: center; }
            .localisation .loc-sep { display: none; }
            .localisation p span:last-child { display: block; }
            .scrolling-content span { font-size: 1.5rem; }
            .scrolling-ticker { padding: 1rem 0; }
            .process-step-inner { padding: 1.2rem 1.2rem; }
            .about-quote { padding: 1rem; font-size: 0.9rem; line-height: 1.5; }
            body { line-height: 1.5; }
            .about-text p, .about-text ul { line-height: 1.5; font-size: 0.9rem; }
            .presta-desc { line-height: 1.5; font-size: 0.95rem; }
            .process-step p { line-height: 1.5; font-size: 0.85rem; }
            .stitle { font-size: clamp(1.4rem, 3vw, 2.2rem); }
            .section-about .about-img img { height: 280px !important; }
            .section-about .about-img-portrait img { height: 100% !important; }
            .about-img .swiper { height: 280px; }
            .about-img-portrait .swiper { height: 100%; }
            .float-num { font-size: 2rem !important; }
        }

        /* ——— Petit smartphone (iPhone SE, Galaxy S) ——— */
        @media (max-width: 400px) {
            .cb-slideshow-titles li div span { font-size: 1.6rem; }
            .localisation p { font-size: 0.8rem; letter-spacing: 0.05em; }
            .contact-form-side, .contact-info-side { padding: 1rem; }
            .presta-price { font-size: 1.5rem; }
            .process-flow { padding-left: 45px; }
            .process-flow::before { left: 14px; }
            .process-node { left: -47px; width: 36px; height: 36px; }
            .process-node-diamond { width: 36px; height: 36px; }
            .process-node-diamond::before { inset: 2px; }
            .process-node-num { font-size: 0.6rem; }
            .process-step h3 { font-size: 0.75rem; }
            body { line-height: 1.4; }
            .about-text p, .about-text ul { line-height: 1.4; font-size: 0.9rem; }
            .presta-desc { line-height: 1.4; font-size: 0.9rem; }
            .process-step p { line-height: 1.4; font-size: 0.8rem; }
            .btn-main { padding: 0.7rem 1.2rem; font-size: 0.65rem; }
            .stitle { font-size: clamp(1.4rem, 3vw, 2.2rem); }
            .section-about .about-img img { height: 220px !important; }
            .section-about .about-img-portrait img { height: 100% !important; }
            .about-img .swiper { height: 220px; }
            .about-img-portrait .swiper { height: 100%; }
        }

