        :root {
            --river: #99CC00;
            --river-dark: #7AB002;
            --moss: #5D7A4A;
            --ochre: #E55934;
            --ochre-dark: #B83E1F;
            --stone: #2D2D2D;
            --stone-dark: #3C3C3E;
            --stone-light: #6B6B6B;
            --cream: #FAF8F3;
            --white: #FFFFFF;

            --font-display: 'Space Grotesk', system-ui, sans-serif;
            --font-body: 'Inter', system-ui, sans-serif;

            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 2rem;
            --space-lg: 4rem;
            --space-xl: 6rem;
            --space-2xl: 8rem;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            color: var(--stone);
            background: transparent;
            line-height: 1.65;
            font-size: 1rem;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .feature-split__image,
        .page-hero__img,
        .hover-zoom {
            overflow: hidden;
        }

        .feature-split__image:hover img,
        .page-hero__img:hover img,
        .hover-zoom:hover img {
            transform: scale(1.05);
        }
        a { color: inherit; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .container--wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* --- NAV --- */
        .nav {
            position: fixed;
            top: 10px;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.25rem 0;
            transition: background 0.3s, padding 0.3s, box-shadow 0.3s, top 0.3s;
        }

        .nav--scrolled {
            top: 0;
            background: rgba(60, 60, 62, 0.97);
            padding: 0.75rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.15);
            backdrop-filter: blur(8px);
        }

        .nav__inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .nav__logo {
            display: inline-block;
            padding: 0.4rem 0.75rem;
            background: #3C3C3E;
            border-radius: 6px;
            text-decoration: none;
            line-height: 0;
            transition: background 0.3s, padding 0.3s;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
        }

        .nav__logo img {
            transition: height 0.3s;
        }

        .nav--scrolled .nav__logo {
            background: transparent;
            padding: 0;
            box-shadow: none;
        }

        .nav--scrolled .nav__logo img {
            height: 36px !important;
        }

        .nav__links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav__links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav__links a:hover { color: var(--white); }

        .nav__cta {
            background: var(--ochre-dark) !important;
            color: var(--white) !important;
            padding: 0.5rem 1.25rem;
            border-radius: 0.375rem;
            font-weight: 600 !important;
            transition: transform 0.15s, background 0.2s;
        }

        .nav__cta:hover { transform: scale(0.97); background: #8E2810 !important; }

        /* Bouton "Réserver" compact mobile (< 1180px) — centré sur la navbar.
           Masqué dès que le menu burger s'ouvre pour éviter le doublon avec le
           Réserver dans l'overlay. */
        .nav__cta-mobile {
            display: none;
            background: var(--ochre-dark);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.15s, background 0.2s;
            white-space: nowrap;
        }
        .nav__cta-mobile:hover { transform: scale(0.97); background: #8E2810; }

        /* --- HERO --- */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: hidden;
            color: var(--white);
            padding-bottom: var(--space-xl);
        }

        .hero__media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero__media video,
        .hero__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(10, 72, 80, 0.55) 0%,
                rgba(10, 72, 80, 0.3) 40%,
                rgba(10, 72, 80, 0.7) 100%
            );
            z-index: 1;
        }

        .hero__content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            padding: 0 1.5rem;
        }

        .hero__title {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            text-shadow: 0 2px 20px rgba(0,0,0,0.3);
            /* Stabilise le layout pendant le font swap (réduit CLS) */
            font-size-adjust: 0.52;
        }

        .hero__subtitle {
            margin-top: 1.25rem;
            font-size: clamp(1.05rem, 2vw, 1.3rem);
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero__actions {
            margin-top: 2.5rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero__fade {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1.2s ease, transform 1.2s ease;
        }

        .hero__fade--visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            border-radius: 0.375rem;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: transform 0.15s, box-shadow 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn:hover { transform: translateY(-1px); }
        .btn:active { transform: scale(0.98); }

        .btn--primary {
            background: var(--ochre);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(224, 142, 69, 0.35);
        }

        .btn--outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.45);
        }

        .btn--outline:hover { border-color: var(--white); }

        .btn--dark {
            background: var(--river);
            color: var(--white);
        }

        /* --- SECTIONS --- */
        .section {
            padding: var(--space-xl) 0;
        }

        .section--cream { background: transparent; } /* html fournit déjà cream */
        .section--white { background: var(--white); }
        .section--dark {
            background: var(--stone-dark);
            color: var(--white);
            padding: var(--space-md) 0;
        }

        /* Center modifier — title/intro/label all centered */
        .section--centered { text-align: center; }
        .section--centered .section__title,
        .section--centered .section__intro {
            margin-left: auto;
            margin-right: auto;
        }
        .section--centered .section__label { justify-content: center; }
        .section--centered .prose {
            text-align: left;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- MOUNTAIN DIVIDERS (multi-layer + parallax) --- */
        .divider {
            position: relative;
            height: 140px;
            line-height: 0;
            display: block;
            width: 100%;
            overflow: hidden;
            margin-bottom: -1px;
        }

        .divider__layer {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            will-change: transform;
            transition: transform 0.05s linear;
        }

        .divider__layer--back { opacity: 0.35; }
        .divider__layer--mid  { opacity: 0.6;  }
        .divider__layer--front { opacity: 1; }

        /* Background of the divider area = bg of the PREVIOUS section */
        .divider--from-cream { background: var(--cream); }
        .divider--from-white { background: var(--white); }
        .divider--from-dark  { background: var(--stone-dark); }
        .divider--from-river { background: var(--river); }
        .divider--from-stone { background: var(--stone); }

        /* Front layer fill = bg of the NEXT section (seamless join) */
        .divider--to-cream .divider__layer--front { fill: var(--cream); }
        .divider--to-white .divider__layer--front { fill: var(--white); }
        .divider--to-dark  .divider__layer--front { fill: var(--stone-dark); }
        .divider--to-river .divider__layer--front { fill: var(--river); }
        .divider--to-stone .divider__layer--front { fill: var(--stone); }

        /* Back/mid layers — distant mountains, atmospheric depth */
        .divider--to-dark .divider__layer--back { fill: var(--moss); }
        .divider--to-dark .divider__layer--mid  { fill: var(--stone); }

        .divider--to-white .divider__layer--back { fill: var(--moss); }
        .divider--to-white .divider__layer--mid  { fill: var(--stone-light); }

        .divider--to-cream .divider__layer--back { fill: var(--moss); }
        .divider--to-cream .divider__layer--mid  { fill: var(--river); }

        .divider--to-stone .divider__layer--back { fill: var(--moss); }
        .divider--to-stone .divider__layer--mid  { fill: var(--stone-dark); }

        .section__label {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--ochre-dark);
            margin-bottom: 0.75rem;
        }

        .section__title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            max-width: 700px;
        }

        .section__intro {
            margin-top: 1.25rem;
            font-size: 1.1rem;
            color: var(--stone-light);
            max-width: 600px;
            line-height: 1.7;
        }

        .section--dark .section__intro { color: rgba(255,255,255,0.75); }

        /* --- ACTIVITY CARDS --- */
        .activities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: var(--space-lg);
        }

        .activities-grid--four {
            grid-template-columns: repeat(4, 1fr);
        }

        .combos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: var(--space-lg);
            align-items: stretch;
        }

        .activity-card {
            position: relative;
            border-radius: 0.75rem;
            overflow: hidden;
            aspect-ratio: 3/4;
            text-decoration: none;
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .activity-card__img {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .activity-card__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .activity-card__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0,0,0,0.92) 0%,
                rgba(0,0,0,0.55) 45%,
                rgba(0,0,0,0.25) 75%,
                rgba(0,0,0,0.15) 100%
            );
            z-index: 1;
            transition: background 0.3s ease;
        }
        .activity-card:hover .activity-card__overlay {
            background: linear-gradient(
                to top,
                rgba(0,0,0,0.95) 0%,
                rgba(0,0,0,0.65) 50%,
                rgba(0,0,0,0.3) 80%,
                rgba(0,0,0,0.2) 100%
            );
        }

        .activity-card__body {
            position: relative;
            z-index: 2;
            padding: 2rem;
        }

        .activity-card__title {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 800;
        }

        .activity-card__desc {
            margin-top: 0.5rem;
            font-size: 0.95rem;
            opacity: 0.85;
            line-height: 1.5;
        }

        .activity-card__arrow {
            margin-top: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--ochre);
        }

        /* --- FEATURE SPLIT --- */
        .feature-split {
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 0;
            align-items: stretch;
        }

        .feature-split--reverse { direction: rtl; }
        .feature-split--reverse > * { direction: ltr; }

        .feature-split__image {
            width: 100%;
            aspect-ratio: 4/5;
            max-height: 560px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.25rem;
        }

        .feature-split__image img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            border-radius: 0.75rem;
            box-shadow: 0 14px 32px rgba(0,0,0,0.14);
        }
        .feature-split__image:hover img {
            transform: scale(1.03);
        }

        .feature-split__content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: var(--space-lg);
        }

        /* --- Fiche technique --- */
        .feature-specs {
            margin-top: 1.75rem;
            padding: 1.25rem 1.5rem;
            background: rgba(153, 204, 0, 0.08);
            border-left: 3px solid var(--river);
            border-radius: 0.5rem;
        }
        .feature-specs__title {
            font-family: var(--font-display);
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--river-dark);
            margin: 0 0 0.75rem;
        }
        .feature-specs__list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.35rem 1.75rem;
        }
        .feature-specs__list li {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 0.75rem;
            padding: 0.4rem 0;
            font-size: 0.9rem;
            border-bottom: 1px dashed rgba(0,0,0,0.08);
        }
        .feature-specs__list li span {
            color: var(--stone-light);
        }
        .feature-specs__list li strong {
            color: var(--stone);
            font-weight: 600;
            text-align: right;
        }
        .feature-price {
            margin-top: 1.25rem;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--ochre);
        }
        .feature-price span {
            font-weight: 500;
            color: var(--stone-light);
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .feature-specs__list { grid-template-columns: 1fr; gap: 0; }
        }

        /* --- CTA contact card (reusable) --- */
        .cta-contact {
            background: var(--cream);
            padding: var(--space-lg) 0;
        }
        .cta-contact__inner {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2.5rem;
            border-radius: 1rem;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--stone-dark) 0%, var(--river) 100%);
            box-shadow: 0 25px 55px rgba(61, 122, 2, 0.28);
        }
        .cta-contact__inner::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 20%, rgba(229, 89, 52, 0.35), transparent 55%),
                radial-gradient(circle at 85% 90%, rgba(255, 255, 255, 0.12), transparent 60%);
            pointer-events: none;
        }
        .cta-contact__content { position: relative; z-index: 1; }
        .cta-contact__label {
            display: inline-block;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--ochre);
            margin-bottom: 0.875rem;
            padding: 0.35rem 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.18);
            backdrop-filter: blur(4px);
        }
        .cta-contact__title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 3.2vw, 2.35rem);
            font-weight: 800;
            line-height: 1.15;
            max-width: 680px;
            margin: 0 auto;
        }
        .cta-contact__text {
            margin: 1rem auto 0;
            font-size: 1.05rem;
            opacity: 0.92;
            max-width: 580px;
            line-height: 1.6;
        }
        .cta-contact__actions {
            margin-top: 2.25rem;
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-contact__actions .btn { min-width: 180px; justify-content: center; }
        .cta-contact__actions .btn--ghost {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.55);
        }
        .cta-contact__actions .btn--ghost:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--white);
        }
        .cta-contact__actions .btn--wa {
            background: #25D366;
            color: var(--white);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        }
        .cta-contact__actions .btn--wa:hover {
            background: #20bd5a;
            box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55);
        }
        @media (max-width: 640px) {
            .cta-contact__inner { padding: 2.25rem 1.5rem; border-radius: 0.75rem; }
            .cta-contact__actions .btn { width: 100%; min-width: 0; }
        }

        /* --- Video embed 16:9 --- */
        .video-embed {
            position: relative;
            width: 100%;
            max-width: 960px;
            margin: var(--space-lg) auto 0;
            aspect-ratio: 16 / 9;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 20px 48px rgba(0,0,0,0.18);
            background: #000;
        }
        .video-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- WhatsApp floating button --- */
        .whatsapp-float {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            z-index: 90;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6);
        }
        .whatsapp-float::before {
            content: "";
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid rgba(37, 211, 102, 0.4);
            animation: waPulse 2s ease-out infinite;
        }
        @keyframes waPulse {
            0%   { transform: scale(1);   opacity: 0.6; }
            100% { transform: scale(1.45); opacity: 0; }
        }
        @media (max-width: 768px) {
            .whatsapp-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
        }

        /* --- Chock title (grosses headlines CAPS) --- */
        .chock-title {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(1.75rem, 3.8vw, 2.75rem);
            text-transform: uppercase;
            letter-spacing: -0.005em;
            line-height: 1.08;
        }

        /* --- Photo banner (titre géant sur image de fond) --- */
        .photo-banner {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: var(--white);
            padding: var(--space-xl) 1.5rem;
            text-align: center;
        }
        .photo-banner__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .photo-banner__bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: kenburns 26s ease-in-out infinite alternate;
        }
        .photo-banner__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(10, 72, 80, 0.75) 0%,
                rgba(45, 45, 45, 0.55) 50%,
                rgba(229, 89, 52, 0.45) 100%
            );
            z-index: 1;
        }
        .photo-banner__inner {
            position: relative;
            z-index: 2;
            max-width: 1000px;
        }
        .photo-banner__kicker {
            display: inline-block;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--ochre);
            margin-bottom: 1rem;
            padding: 0.4rem 1rem;
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 999px;
            background: rgba(0,0,0,0.2);
            backdrop-filter: blur(4px);
        }
        .photo-banner__title {
            font-family: var(--font-display);
            font-weight: 900;
            font-size: clamp(2rem, 5.5vw, 4rem);
            text-transform: uppercase;
            letter-spacing: -0.01em;
            line-height: 1;
            text-shadow: 0 2px 20px rgba(0,0,0,0.45);
        }
        .photo-banner__title em {
            font-style: normal;
            color: var(--ochre);
        }
        .photo-banner__sub {
            margin-top: 1.5rem;
            font-size: clamp(1rem, 1.4vw, 1.2rem);
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255,255,255,0.92);
        }

        /* Style CAPS pour les h2 de feature-split sur pages EVG/activités */
        .feature-split__content .section__title--chock {
            text-transform: uppercase;
            font-weight: 900;
            font-size: clamp(1.5rem, 2.8vw, 2.15rem);
            line-height: 1.1;
            letter-spacing: -0.005em;
        }
        .feature-split__content .section__title--chock .accent {
            color: var(--ochre);
        }

        /* --- Photo gallery (masonry) --- */
        .photo-gallery {
            columns: 4 240px;
            column-gap: 0.75rem;
            margin-top: var(--space-lg);
        }
        .photo-gallery__item {
            display: block;
            margin: 0 0 0.75rem;
            break-inside: avoid;
            border-radius: 0.5rem;
            overflow: hidden;
            cursor: zoom-in;
            position: relative;
            background: rgba(0,0,0,0.05);
        }
        .photo-gallery__item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease, filter 0.4s ease;
        }
        .photo-gallery__item:hover img {
            transform: scale(1.04);
            filter: brightness(1.05);
        }
        @media (max-width: 768px) {
            .photo-gallery { columns: 2 140px; column-gap: 0.5rem; }
            .photo-gallery__item { margin-bottom: 0.5rem; }
        }

        /* --- Photo slider (variante horizontale) --- */
        .photo-slider {
            position: relative;
            margin-top: var(--space-lg);
        }
        .photo-slider .photo-gallery {
            display: flex;
            gap: 1.25rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            padding: 0.25rem;
            margin-top: 0;
        }
        .photo-slider .photo-gallery::-webkit-scrollbar { display: none; }
        .photo-slider .photo-gallery__item {
            flex: 0 0 calc((100% - 2.5rem) / 3);
            margin: 0;
            scroll-snap-align: start;
            aspect-ratio: 4 / 3;
        }
        .photo-slider .photo-gallery__item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .photo-slider__arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.08);
            box-shadow: 0 4px 14px rgba(0,0,0,0.12);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--stone);
            transition: background 0.2s, color 0.2s, transform 0.2s;
        }
        .photo-slider__arrow:hover {
            background: var(--ochre);
            color: var(--white);
            transform: translateY(-50%) scale(1.08);
        }
        .photo-slider__arrow--prev { left: -20px; }
        .photo-slider__arrow--next { right: -20px; }
        @media (max-width: 1024px) {
            .photo-slider .photo-gallery__item { flex: 0 0 calc((100% - 1.25rem) / 2); }
        }
        @media (max-width: 640px) {
            .photo-slider .photo-gallery__item { flex: 0 0 calc(100% - 1rem); }
            .photo-slider__arrow--prev { left: 4px; }
            .photo-slider__arrow--next { right: 4px; }
        }

        /* --- Lightbox --- */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(12, 12, 14, 0.94);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 3.5rem;
            backdrop-filter: blur(6px);
        }
        .lightbox.is-open {
            display: flex;
            animation: lbFade 0.25s ease;
        }
        @keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
        .lightbox__img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 0.5rem;
            box-shadow: 0 30px 80px rgba(0,0,0,0.6);
        }
        .lightbox__btn {
            position: absolute;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s;
        }
        .lightbox__btn:hover {
            background: var(--ochre);
            transform: scale(1.08);
        }
        .lightbox__btn--close { top: 1.25rem; right: 1.25rem; }
        .lightbox__btn--prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
        .lightbox__btn--next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }
        .lightbox__btn--prev:hover,
        .lightbox__btn--next:hover { transform: translateY(-50%) scale(1.08); }
        .lightbox__counter {
            position: absolute;
            bottom: 1.25rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.75);
            font-size: 0.85rem;
            letter-spacing: 0.05em;
        }
        @media (max-width: 768px) {
            .lightbox { padding: 1rem; }
            .lightbox__btn { width: 40px; height: 40px; }
            .lightbox__btn--close { top: 0.75rem; right: 0.75rem; }
            .lightbox__btn--prev  { left: 0.5rem; }
            .lightbox__btn--next  { right: 0.5rem; }
        }

        /* --- STATS --- */
        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat__number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 800;
            color: var(--ochre);
        }

        .stat__label {
            margin-top: 0.25rem;
            font-size: 0.9rem;
            opacity: 0.75;
        }

        /* --- PAGE HERO (shorter, for inner pages) --- */
        .page-hero {
            position: relative;
            height: 65vh;
            min-height: 480px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            overflow: hidden;
            color: var(--white);
            padding: 0 1.5rem var(--space-xl);
            margin-top: -80px;
            padding-top: 120px;
        }

        .page-hero__img {
            position: absolute;
            inset: 0;
        }

        .page-hero__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .page-hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,72,80,0.8) 0%, rgba(10,72,80,0.3) 100%);
        }

        .page-hero__content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
        }

        .page-hero__title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            text-shadow: 0 2px 15px rgba(0,0,0,0.3);
        }

        .page-hero__subtitle {
            margin-top: 1rem;
            font-size: 1.15rem;
            opacity: 0.9;
        }

        /* --- CONTENT PROSE --- */
        .prose {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--stone);
        }

        .prose h2 {
            font-size: 1.75rem;
            margin-top: var(--space-lg);
            margin-bottom: var(--space-sm);
            color: var(--river);
        }

        .prose h3 {
            font-size: 1.3rem;
            margin-top: var(--space-md);
            margin-bottom: 0.75rem;
        }

        .prose p { margin-bottom: 1.25rem; }

        .prose ul, .prose ol {
            margin-bottom: 1.25rem;
            padding-left: 1.5rem;
        }

        .prose li { margin-bottom: 0.5rem; }

        /* --- PRICING TABLE --- */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin: var(--space-md) 0;
            font-size: 0.95rem;
        }

        .pricing-table thead {
            background: var(--river);
            color: var(--white);
        }

        .pricing-table th {
            padding: 0.875rem 1.25rem;
            text-align: left;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-table td {
            padding: 0.875rem 1.25rem;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }

        .pricing-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.02); }
        .pricing-table tbody tr:hover { background: rgba(15,95,107,0.04); }

        .pricing-table .price {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--river);
            white-space: nowrap;
        }

        /* --- TESTIMONIAL ---
           Single comportement scroll-snap natif sur tous breakpoints :
           - mobile : 1 card visible avec peek de la suivante, swipe tactile
           - tablette : 2 cards
           - desktop : 3 cards + flèches (gérées par JS, scrollBy une largeur de card) */
        .testimonials-carousel {
            position: relative;
            margin-top: var(--space-lg);
        }
        .testimonials-grid {
            display: flex;
            gap: 1.5rem;
            text-align: left;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
            padding: 0.5rem 0.25rem 1.5rem;
            scroll-padding-left: 0.25rem;
        }
        .testimonials-grid::-webkit-scrollbar { display: none; }
        .testimonials-grid .testimonial {
            flex: 0 0 calc((100% - 3rem) / 3);
            scroll-snap-align: start;
            min-width: 0;
        }
        .testimonials-carousel__arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.08);
            box-shadow: 0 4px 14px rgba(0,0,0,0.12);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--stone);
            transition: background 0.2s, color 0.2s, transform 0.2s;
        }
        .testimonials-carousel__arrow:hover {
            background: var(--ochre);
            color: var(--white);
            transform: translateY(-50%) scale(1.08);
        }
        .testimonials-carousel__arrow--prev { left: -20px; }
        .testimonials-carousel__arrow--next { right: -20px; }

        .testimonial {
            background: var(--white);
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        }

        .testimonial__text {
            font-size: 1.05rem;
            line-height: 1.7;
            font-style: italic;
            color: var(--stone);
        }

        .testimonial__author {
            margin-top: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--stone-light);
        }

        /* --- CONTACT FORM --- */
        .form-group { margin-bottom: 1.25rem; }

        .form-group label {
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 0.375rem;
            color: var(--stone);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(0,0,0,0.12);
            border-radius: 0.375rem;
            font-family: var(--font-body);
            font-size: 1rem;
            background: var(--white);
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--river);
            box-shadow: 0 0 0 3px rgba(15,95,107,0.1);
        }

        /* --- FOOTER --- */
        .footer {
            background: var(--stone);
            color: rgba(255,255,255,0.65);
            padding: var(--space-lg) 0 var(--space-md);
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
        }

        .footer__brand {
            display: inline-block;
            background: #3C3C3E;
            padding: 0.5rem 0.875rem;
            border-radius: 6px;
            line-height: 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
            transition: transform 0.25s ease;
        }

        .footer__brand:hover { transform: translateY(-2px); }

        .footer__logo {
            height: 48px;
            width: auto;
            display: block;
        }

        .footer__brand p {
            margin-top: 0.75rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer__social {
            display: flex;
            gap: 0.625rem;
            margin-top: 0.25rem;
        }

        .footer__social-link {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.85);
            transition: background 0.25s ease,
                        color 0.25s ease,
                        transform 0.25s ease;
        }

        .footer__social-link svg {
            width: 18px;
            height: 18px;
        }

        .footer__social-link:hover {
            background: var(--ochre);
            color: var(--white);
            transform: translateY(-3px) scale(1.05);
        }

        .footer h4 {
            color: var(--white);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1rem;
        }

        .footer a {
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .footer ul { list-style: none; }
        .footer li { margin-bottom: 0.5rem; font-size: 0.9rem; }

        .footer__bottom {
            margin-top: var(--space-lg);
            padding-top: var(--space-md);
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.8rem;
            display: flex;
            justify-content: space-between;
        }

        /* --- MOBILE NAV --- */
        .nav__toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            position: relative;
            z-index: 101;
        }

        @media (max-width: 1180px) {
            .nav--open .nav__links {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                position: fixed;
                inset: 0;
                background: var(--river-dark);
                padding: 5rem 1.5rem 2rem;
                gap: 0;
                z-index: 99;
                animation: navFadeIn 0.25s ease-out;
                list-style: none;
            }

            .nav--open .nav__links li {
                width: 100%;
                max-width: 320px;
                border-bottom: 1px solid rgba(255,255,255,0.08);
                text-align: center;
            }

            .nav--open .nav__links li:last-child {
                border-bottom: none;
                margin-top: 1rem;
            }

            .nav--open .nav__links a {
                display: block;
                padding: 1.25rem 0;
                font-size: 1.25rem;
                color: var(--white);
            }

            .nav--open .nav__links .nav__cta {
                display: inline-block;
                padding: 0.75rem 2rem;
            }

            @keyframes navFadeIn {
                from { opacity: 0; }
                to   { opacity: 1; }
            }
        }

        /* --- UTILITY GRIDS --- */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: var(--space-lg);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .activities-grid, .activities-grid--four { grid-template-columns: 1fr; gap: 1rem; }
            .activity-card { aspect-ratio: 16/9; }
            .combos-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
            .feature-split { grid-template-columns: 1fr; }
            .feature-split__image { min-height: 300px; }
            .stats { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid .testimonial { flex: 0 0 calc((100% - 1.5rem) / 2); }
            .footer__grid { grid-template-columns: 1fr 1fr; }
            .two-col { grid-template-columns: 1fr; gap: 2rem; }
        }

        /* Nav : on bascule sur le menu mobile (burger + CTA compact) dès qu'on
           passe sous 1180px — au-dessus, le menu desktop est trop serré avec
           ses 8 liens + le bouton Réserver. */
        @media (max-width: 1180px) {
            .nav__links { display: none; }
            .nav__toggle { display: block; }
            .nav__logo img { height: 44px !important; }

            /* Réserver centré horizontalement sur la navbar (entre logo et burger). */
            .nav__cta-mobile {
                display: inline-block;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                z-index: 101;
            }
            .nav__cta-mobile:hover {
                transform: translate(-50%, -50%) scale(0.97);
            }

            /* Quand l'overlay du menu est ouvert, on masque ce Réserver compact :
               le bouton Réserver est déjà présent dans la liste de l'overlay. */
            .nav--open .nav__cta-mobile { display: none; }
        }

        @media (max-width: 768px) {
            /* Hero home : ~75% du viewport au lieu de 100vh — laisse apparaître
               le début de la section suivante (titre + padding) en bas, évite
               l'effet "page vide". dvh pour gérer la barre d'adresse mobile. */
            .hero {
                height: 75vh;
                height: 75dvh;
                min-height: 460px;
                padding-bottom: var(--space-lg);
            }
            .hero__title { font-size: 2.25rem; }
            .hero__subtitle { font-size: 1rem; }
            .hero__actions { flex-direction: column; gap: 0.75rem; }
            .hero__actions .btn { width: 100%; text-align: center; }
            /* Section spacing tighten sur mobile : moins de zone vide entre
               le hero et le contenu de la section suivante. */
            .section { padding: 2.5rem 0; }
            .feature-split__content { padding: var(--space-md); }
            .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
            .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            /* Page-hero (pages internes) : tighten le min-height pour ne pas
               laisser de zone vide en bas. */
            .page-hero { height: auto; min-height: 360px; padding-top: 110px; padding-bottom: 1.5rem; }
            .page-hero__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
            .page-hero__subtitle { font-size: 0.98rem; }

            /* Activity cards — 4/5 portrait pour laisser respirer l'image au-dessus du body */
            .activity-card { aspect-ratio: 4/5; }
            .activity-card__body { padding: 1.5rem 1.5rem 1.75rem; }
            .activity-card__title { font-size: 1.5rem; }
            .activity-card__desc { font-size: 0.92rem; }

            .combos-grid { grid-template-columns: 1fr; gap: 1rem; }

            /* Testimonials mobile : 1 card visible avec peek + swipe natif */
            .testimonials-grid {
                gap: 1rem;
                padding: 0.5rem 1rem 1.5rem;
                scroll-padding-left: 1rem;
            }
            .testimonials-grid .testimonial {
                flex: 0 0 85%;
                max-width: 320px;
            }
            .testimonials-carousel__arrow { display: none; }
        }

        /* --- MOBILE MENU : logo en haut de l'overlay + reset du nav scrolled --- */
        .nav__open-header { display: none; }
        .nav--open.nav--scrolled {
            background: transparent;
            box-shadow: none;
            backdrop-filter: none;
            padding: 1.25rem 0;
            top: 10px;
        }
        .nav--open.nav--scrolled .nav__logo {
            background: #3C3C3E;
            padding: 0.4rem 0.75rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.25);
        }
        .nav--open.nav--scrolled .nav__logo img { height: 44px !important; }

        @media (max-width: 1180px) {
            .nav--open .nav__open-header {
                display: flex;
                justify-content: center;
                margin-bottom: 1.5rem;
                padding-bottom: 1.5rem;
                border-bottom: 1px solid rgba(255,255,255,0.12);
                width: 100%;
                max-width: 320px;
            }
            .nav--open .nav__open-header img {
                height: 44px;
                display: block;
            }
            .nav--open.nav--scrolled .nav__logo img { height: 44px !important; }
        }

        /* ============================================================
           ANIMATIONS — scroll reveal, buttons, micro-interactions
           ============================================================ */

        /* --- Scroll reveal --- */
        [data-reveal] {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform;
        }
        [data-reveal="fade"]   { transform: none; }
        [data-reveal="left"]   { transform: translateX(-40px); }
        [data-reveal="right"]  { transform: translateX(40px); }
        [data-reveal="scale"]  { transform: scale(0.92); }
        [data-reveal].is-visible {
            opacity: 1;
            transform: none;
        }
        @media (prefers-reduced-motion: reduce) {
            [data-reveal] { opacity: 1; transform: none; transition: none; }
        }

        /* --- Section labels with animated accent line --- */
        .section__label {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }
        .section__label::before {
            content: "";
            display: block;
            width: 32px;
            height: 2px;
            background: var(--ochre);
            transform-origin: left;
            animation: labelLine 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
        }
        @keyframes labelLine {
            from { transform: scaleX(0); }
            to   { transform: scaleX(1); }
        }

        /* --- Buttons: shimmer sweep + lift + glow --- */
        .btn {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.3s ease,
                        background 0.3s ease;
        }
        .btn::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg,
                transparent 0%,
                transparent 35%,
                rgba(255,255,255,0.35) 50%,
                transparent 65%,
                transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
            z-index: -1;
        }
        .btn:hover::before { transform: translateX(100%); }

        .btn--primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 10px 28px rgba(229, 89, 52, 0.45);
        }
        .btn--dark:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 10px 28px rgba(153, 204, 0, 0.45);
        }
        .btn--outline:hover {
            transform: translateY(-2px);
            background: rgba(255,255,255,0.08);
        }

        /* --- Activity card lift + arrow slide --- */
        .activity-card {
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.4s ease;
        }
        .activity-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.18);
        }
        .activity-card__arrow {
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                        gap 0.3s ease;
        }
        .activity-card:hover .activity-card__arrow {
            transform: translateX(6px);
        }

        /* --- Testimonials hover --- */
        .testimonial {
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.3s ease;
        }
        .testimonial:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.10);
        }

        /* --- Stats: pulse glow on numbers --- */
        .stat__number {
            position: relative;
            text-shadow: 0 0 0 transparent;
            transition: text-shadow 0.5s ease;
        }
        .section--dark:hover .stat__number {
            text-shadow: 0 0 24px rgba(229, 89, 52, 0.5);
        }

        /* --- Hero scroll indicator --- */
        .hero__scroll {
            position: absolute;
            left: 50%;
            bottom: 1.5rem;
            transform: translateX(-50%);
            z-index: 3;
            color: rgba(255,255,255,0.7);
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            animation: heroScrollFade 1s ease 1s both;
        }
        .hero__scroll::after {
            content: "";
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
            animation: heroScrollLine 2s ease-in-out infinite;
        }
        @keyframes heroScrollFade {
            from { opacity: 0; transform: translate(-50%, 12px); }
            to   { opacity: 1; transform: translate(-50%, 0); }
        }
        @keyframes heroScrollLine {
            0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
            50%      { transform: scaleY(1);   transform-origin: top; opacity: 1; }
        }

        /* --- Hero ken-burns on video --- */
        .hero__media video,
        .hero__media img {
            animation: kenburns 24s ease-in-out infinite alternate;
        }
        @keyframes kenburns {
            from { transform: scale(1) translate(0, 0); }
            to   { transform: scale(1.08) translate(-1%, -1%); }
        }

