        :root {
            --primary-color: #1a6a9e;
            --secondary-color: #e6f2f9;
            --accent-color: #f39c12;
            --text-color: #333;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --success-color: #27ae60;
            --warning-color: #e74c3c;
            --bleu-fond: #1a4b8c;
            --orange-vif: #f97316;
            --blanc-cassÃ©: #f8f8f8;
            --noir-profond: #1e293b;
            --ombre: 0 4px 6px rgba(0, 0, 0, .1)
        }

        body,
        html {
            margin: 0;
            padding: 0;
            font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            color: #333;
            background: #fff
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box
        }

        .screen-reader-text,
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0
        }

        .site-footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 40px 0
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 0
        }

        .col {
            flex: 1;
            min-width: 200px
        }

        .col h3 {
            color: #eeb531;
            border-bottom: 2px solid #eeb531;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-weight: 600;
            display: inline-block
        }

        .col address {
            font-style: normal;
            line-height: 1.6
        }

        .col address p {
            margin: 8px 0;
            font-size: .95rem
        }

        .col address i {
            margin-right: 10px;
            color: #eeb531
        }

        .col .link-group {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .col .footer-link {
            color: #fff !important;
            text-decoration: none !important;
            display: block !important;
            margin: 6px 0 !important;
            font-size: .95rem;
            padding-left: 5px
        }

        .col .footer-link:hover {
            opacity: .75;
            padding-left: 10px;
            transform: translateX(2px)
        }

        @media(max-width:991px) {
            .row {
                flex-direction: column;
                gap: 25px
            }

            .col {
                min-width: auto;
                width: 100%
            }

            .col h3 {
                font-size: 1.2rem;
                margin-bottom: 15px
            }

            .col .footer-link {
                font-size: .9rem
            }

            .col address p,
            .col p {
                font-size: .9rem
            }
        }

        @media(max-width:768px) {
            .container {
                padding: 0 15px
            }

            .col h3 {
                font-size: 1.1rem
            }

            .col .footer-link {
                font-size: .88rem
            }
        }

        nav {
            background: #34495e;
            padding: 5px;
            text-align: center
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: opacity .2s ease-out
        }

        a:hover {
            opacity: .7
        }

        button {
            background: #f8b94c;
            border: none;
            color: #000;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            flex: 1;
            transition: transform .2s ease-out;
            will-change: transform
        }

        button:hover {
            background: #45a049;
            transform: scale(1.02)
        }

        .reservation-btn {
            display: inline-block;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease;
            box-shadow: var(--ombre);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            border: none;
            margin: 20px;
            background: linear-gradient(135deg, #1a2530, #2572a7);
            color: #fff;
            will-change: transform, box-shadow
        }

        .reservation-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
            background: linear-gradient(135deg, #0f172a, #1d4e89)
        }

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

        input[type=email],
        input[type=password],
        select {
            width: 100%;
            padding: .75rem;
            border: 1px solid #5480ac;
            border-radius: 4px;
            font-size: 16px
        }

        .reservation-highlight {
            background-color: #fff9e6 !important;
            border: 2px solid #ffd580 !important;
            border-radius: 8px;
            padding: 8px 15px !important;
            display: flex !important;
            align-items: center;
            transition: transform .3s ease;
            position: relative;
            flex-wrap: wrap;
            will-change: transform
        }

        .reservation-highlight:hover {
            background-color: #ffe082 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, .1)
        }

        .reservation-text {
            font-weight: 700;
            color: #7a6200;
            flex-grow: 1
        }

        .reservation-badge {
            opacity: .9;
            background: #e74c3c;
            color: #fff;
            font-size: .8em;
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 10px;
            position: absolute;
            right: 15px;
            top: -8px
        }

        @media(max-width:768px) {
            .reservation-highlight {
                padding: 10px !important
            }

            .reservation-text {
                font-size: .9em
            }

            .reservation-highlight:hover {
                transform: none;
                box-shadow: none
            }
        }

        .card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
            transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            will-change: transform
        }

        .card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
            opacity: 0;
            transition: opacity .3s ease;
            pointer-events: none;
            border-radius: 10px;
            will-change: opacity
        }

        .card:hover {
            transform: translateY(-10px)
        }

        .card:hover::after {
            opacity: 1
        }

        .card-img-container {
            position: relative;
            height: 220px;
            overflow: hidden
        }

        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
            will-change: transform
        }

        .card:hover .card-img {
            transform: scale(1.05)
        }

        .card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column
        }

        .card-title {
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: #2c3e50
        }

        .card-text {
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1
        }

        .review-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
            transition: transform .3s ease;
            position: relative;
            will-change: transform
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, .15)
        }

        .review-header {
            background: var(--secondary-color);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .review-author {
            font-weight: 700;
            color: var(--dark-color);
            font-size: 1.6rem;
            color: #333 !important
        }

        .review-date {
            color: #555 !important;
            font-size: .9rem
        }

        .review-rating {
            display: flex;
            align-items: center
        }

        .container,
        .content-container {
            width: 100%;
            max-width: var(--ksa-page, 1200px);
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box
        }

        .section,
        .activities-section,
        .reviews-widget,
        .route-card {
            padding: 60px 0
        }

        @media (prefers-reduced-motion:reduce) {

            *,
            *::before,
            *::after {
                animation-duration: .001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .001ms !important;
                scroll-behavior: auto !important
            }
        }

        :focus-visible {
            outline: 3px solid #1a6a9e !important;
            outline-offset: 2px !important;
            border-radius: 2px
        }

        * {
            transition-property: none !important;
        }

        a,
        button,
        .card,
        .review-card,
        .parcours-option,
        .ami-menu-link {
            transition: opacity 0.2s ease-out, transform 0.2s ease-out !important;
            will-change: opacity, transform;
        }

        a:hover {
            opacity: 0.7 !important;
        }

        .card:hover,
        .review-card:hover,
        .parcours-option:hover {
            transform: translateY(-5px) !important;
        }

        .card::after,
        .review-card::after {
            transition: opacity 0.3s ease !important;
            will-change: opacity;
        }

        .card:hover::after,
        .review-card:hover::after {
            opacity: 1 !important;
        }

        @keyframes rwPulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .5
            }
        }

        @keyframes rwGlow {

            0%,
            100% {
                opacity: 0
            }

            50% {
                opacity: 1
            }
        }

        .rw {
            box-sizing: border-box;
            width: 82%;
            max-width: 1100px;
            margin: 2.5rem auto;
            border-radius: 20px;
            background: linear-gradient(160deg, #0c1222, #131c33, #0f1729);
            box-shadow: 0 16px 48px rgba(0, 0, 0, .3), 0 0 0 1px rgba(255, 255, 255, .04);
            font-family: 'Segoe UI', system-ui, sans-serif;
            position: relative;
            z-index: 1
        }

        .rw::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            box-shadow: 0 16px 48px rgba(59, 130, 246, .12), 0 0 0 1px rgba(59, 130, 246, .1);
            opacity: 0;
            animation: rwGlow 5s ease infinite;
            z-index: -1;
            pointer-events: none;
            will-change: opacity
        }

        .rw-hd {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: .75rem 1.4rem;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            border-radius: 20px 20px 0 0
        }

        .rw-lg {
            display: flex;
            align-items: center;
            gap: .5rem;
            color: #cbd5e1;
            font-weight: 700;
            font-size: .92rem
        }

        .rw-li {
            width: 28px;
            height: 28px;
            border-radius: 7px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .8rem;
            box-shadow: 0 3px 10px rgba(59, 130, 246, .25)
        }

        .rw-gb {
            display: flex;
            align-items: center;
            gap: .4rem;
            padding: .3rem .8rem;
            border-radius: 20px;
            font-size: .65rem;
            font-weight: 700;
            letter-spacing: .4px;
            text-transform: uppercase
        }

        .rw-gb.gok {
            background: rgba(16, 185, 129, .15);
            color: #6ee7b7;
            border: 1px solid rgba(16, 185, 129, .18)
        }

        .rw-gb.gbad {
            background: rgba(239, 68, 68, .15);
            color: #fca5a5;
            border: 1px solid rgba(239, 68, 68, .18)
        }

        .rw-gb.gwarn {
            background: rgba(245, 158, 11, .15);
            color: #fcd34d;
            border: 1px solid rgba(245, 158, 11, .18)
        }

        .rw-gd {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            animation: rwPulse 2s infinite;
            will-change: opacity
        }

        .gok .rw-gd {
            background: #10b981
        }

        .gbad .rw-gd {
            background: #ef4444
        }

        .gwarn .rw-gd {
            background: #f59e0b
        }

        .rw-bd {
            padding: .2rem 0
        }

        .rw-r {
            display: grid;
            grid-template-columns: 185px 1fr auto;
            align-items: center;
            gap: .8rem;
            padding: .7rem 1.4rem;
            text-decoration: none;
            color: #e2e8f0;
            transition: background .2s;
            border-bottom: 1px solid rgba(255, 255, 255, .035);
            position: relative
        }

        .rw-r:hover {
            background: rgba(255, 255, 255, .035)
        }

        .rw-ri {
            display: flex;
            align-items: center;
            gap: .6rem;
            min-width: 0
        }

        .rw-ic {
            width: 32px;
            height: 32px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem;
            flex-shrink: 0;
            position: relative
        }

        .rs .rw-ic {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            box-shadow: 0 3px 10px rgba(59, 130, 246, .2)
        }

        .rl .rw-ic {
            background: linear-gradient(135deg, #166534, #22c55e);
            box-shadow: 0 3px 10px rgba(34, 197, 94, .2)
        }

        .ro .rw-ic {
            background: linear-gradient(135deg, #5b21b6, #8b5cf6);
            box-shadow: 0 3px 10px rgba(139, 92, 246, .2)
        }

        .rw-nm {
            font-weight: 700;
            font-size: .92rem;
            line-height: 1.1
        }

        .rw-st {
            font-size: .55rem;
            color: #64748b;
            font-weight: 500;
            letter-spacing: .3px;
            text-transform: uppercase;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .rw-ms {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: .4rem
        }

        .rw-m {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .05);
            border-radius: 8px;
            padding: .4rem .3rem;
            text-align: center
        }

        .rw-mu {
            font-size: .48rem;
            opacity: .35;
            font-weight: 500
        }

        .rw-algo {
            display: flex;
            gap: .5rem;
            margin-top: .4rem;
            padding: 0 1.4rem
        }

        .rw-ab {
            display: flex;
            align-items: center;
            gap: .3rem;
            background: rgba(255, 255, 255, .03);
            padding: .2rem .6rem;
            border-radius: 12px;
            font-size: .65rem;
            color: #94a3b8
        }

        .rw-bg {
            display: inline-flex;
            align-items: center;
            gap: .25rem;
            padding: .3rem .65rem;
            border-radius: 16px;
            font-size: .6rem;
            font-weight: 700;
            min-width: 80px;
            justify-content: center
        }

        .rw-bg.on {
            background: rgba(16, 185, 129, .12);
            color: #6ee7b7;
            border: 1px solid rgba(16, 185, 129, .15)
        }

        .rw-bg.off {
            background: rgba(239, 68, 68, .12);
            color: #fca5a5;
            border: 1px solid rgba(239, 68, 68, .15)
        }

        .rw-ft {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            padding: .5rem 1.4rem;
            border-top: 1px solid rgba(255, 255, 255, .035);
            border-radius: 0 0 20px 20px
        }

        .rw-fs {
            color: #475569;
            font-size: .52rem
        }

        .rw-fl {
            display: flex;
            gap: .8rem
        }

        .rw-fa {
            color: #475569;
            font-size: .55rem;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: .25rem
        }

        @media(max-width:768px) {
            .rw {
                width: 96%;
                margin: 1rem auto
            }

            .rw-r {
                grid-template-columns: 1fr;
                gap: .5rem;
                padding: .65rem .8rem
            }

            .rw-bg {
                min-width: auto;
                width: 100%
            }

            .rw-ft {
                flex-direction: column;
                gap: .3rem
            }
        }

        :root {
            --menu-bg: #0f172a;
            --menu-item-bg: #1e293b;
            --menu-item-hover: #334155;
            --accent: #f6da07;
            --primary-color: #1a6a9e;
            --secondary-color: #e6f2f9;
            --accent-color: #f39c12;
            --text-color: #333;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --success-color: #27ae60;
            --warning-color: #e74c3c;
            --ombre: 0 4px 6px rgba(0, 0, 0, .1)
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box
        }

        body,
        html {
            margin: 0;
            padding: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background: #fff;
            overflow-x: hidden
        }

        .sr-only,
        .screen-reader-text {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: opacity .3s ease
        }

        a:hover {
            opacity: .8
        }

        .container,
        .content-container {
            width: 100%;
            max-width: var(--ksa-page, 1200px);
            margin: 0 auto;
            padding: 0 15px;
            box-sizing: border-box
        }

        main#main-content,
        main[role="main"],
        main.page-content {
            padding-top: 0;
            margin-top: 0;
            display: block;
            min-height: 90vh;
            background: #fff;
            position: relative;
            z-index: 1;
            contain: layout;
            will-change: transform
        }

        .page-header {
            min-height: 380px
        }

        .main-title {
            min-height: clamp(2.8rem, 12vw, 5rem)
        }

        @media(min-width:992px) {
            .page-header {
                min-height: 340px
            }

            .main-title {
                min-height: 3.2rem
            }
        }

        #etat-rivieres-compact {
            min-height: 400px;
            margin: 2.5rem auto;
            display: block;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 20px;
            contain: content
        }

        .reviews-widget {
            min-height: 350px;
            background: #f8fafc;
            border-radius: 12px;
            margin: 20px 0
        }

        #avis {
            min-height: 400px
        }

        .video-section-semois {
            aspect-ratio: 16/9;
            min-height: 300px;
            background: #000
        }

        img {
            max-width: 100%;
            height: auto
        }

        a,
        button,
        .card,
        .review-card {
            transition: opacity 0.2s ease-out, transform 0.2s ease-out !important
        }

        a:hover {
            opacity: 0.8 !important
        }

        .card:hover,
        .review-card:hover {
            transform: translateY(-2px) !important
        }

        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(to right, #f6da07, #f39c12);
            z-index: 10002;
            transition: width 0.1s ease-out
        }

        .glass {
            background: rgba(255, 255, 255, 0.7) !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important
        }

        @media(min-width:992px) {
            #etat-rivieres-compact {
                min-height: 250px
            }

            .reviews-widget {
                min-height: 300px
            }
        }

        .section,
        .activities-section,
        .reviews-widget,
        .route-card {
            padding: 60px 0;
            box-sizing: border-box;
            contain: layout
        }

        h1,
        h2,
        h3,
        h4 {
            margin-bottom: 1rem;
            line-height: 1.4
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700
        }

        h2 {
            font-size: 2rem;
            font-weight: 600
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600
        }

        @media(max-width:768px) {
            h1 {
                font-size: 1.8rem
            }

            h2 {
                font-size: 1.5rem
            }

            h3 {
                font-size: 1.3rem
            }

            p,
            li,
            span:not(.ksm-badge) {
                font-size: 16px !important;
                line-height: 1.6 !important
            }
        }

        .tn {
            font-variant-numeric: tabular-nums;
            font-feature-settings: "tnum";
            min-width: 4ch
        }