        :root{
            --bg: #ffffff;
            --text: #111827;
            --muted: #6b7280;
            --navy: #1f2b45;
            --navy-2:#22314f;
            --card: #ffffff;
            --red: #c62828;
            --red-2:#b71c1c;
            --radius: 14px;
            --shadow: 0 10px 30px rgba(0,0,0,.10);
            --container: 1100px;
        }

        *{ box-sizing: border-box; }
        html,body{ height:100%; }
        body{
            margin:0;
            font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.5;
        }

        a{ color: inherit; text-decoration: none; }
        img{ max-width:100%; display:block; }

        .container{
            width: min(var(--container), calc(100% - 40px));
            margin-inline: auto;
        }

        .btn{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            gap:.5rem;
            padding: .85rem 1.15rem;
            border-radius: 999px;
            border: 0;
            cursor: pointer;
            font-weight: 700;
            letter-spacing: .2px;
            transition: transform .06s ease, background .2s ease, opacity .2s ease;
            user-select:none;
            white-space: nowrap;
        }
        .btn:active{ transform: translateY(1px); }
        .btn-red{ background: var(--red); color:#fff; }
        .btn-red:hover{ background: var(--red-2); }
        .btn-outline{
            background: transparent;
            border: 2px solid #fff;
            color:#fff;
        }
        .btn-outline:hover{ opacity:.9; }

        /* HERO */
        .hero{
            position: relative;
            min-height: 520px;
            height: clamp(520px, 60vh, 620px);
            overflow: hidden;
            color: #fff;
            background: #0b1220;
        }
        .hero video{
            position:absolute;
            inset:0;
            width:100%;
            height:100%;
            object-fit: cover;
            filter: saturate(1.05) contrast(1.05);
            transform: scale(1.02);
        }
        .hero::after{
            content:"";
            position:absolute;
            inset:0;
            background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.45));
        }

        .hero-top{
            position: relative;
            z-index: 6;
            padding: 18px 0 0;
        }
        .hero-top-inner{
            display:flex;
            align-items:center;
            justify-content: space-between;
            gap: 12px;
            position: relative;
        }
        .hero-top-inner > .brand[aria-label="Logo"]{
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .brand{
            display:flex;
            align-items:center;
        }
        .logo{
            width: 130px;
            height: 130px;
            display:grid;
            place-items:center;
            font-weight:900;
            letter-spacing: .5px;
        }
        .brand-spacer{
            width: 130px;
            height: 130px;
            display:grid;
            place-items:center;
        }
        .menu-site{
            position: relative;
        }
        .menu-site-links{
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .menu-icon-link{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
        }
        .menu-icon-link svg{
            width: 32px;
            height: 32px;
        }
        .menu-link-label{
            display: none;
        }
        .menu-site-toggle{
            display: none;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255,255,255,.35);
            border-radius: 10px;
            background: rgba(17,24,39,.38);
            color: #fff;
            padding: 10px 9px;
            cursor: pointer;
        }
        .menu-site-toggle span{
            display: block;
            width: 100%;
            height: 2px;
            background: #fff;
            border-radius: 999px;
            transition: transform .2s ease, opacity .2s ease;
        }
        .menu-site-toggle span + span{
            margin-top: 6px;
        }
        .menu-site.is-open .menu-site-toggle span:nth-child(1){
            transform: translateY(8px) rotate(45deg);
        }
        .menu-site.is-open .menu-site-toggle span:nth-child(2){
            opacity: 0;
        }
        .menu-site.is-open .menu-site-toggle span:nth-child(3){
            transform: translateY(-8px) rotate(-45deg);
        }

        .hero-content{
            position: relative;
            z-index: 2;
            height: calc(100% - 100px);
            display:grid;
            place-items:center;
            text-align:center;
            padding: 0 0 40px;
        }
        .hero h1{
            margin: 0 0 10px;
            font-size: clamp(2rem, 4vw, 3.15rem);
            font-weight: 900;
            letter-spacing: .5px;
            text-transform: uppercase;
            text-shadow: 0 8px 15px rgba(0,0,0,.75);
        }
        .hero .subtitle{
            margin: 0 0 22px;
            font-weight: 800;
            letter-spacing: .2rem;
            text-transform: uppercase;
            opacity: .95;
            font-size: .95rem;
        }
        .hero-cta{
            display:flex;
            justify-content:center;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* SECTIONS */
        section{ padding: 58px 0; }
        .section-title{
            margin: 0 0 22px;
            font-size: clamp(1.4rem, 2.2vw, 2rem);
            font-weight: 900;
        }
        .lead{ color: var(--muted); max-width: 65ch; }

        /* Intro (Drakkar...) */
        .intro-grid{
            display:grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 30px;
            align-items:center;
        }
        .intro-card{
            background: #fff;
        }
        .intro-actions{
            margin-top: 18px;
            display:flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-dark{
            background: #111827;
            color: #fff;
        }
        .btn-dark:hover{ opacity: .92; }

        .media{
            border-radius: var(--radius);
            overflow:hidden;
            box-shadow: var(--shadow);
            background: #e5e7eb;
            border: 1px solid #e5e7eb;
        }
        .ph{
            width:100%;
            aspect-ratio: 4/3;
            background:
                    linear-gradient(135deg, #e5e7eb, #f3f4f6);
            position: relative;
        }

        .ph.wide{ aspect-ratio: 16/9; }
        .ph.tall{ aspect-ratio: 3/4; }
        .ph.square{ aspect-ratio: 1/1; }

        /* Pricing */
        .pricing{
            background: var(--navy);
            color: #fff;
        }
        .pricing .section-title{ text-align:center; }
        .pricing-grid{
            margin-top: 22px;
            display:grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .price-card{
            background: #fff;
            color: var(--text);
            border-radius: var(--radius);
            overflow:hidden;
            box-shadow: 0 14px 38px rgba(0,0,0,.22);
        }
        .price-card .thumb{
            border-bottom: 1px solid #e5e7eb;
        }
        .price-card .thumb .ph{ aspect-ratio: 16/10; }
        .price-card .body{
            padding: 18px 18px 16px;
        }
        .price-card h3{
            margin: 0 0 10px;
            font-size: 1.15rem;
            font-weight: 900;
        }
        .price-card ul{
            margin: 0 0 14px;
            padding-left: 18px;
            color: #374151;
        }
        .price-card li{ margin: 6px 0; }
        .price-card .cta{
            padding: 0 18px 18px;
        }
        .price-card .cta .btn{
            width: 100%;
            border-radius: 999px;
        }

        /* Why */
        .why{
            padding: 58px 0;
        }

        .why-title{
            text-align: center;
            margin-bottom: 22px;
        }

        .why-grid{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px 34px; /* un peu plus d'air horizontal comme la maquette */
            align-items: start;
        }

        .why-item{
            display: grid;
            grid-template-columns: 110px 1fr; /* vignette + texte */
            gap: 16px;
            align-items: start;
        }

        .why-thumb{
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid #e5e7eb;
            background: #e5e7eb;
        }

        .why-thumb .ph.square{
            aspect-ratio: 1/1;
        }

        .why-text h3{
            margin: 0 0 6px;
            font-size: 1.05rem;
            font-weight: 900;
        }

        .why-text p{
            margin: 0;
            color: var(--muted);
            font-size: .95rem;
        }

        /* Responsive */
        @media (max-width: 980px){
            .why-grid{
                grid-template-columns: 1fr;
            }
            .why-item{
                grid-template-columns: 96px 1fr;
            }
        }

        /* Team */
        .team{
            background: url("/wp-content/themes/drakkar/images/fond.png") center/cover no-repeat;
        }
        .team-head{
            text-align:center;
            margin-bottom: 22px;
            color: #fff;
        }
        .team-kicker{
            margin: 0;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .08rem;
        }
        .team-title{
            margin-top: 6px;
        }
        .team-grid{
            display:grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        .quote{
            background: rgba(255,255,255,.92);
            border: 1px solid rgba(255,255,255,.8);
            backdrop-filter: blur(4px);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 18px;
        }
        .quote p{
            margin:0 0 14px;
            color:#374151;
        }
        .person{
            display:flex;
            align-items:center;
            gap: 10px;
        }
        .avatar{
            width: 48px;
            height: 48px;
            border-radius: 999px;
            background: #e5e7eb;
            border: 1px solid #d1d5db;
        }
        .avatar img{
            width: 48px;
            height: 48px;
            border-radius: 999px;
        }
        .person strong{ display:block; font-size:.98rem; }
        .person span{ display:block; color: var(--muted); font-size:.9rem; }

        /* Commanditaires */
        .commanditaires{
            background: #f3f4f6;
            padding: 58px 0;
        }
        .commanditaires .section-title{
            text-align: center;
            margin-bottom: 22px;
        }
        .sponsors-carousel{
            overflow: hidden;
            border-radius: var(--radius);
            padding: 8px 0;
            mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
        }
        .sponsors-track{
            display: flex;
            width: max-content;
            animation: sponsors-scroll 28s linear infinite;
            will-change: transform;
        }
        .sponsors-group{
            list-style: none;
            display: flex;
            gap: 18px;
            margin: 0;
            padding: 0 18px 0 0;
        }
        .sponsor-item{
            width: clamp(150px, 18vw, 220px);
            height: 120px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #e5e7eb;
            box-shadow: 0 8px 24px rgba(17,24,39,.08);
            display: grid;
            place-items: center;
            flex-shrink: 0;
            padding: 12px 16px;
        }
        .sponsor-item a{
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sponsor-item img{
            width: auto;
            max-width: 100%;
            max-height: 62px;
            object-fit: contain;
        }
        .sponsor-name{
            margin-top: 6px;
            font-size: .78rem;
            color: #6b7280;
            font-weight: 700;
            text-align: center;
            white-space: nowrap;
        }
        .sponsors-carousel:hover .sponsors-track{
            cursor: default;
            animation-play-state: paused;
        }
        .sponsors-controls{
            margin-top: 14px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .sponsors-btn{
            width: 42px;
            height: 42px;
            border-radius: 999px;
            border: 1px solid #d1d5db;
            background: #fff;
            color: #111827;
            font-size: 1.6rem;
            line-height: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(17,24,39,.12);
            transition: transform .12s ease, background .2s ease;
        }
        .sponsors-btn:hover{
            background: #f9fafb;
            transform: translateY(-1px);
        }
        .sponsors-btn:active{
            transform: translateY(0);
        }
        @keyframes sponsors-scroll{
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* Footer / Deviens un Viking */
        .footer{
            background: var(--navy);
            color:#fff;
            padding: 52px 0;
        }
        .footer h2{
            margin: 0 0 18px;
            font-size: clamp(1.6rem, 2.6vw, 2.2rem);
            font-weight: 900;
        }
        .footer-grid{
            display:grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 22px;
            align-items:start;
        }
        .footer .media{ box-shadow: 0 18px 55px rgba(0,0,0,.35); }
        .footer .ph::after{ color: rgba(255,255,255,.85); }
        .footer .ph{
            background: linear-gradient(135deg, rgba(255,255,255,.15), rgba(255,255,255,.05));
            border: 1px solid rgba(255,255,255,.15);
        }
        .footer-box{
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: var(--radius);
            padding: 16px;
        }
        .footer-box h3{
            margin: 0 0 10px;
            font-size: 1.05rem;
            font-weight: 900;
        }
        .footer dl{ margin:0; }
        .footer dt{
            font-weight: 800;
            margin-top: 14px;
            opacity: .95;
        }
        .footer dd{
            margin: 6px 0 0;
            color: rgba(255,255,255,.85);
        }

        /* Responsive */
        @media (max-width: 980px){
            .intro-grid{ grid-template-columns: 1fr; }
            .pricing-grid{ grid-template-columns: 1fr; }
            .why-grid{ grid-template-columns: 1fr; }
            .team-grid{ grid-template-columns: 1fr; }
            .footer-grid{ grid-template-columns: 1fr; }
            .hero{ min-height: 480px; }
            .menu-site-toggle{
                display: inline-block;
            }
            .menu-site-links{
                display: none;
                position: absolute;
                right: 0;
                top: calc(100% + 8px);
                z-index: 30;
                background: rgba(11,18,32,.94);
                border: 1px solid rgba(255,255,255,.18);
                border-radius: 12px;
                padding: 12px;
                min-width: 220px;
                box-shadow: 0 14px 35px rgba(0,0,0,.35);
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            .menu-site.is-open .menu-site-links{
                display: flex;
            }
            .menu-site .btn{
                width: 100%;
            }
            .menu-icon-link{
                width: 100%;
                height: 42px;
                border-radius: 10px;
                border: 1px solid rgba(255,255,255,.14);
                justify-content: flex-start;
                gap: 10px;
                padding-left: 10px;
            }
            .menu-link-label{
                display: inline;
                color: #fff;
                font-size: .92rem;
                font-weight: 700;
            }
        }

        /* Focus accessibility */
        :focus-visible{
            outline: 3px solid rgba(198,40,40,.65);
            outline-offset: 3px;
            border-radius: 8px;
        }

        .facebook-icon {
            fill: #fff !important;
        }