/* ============================================================
           EVG/EVJF feature section — overlap card with floating badge
           ============================================================ */
        .evg-feature {
            position: relative;
            padding: var(--space-xl) 0;
            background: var(--white);
            overflow: hidden;
        }
        .evg-feature__inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 0;
            align-items: center;
            position: relative;
        }
        .evg-feature__media {
            position: relative;
            aspect-ratio: 4/3;
            transform: perspective(1200px) rotateY(2deg);
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .evg-feature__media:hover {
            transform: perspective(1200px) rotateY(0deg);
        }
        .evg-feature__frame {
            position: absolute;
            inset: 0;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }
        .evg-feature__frame img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .evg-feature__media:hover .evg-feature__frame img { transform: scale(1.06); }

        .evg-feature__badge {
            position: absolute;
            top: -1rem;
            left: -1rem;
            background: var(--ochre);
            color: var(--white);
            padding: 0.875rem 1.25rem;
            border-radius: 0.5rem;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            box-shadow: 0 12px 28px rgba(229, 89, 52, 0.45);
            transform: rotate(-4deg);
            z-index: 2;
            animation: badgeWiggle 4s ease-in-out infinite;
        }
        .evg-feature__badge span {
            display: block;
            font-size: 0.7rem;
            font-weight: 500;
            opacity: 0.9;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-top: 0.125rem;
        }
        @keyframes badgeWiggle {
            0%, 100% { transform: rotate(-4deg) translateY(0); }
            50%      { transform: rotate(-2deg) translateY(-4px); }
        }

        .evg-feature__content {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.10);
            margin-left: 1rem;
            position: relative;
            z-index: 2;
            border-left: 4px solid var(--ochre);
        }
        .evg-feature__content::before {
            content: "";
            position: absolute;
            top: 0; left: -1px;
            width: 4px; height: 0;
            background: var(--ochre);
            transition: height 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .evg-feature__highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 0.625rem;
            margin: 1.5rem 0 2rem;
            list-style: none;
            padding: 0;
        }
        .evg-feature__highlights li {
            background: rgba(229, 89, 52, 0.10);
            color: var(--ochre);
            padding: 0.4rem 0.875rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .evg-feature__inner { grid-template-columns: 1fr; gap: 1rem; }
            .evg-feature__media { transform: none; aspect-ratio: 16/10; }
            .evg-feature__content { margin-left: 0; margin-top: -2rem; }
            .evg-feature__badge { top: 1rem; left: 1rem; }
        }

        /* ============================================================
           AMBIENT BACKGROUND — poisson aléatoire + montagnes en fond
           ============================================================ */
        html { background: var(--cream); }

        .bg-ambient {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -1; /* derrière tout le contenu de body */
            overflow: hidden;
        }
        .bg-ambient > * {
            position: absolute;
            color: var(--moss);
        }

        /* Poisson — position et direction aléatoires (piloté en JS) */
        .bg-ambient__fish {
            width: 60px;
            opacity: 0;
            transform-origin: center center;
            will-change: transform, opacity;
        }
        .bg-ambient__fish--jumping             { animation: fishJumpLeft 2.8s ease-out forwards; }
        .bg-ambient__fish--jumping.is-right    { animation-name: fishJumpRight; }
        .bg-ambient__fish--jumping.is-straight { animation-name: fishJumpStraight; }

        @keyframes fishJumpLeft {
            0%   { transform: translate(0,   45px) rotate(-10deg) scale(0.55); opacity: 0; }
            15%  { transform: translate(-8px, 5px) rotate(-30deg) scale(1);    opacity: 0.22; }
            45%  { transform: translate(-35px, -35px) rotate(10deg) scale(1);  opacity: 0.22; }
            75%  { transform: translate(-65px, 0)    rotate(55deg) scale(1);   opacity: 0.15; }
            100% { transform: translate(-85px, 50px) rotate(95deg) scale(0.55); opacity: 0; }
        }
        @keyframes fishJumpRight {
            0%   { transform: translate(0,   45px) scaleX(-1) rotate(10deg) scale(0.55); opacity: 0; }
            15%  { transform: translate(8px,  5px) scaleX(-1) rotate(30deg) scale(1);    opacity: 0.22; }
            45%  { transform: translate(35px, -35px) scaleX(-1) rotate(-10deg) scale(1); opacity: 0.22; }
            75%  { transform: translate(65px, 0)    scaleX(-1) rotate(-55deg) scale(1);  opacity: 0.15; }
            100% { transform: translate(85px, 50px) scaleX(-1) rotate(-95deg) scale(0.55); opacity: 0; }
        }
        @keyframes fishJumpStraight {
            0%   { transform: translate(0, 45px)  rotate(-90deg) scale(0.55); opacity: 0; }
            25%  { transform: translate(0, -5px)  rotate(-90deg) scale(1);    opacity: 0.22; }
            55%  { transform: translate(0, -30px) rotate(-85deg) scale(1);    opacity: 0.22; }
            100% { transform: translate(0, 50px)  rotate(-95deg) scale(0.55); opacity: 0; }
        }

        /* Montagnes silhouette en bas de viewport */
        .bg-ambient__mountains {
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 180px;
            opacity: 0.08;
        }

        /* Masquer sur mobile */
        @media (max-width: 768px) {
            .bg-ambient { display: none; }
        }
        @media (prefers-reduced-motion: reduce) {
            .bg-ambient { display: none; }
        }
