/* Bubbles TukTuk — styles accueil consolidés, ordre de cascade préservé */

/* =====================================================================================================================
🟣 BUBBLES TUKTUK — STYLE.CSS (V2.3 MASTER CLEAN)
✅ SINGLE SOURCE OF TRUTH (zéro doublon volontaire)
✅ HERO 4 variantes (light-luxe / sunset-gold / cinema-dark / ultra-soft)
✅ Chemins images OK (css/style.css -> ../img/...)
✅ Badges + Glass + Microproof
✅ Cinema + Media + variante media--sunset-gold
✅ Accordion SEO indexable + variantes acc--variant-a/b/c
✅ Form multi-step + aside + contact block + sticky CTA
✅ Full-bleed + interludes + interlude full-width
✅ Focus visible + Reduce motion
----------------------------------------------------------------------------------------------------------------------
REPÈRES :
🟣 = Section principale
🔵 = Sous-section / composant
🟢 = OK / stable
🟡 = Option / variante
🔴 = Attention (à garder car utile)
===================================================================================================================== */
/* =====================================================================================================================
🟣 00 — TOKENS / VARIABLES (GLOBAL)
===================================================================================================================== */
:root {
    /* -----------------------------
  🔵 Base colors
  ----------------------------- */
    --bg-main: #EFEFEF;
    --surface: rgba(255,255,255,.70);
    --surface-strong: rgba(255,255,255,.85);
    --ink: #1C1D20;
    --ink-soft: #2A2B2E;

    /* -----------------------------
  🔵 Brand core (Champagne)
  ----------------------------- */
    --terracotta: #C65A2E;
    --terracotta-hover: #D96A3B;
    --gold: #C2A473;

    /* -----------------------------
  🔵 Accents
  ----------------------------- */
    --champagne-soft: #F4E6C8;
    --cinema: #14151A;
    --cinema-deep: #111217;

    /* -----------------------------
  🔵 Layout
  ----------------------------- */
    --max: 1180px;

    /* -----------------------------
  🔵 Radius & Shadows
  ----------------------------- */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --shadow-soft: 0 12px 30px rgba(0,0,0,.08);
    --shadow-warm: 0 12px 35px rgba(198,90,46,.12);
    --shadow-gold: 0 14px 42px rgba(194,164,115,.16);

    /* -----------------------------
  🔵 Type / tracking
  ----------------------------- */
    --tracking: 2px;

    /* -----------------------------
  🔵 Motion (évite les vars manquantes)
  ----------------------------- */
    --ease-out: cubic-bezier(.22,.9,.25,1);

    /* -----------------------------
  🔵 Micro-anim halos (accordions/badges)
  ----------------------------- */
    --btk-halo-strong: rgba(198,90,46,.22);
    --btk-halo-soft: rgba(198,90,46,.10);
}

/* =====================================================================================================================
🟣 01 — BASE / RESET
===================================================================================================================== */
html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg-main);
    color: var(--ink);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;

    /* anti micro-scroll */
}

a {
    color: inherit;
}

img {
    max-width: 50;
    display: block;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* 🔵 Screen reader only */
.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;
}

/* =====================================================================================================================
🟣 01.1 — ACCESSIBILITÉ / MOTION
===================================================================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(194,164,115,.65);
    outline-offset: 3px;
    border-radius: 12px;
}

@media (prefers-reduced-motion: reduce){
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
    }
}

/* =====================================================================================================================
🟣 02 — HEADER / NAV
===================================================================================================================== */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(239,239,239,.80);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(28,29,32,.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--terracotta);
}

.brand span:last-child {
    font-family: "American Typewriter","American Typewriter Bold","AmericanTypewriter",serif;
    font-weight: 700;
    color: var(--terracotta);
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--terracotta);
    box-shadow: 0 0 0 10px rgba(198,90,46,.18),
    0 0 24px rgba(198,90,46,.20);
    flex: 0 0 auto;
    animation: btk-haloe 2.8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes btk-haloe{
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(198,90,46,.18),
      0 0 24px rgba(198,90,46,.20);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 16px rgba(198,90,46,.10),
      0 0 34px rgba(198,90,46,.30);
    }
}

.navlinks {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 14px;
}

.navlinks a {
    text-decoration: none;
    opacity: .86;
}

.navlinks a:hover {
    opacity: 1;
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* =====================================================================================================================
🟣 03 — BUTTONS
===================================================================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 720;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .15s ease,
    box-shadow .15s ease,
    background .15s ease,
    color .15s ease,
    border-color .15s ease,
    opacity .15s ease;
    will-change: transform;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background: var(--terracotta);
    color: #fff;
    box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
    background: var(--terracotta-hover);
}

.btn-ghost {
    background: rgba(255,255,255,.65);
    border-color: rgba(28,29,32,.18);
    color: var(--ink);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,.85);
    border-color: rgba(28,29,32,.28);
}

/* =====================================================================================================================
🟣 04 — TYPO / HEADINGS
===================================================================================================================== */
h1,
h2,
h3 {
    margin: 0;
    letter-spacing: -.4px;
}

h1 {
    font-size: clamp(32px,4.6vw,50px);
    line-height: 1.02;
}

h2 {
    font-size: clamp(24px,2.6vw,24px);
    line-height: 1.15;
}

.section-title {
    margin: 0 0 10px;
}

.section-sub {
    margin: 0 0 22px;
    color: rgba(28,29,32,.78);
    max-width: 78ch;
}

/* =====================================================================================================================
🟣 05 — SECTIONS / DIVIDERS
===================================================================================================================== */
section {
    padding: 64px 0;
}

.goldline {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(194,164,115,.85), transparent);
}

/* =====================================================================================================================
🟣 06 — HERO BASE (texte / CTA)
===================================================================================================================== */
.hero {
    padding: 76px 0 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: stretch;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 880;
    margin-bottom: 14px;
}

.lead {
    font-size: clamp(16px, 1.6vw, 18px);
    color: rgba(28,29,32,.82);
    margin: 0 0 18px;
    max-width: 62ch;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 10px;
}

/* =====================================================================================================================
🟣 06.1 — HERO FULL-BG (V2.3 MASTER CLEAN — 4 VARIANTES)
Activer via classe sur la section :
.hero hero-fullbg hero--sunset-gold (etc.)
===================================================================================================================== */
.hero-fullbg {
    position: relative;
    padding: 170px 0 110px;

    /* ✅ fallback + override */
    background-image: var(--hero-bg, url("../img/tuktuk-vignobles-champagne-panorama-hero.webp"));
    background-size: cover;
    background-position: var(--hero-pos, center);
    background-repeat: no-repeat;
    color: #ffffff;

    /* valeurs par défaut (équilibrées) */
    --overlay-top: .40;
    --overlay-mid: .26;
    --overlay-bottom: .40;
    --glass-bg: rgba(18,19,23,.38);
}

/* 🔵 Overlay unique */
.hero-fullbg-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
      180deg,
      rgba(20,21,26,var(--overlay-top)) 0%,
      rgba(20,21,26,var(--overlay-mid)) 45%,
      rgba(20,21,26,var(--overlay-bottom)) 100%
    );
}

/* 🔵 Contenu au-dessus */
.hero-fullbg-inner {
    position: relative;
    z-index: 1;
    max-width: 78ch;
    margin: 0 auto;
}

/* 🔵 Glass unique (toujours présent mais maîtrisé par --glass-bg) */
.hero-fullbg .hero-glass {
    display: inline-block;
    width: 100%;
    max-width: 980px;
    padding: 26px 28px;
    border-radius: 24px;
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 26px 80px rgba(0,0,0,.26);
    text-align: center;
}

/* 🔵 Ajustements lisibilité sur fond dark */
.hero-fullbg .kicker {
    color: #FBF7EE;
    opacity: .95;
}

.hero-fullbg .lead {
    color: rgba(251,247,238,.88);
}

/* 🔵 Bouton ghost lisible en hero */
.hero-fullbg .btn-ghost {
    border-color: rgba(255,255,255,.22);
    color: #fff;
    background: rgba(255,255,255,.08);
}

.hero-fullbg .btn-ghost:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.32);
}

/* 🟡 VARIANTE 1 — LIGHT LUXE */
.hero--light-luxe {
    --overlay-top: .34;
    --overlay-mid: .20;
    --overlay-bottom: .34;
    --glass-bg: rgba(18,19,23,.32);
}

/* 🟡 VARIANTE 2 — SUNSET GOLD */
.hero--sunset-gold {
    --overlay-top: .38;
    --overlay-mid: .24;
    --overlay-bottom: .38;
    --glass-bg: rgba(22,18,14,.36);
}

.hero--sunset-gold .hero-fullbg-overlay {
    background: linear-gradient(
      180deg,
      rgba(20,21,26,var(--overlay-top)) 0%,
      rgba(20,21,26,var(--overlay-mid)) 45%,
      rgba(20,21,26,var(--overlay-bottom)) 100%
    ),
    radial-gradient(
      900px 500px at 50% 30%,
      rgba(194,164,115,.18),
      transparent 65%
    );
}

/* 🟡 VARIANTE 3 — CINEMA DARK */
.hero--cinema-dark {
    --overlay-top: .62;
    --overlay-mid: .46;
    --overlay-bottom: .62;
    --glass-bg: rgba(10,11,14,.52);
}

/* 🟡 VARIANTE 4 — ULTRA SOFT */
.hero--ultra-soft {
    --overlay-top: .24;
    --overlay-mid: .14;
    --overlay-bottom: .24;
    --glass-bg: rgba(20,21,26,.26);
}

/* 🔵 Responsive hero */
@media (max-width: 980px){
    .hero-fullbg {
        padding: 130px 0 90px;
    }

    .hero-fullbg .hero-glass {
        padding: 20px 18px;
        border-radius: 18px;
        text-align: left;
    }
}

/* =====================================================================================================================
🟣 06.2 — HERO BADGES GRID
===================================================================================================================== */
.hero-badges {
    padding: 26px 0 46px;
    background: rgba(239,239,239,.60);
    border-bottom: 1px solid rgba(28,29,32,.08);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.badge-tile {
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(28,29,32,.10);
    backdrop-filter: blur(10px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* =====================================================================================================================
🟣 07 — BADGES PREMIUM (PILLS) + MICROPROOF
===================================================================================================================== */
.microproof {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(28,29,32,.84);
    margin-top: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(28,29,32,.12);
    backdrop-filter: blur(10px);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 860;
    transition: transform .18s ease, border-color .18s ease;
}

.badge::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--terracotta);
    box-shadow: 0 0 0 5px rgba(198,90,46,.12);
}

.badge:hover {
    transform: translateY(-1px);
    border-color: rgba(198,90,46,.18);
}

body.btk-anim-on .badge:hover::before {
    animation: btkBadgeHalo 900ms ease-out 1;
}

/* =====================================================================================================================
🟣 08 — HERO MEDIA CARD (si utilisé)
===================================================================================================================== */
.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-soft);
    position: relative;
    min-height: 440px;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .95;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.55) 78%, rgba(0,0,0,.72) 100%);
}

.hero-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-caption strong {
    font-size: 16px;
}

.hero-caption span {
    font-size: 13px;
    opacity: .86;
}

/* =====================================================================================================================
🟣 09 — CARDS GRID
===================================================================================================================== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.card {
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(28,29,32,.08);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: 0 10px 22px rgba(0,0,0,.05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,.08);
    border-color: rgba(28,29,32,.14);
    background: rgba(255,255,255,.80);
}

.card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.card p {
    margin: 0;
    color: rgba(28,29,32,.78);
    font-size: 14px;
}

.card .mini {
    margin-top: 12px;
    font-size: 12px;
    opacity: .78;
}

.card a {
    display: inline-flex;
    margin-top: 12px;
    font-weight: 860;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: .92;
}

.card a:hover {
    opacity: 1;
}

/* =====================================================================================================================
🟣 10 — CINEMA SECTION
===================================================================================================================== */
.section-cinema {
    background: radial-gradient(1200px 700px at 20% 0%, rgba(194,164,115,.16), transparent 60%),
    radial-gradient(900px 500px at 85% 40%, rgba(198,90,46,.18), transparent 55%),
    linear-gradient(180deg, var(--cinema) 0%, var(--cinema-deep) 100%);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.section-cinema .section-sub {
    color: rgba(255,255,255,.78);
}

.cinema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    margin-top: 18px;
}

.media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.04);
    min-height: 340px;
    position: relative;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .92;
}

.media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.62) 100%);
    pointer-events: none;
}

/* 🟡 MEDIA VARIANTE — SUNSET GOLD */
.media--sunset-gold::after {
    background: linear-gradient(
      180deg,
      rgba(20,21,26,.34) 0%,
      rgba(20,21,26,.24) 45%,
      rgba(20,21,26,.48) 100%
    ),
    radial-gradient(
      800px 400px at 50% 30%,
      rgba(194,164,115,.16),
      transparent 70%
    );
}

.points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
}

.point .mark {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(194,164,115,.18);
    margin-top: 5px;
    flex: 0 0 auto;
}

/* =====================================================================================================================
🟣 11 — LINK HUB
===================================================================================================================== */
.linkhub {
    margin-top: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(28,29,32,.10);
    background: rgba(255,255,255,.60);
    backdrop-filter: blur(12px);
    padding: 18px;
    box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.hubgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.hubcol h3 {
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .85;
}

.hubcol a {
    display: block;
    padding: 10px 12px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(28,29,32,.08);
    background: rgba(244,230,200,.35);
    margin-bottom: 8px;
    font-weight: 720;
    font-size: 14px;
}

.hubcol a:hover {
    border-color: rgba(198,90,46,.35);
    background: rgba(244,230,200,.52);
}

/* =====================================================================================================================
🟣 12 — FAQ BASE
===================================================================================================================== */
details {
    border: 1px solid rgba(28,29,32,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.62);
    padding: 14px 14px;
    backdrop-filter: blur(10px);
}

details + details {
    margin-top: 10px;
}

summary {
    cursor: pointer;
    font-weight: 860;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 10px 0 0;
    color: rgba(28,29,32,.78);
}

/* =====================================================================================================================
🟣 12.1 — SEO ACCORDION (INDEXABLE) + VARIANTES A/B/C
===================================================================================================================== */
.seo-more {
    padding: 56px 0;
}

.btk-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.acc {
    border: 1px solid rgba(28,29,32,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 10px 24px rgba(0,0,0,.05);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    will-change: transform;
}

.acc summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
    font-weight: 800;
    letter-spacing: .2px;
}

.acc summary::-webkit-details-marker {
    display: none;
}

.acc-title {
    font-size: 14px;
}

/* 🔵 Icon base (on neutralise le +/− via overrides plus bas) */
.acc-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(28,29,32,.12);
    background: rgba(28,29,32,.04);
    position: relative;
    flex: 0 0 auto;
}

/* 🔵 Corps */
.acc-body {
    padding: 0 16px 16px;
    color: rgba(28,29,32,.78);
    font-size: 14px;
    line-height: 1.65;
}

.acc-body p {
    margin: 12px 0 0;
}

.acc-body ul {
    margin: 12px 0 0 18px;
}

.acc-body li {
    margin: 6px 0;
}

.acc[open] .acc-body {
    border-top: 1px solid rgba(194,164,115,.30);
}

/* -------------------------------------------------------------------------------------------------
🟣 12.1.A — Layout summary (icon + title align)
------------------------------------------------------------------------------------------------- */
summary {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

summary .acc-icon {
    position: relative !important;
    flex: 0 0 auto;
    margin: 0 !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
}

summary .acc-title {
    flex: 1 1 auto;
    text-align: left;
}

/* -------------------------------------------------------------------------------------------------
🟣 12.1.B — Micro-anims + Icon DOT + Halo (single source)
(Active : <body class="btk-anim-on">)
------------------------------------------------------------------------------------------------- */
/* lift */
.acc:hover {
    transform: translateY(-1px);
    border-color: rgba(198,90,46,.16);
    box-shadow: 0 14px 34px rgba(0,0,0,.07);
}

.acc[open] {
    border-color: rgba(198,90,46,.22);
    background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(244,230,200,.18));
}

/* apparition contenu */
.acc[open] .acc-body {
    animation: btkAccIn .22s ease both;
}

@keyframes btkAccIn{
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔵 Icon: supprimer +/− et mettre DOT + HALO */
.acc-icon {
    overflow: visible !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* DOT central */
.acc-icon::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translate(-50%,-50%);
    background: var(--terracotta);
}

/* HALO */
.acc-icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translate(-50%,-50%);
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 0 0 var(--btk-halo-strong),
    0 0 0 0 var(--btk-halo-soft);
}

/* open */
.acc[open] .acc-icon::before {
    background: var(--terracotta-hover);
}

.acc[open] .acc-icon::after {
    opacity: .35;
    box-shadow: 0 0 0 6px rgba(198,90,46,.16),
    0 0 18px 0 rgba(198,90,46,.08);
}

/* hover halo ring */
body.btk-anim-on .acc:hover .acc-icon::after {
    animation: btkHaloRing 900ms ease-out 1;
}

@keyframes btkHaloRing{
    0% {
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(198,90,46,0),
      0 0 0 0 rgba(198,90,46,0);
    }

    15% {
        opacity: .75;
        box-shadow: 0 0 0 6px var(--btk-halo-strong),
      0 0 14px 0 var(--btk-halo-soft);
    }

    100% {
        opacity: 0;
        box-shadow: 0 0 0 18px rgba(198,90,46,0),
      0 0 26px 0 rgba(198,90,46,0);
    }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
    body.btk-anim-on .acc:hover .acc-icon::after {
        animation: none !important;
    }

    body.btk-anim-on .badge:hover::before {
        animation: none !important;
    }

    body.btk-anim-on .badge-tile:hover::before {
        animation: none !important;
    }
}

/* -------------------------------------------------------------------------------------------------
🟣 12.1.C — Variantes Accordion (TEST A/B/C) — conservées
------------------------------------------------------------------------------------------------- */
/* animations opening optionnelles */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.acc[open] .acc-body {
    animation: fadeUp .32s var(--ease-out);
}

.acc .acc-title,
.acc .acc-icon {
    transition: transform .28s var(--ease-out), opacity .28s var(--ease-out);
}

.acc[open] .acc-title {
    transform: translateX(4px);
}

.acc[open] .acc-icon {
    transform: scale(1.15);
}

/* VARIANT A */
.acc--variant-a {
    background: rgba(244, 230, 200, 0.25) !important;
}

.acc--variant-a[open] {
    border-color: rgba(198,90,46,.22);
    background: rgba(244, 230, 200, 0.45) !important;
}

/* VARIANT B (halo + intense via class sur <html> ou :root) */
:root.variant-b-active {
    --btk-halo-strong: rgba(198,90,46,.45);
    --btk-halo-soft: rgba(198,90,46,.25);
}

.acc--variant-b .acc-icon::after {
    opacity: 0.6;
    box-shadow: 0 0 0 6px rgba(198,90,46,.32),
    0 0 18px 0 rgba(198,90,46,.18);
}

.acc--variant-b[open] .acc-icon::after {
    opacity: 0.6;
    box-shadow: 0 0 0 6px rgba(198,90,46,.32),
    0 0 18px 0 rgba(198,90,46,.18);
}

/* VARIANT C (halo doré) */
.acc--variant-c .acc-icon::before {
    background: var(--gold) !important;
}

.acc--variant-c .acc-icon::after {
    opacity: 0.5;
    box-shadow: 0 0 0 0 rgba(194,164,115,.35),
    0 0 0 0 rgba(194,164,115,.20);
}

.acc--variant-c[open] .acc-icon::before {
    background: var(--gold) !important;
}

.acc--variant-c[open] .acc-icon::after {
    opacity: 0.45;
    box-shadow: 0 0 0 6px rgba(194,164,115,.25),
    0 0 18px 0 rgba(194,164,115,.15);
}

body.btk-anim-on .acc--variant-c:hover .acc-icon::after {
    animation: btkHaloRingGold 900ms ease-out 1;
}

@keyframes btkHaloRingGold{
    0% {
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(194,164,115,.00),
      0 0 0 0 rgba(194,164,115,.00);
    }

    15% {
        opacity: .75;
        box-shadow: 0 0 0 6px rgba(194,164,115,.35),
      0 0 14px 0 rgba(194,164,115,.20);
    }

    100% {
        opacity: 0;
        box-shadow: 0 0 0 18px rgba(194,164,115,0),
      0 0 26px 0 rgba(194,164,115,0);
    }
}

/* =====================================================================================================================
🟣 13 — FORM MULTI-STEP + ASIDE + CONTACT BLOCK
===================================================================================================================== */
.section-form {
    padding: 74px 0;
}

.form-shell {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    margin-top: 18px;
    align-items: stretch;
}

.formbox {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(28,29,32,.10);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
    height: 100%;
}

/* progress */
.progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 14px;
}

.pill {
    flex: 1 1 auto;
    height: 6px;
    border-radius: 999px;
    background: rgba(28,29,32,.10);
    overflow: hidden;
}

.pill > span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--terracotta));
    border-radius: 999px;
    transition: width .25s ease;
}

.step-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
    opacity: .86;
}

.step {
    display: none;
}

.step.is-active {
    display: block;
}

/* choices */
.cards-choice {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.choice {
    border-radius: 18px;
    border: 1px solid rgba(28,29,32,.10);
    background: rgba(255,255,255,.70);
    padding: 14px;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.choice:hover {
    transform: translateY(-2px);
    border-color: rgba(198,90,46,.25);
    background: rgba(255,255,255,.86);
    box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.choice.is-featured {
    border-color: rgba(194,164,115,.55);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(180deg, rgba(244,230,200,.55), rgba(255,255,255,.82));
}

.choice .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(28,29,32,.78);
}

.choice .tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(194,164,115,.18);
}

.choice strong {
    display: block;
    margin-top: 8px;
    font-size: 15px;
}

.choice p {
    margin: 6px 0 0;
    color: rgba(28,29,32,.78);
    font-size: 13px;
    line-height: 1.45;
}

.choice.is-selected {
    border-color: var(--terracotta);
    background: linear-gradient(180deg, rgba(198,90,46,.08), rgba(255,255,255,.9));
    box-shadow: 0 10px 30px rgba(198,90,46,.15);
    position: relative;
}

.choice.is-selected::after {
    content: "✓ Sélectionné";
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--terracotta);
}

/* fields */
.fieldgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
    opacity: .82;
    margin: 10px 0 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(28,29,32,.14);
    background: rgba(255,255,255,.92);
    color: var(--ink);
    outline: none;
    font-size: 14px;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(198,90,46,.55);
    box-shadow: 0 0 0 4px rgba(198,90,46,.12);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.step-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.note {
    font-size: 13px;
    color: rgba(28,29,32,.70);
    margin-top: 10px;
    line-height: 1.5;
}

/* messages */
.form-message {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    display: none;
}

.form-message.error {
    background: rgba(220,0,0,.08);
    border: 1px solid rgba(220,0,0,.3);
    color: #9c0000;
    display: block;
}

.form-message.success {
    background: rgba(0,150,60,.08);
    border: 1px solid rgba(0,150,60,.3);
    color: #006b2e;
    display: block;
}

/* aside column */
.aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.aside .card {
    padding: 20px;
}

.aside h3 {
    margin: 0 0 8px;
    font-size: 15px;
}

.aside p {
    margin: 0;
    color: rgba(28,29,32,.78);
}

/* contact block */
.contact-block {
    position: relative;
    background: #1C1D20;
    border-radius: 22px;
    padding: 50px 40px;
    color: #FBF7EE;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 600;
    color: #C65A2E;
    margin-bottom: 20px;
}

.contact-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: #C65A2E;
    margin: 20px 0 10px;
}

.contact-line {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.contact-line a {
    color: #FBF7EE;
    text-decoration: none;
}

.contact-line a:hover {
    color: #C2A473;
}

.contact-separator {
    height: 1px;
    background: rgba(255,255,255,.12);
    margin: 25px 0;
}

.contact-note {
    font-size: 12px;
    font-style: italic;
    color: #E5DED2;
}

/* logo filigrane */
.contact-logo {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    opacity: 0.12;
    transition: opacity .35s ease;
    pointer-events: none;
}

.contact-logo img {
    width: 150px;
    max-width: 150px;
    height: auto;
    filter: invert(39%) contrast(200%);
}

.contact-block:hover .contact-logo {
    opacity: 0.95;
}

/* accessibilité cartes cliquables */
.choice:focus,
.choice:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* =====================================================================================================================
🟣 14 — STICKY CTA + FOOTER
===================================================================================================================== */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--terracotta);
    color: #fff;
    font-weight: 780;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(198,90,46,.25);
    transition: .25s ease;
}

.sticky-cta:hover {
    background: var(--terracotta-hover);
}

.sticky-cta.is-visible {
    display: inline-flex;
}

.footer {
    padding: 28px 0 40px;
    color: rgba(28,29,32,.68);
    font-size: 13px;
}

/* =====================================================================================================================
🟣 15 — FULL-BLEED SYSTEM
===================================================================================================================== */
.section-bleed {
    position: relative;
    width: 100%;
}

.section-bleed::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-bleed > .wrap {
    position: relative;
    z-index: 1;
}

.bleed-hero::before {
    background: radial-gradient(1200px 700px at 20% 0%, rgba(194,164,115,.16), transparent 60%),
    radial-gradient(900px 500px at 85% 40%, rgba(198,90,46,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.00) 0%, rgba(255,255,255,.00) 100%);
}

.bleed-cinema::before {
    background: radial-gradient(1200px 700px at 20% 0%, rgba(194,164,115,.16), transparent 60%),
    radial-gradient(900px 500px at 85% 40%, rgba(198,90,46,.18), transparent 55%),
    linear-gradient(180deg, #14151A 0%, #111217 100%);
}

.bleed-interlude::before {
    background: radial-gradient(900px 500px at 20% 20%, rgba(194,164,115,.16), transparent 60%),
    radial-gradient(900px 500px at 80% 60%, rgba(198,90,46,.12), transparent 60%),
    linear-gradient(180deg, rgba(239,239,239,0.0) 0%, rgba(239,239,239,0.0) 100%);
    border-top: 1px solid rgba(28,29,32,.08);
    border-bottom: 1px solid rgba(28,29,32,.08);
}

@media (min-width: 1400px){
    .wrap {
        max-width: 1200px;
    }
}

/* =====================================================================================================================
🟣 16 — INTERLUDE TEXT (simple)
===================================================================================================================== */
.interlude {
    padding: 54px 0;
    background: radial-gradient(900px 500px at 20% 20%, rgba(194,164,115,.16), transparent 60%),
    radial-gradient(900px 500px at 80% 60%, rgba(198,90,46,.12), transparent 60%);
    border-top: 1px solid rgba(28,29,32,.08);
    border-bottom: 1px solid rgba(28,29,32,.08);
}

.interlude-quote {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -.2px;
    font-weight: 800;
    max-width: 60ch;
}

.interlude-sub {
    margin: 10px 0 0;
    color: rgba(28,29,32,.70);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
}

/* =====================================================================================================================
🟣 17 — INTERLUDE IMAGE
===================================================================================================================== */
.btk-interlude-image {
    padding: 54px 0;
}

.interlude-band {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 260px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 54px 18px;
    border: 1px solid rgba(28,29,32,.10);
    box-shadow: 0 18px 46px rgba(0,0,0,.10);
    background: #0f1013;
}

.interlude-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transform: scale(1.03);
    max-width: none;
}

.interlude-overlay {
    display: none;
}

.btk-interlude-image .interlude-text-overlay {
    display: inline-block;
    padding: 15px 22px;
    border-radius: 18px;
    background: rgba(20,21,26,.42);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btk-interlude-image .interlude-quote,
.btk-interlude-image .interlude-sub {
    position: relative;
    z-index: -2;
    margin: 0;
    color: #FBF7EE;
}

.btk-interlude-image .interlude-quote {
    font-size: clamp(22px, 2vw, 45px);
    line-height: 1.4;
    font-weight: 786;
    letter-spacing: 1.4px;
    max-width: 26ch;
}

.btk-interlude-image .interlude-quote .qmark {
    font-size: 1.2em;
    opacity: .9;
}

.btk-interlude-image .interlude-sub {
    margin-top: 12px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 900;
    opacity: .92;
}

/* =====================================================================================================================
🟣 17.1 — INTERLUDE FULL-WIDTH (SINGLE SOURCE OF TRUTH)
===================================================================================================================== */
section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full {
    padding: 0 !important;
}

section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full
.interlude-band--full {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 416px;

    /* +60% */
}

section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full
.interlude-band--full > .interlude-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    max-width: none !important;
    z-index: 0 !important;
    transform: scale(1.03) !important;
}

section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full
.interlude-band--full > .interlude-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
}

section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full
.interlude-band--full > .wrap {
    position: relative;
    z-index: 2;
    padding-top: 54px;
    padding-bottom: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btk-interlude-image .interlude-text-overlay {
    max-width: min(92vw, 838px);
}

.btk-interlude-image .interlude-text-overlay .interlude-sub {
    margin-top: 12px;
}

/* =====================================================================================================================
🟣 18 — RESPONSIVE MASTER
===================================================================================================================== */
@media (max-width: 980px){
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 320px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .cinema-grid {
        grid-template-columns: 1fr;
    }

    .form-shell {
        grid-template-columns: 1fr;
    }

    .hubgrid {
        grid-template-columns: 1fr;
    }

    .navlinks {
        display: none;
    }

    .badges-grid {
        grid-template-columns: 1fr 1fr;
    }

    .interlude-band {
        min-height: 220px;
        padding: 44px 16px;
    }

    section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full
  .interlude-band--full {
        min-height: 352px;
    }

    section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full
  .interlude-band--full > .wrap {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .btk-interlude-image .interlude-text-overlay {
        padding: 16px 18px;
        border-radius: 16px;
    }
}

@media (max-width: 520px){
    .badges-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px){
    .sticky-cta {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

/* =====================================================================================================================
🟣 19 — KEYFRAMES (BADGES)
===================================================================================================================== */
@keyframes btkBadgeHalo{
    0% {
        box-shadow: 0 0 0 0 rgba(198,90,46,0);
    }

    20% {
        box-shadow: 0 0 0 6px rgba(198,90,46,.18);
    }

    100% {
        box-shadow: 0 0 0 16px rgba(198,90,46,0);
    }
}

/* Hero badge tiles: pastille terracotta + halo */
.badge-tile {
    gap: 10px;
}

.badge-tile::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--terracotta);
    box-shadow: 0 0 0 5px rgba(198,90,46,.10);
    flex: 0 0 auto;
}

body.btk-anim-on .badge-tile:hover::before {
    animation: btkBadgeHalo 900ms ease-out 1;

    /* ============================================
   EXPERIENCE CHOICE — ULTRA PREMIUM
   ============================================ */
    .choice {
        position: relative;
        padding: 20px 22px;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,0.08);
        background: #fff;
        cursor: pointer;
        transition: transform .22s ease,
  box-shadow .22s ease,
  border-color .22s ease;
        overflow: hidden;
    }

    /* hover */
    .choice:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    }

    /* ============================================
   BARRE CHAMPAGNE ANIMÉE
   ============================================ */
    .choice::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background: linear-gradient(
  90deg,
  #C65A2E,
  #F83800,
  #C2A473
  );
        transition: width .35s ease;
    }

    /* ============================================
   SELECTION
   ============================================ */
    .choice.selected,
    .choice:has(input:checked) {
        border-color: #C65A2E;
        box-shadow: 0 12px 36px rgba(198,90,46,0.18),
  0 0 0 4px rgba(248,56,0,0.06);
    }

    .choice.selected::before,
    .choice:has(input:checked)::before {
        width: 100%;
    }

    /* ============================================
   MICRO GLOW CHAMPAGNE
   ============================================ */
    .choice::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(
  circle at 80% 20%,
  rgba(255,220,140,0.18),
  transparent 60%
  );
        opacity: 0;
        transition: opacity .35s ease;
    }

    .choice:hover::after {
        opacity: .6;
    }

    /* ============================================
   INDICATEUR SELECTION
   ============================================ */
    .choice.selected::marker {
    }

    .choice:has(input:checked)::marker {
    }

    .choice.selected::before {
    }

    .choice input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    /* ============================================
   TITRE
   ============================================ */
    .choice-title {
        font-weight: 700;
        font-size: 16px;
    }

    .choice-desc {
        font-size: 14px;
        opacity: .75;
        margin-top: 4px;
    }

    /* ============================================
   EXPERIENCE CHOICE — ULTRA PREMIUM
   ============================================ */
    .choice {
        position: relative;
        padding: 20px 22px;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,0.08);
        background: #fff;
        cursor: pointer;
        transition: transform .22s ease,
  box-shadow .22s ease,
  border-color .22s ease;
        overflow: hidden;
    }

    /* hover */
    .choice:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    }

    /* ============================================
   BARRE CHAMPAGNE ANIMÉE
   ============================================ */
    .choice::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background: linear-gradient(
  90deg,
  #C65A2E,
  #F83800,
  #C2A473
  );
        transition: width .35s ease;
    }

    /* ============================================
   SELECTION
   ============================================ */
    .choice.selected,
    .choice:has(input:checked) {
        border-color: #C65A2E;
        box-shadow: 0 12px 36px rgba(198,90,46,0.18),
  0 0 0 4px rgba(248,56,0,0.06);
    }

    .choice.selected::before,
    .choice:has(input:checked)::before {
        width: 100%;
    }

    /* ============================================
   MICRO GLOW CHAMPAGNE
   ============================================ */
    .choice::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(
  circle at 80% 20%,
  rgba(255,220,140,0.18),
  transparent 60%
  );
        opacity: 0;
        transition: opacity .35s ease;
    }

    .choice:hover::after {
        opacity: .6;
    }

    /* ============================================
   INDICATEUR SELECTION
   ============================================ */
    .choice.selected::marker {
    }

    .choice:has(input:checked)::marker {
    }

    .choice.selected::before {
    }

    .choice input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    /* ============================================
   TITRE
   ============================================ */
    .choice-title {
        font-weight: 700;
        font-size: 16px;
    }

    .choice-desc {
        font-size: 14px;
        opacity: .75;
        margin-top: 4px;
    }

    /* =========================================================
   FIX DÉFINITIF — DOUBLE ENCADREMENT
   Cartes "Choisir une expérience" (markup actuel = .choice en div role=button)
   Objectif : 1 seul cadre + halo premium, sans doublon focus/selected
   ========================================================= */
    .choice {
        border: 2px solid rgba(28,29,32,.10) !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .choice:hover {
        border-color: rgba(28,29,32,.18) !important;
        box-shadow: 0 10px 28px rgba(0,0,0,.08) !important;
    }

    /* ÉTAT SÉLECTIONNÉ (form.js met aria-pressed="true") */
    .choice[aria-pressed="true"] {
        border-color: var(--terracotta, #C65A2E) !important;
        box-shadow: 0 12px 30px rgba(198,90,46,.16),
    0 0 0 4px rgba(248,56,0,.06) !important;
    }

    /* SUPPRIME LES DOUBLONS “FOCUS / FOCUS-WITHIN” */
    .choice:focus,
    .choice:focus-visible,
    .choice:focus-within {
        outline: none !important;
    }

    /* FOCUS CLAVIER (ACCESSIBLE) : un halo, pas un 2e cadre */
    .choice:focus-visible {
        box-shadow: 0 0 0 5px rgba(248,56,0,.18),
    0 10px 28px rgba(0,0,0,.08) !important;
    }

    /* FOCUS + SÉLECTION : halo unique (toujours pas de double encadrement) */
    .choice[aria-pressed="true"]:focus-visible {
        box-shadow: 0 12px 30px rgba(198,90,46,.16),
    0 0 0 6px rgba(248,56,0,.20) !important;
    }

    /* V36.12 header adjustment */
    .brand span:last-child {
        font-family: inherit !important;
        font-size: 1.4em !important;
        font-weight: inherit !important;
        display: inline-block;
        margin-left: 85px !important;
        line-height: 1;
    }
}

/* =========================================================
   🟣 INDEX2 — ADDITIONS PREMIUM LIGHT (A/B)
   Objectif : plus de preuve + plus de clarté (prix/CTA) + micro-anim légères
   ========================================================= *//* Hero refinements (dark mode inside hero full-bg) */.hero-fullbg .microproof { color: rgba(255,255,255,.86); justify-content: center; } .hero-fullbg { overflow: hidden; min-height: clamp(560px, 72vh, 860px); background-image: none !important; } .hero-media-bg { position: absolute; inset: 0; z-index: 0; display: block; } .hero-media-bg img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-pos, center center); display: block; } .hero-fullbg-overlay { z-index: 1; } .hero-fullbg-inner { z-index: 2; } .hero-fullbg .hero-cta { justify-content: center; align-items: center; } .hero-fullbg .badge { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); color: #fff; } .hero-fullbg .badge::before { background: rgba(255,255,255,.55); } /* Meta pills (prix / privé / départ) */.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 14px 0 0; } .meta-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; background: rgba(15,16,19,.28); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.92); font-size: 13px; } .meta-pill strong { font-weight: 900; } /* Trust strip (Tripadvisor / Google) */.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 12px; } .trust-item { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; text-decoration: none; font-size: 13px; line-height: 1; transition: transform .18s ease, background .18s ease, border-color .18s ease; } .trust-item:hover { transform: translateY(-1px); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.20); } .trust-item:focus-visible { outline: 3px solid rgba(244,230,200,.55); outline-offset: 3px; } .trust-item--cta { font-weight: 800; } .stars { letter-spacing: 1px; font-size: 12px; opacity: .9; } .trust-src { opacity: .75; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; } /* En bref / stats bar */.btk-brief { padding: 24px 0 26px; } .brief-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 0; } .brief-item { position: relative; isolation: isolate; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.72) 100%); border: 1px solid rgba(28,29,32,.10); border-radius: var(--radius-md); padding: 14px; text-align: center; box-shadow: 0 10px 22px rgba(0,0,0,.06); backdrop-filter: blur(10px); will-change: transform, box-shadow; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease; } .brief-item::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(135deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,0) 42%, rgba(194,164,115,.14) 100%); opacity: .9; pointer-events: none; } .brief-item::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(194,164,115,.00); opacity: 0; transform: translateY(6px); transition: opacity .28s ease, box-shadow .28s ease, transform .28s ease; pointer-events: none; } .brief-item:hover, .brief-item:focus-within { transform: translateY(-8px); background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,249,242,.92) 100%); border-color: rgba(194,164,115,.30); box-shadow: 0 22px 42px rgba(0,0,0,.14), 0 10px 26px rgba(194,164,115,.16); } .brief-item:hover::after, .brief-item:focus-within::after { opacity: 1; transform: translateY(0); box-shadow: 0 18px 42px rgba(194,164,115,.18); } .brief-top, .brief-sub { position: relative; z-index: 1; } .brief-top { font-weight: 920; font-size: 18px; line-height: 1.2; } .brief-sub { margin-top: 7px; font-size: 11px; opacity: .76; letter-spacing: .14em; text-transform: uppercase; } @media (max-width: 900px){ .brief-grid {  grid-template-columns: repeat(2, minmax(0,1fr));  margin-top: 0; } } @media (max-width: 460px){ .brief-grid {  grid-template-columns: 1fr; } } /* Scroll hint */.scroll-hint { margin-top: 18px; display: flex; justify-content: center; opacity: .85; } .scroll-mouse { width: 28px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,.28); position: relative; } .scroll-mouse::after { content: ""; width: 4px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.65); position: absolute; left: 50%; top: 10px; transform: translateX(-50%); animation: scrollDot 1.35s ease-in-out infinite; } @keyframes scrollDot{ 0% {  transform: translate(-50%, 0);  opacity: .9; }  60% {  transform: translate(-50%, 12px);  opacity: .15; }  100% {  transform: translate(-50%, 0);  opacity: .0; } } /* Reveal on scroll (no lib) */.reveal { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; } .reveal.is-visible { opacity: 1; transform: none; } @media (prefers-reduced-motion: reduce){ .scroll-mouse::after {  animation: none; }  .reveal {  opacity: 1;  transform: none;  transition: none; } } /* Section timeline cinema */.section-style-timeline .wrap { position: relative; } .style-timeline { position: relative; display: grid; gap: 18px; margin-top: 24px; } .style-timeline-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr); gap: 26px; align-items: stretch; margin-top: 24px; } .style-timeline-layout .style-timeline { margin-top: 0; } .style-timeline-media { position: relative; overflow: hidden; border-radius: 28px; min-height: 100%; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); box-shadow: 0 18px 40px rgba(0,0,0,.18); } .style-timeline-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; } .style-timeline-media--portrait { aspect-ratio: 4 / 5; min-height: 0; align-self: start; } .style-timeline-media--portrait img { min-height: 0; object-position: 54% 50%; } .style-timeline-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,21,26,.06) 0%, rgba(20,21,26,.16) 42%, rgba(20,21,26,.38) 100%); pointer-events: none; } .style-timeline-caption { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; border-radius: 18px; padding: 14px 16px; background: rgba(20,21,26,.42); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12); color: #FBF7EE; box-shadow: 0 12px 24px rgba(0,0,0,.18); } .style-timeline-caption strong { display: block; margin-bottom: 4px; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; } .style-timeline-caption span { font-size: 14px; color: rgba(251,247,238,.82); } @media (max-width: 980px){ .style-timeline-layout {  grid-template-columns: 1fr; }  .style-timeline-media {  order: -1; }  .style-timeline-media img {  min-height: 280px;  max-height: 420px; }  .style-timeline-media--portrait {  aspect-ratio: 16 / 10; }  .style-timeline-media--portrait img {  min-height: 0;  max-height: none;  object-position: center 42%; } } .style-timeline::before { content: ""; position: absolute; left: 12px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(194,164,115,.55) 50%, rgba(255,255,255,.12) 100%); } .style-step { position: relative; display: grid; grid-template-columns: 26px minmax(0,1fr); gap: 14px; align-items: start; } .style-step-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--terracotta, #D96A3B); box-shadow: 0 0 0 6px rgba(217,106,59,.16); margin-top: 22px; margin-left: 7px; position: relative; z-index: 1; } .style-step-dot::before, .style-step-dot::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; border-radius: 999px; transform: translate(-50%,-50%); pointer-events: none; } .style-step-dot::before { opacity: .35; box-shadow: 0 0 0 6px rgba(217,106,59,.16),
    0 0 18px 0 rgba(217,106,59,.08); } .style-step-dot::after { opacity: 0; box-shadow: 0 0 0 0 rgba(217,106,59,0),
    0 0 0 0 rgba(217,106,59,0); } body.btk-anim-on .style-step.is-visible .style-step-dot::before { animation: btkTimelineHaloIntro 820ms ease-out 1; } body.btk-anim-on .style-step:hover .style-step-dot::after, body.btk-anim-on .style-step:focus-within .style-step-dot::after, body.btk-anim-on .style-step-dot:hover::after { animation: btkTimelineHaloRing 900ms ease-out 1; } @keyframes btkTimelineHaloIntro{ 0% {  opacity: 0;  box-shadow: 0 0 0 0 rgba(217,106,59,0),
      0 0 0 0 rgba(217,106,59,0); }  30% {  opacity: .72;  box-shadow: 0 0 0 8px rgba(217,106,59,.18),
      0 0 16px 0 rgba(217,106,59,.10); }  100% {  opacity: .35;  box-shadow: 0 0 0 6px rgba(217,106,59,.16),
      0 0 18px 0 rgba(217,106,59,.08); } } @keyframes btkTimelineHaloRing{ 0% {  opacity: 0;  box-shadow: 0 0 0 0 rgba(217,106,59,0),
      0 0 0 0 rgba(217,106,59,0); }  15% {  opacity: .75;  box-shadow: 0 0 0 6px rgba(217,106,59,.22),
      0 0 14px 0 rgba(217,106,59,.12); }  100% {  opacity: 0;  box-shadow: 0 0 0 18px rgba(217,106,59,0),
      0 0 26px 0 rgba(217,106,59,0); } } .style-step-card { border-radius: 22px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.06); box-shadow: 0 18px 40px rgba(0,0,0,.18); backdrop-filter: blur(10px); } .section-style-timeline .section-title, .section-style-timeline .section-sub, .section-style-timeline .style-step-card, .section-style-timeline .style-step-card .mini { color: #FBF7EE; } .style-step-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: rgba(251,247,238,.68); margin-bottom: 8px; } .style-step-card h3 { margin: 0 0 8px; font-size: clamp(22px,2.2vw,30px); line-height: 1.08; } .style-step-card p { margin: 0; color: rgba(251,247,238,.82); } .style-step-card .mini { margin-top: 12px; opacity: .78; } @media (max-width: 640px){ .style-step-card {  padding: 16px 16px; }  .style-step-card h3 {  font-size: 22px; } } /* Full editorial sunset visual */.btk-story-image { padding: 18px 0 8px; background: linear-gradient(180deg, rgba(20,21,26,1) 0%, rgba(20,21,26,.94) 22%, rgba(251,247,238,1) 100%); } .btk-story-image .wrap { max-width: 1220px; } .story-visual-card { overflow: hidden; max-width: 960px; margin: 0 auto; border-radius: 32px; background: #fff; border: 1px solid rgba(28,29,32,.10); box-shadow: 0 22px 48px rgba(0,0,0,.14); } .story-visual-frame { display: block; background: linear-gradient(180deg, rgba(244,236,224,1) 0%, rgba(255,255,255,1) 100%); } .story-visual-frame img { display: block; width: 100%; height: auto; } .story-visual-caption { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px 22px; background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(251,247,238,.98) 100%); } .story-visual-copy strong { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: #1C1D20; } .story-visual-copy p { margin: 0; color: #52545c; max-width: 720px; } .story-visual-actions { flex: 0 0 auto; } @media (max-width: 820px){ .btk-story-image {  padding-top: 10px; }  .story-visual-card {  border-radius: 24px; }  .story-visual-caption {  flex-direction: column;  align-items: flex-start; }  .story-visual-actions {  width: 100%; }  .story-visual-actions .btn {  width: 100%;  justify-content: center; } } /* V21 — orange vif en ponctuation, pas en nappage */:root { --btk-orange-vif: #FF7A1A; --btk-orange-vif-hover: #E7680F; --btk-orange-vif-shadow: rgba(255,122,26,.18); --btk-orange-vif-soft: rgba(255,122,26,.08); --btk-champagne: #C2A473; --btk-champagne-soft: rgba(194,164,115,.12); } .btn.btn-primary, a.btn.btn-primary, button.btn.btn-primary { background: linear-gradient(135deg, var(--btk-orange-vif) 0%, #FF8A31 100%); border-color: rgba(255,122,26,.78); color: #fff; box-shadow: 0 10px 24px var(--btk-orange-vif-shadow), 0 4px 12px rgba(0,0,0,.10); transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; } .btn.btn-primary:hover, a.btn.btn-primary:hover, button.btn.btn-primary:hover { background: linear-gradient(135deg, var(--btk-orange-vif-hover) 0%, #FF7E28 100%); border-color: rgba(231,104,15,.92); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,122,26,.22), 0 10px 18px rgba(0,0,0,.12); } .btn.btn-primary:focus-visible, a.btn.btn-primary:focus-visible, button.btn.btn-primary:focus-visible { outline: 3px solid rgba(255,122,26,.22); outline-offset: 3px; } .btn.btn-ghost, a.btn.btn-ghost, button.btn.btn-ghost { border-color: rgba(20,21,26,.14); color: #1F222A; background: rgba(255,255,255,.78); } .btn.btn-ghost:hover, a.btn.btn-ghost:hover, button.btn.btn-ghost:hover { border-color: rgba(20,21,26,.18); background: rgba(255,255,255,.92); color: #111318; transform: translateY(-1px); box-shadow: 0 10px 20px rgba(0,0,0,.05); } .story-visual-card { max-width: 820px; box-shadow: 0 18px 38px rgba(0,0,0,.12); } .story-visual-caption { padding: 16px 20px 20px; } .story-visual-copy p { max-width: 650px; } #experiences { position: relative; overflow: hidden; padding-bottom: 6px; } #experiences::before { content: ""; position: absolute; inset: auto -120px 16% auto; width: 340px; height: 340px; border-radius: 999px; background: radial-gradient(circle, rgba(194,164,115,.10) 0%, rgba(194,164,115,.05) 38%, rgba(194,164,115,0) 72%); pointer-events: none; filter: blur(4px); } #experiences .section-sub { max-width: 820px; } #experiences .cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); align-items: stretch; gap: 18px; margin-top: 22px; } #experiences .card { position: relative; isolation: isolate; overflow: hidden; min-height: 216px; padding: 20px 18px 18px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(251,247,238,.96) 100%); border: 1px solid rgba(28,29,32,.08); box-shadow: 0 14px 28px rgba(0,0,0,.05); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease; } #experiences .card h3 { margin-top: 0; margin-bottom: 10px; } #experiences .card p { margin: 0; line-height: 1.58; } #experiences .mini { margin-top: 14px; } #experiences .experiences-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; } #experiences .card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, rgba(194,164,115,0) 0%, rgba(194,164,115,.58) 48%, rgba(194,164,115,0) 100%); opacity: .72; } #experiences .card::after { content: ""; position: absolute; top: -60px; right: -40px; width: 160px; height: 160px; border-radius: 999px; background: radial-gradient(circle, rgba(194,164,115,.09) 0%, rgba(194,164,115,0) 72%); opacity: .82; pointer-events: none; } #experiences .card:hover, #experiences .card:focus-within { transform: translateY(-5px); border-color: rgba(194,164,115,.22); box-shadow: 0 18px 30px rgba(0,0,0,.08), 0 6px 18px rgba(194,164,115,.08); background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(251,247,238,.98) 100%); } #experiences .card a { color: #8B6B3D; font-weight: 800; } #experiences .card a:hover { color: #6F542F; } /* V26 — reservation equal-height columns */@media (min-width: 981px){ #reservation .form-shell {  display: grid !important;  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr) !important;  align-items: stretch !important;  gap: 28px !important; }  #reservation .formbox, #reservation .aside {  min-height: var(--reservation-sync-h, auto);  height: auto;  align-self: stretch; }  #reservation .formbox {  display: flex;  flex-direction: column; }  #reservation .aside {  display: flex;  flex-direction: column; }  #reservation .aside > .card, #reservation .aside > .contact-block {  box-sizing: border-box; }  #reservation .contact-block--with-logo {  flex: 1 1 auto; } } @media (max-width: 980px){ #reservation .formbox, #reservation .aside {  min-height: 0 !important; } } .signature-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; padding: 9px 14px; border-radius: 999px; background: linear-gradient(180deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.045) 100%); border: 1px solid rgba(255,122,26,.16); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 26px rgba(0,0,0,.10), 0 0 0 1px rgba(255,122,26,.04); color: var(--btk-orange-vif, #FF7A1A); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; } .signature-kicker::before { content: none; } .signature-kicker-icon { position: relative; display: inline-grid; place-items: center; width: 18px; height: 18px; flex: 0 0 18px; border-radius: 999px; color: var(--btk-orange-vif, #FF7A1A); font-size: 12px; line-height: 1; text-shadow: 0 0 10px rgba(255,122,26,.26); } .signature-kicker-icon::before { content: ""; position: absolute; inset: 2px; border-radius: 999px; background: radial-gradient(circle, rgba(255,122,26,.22) 0%, rgba(255,122,26,.10) 42%, rgba(255,122,26,0) 72%); animation: signaturePulse 2.4s ease-in-out infinite; } .signature-kicker-icon::after { content: ""; position: absolute; inset: -3px; border-radius: 999px; border: 1px solid rgba(255,122,26,.22); opacity: .72; animation: signatureRing 2.4s ease-in-out infinite; } .signature-kicker-label { display: inline-block; transform: translateY(.5px); } @keyframes signaturePulse{ 0%, 100% {  transform: scale(.9);  opacity: .45; }  50% {  transform: scale(1.12);  opacity: .9; } } @keyframes signatureRing{ 0%, 100% {  transform: scale(.94);  opacity: .3; }  50% {  transform: scale(1.14);  opacity: .78; } } .signature-proofline { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; } .signature-proofline .proof-pill { display: inline-flex; align-items: center; padding: 10px 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: rgba(251,247,238,.92); font-size: 13px; line-height: 1.2; } /* SEO accordion discret sous Signature */.btk-seo-discreet { padding-top: 10px; } .seo-discreet { margin: 0 auto; max-width: 760px; border-radius: 16px; border: 1px solid rgba(25,28,34,.08); background: linear-gradient(180deg, rgba(255,255,255,.68) 0%, rgba(255,255,255,.56) 100%); box-shadow: 0 10px 24px rgba(0,0,0,.04); backdrop-filter: blur(10px); overflow: hidden; } .seo-discreet summary { list-style: none; cursor: pointer; padding: 10px 14px; display: flex; align-items: center; gap: 9px; color: rgba(27,29,33,.76); font-size: 11.5px; font-weight: 800; letter-spacing: .05em; line-height: 1.2; min-height: 0; } .seo-discreet summary::-webkit-details-marker { display: none; } .seo-discreet summary::before { content: ""; position: relative; display: inline-block; width: 11px; height: 11px; flex: 0 0 11px; border-radius: 999px; background: radial-gradient(circle at 50% 50%, rgba(194,164,115,.98) 0 42%, rgba(194,164,115,.28) 43% 100%); box-shadow: 0 0 0 5px rgba(194,164,115,.10), 0 0 18px rgba(194,164,115,.18); transition: transform .24s ease, box-shadow .24s ease, background .24s ease; animation: signaturePulse 2.4s ease-in-out infinite; } .seo-discreet[open] summary::before { transform: scale(1.08); box-shadow: 0 0 0 6px rgba(194,164,115,.14), 0 0 22px rgba(194,164,115,.24); } .seo-discreet summary:hover { color: rgba(18,20,24,.92); } .seo-discreet summary:hover::before { transform: scale(1.12); box-shadow: 0 0 0 6px rgba(194,164,115,.16), 0 0 24px rgba(194,164,115,.26); } .seo-discreet-body { padding: 0 14px 12px 34px; color: rgba(27,29,33,.70); font-size: 13px; line-height: 1.6; } .seo-discreet-body p { margin: 0; } @media (max-width: 720px){ .seo-discreet {  max-width: 100%;  border-radius: 14px; }  .seo-discreet summary {  font-size: 11px;  padding: 9px 12px;  gap: 8px; }  .seo-discreet summary::before {  width: 10px;  height: 10px;  flex-basis: 10px;  box-shadow: 0 0 0 4px rgba(194,164,115,.10), 0 0 14px rgba(194,164,115,.16); }  .seo-discreet-body {  padding: 0 12px 11px 30px;  font-size: 12.5px; } } .signature-cta-only { margin-top: 18px; } @media (max-width: 720px){ .signature-proofline .proof-pill {  width: 100%;  justify-content: center; } } /* Transition and discovery hub */.btk-seo-discreet { display: none !important; } .btk-landing-links { padding: 24px 0 14px; } .links-discovery-head { max-width: 760px; } .links-discovery-head .section-title { margin-bottom: 10px; } .links-discovery-head .section-sub { max-width: 720px; } .experience-grid { display: grid; gap: 16px; margin-top: 18px; } .experience-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } .experience-card { position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 100%; padding: 20px 18px 18px; border-radius: 24px; text-decoration: none; color: #1c1d20; background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(252,248,242,.92) 100%); border: 1px solid rgba(28,29,32,.08); box-shadow: 0 14px 28px rgba(0,0,0,.06); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; } .experience-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(198,90,46,.00) 0%, rgba(198,90,46,.04) 100%); opacity: 0; transition: opacity .24s ease; pointer-events: none; } .experience-card::after { content: none; } .experience-card:hover, .experience-card:focus-visible { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(0,0,0,.10), 0 10px 22px rgba(194,164,115,.14); border-color: rgba(194,164,115,.24); } .experience-card:hover::before, .experience-card:focus-visible::before { opacity: 1; } .experience-card:hover .experience-card-top::before, .experience-card:focus-visible .experience-card h3 { margin: 12px 0 10px; font-size: 26px; line-height: 1.08; } .experience-card p { margin: 0; color: rgba(28,29,32,.76); line-height: 1.58; } .experience-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; } .experience-card-meta span { display: inline-flex; align-items: center; min-height: 34px; padding: 8px 12px; border-radius: 999px; background: rgba(20,21,26,.04); border: 1px solid rgba(28,29,32,.08); color: rgba(28,29,32,.74); font-size: 12px; font-weight: 700; } .experience-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 18px; font-weight: 900; color: #1c1d20; } .experience-card-link::after { content: "→"; transform: translateX(0); transition: transform .2s ease; } .experience-card:hover .experience-card-link::after, .experience-card:focus-visible .experience-card-link::after { transform: translateX(4px); } .experience-card--featured { background: linear-gradient(180deg, rgba(255,251,246,.98) 0%, rgba(251,243,234,.96) 100%); border-color: rgba(198,90,46,.18); box-shadow: 0 18px 36px rgba(0,0,0,.08), 0 10px 24px rgba(198,90,46,.08); } .experience-card--featured::after { background: linear-gradient(90deg, rgba(198,90,46,.72), rgba(255,129,37,.58), rgba(194,164,115,.48)); } .experience-card--featured .experience-card { padding: 14px 14px 16px; } .experience-card-media { position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 4 / 5; margin-bottom: 16px; background: linear-gradient(180deg, rgba(232,223,212,.96) 0%, rgba(214,202,190,.94) 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); } .experience-card-media img { width: 100%; height: 100%; display: block; object-fit: cover; transform: scale(1.02); transition: transform .38s ease, filter .38s ease; filter: saturate(.96) contrast(1.01); } .experience-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,20,24,.03) 0%, rgba(18,20,24,.12) 42%, rgba(18,20,24,.44) 100%); pointer-events: none; } .experience-card:hover .experience-card-media img, .experience-card:focus-visible .experience-card-media img { transform: scale(1.06); filter: saturate(1.02) contrast(1.03); } .experience-card:hover .experience-card-top::before, .experience-card:focus-visible .experience-card h3 { margin: 2px 0 10px; font-size: 24px; line-height: 1.08; } .experience-card p { font-size: 15px; line-height: 1.58; } .experience-card-meta { margin-top: 15px; } .experience-card-link { padding-top: 16px; } .experience-card--featured { background: linear-gradient(180deg, rgba(255,251,246,.98) 0%, rgba(251,243,234,.96) 100%); } .experience-card--featured .experience-card--featured .experience-card-media::after { background: linear-gradient(180deg, rgba(18,20,24,.04) 0%, rgba(18,20,24,.14) 38%, rgba(18,20,24,.52) 100%); } @media (max-width: 1180px){ .experience-card-media {  aspect-ratio: 16 / 10; } } @media (max-width: 1180px){ #experiences .cards {  grid-template-columns: 1fr; } } @media (max-width: 720px){ .experience-card {  padding: 12px 12px 14px;  border-radius: 20px; }  .experience-card-media {  border-radius: 16px;  aspect-ratio: 16 / 10;  margin-bottom: 14px; }  .experience-card h3 {  font-size: 22px; } } .links-hub-discreet { margin-top: 14px; border-radius: 20px; background: rgba(255,255,255,.72); border: 1px solid rgba(28,29,32,.08); box-shadow: 0 12px 22px rgba(0,0,0,.04); overflow: hidden; } .links-hub-discreet summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; font-weight: 900; } .links-hub-discreet summary::-webkit-details-marker { display: none; } .links-hub-title { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; } .links-hub-dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 10px; background: rgba(198,90,46,.88); box-shadow: 0 0 0 6px rgba(198,90,46,.10); transition: transform .2s ease, box-shadow .2s ease; } .links-hub-discreet[open] .links-hub-dot { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(198,90,46,.12), 0 0 16px rgba(198,90,46,.12); } .links-hub-body { padding: 0 18px 18px; } .hubgrid--premium { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; } .hubcol { padding: 14px; border-radius: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(28,29,32,.07); } .hubcol h3 { margin: 0 0 10px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(28,29,32,.56); } .hubcol a { display: block; color: #1c1d20; text-decoration: none; padding: 7px 0; } .hubcol a:hover { color: #c65a2e; } .links-hub-foot { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; } .links-hub-foot a { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 14px; border-radius: 999px; text-decoration: none; font-weight: 800; color: #1c1d20; background: rgba(20,21,26,.04); border: 1px solid rgba(28,29,32,.08); } .links-hub-foot a:hover { border-color: rgba(198,90,46,.24); color: #c65a2e; } @media (max-width: 1180px){ .experience-grid--4 {  grid-template-columns: repeat(2, minmax(0,1fr)); }  .hubgrid--premium {  grid-template-columns: repeat(2, minmax(0,1fr)); } } @media (max-width: 740px){ .btk-landing-links {  padding-top: 14px; }  .experience-grid--4, .hubgrid--premium {  grid-template-columns: 1fr; }  .experience-card h3 {  font-size: 24px; }  .links-hub-discreet summary {  padding: 14px 14px; }  .links-hub-body {  padding: 0 14px 14px; } }

/* ========================================
   BUBBLES CINEMA ADDITIVE (SAFE MODE)
   No summary / no .acc / no details rules
   ======================================== */

:root{
  --btk-cinema-gradient: linear-gradient(135deg,#C65A2E 0%, #D96A3B 40%, #C2A473 100%);
}

.btk-cinema-section{
  padding:100px 0;
  position:relative;
  overflow:hidden;
}

.btk-cinema-section::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(800px 500px at 20% 30%, rgba(194,164,115,.12), transparent 70%),
    radial-gradient(1000px 600px at 80% 70%, rgba(255,74,31,.10), transparent 70%);
  animation: cinemaMove 22s ease-in-out infinite alternate;
}

@keyframes cinemaMove{
  0%{ transform:translate(-2%,-2%) scale(1); }
  100%{ transform:translate(2%,2%) scale(1.02); }
}

.btk-cinema-inner{
  position:relative;
  z-index:2;
}

.btk-cinema-title{
  font-size:42px;
  font-weight:900;
  background: var(--btk-cinema-gradient);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  margin-bottom:16px;
}

/* V22 — boutons terracotta hors hero + test logos contact */:root { --btk-terracotta: #C65A2E; --btk-terracotta-hover: #B65027; --btk-terracotta-shadow: rgba(198,90,46,.20); --btk-terracotta-soft: rgba(198,90,46,.10); --btk-orange-vif: #FF7A1A; --btk-orange-vif-hover: #E7680F; --btk-orange-vif-shadow: rgba(255,122,26,.18); } .btn.btn-primary, a.btn.btn-primary, button.btn.btn-primary, .sticky-cta { background: linear-gradient(135deg, var(--btk-terracotta) 0%, #D96A3B 100%); border-color: rgba(198,90,46,.78); color: #fff; box-shadow: 0 10px 24px var(--btk-terracotta-shadow), 0 4px 12px rgba(0,0,0,.10); } .btn.btn-primary:hover, a.btn.btn-primary:hover, button.btn.btn-primary:hover, .sticky-cta:hover { background: linear-gradient(135deg, var(--btk-terracotta-hover) 0%, #C85B30 100%); border-color: rgba(182,80,39,.92); box-shadow: 0 14px 30px rgba(198,90,46,.24), 0 10px 18px rgba(0,0,0,.12); } .btn.btn-primary:focus-visible, a.btn.btn-primary:focus-visible, button.btn.btn-primary:focus-visible, .sticky-cta:focus-visible { outline: 3px solid rgba(198,90,46,.22); outline-offset: 3px; } .hero .btn.btn-primary, .hero-fullbg .btn.btn-primary, .hero .sticky-cta, .hero-fullbg .sticky-cta { background: linear-gradient(135deg, var(--btk-orange-vif) 0%, #FF8A31 100%); border-color: rgba(255,122,26,.78); box-shadow: 0 10px 24px var(--btk-orange-vif-shadow), 0 4px 12px rgba(0,0,0,.10); } .hero .btn.btn-primary:hover, .hero-fullbg .btn.btn-primary:hover { background: linear-gradient(135deg, var(--btk-orange-vif-hover) 0%, #FF7E28 100%); border-color: rgba(231,104,15,.92); box-shadow: 0 14px 30px rgba(255,122,26,.22), 0 10px 18px rgba(0,0,0,.12); } .contact-block--with-logo { display: grid; grid-template-columns: minmax(0,1fr) 164px; gap: 20px; align-items: stretch; } .contact-block-main { min-width: 0; } .contact-logo-side { display: flex; align-items: stretch; justify-content: flex-end; min-height: 100%; } .contact-logo-sample { position: relative; display: flex; align-items: center; justify-content: center; align-self: stretch; width: 142px; height: 100%; min-height: 0; padding: 20px 16px; border-radius: 22px; border: 1px solid rgba(255,255,255,.09); background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.055) 100%); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: transform .26s ease, border-color .26s ease, background .26s ease, box-shadow .26s ease; overflow: hidden; } .contact-logo-sample::before { content: ""; position: absolute; inset: -18% auto auto -12%; width: 94px; height: 94px; border-radius: 999px; background: radial-gradient(circle, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 72%); pointer-events: none; opacity: .58; } .contact-logo-sample:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.16); background: linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.08) 100%); box-shadow: 0 14px 28px rgba(0,0,0,.24); } .contact-logo-mark { width: 100px; height: auto; display: block; opacity: .18; filter: grayscale(1) saturate(0) brightness(1.12) contrast(.92); transition: opacity .28s ease, filter .28s ease, transform .28s ease; pointer-events: none; } .contact-logo-sample:hover .contact-logo-mark { opacity: 1; filter: none; transform: translateY(-1px) scale(1.015); } @media (max-width:860px){ .contact-block--with-logo {  grid-template-columns: 1fr; }  .contact-logo-side {  justify-content: flex-start;  min-height: auto; }  .contact-logo-sample {  width: 128px;  min-height: 152px;  height: auto; } } /* Transition and discovery hub */.btk-seo-discreet { display: none !important; } .btk-landing-links { padding: 24px 0 14px; } .links-discovery-head { max-width: 760px; } .links-discovery-head .section-title { margin-bottom: 10px; } .links-discovery-head .section-sub { max-width: 720px; } .experience-grid { display: grid; gap: 16px; margin-top: 18px; } .experience-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } .experience-card { position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: 100%; padding: 20px 18px 18px; border-radius: 24px; text-decoration: none; color: #1c1d20; background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(252,248,242,.92) 100%); border: 1px solid rgba(28,29,32,.08); box-shadow: 0 14px 28px rgba(0,0,0,.06); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; } .experience-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(198,90,46,.00) 0%, rgba(198,90,46,.04) 100%); opacity: 0; transition: opacity .24s ease; pointer-events: none; } .experience-card::after { content: none; } .experience-card:hover, .experience-card:focus-visible { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(0,0,0,.10), 0 10px 22px rgba(194,164,115,.14); border-color: rgba(194,164,115,.24); } .experience-card:hover::before, .experience-card:focus-visible::before { opacity: 1; } .experience-card:hover .experience-card-top::before, .experience-card:focus-visible .experience-card h3 { margin: 12px 0 10px; font-size: 26px; line-height: 1.08; } .experience-card p { margin: 0; color: rgba(28,29,32,.76); line-height: 1.58; } .experience-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; } .experience-card-meta span { display: inline-flex; align-items: center; min-height: 34px; padding: 8px 12px; border-radius: 999px; background: rgba(20,21,26,.04); border: 1px solid rgba(28,29,32,.08); color: rgba(28,29,32,.74); font-size: 12px; font-weight: 700; } .experience-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 18px; font-weight: 900; color: #1c1d20; } .experience-card-link::after { content: "→"; transform: translateX(0); transition: transform .2s ease; } .experience-card:hover .experience-card-link::after, .experience-card:focus-visible .experience-card-link::after { transform: translateX(4px); } .experience-card--featured { background: linear-gradient(180deg, rgba(255,251,246,.98) 0%, rgba(251,243,234,.96) 100%); border-color: rgba(198,90,46,.18); box-shadow: 0 18px 36px rgba(0,0,0,.08), 0 10px 24px rgba(198,90,46,.08); } .experience-card--featured::after { background: linear-gradient(90deg, rgba(198,90,46,.72), rgba(255,129,37,.58), rgba(194,164,115,.48)); } .experience-card--featured .experience-card { padding: 14px 14px 16px; } .experience-card-media { position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 4 / 5; margin-bottom: 16px; background: linear-gradient(180deg, rgba(232,223,212,.96) 0%, rgba(214,202,190,.94) 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); } .experience-card-media img { width: 100%; height: 100%; display: block; object-fit: cover; transform: scale(1.02); transition: transform .38s ease, filter .38s ease; filter: saturate(.96) contrast(1.01); } .experience-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,20,24,.03) 0%, rgba(18,20,24,.12) 42%, rgba(18,20,24,.44) 100%); pointer-events: none; } .experience-card:hover .experience-card-media img, .experience-card:focus-visible .experience-card-media img { transform: scale(1.06); filter: saturate(1.02) contrast(1.03); } .experience-card:hover .experience-card-top::before, .experience-card:focus-visible .experience-card h3 { margin: 2px 0 10px; font-size: 24px; line-height: 1.08; } .experience-card p { font-size: 15px; line-height: 1.58; } .experience-card-meta { margin-top: 15px; } .experience-card-link { padding-top: 16px; } .experience-card--featured { background: linear-gradient(180deg, rgba(255,251,246,.98) 0%, rgba(251,243,234,.96) 100%); } .experience-card--featured .experience-card--featured .experience-card-media::after { background: linear-gradient(180deg, rgba(18,20,24,.04) 0%, rgba(18,20,24,.14) 38%, rgba(18,20,24,.52) 100%); } @media (max-width: 1180px){ .experience-card-media {  aspect-ratio: 16 / 10; } } @media (max-width: 1180px){ #experiences .cards {  grid-template-columns: 1fr; } } @media (max-width: 720px){ .experience-card {  padding: 12px 12px 14px;  border-radius: 20px; }  .experience-card-media {  border-radius: 16px;  aspect-ratio: 16 / 10;  margin-bottom: 14px; }  .experience-card h3 {  font-size: 22px; } } .links-hub-discreet { margin-top: 14px; border-radius: 20px; background: rgba(255,255,255,.72); border: 1px solid rgba(28,29,32,.08); box-shadow: 0 12px 22px rgba(0,0,0,.04); overflow: hidden; } .links-hub-discreet summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; font-weight: 900; } .links-hub-discreet summary::-webkit-details-marker { display: none; } .links-hub-title { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; } .links-hub-dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 10px; background: rgba(198,90,46,.88); box-shadow: 0 0 0 6px rgba(198,90,46,.10); transition: transform .2s ease, box-shadow .2s ease; } .links-hub-discreet[open] .links-hub-dot { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(198,90,46,.12), 0 0 16px rgba(198,90,46,.12); } .links-hub-body { padding: 0 18px 18px; } .hubgrid--premium { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; } .hubcol { padding: 14px; border-radius: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(28,29,32,.07); } .hubcol h3 { margin: 0 0 10px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(28,29,32,.56); } .hubcol a { display: block; color: #1c1d20; text-decoration: none; padding: 7px 0; } .hubcol a:hover { color: #c65a2e; } .links-hub-foot { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; } .links-hub-foot a { display: inline-flex; align-items: center; min-height: 38px; padding: 8px 14px; border-radius: 999px; text-decoration: none; font-weight: 800; color: #1c1d20; background: rgba(20,21,26,.04); border: 1px solid rgba(28,29,32,.08); } .links-hub-foot a:hover { border-color: rgba(198,90,46,.24); color: #c65a2e; } @media (max-width: 1180px){ .experience-grid--4 {  grid-template-columns: repeat(2, minmax(0,1fr)); }  .hubgrid--premium {  grid-template-columns: repeat(2, minmax(0,1fr)); } } @media (max-width: 740px){ .btk-landing-links {  padding-top: 14px; }  .experience-grid--4, .hubgrid--premium {  grid-template-columns: 1fr; }  .experience-card h3 {  font-size: 24px; }  .links-hub-discreet summary {  padding: 14px 14px; }  .links-hub-body {  padding: 0 14px 14px; } }

/* V35 — EVJF card, targeted links strip, FAQ refresh */.other-experiences-strip { margin-top: 16px; padding: 16px 18px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(252,248,242,.72) 100%); border: 1px solid rgba(28,29,32,.08); box-shadow: 0 12px 26px rgba(0,0,0,.05); } .other-experiences-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; flex-wrap: wrap; } .other-experiences-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; color: rgba(28,29,32,.58); } .other-experiences-kicker::before { content: ""; width: 10px; height: 10px; border-radius: 50%; flex: 0 0 10px; background: rgba(194,164,115,.92); box-shadow: 0 0 0 6px rgba(194,164,115,.12); animation: signaturePulse 2.4s ease-in-out infinite; } .other-experiences-head p { margin: 0; max-width: 640px; color: rgba(28,29,32,.70); line-height: 1.55; } .other-experiences-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; } .other-experiences-pills a { display: inline-flex; align-items: center; min-height: 40px; padding: 9px 14px; border-radius: 999px; text-decoration: none; font-weight: 800; color: #1c1d20; background: rgba(20,21,26,.04); border: 1px solid rgba(28,29,32,.08); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease; } .other-experiences-pills a:hover, .other-experiences-pills a:focus-visible { transform: translateY(-2px); border-color: rgba(198,90,46,.22); color: #c65a2e; box-shadow: 0 10px 18px rgba(0,0,0,.06); } #faq { padding-top: 26px; } #faq .faq-head { max-width: 760px; } #faq .faq-head .section-title { margin-bottom: 10px; } #faq .faq-list { margin-top: 18px; display: grid; gap: 12px; } #faq .faq-list details { border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(252,248,242,.90) 100%); border: 1px solid rgba(28,29,32,.08); box-shadow: 0 10px 22px rgba(0,0,0,.04); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; } #faq .faq-list details:hover, #faq .faq-list details:has(summary:focus-visible) { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.05); border-color: rgba(194,164,115,.22); } #faq .faq-list summary { list-style: none; cursor: pointer; position: relative; display: flex; align-items: center; gap: 12px; min-height: 68px; padding: 16px 54px 16px 18px; font-weight: 900; color: #1c1d20; } #faq .faq-list summary::-webkit-details-marker { display: none; } #faq .faq-list summary::before { content: ""; width: 10px; height: 10px; border-radius: 50%; flex: 0 0 10px; background: rgba(194,164,115,.92); box-shadow: 0 0 0 6px rgba(194,164,115,.12); transition: transform .22s ease, box-shadow .22s ease; } #faq .faq-list summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; font-size: 18px; font-weight: 500; color: rgba(28,29,32,.62); background: rgba(20,21,26,.04); border: 1px solid rgba(28,29,32,.08); transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease; } #faq .faq-list details[open] summary::before, #faq .faq-list details:hover summary::before { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(194,164,115,.14), 0 0 18px rgba(194,164,115,.14); } #faq .faq-list details[open] summary::after { content: "–"; color: #c65a2e; border-color: rgba(198,90,46,.18); background: rgba(198,90,46,.08); } #faq .faq-list p { margin: 0; padding: 0 18px 18px 40px; color: rgba(28,29,32,.74); line-height: 1.62; } @media (max-width: 900px){ .other-experiences-head {  display: block; }  .other-experiences-head p {  margin-top: 8px; } } @media (max-width: 720px){ .other-experiences-strip {  padding: 14px;  border-radius: 18px; }  #faq .faq-list summary {  min-height: 62px;  padding: 14px 46px 14px 14px;  font-size: 15px; }  #faq .faq-list p {  padding: 0 14px 16px 34px;  font-size: 14px; } }

/* V36 — ajustements structurels demandés *//* 1) Badge après le hero *//* 2) Timeline + photo de droite alignées */.style-timeline-layout { align-items: stretch; } .style-timeline-layout .style-timeline { display: grid; align-content: stretch; } .style-timeline-media--portrait { aspect-ratio: auto; align-self: stretch; min-height: 100%; } .style-timeline-media--portrait img { height: 100%; min-height: 100%; object-fit: cover; } @media (max-width: 980px){ .style-timeline-media--portrait {  aspect-ratio: 16 / 10;  min-height: 0; }  .style-timeline-media--portrait img {  height: 100%;  min-height: 0;  object-position: center 42%; } } /* 3) Container image suivant : fond contrasté uni + traits verticaux */.btk-story-image { padding: 24px 0 18px; background: #EDE2D1; } .btk-story-image .wrap { position: relative; max-width: 1220px; padding-inline: 72px; } .btk-story-image .wrap::before, .btk-story-image .wrap::after { content: ""; position: absolute; top: 48px; bottom: 48px; width: 1px; background: rgba(28,29,32,.14); box-shadow: 0 0 0 1px rgba(255,255,255,.18); pointer-events: none; } .btk-story-image .wrap::before { left: 28px; } .btk-story-image .wrap::after { right: 28px; } .story-visual-card { background: #FFF9F1; box-shadow: 0 18px 38px rgba(0,0,0,.12); } .story-visual-frame { background: transparent; } .story-visual-caption { background: #FFF9F1; border-top: 1px solid rgba(28,29,32,.08); } @media (max-width: 820px){ .btk-story-image .wrap {  padding-inline: 28px; }  .btk-story-image .wrap::before, .btk-story-image .wrap::after {  top: 32px;  bottom: 32px; }  .btk-story-image .wrap::before {  left: 10px; }  .btk-story-image .wrap::after {  right: 10px; } } @media (max-width: 560px){ .btk-story-image .wrap {  padding-inline: 16px; }  .btk-story-image .wrap::before, .btk-story-image .wrap::after {  display: none; } } /* 4) Interlude après FAQ : -40% environ */section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full .interlude-band--full { min-height: 248px !important; } section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full .interlude-band--full > .wrap { padding-top: 30px; padding-bottom: 30px; } .btk-interlude-image .interlude-quote { max-width: 24ch; } @media (max-width: 980px){ section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full .interlude-band--full {  min-height: 210px !important; }  section.section-bleed.bleed-interlude.btk-interlude-image.btk-interlude-full .interlude-band--full > .wrap {  padding-top: 24px;  padding-bottom: 24px; } }

/* V36.4 — alignements conservés, encadrement latéral supprimé */.style-timeline-layout { grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); gap: 34px; align-items: stretch; } .style-timeline-layout .style-timeline { display: grid; align-content: stretch; gap: 18px; height: 100%; } .style-timeline, .style-timeline-media, .style-timeline-media--portrait, .story-visual-card { margin: 0; } .style-timeline-media--portrait { aspect-ratio: auto; align-self: stretch; min-height: 100%; height: 100%; } .style-timeline-media--portrait img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; object-position: 54% 50%; } .btk-story-image { padding: 28px 0 24px; background: #E9DECD; } .btk-story-image .wrap { max-width: 1240px; padding-inline: 40px; } .story-visual-card { position: relative; z-index: 1; width: min(100%, 1080px); max-width: 1080px; background: #FFF9F1; border: 1px solid rgba(28,29,32,.08); box-shadow: 0 24px 52px rgba(53,43,30,.12); } .story-visual-frame { background: transparent; } .story-visual-caption { background: #FFF9F1; border-top: 1px solid rgba(28,29,32,.08); padding: 20px 22px 24px; } @media (max-width: 980px){ .style-timeline-layout {  grid-template-columns: 1fr;  gap: 22px; }  .style-timeline-media--portrait {  aspect-ratio: 16 / 10;  min-height: 0;  height: auto; }  .style-timeline-media--portrait img {  height: 100%;  min-height: 0;  object-position: center 42%; }  .btk-story-image .wrap {  padding-inline: 24px; }  .story-visual-card {  width: 100%;  max-width: none; } } @media (max-width: 720px){ .btk-story-image .wrap {  padding-inline: 18px; } }

/* V36.8 — bandeau premium 4 photos horizontal, hauteur alignée sur l’interlude */.btk-story-image { padding: 18px 0 18px; background: #E9DECD; } .btk-story-image .wrap { max-width: 1240px; padding-inline: 40px; } .story-visual-strip { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; align-items: stretch; min-height: 248px; } .story-visual-tile { position: relative; margin: 0; height: 268px; overflow: hidden; border-radius: 24px; background: #FFF9F1; border: 1px solid rgba(28,29,32,.10); box-shadow: 0 18px 38px rgba(53,43,30,.10); isolation: isolate; } .story-visual-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(20,21,26,.06) 52%, rgba(20,21,26,.16) 100%); pointer-events: none; } .story-visual-tile img { width: 100%; height: 100%; display: block; object-fit: cover; } .story-visual-tile:nth-child(1) img { object-position: center 54%; } .story-visual-tile:nth-child(2) img { object-position: center 42%; } .story-visual-tile:nth-child(3) img { object-position: center 48%; } .story-visual-tile:nth-child(3) img { object-position: center 50%; } @media (max-width: 980px){ .btk-story-image .wrap {  padding-inline: 24px; }  .story-visual-strip {  grid-template-columns: repeat(2,minmax(0,1fr));  min-height: unset; }  .story-visual-tile {  height: 210px;  border-radius: 20px; } } @media (max-width: 640px){ .btk-story-image {  padding: 14px 0 14px; }  .btk-story-image .wrap {  padding-inline: 18px; }  .story-visual-strip {  grid-template-columns: 1fr;  gap: 10px; }  .story-visual-tile {  height: 190px;  border-radius: 18px; } }

:root { --joel-vivid-orange: #ff6a00; } header .brand { gap: 10px !important; } header .brand > span:last-child { font-family: inherit !important; font-size: 140% !important; font-weight: 780 !important; display: inline-block !important; margin-left: 85px !important; line-height: 1 !important; color: var(--joel-vivid-orange) !important; letter-spacing: .028em !important; transform: translateZ(0); } header .brand .dot { position: relative !important; width: 26px !important; height: 26px !important; border-radius: 999px !important; background: radial-gradient(circle at 35% 35%, #ff9a42 0%, #ff6a00 58%, #e25500 100%) !important; box-shadow: 0 0 0 10px rgba(255,106,0,.10),
    0 0 26px rgba(255,106,0,.22),
    0 8px 18px rgba(255,106,0,.18) !important; transform: translateZ(0); will-change: transform, box-shadow; animation: joel-dot-float-v39 5.2s cubic-bezier(.37,0,.23,1) infinite !important; } header .brand .dot::before, header .brand .dot::after { content: ""; position: absolute; inset: 50%; border-radius: 999px; pointer-events: none; transform: translate(-50%,-50%) scale(.82); } header .brand .dot::before { width: 100%; height: 100%; box-shadow: 0 0 0 0 rgba(255,106,0,.34); animation: joel-halo-ring-v39 5.2s cubic-bezier(.37,0,.23,1) infinite !important; } header .brand .dot::after { width: 100%; height: 100%; box-shadow: 0 0 0 0 rgba(255,140,56,.18); animation: joel-halo-ring-v39 5.2s cubic-bezier(.37,0,.23,1) 1.6s infinite !important; } header .navlinks a { transition: color .26s ease, text-shadow .26s ease, opacity .26s ease; } header .navlinks a:hover, header .navlinks a:focus-visible { color: var(--joel-vivid-orange) !important; text-shadow: 0 0 18px rgba(255,106,0,.16); } @keyframes joel-dot-float-v39{ 0%, 100% {  transform: translateY(0) scale(1);  box-shadow: 0 0 0 10px rgba(255,106,0,.10),
      0 0 26px rgba(255,106,0,.22),
      0 8px 18px rgba(255,106,0,.18); }  50% {  transform: translateY(-1px) scale(1.035);  box-shadow: 0 0 0 12px rgba(255,106,0,.08),
      0 0 32px rgba(255,106,0,.28),
      0 10px 22px rgba(255,106,0,.22); } } @keyframes joel-halo-ring-v39{ 0% {  opacity: 0;  transform: translate(-50%,-50%) scale(.84);  box-shadow: 0 0 0 0 rgba(255,106,0,0); }  8% {  opacity: .68;  transform: translate(-50%,-50%) scale(.92);  box-shadow: 0 0 0 4px rgba(255,106,0,.22); }  42% {  opacity: .26;  transform: translate(-50%,-50%) scale(1.72);  box-shadow: 0 0 0 14px rgba(255,106,0,.10); }  70% {  opacity: 0;  transform: translate(-50%,-50%) scale(2.18);  box-shadow: 0 0 0 22px rgba(255,106,0,0); }  100% {  opacity: 0;  transform: translate(-50%,-50%) scale(2.18);  box-shadow: 0 0 0 22px rgba(255,106,0,0); } } @media (prefers-reduced-motion: reduce){ header .brand .dot, header .brand .dot::before, header .brand .dot::after {  animation: none !important; } }

/* V45.1 — moments + avis intégrés dans la landing existante */.btk-moments, .btk-social-proof { padding: 26px 0 8px; } .btk-moments .wrap, .btk-social-proof .wrap { max-width: 1180px; } .moments-head, .social-proof-head { max-width: 760px; margin-bottom: 18px; } /* Moments */.moments-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr 1fr 1fr; gap: 12px; } .moment-card { position: relative; overflow: hidden; min-height: 220px; border-radius: 22px; background: #ece7de; box-shadow: 0 12px 26px rgba(0,0,0,.05); isolation: isolate; } .moment-card img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.001); transition: transform .45s ease, filter .45s ease; } .moment-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,21,26,0) 26%, rgba(20,21,26,.56) 100%); z-index: 1; pointer-events: none; } .moment-card:hover img, .moment-card:focus-within img { transform: scale(1.05); filter: saturate(1.02) contrast(1.02); } .moment-meta { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: #fff; } .moment-kicker { display: inline-flex; align-items: center; min-height: 26px; padding: 5px 9px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(8px); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; } .moment-title { margin: 10px 0 0; font-size: 18px; line-height: 1.18; font-weight: 900; text-shadow: 0 4px 20px rgba(0,0,0,.3); } .moment-card.tall { min-height: 280px; } .moment-foot, .social-proof-foot { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; } .moment-foot a, .social-proof-foot a { display: inline-flex; align-items: center; min-height: 40px; padding: 9px 14px; border-radius: 999px; text-decoration: none; font-weight: 800; } /* Avis */.social-proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; } .social-proof-card { position: relative; overflow: hidden; padding: 22px 20px 18px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(252,248,242,.92) 100%); border: 1px solid rgba(28,29,32,.08); box-shadow: 0 12px 26px rgba(0,0,0,.05); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; } .social-proof-card::before { content: ""; position: absolute; top: -42px; right: -28px; width: 140px; height: 140px; border-radius: 999px; background: radial-gradient(circle, rgba(198,90,46,.10) 0%, rgba(198,90,46,0) 72%); pointer-events: none; } .social-proof-card:hover, .social-proof-card:focus-within { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(0,0,0,.08), 0 8px 18px rgba(198,90,46,.08); border-color: rgba(198,90,46,.18); } .social-proof-stars { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: #8B6B3D; } .social-proof-stars::before { content: "★★★★★"; letter-spacing: .12em; color: #C65A2E; } .social-proof-card p { margin: 0; color: rgba(28,29,32,.78); line-height: 1.62; } .social-proof-author { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(28,29,32,.08); } .social-proof-author strong { display: block; color: #1c1d20; } .social-proof-author span { color: rgba(28,29,32,.62); font-size: 13px; } .social-proof-chip { display: inline-flex; align-items: center; min-height: 32px; padding: 6px 10px; border-radius: 999px; background: rgba(20,21,26,.04); border: 1px solid rgba(28,29,32,.08); color: rgba(28,29,32,.68); font-size: 12px; font-weight: 800; } @media (max-width: 980px){ .moments-grid {  grid-template-columns: 1fr 1fr; }  .moment-card.tall {  min-height: 220px; }  .social-proof-grid {  grid-template-columns: 1fr; } } @media (max-width: 640px){ .moments-grid {  grid-template-columns: 1fr; } }

/* V46 — simple premium TripAdvisor slider */.btk-tripadvisor { padding: 26px 0 8px; } .btk-tripadvisor .wrap { max-width: 1180px; } .trip-head { max-width: 760px; margin-bottom: 18px; } .trip-title-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; } .trip-ta-pill { display: inline-flex; align-items: center; gap: 8px; min-height: 30px; padding: 6px 12px; border-radius: 999px; background: rgba(52,171,77,.10); border: 1px solid rgba(52,171,77,.18); color: #23863A; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; } .trip-ta-pill::before { content: "●"; color: #34A853; font-size: 12px; } .trip-slider { position: relative; } .trip-viewport { overflow: hidden; } .trip-track { display: flex; transition: transform .42s ease; will-change: transform; } .trip-slide { min-width: 100%; box-sizing: border-box; } .trip-card { position: relative; overflow: hidden; padding: 24px 22px 18px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(252,248,242,.93) 100%); border: 1px solid rgba(28,29,32,.08); box-shadow: 0 12px 26px rgba(0,0,0,.05); } .trip-card::before { content: ""; position: absolute; top: -42px; right: -28px; width: 140px; height: 140px; border-radius: 999px; background: radial-gradient(circle, rgba(52,171,77,.10) 0%, rgba(52,171,77,0) 72%); pointer-events: none; } .trip-stars { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: #7F8A3E; } .trip-stars::before { content: "★★★★★"; letter-spacing: .12em; color: #C65A2E; } .trip-card p { margin: 0; color: rgba(28,29,32,.78); line-height: 1.68; font-size: 17px; } .trip-author { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(28,29,32,.08); } .trip-author strong { display: block; color: #1c1d20; } .trip-author span { color: rgba(28,29,32,.62); font-size: 13px; } .trip-chip { display: inline-flex; align-items: center; min-height: 32px; padding: 6px 10px; border-radius: 999px; background: rgba(52,171,77,.08); border: 1px solid rgba(52,171,77,.16); color: #23863A; font-size: 12px; font-weight: 800; } .trip-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; } .trip-dots { display: flex; align-items: center; gap: 8px; } .trip-dot { width: 9px; height: 9px; border-radius: 999px; border: 0; background: rgba(20,21,26,.14); cursor: pointer; transition: transform .2s ease, background .2s ease; } .trip-dot.is-active { background: #34A853; transform: scale(1.2); } .trip-arrows { display: flex; gap: 8px; } .trip-arrow { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(28,29,32,.08); background: #fff; color: #1c1d20; cursor: pointer; box-shadow: 0 8px 18px rgba(0,0,0,.05); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; } .trip-arrow:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(0,0,0,.08); border-color: rgba(52,171,77,.22); } .trip-foot { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; } .trip-foot a { display: inline-flex; align-items: center; min-height: 40px; padding: 9px 14px; border-radius: 999px; text-decoration: none; font-weight: 800; } @media (max-width: 980px){ .trip-card p {  font-size: 16px; } }

.trip-card p { font-size: 16px; line-height: 1.72; } .trip-card { min-height: 320px; } @media (max-width:980px){ .trip-card {  min-height: 360px; } } @media (max-width:640px){ .trip-card {  min-height: 420px; } }

.brief-item--cta { display: block; text-decoration: none; color: #1c1d20; cursor: pointer; } .brief-item--cta .brief-sub { color: #8B6B3D; font-weight: 800; } .brief-item--cta:hover, .brief-item--cta:focus-visible { transform: translateY(-4px); border-color: rgba(198,90,46,.22); box-shadow: 0 18px 30px rgba(0,0,0,.08), 0 6px 18px rgba(194,164,115,.08); } .brief-item--cta:focus-visible { outline: 3px solid rgba(198,90,46,.18); outline-offset: 3px; } html { scroll-behavior: smooth; }

.sticky-cta { background: linear-gradient(135deg, var(--btk-orange-vif) 0%, #FF8A31 100%) !important; border-color: rgba(255,122,26,.82) !important; color: #fff !important; box-shadow: 0 12px 26px rgba(255,122,26,.24), 0 6px 14px rgba(0,0,0,.12) !important; } .sticky-cta:hover { background: linear-gradient(135deg, var(--btk-orange-vif-hover) 0%, #FF7E28 100%) !important; border-color: rgba(231,104,15,.92) !important; }

/* Signature section – balanced photo crop + vertical rhythm on left column */#signature .cinema-grid { align-items: start; } #signature .cinema-grid .media { height: 488px; overflow: hidden; border-radius: 20px; } #signature .cinema-grid .media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; } /* keep text column compact with a bit more vertical breathing room */#signature .cinema-grid .points { display: block; } #signature .cinema-grid .point { margin-bottom: 14px; } #signature .signature-proofline { margin-top: 18px; } #signature .signature-cta-only { margin-top: 22px; } @media (max-width: 980px){ #signature .cinema-grid .media {  height: 420px; }  #signature .cinema-grid .point {  margin-bottom: 12px; } }

.experience-card--featured .experience-card-media { margin-bottom: 14px; }

#explorer-style .experience-card-meta { display: none !important; }

/* Static deployment patch */
.footer-links { display:flex; flex-wrap:wrap; gap:14px; }
.legal-shell { max-width: 980px; margin: 0 auto; padding: 48px 20px 80px; }
.legal-shell h1 { margin-bottom: 12px; }
.legal-shell .card { margin-top: 18px; }
.legal-shell .note { font-size: 0.95rem; opacity: 0.8; }
.lang-switch {
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin-left:16px;
  padding:4px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(28,29,32,.10);
  box-shadow:0 12px 28px rgba(28,29,32,.08), 0 2px 10px rgba(198,90,46,.10);
  backdrop-filter:saturate(180%) blur(10px);
}
.lang-switch__link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:48px;
  padding:9px 14px;
  border-radius:999px;
  color:#1c1d20;
  text-decoration:none;
  font-size:.86rem;
  font-weight:700;
  letter-spacing:.04em;
  transition:background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  opacity:.88;
}
.lang-switch__link:hover,
.lang-switch__link:focus-visible {
  opacity:1;
  transform:translateY(-1px);
}
.lang-switch__link.is-active,
.lang-switch__link[aria-current="page"] {
  color:#fff;
  background:linear-gradient(135deg, #c65a2e 0%, #df7a4a 100%);
  box-shadow:0 10px 22px rgba(198,90,46,.26);
  opacity:1;
}
@media (max-width: 980px) {
  .actions {
    gap:8px;
  }
  .actions .btn-ghost {
    display:none;
  }
  .lang-switch {
    margin-left:0;
  }
  .lang-switch__link {
    min-width:44px;
    padding:8px 12px;
    font-size:.82rem;
  }
}
@media (max-width: 680px) {
  .nav {
    gap:10px;
  }
  .brand span:last-child {
    margin-left:52px !important;
    font-size:1.18em !important;
  }
  .actions {
    flex-shrink:0;
  }
  .actions .btn-primary {
    padding:10px 12px;
    font-size:.88rem;
  }
}
@media (max-width: 560px) {
  .actions .btn-primary {
    display:none;
  }
}

/* V68 — rééquilibrage timeline / photo */#experience-style .style-timeline-layout { grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr); gap: 34px; align-items: stretch; } #experience-style .style-timeline { height: 100%; min-height: 560px; display: grid; grid-template-rows: repeat(3, 1fr); gap: 18px; align-content: stretch; } #experience-style .style-step { min-height: 0; height: 100%; align-items: stretch; } #experience-style .style-step-card { height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 22px 22px; } #experience-style .style-step-card h3 { margin: 0 0 8px; } #experience-style .style-step-card p { margin: 0; } #experience-style .style-timeline-media--portrait { height: 100%; min-height: 560px; display: flex; } #experience-style .style-timeline-media--portrait img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: center 50%; } @media (max-width: 980px){ #experience-style .style-timeline-layout {  grid-template-columns: 1fr;  gap: 22px; }  #experience-style .style-timeline {  min-height: 0;  grid-template-rows: none;  height: auto; }  #experience-style .style-step {  height: auto; }  #experience-style .style-step-card {  height: auto; }  #experience-style .style-timeline-media--portrait {  min-height: 360px;  height: auto; }  #experience-style .style-timeline-media--portrait img {  min-height: 360px;  height: 100%;  object-position: center 44%; } }

#reservation .formbox .field.full { grid-column: 1 / -1; } #reservation [data-btk-form-single] .fieldgrid { margin-bottom: 14px; } #reservation [data-btk-form-single] .step-actions { display: flex; justify-content: flex-end; }

.btk-maillage-direct { padding: 10px 0 34px; } .maillage-groups { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; } .maillage-group { padding: 18px; border-radius: 20px; border: 1px solid rgba(25,28,34,.08); background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.62) 100%); box-shadow: 0 12px 28px rgba(0,0,0,.05); backdrop-filter: blur(10px); } .maillage-group h3 { margin: 0 0 12px; font-size: 16px; } .maillage-group p { margin: 0 0 14px; color: rgba(25,28,34,.72); } .maillage-rows { display: flex; flex-direction: column; gap: 10px; } .maillage-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; align-items: center; } .maillage-pill, .maillage-price { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 10px 14px; border-radius: 999px; text-decoration: none; font-size: 13px; line-height: 1; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease; } .maillage-pill { color: #191c22; background: rgba(255,255,255,.92); border: 1px solid rgba(25,28,34,.1); box-shadow: 0 8px 18px rgba(0,0,0,.05); justify-content: flex-start; } .maillage-price { white-space: nowrap; color: #fff; background: linear-gradient(135deg,#d37246 0%, #c65a2e 100%); border: 1px solid rgba(198,90,46,.24); box-shadow: 0 10px 20px rgba(198,90,46,.22); font-weight: 700; } .maillage-pill:hover, .maillage-price:hover { transform: translateY(-1px); } .maillage-pill:hover { box-shadow: 0 12px 24px rgba(0,0,0,.08); border-color: rgba(198,90,46,.38); } .maillage-price:hover { box-shadow: 0 14px 24px rgba(198,90,46,.28); } @media (max-width: 980px){ .maillage-groups {  grid-template-columns: 1fr; } } @media (max-width: 640px){ .maillage-row {  grid-template-columns: 1fr; }  .maillage-price {  justify-content: center; } }

.maillage-pro-bridge { margin-top: 16px; padding: 16px 18px; border-radius: 20px; border: 1px solid rgba(25,28,34,.08); background: linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(252,248,242,.70) 100%); box-shadow: 0 12px 28px rgba(0,0,0,.05); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; } .maillage-pro-bridge-copy { margin: 0; color: rgba(25,28,34,.74); font-size: 14px; line-height: 1.5; font-weight: 600; } .maillage-pro-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 16px; border-radius: 999px; text-decoration: none; font-size: 13px; line-height: 1; font-weight: 700; color: #fff; background: linear-gradient(135deg,#d37246 0%, #c65a2e 100%); border: 1px solid rgba(198,90,46,.24); box-shadow: 0 10px 20px rgba(198,90,46,.22); transition: transform .18s ease, box-shadow .18s ease; } .maillage-pro-badge:hover, .maillage-pro-badge:focus-visible { transform: translateY(-1px); box-shadow: 0 14px 24px rgba(198,90,46,.28); } @media (max-width: 640px){ .maillage-pro-bridge {  padding: 14px; }  .maillage-pro-badge {  width: 100%; } }

#explorer-style .experience-card-media { position: relative; } #explorer-style .experience-card-badge { position: absolute; top: 14px; right: 14px; z-index: 2; display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 9px 14px; border-radius: 999px; background: rgba(255,248,241,.78); border: 1px solid rgba(255,255,255,.52); box-shadow: 0 10px 24px rgba(0,0,0,.12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #1c1d20; font-size: 13px; font-weight: 900; letter-spacing: .01em; } #explorer-style .experience-card--featured .experience-card-badge { background: rgba(255,243,232,.82); } #signature .proof-pill--link { text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease; } #signature .proof-pill--cta { background: linear-gradient(135deg, var(--btk-terracotta) 0%, #D96A3B 100%); border-color: rgba(198,90,46,.78); color: #fff; box-shadow: 0 10px 24px var(--btk-terracotta-shadow), 0 4px 12px rgba(0,0,0,.10); } #signature .proof-pill--cta:hover, #signature .proof-pill--cta:focus-visible { transform: translateY(-1px); background: linear-gradient(135deg, var(--btk-terracotta-hover) 0%, #C85B30 100%); border-color: rgba(182,80,39,.92); color: #fff; box-shadow: 0 14px 30px rgba(198,90,46,.24), 0 10px 18px rgba(0,0,0,.12); } #signature .proof-pill--link:not(.proof-pill--cta):hover, #signature .proof-pill--link:not(.proof-pill--cta):focus-visible { transform: translateY(-1px); background: rgba(255,255,255,.12); border-color: rgba(194,164,115,.34); } #experience-style { padding: 32px 0; } #experience-style .style-timeline-layout { gap: 22px; align-items: stretch; } #experience-style .style-timeline, #experience-style .style-timeline-media--portrait, #experience-style .style-timeline-media--portrait img { min-height: 280px; } #experience-style .style-timeline { grid-template-rows: repeat(3, minmax(0,1fr)); gap: 10px; } #experience-style .style-step { gap: 12px; } #experience-style .style-step-dot { margin-top: 16px; } #experience-style .style-step-card { padding: 12px 14px; border-radius: 18px; } #experience-style .style-step-kicker { margin-bottom: 4px; font-size: 10px; } #experience-style .style-step-card h3 { margin: 0 0 4px; font-size: clamp(18px,1.55vw,22px); line-height: 1.06; } #experience-style .style-step-card p { line-height: 1.34; font-size: 14px; } @media (max-width: 980px){ #explorer-style .experience-card-badge {  top: 12px;  right: 12px;  min-height: 36px;  padding: 8px 12px;  font-size: 12px; }  #experience-style {  padding: 32px 0; }  #experience-style .style-timeline, #experience-style .style-timeline-media--portrait, #experience-style .style-timeline-media--portrait img {  min-height: 0; }  #experience-style .style-timeline-media--portrait {  min-height: 240px; }  #experience-style .style-timeline-media--portrait img {  min-height: 240px; }  #experience-style .style-step-card {  padding: 14px 15px; } }

#signature .proof-pill--cta { background: linear-gradient(135deg, var(--btk-terracotta) 0%, #D96A3B 100%) !important; border-color: rgba(198,90,46,.78) !important; color: #fff !important; box-shadow: 0 10px 24px var(--btk-terracotta-shadow), 0 4px 12px rgba(0,0,0,.10) !important; } #signature .proof-pill--cta:hover, #signature .proof-pill--cta:focus-visible { transform: translateY(-2px); background: linear-gradient(135deg, var(--btk-terracotta-hover) 0%, #C85B30 100%) !important; border-color: rgba(182,80,39,.92) !important; color: #fff !important; box-shadow: 0 14px 30px rgba(198,90,46,.24), 0 10px 18px rgba(0,0,0,.12) !important; } /* Recalage visuel : bloc réduit d'environ 35 %, plus premium et plus lisible */#experience-style { padding: 24px 0 26px !important; } #experience-style .wrap { max-width: 1120px; } #experience-style .section-title { margin: 0 0 10px !important; font-size: clamp(28px,2.35vw,38px) !important; line-height: 1.04 !important; } #experience-style .section-sub { margin: 0 0 16px !important; font-size: 16px !important; line-height: 1.42 !important; max-width: 760px !important; } #experience-style .style-timeline-layout { margin-top: 14px !important; gap: 20px !important; grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr) !important; align-items: stretch !important; } #experience-style .style-timeline { margin-top: 0 !important; min-height: 360px !important; height: 360px !important; grid-template-rows: repeat(3, 1fr) !important; gap: 12px !important; align-content: stretch !important; } #experience-style .style-step { height: 100% !important; min-height: 0 !important; gap: 12px !important; } #experience-style .style-step-dot { margin-top: 18px !important; } #experience-style .style-step-card { height: 100% !important; padding: 14px 16px !important; border-radius: 18px !important; display: flex; flex-direction: column; justify-content: center; } #experience-style .style-step-card h3 { margin: 0 0 5px !important; font-size: clamp(18px,1.55vw,24px) !important; line-height: 1.08 !important; } #experience-style .style-step-card p { margin: 0 !important; font-size: 14px !important; line-height: 1.34 !important; } #experience-style .style-timeline-media--portrait { min-height: 360px !important; height: 360px !important; border-radius: 24px !important; } #experience-style .style-timeline-media--portrait img { min-height: 360px !important; height: 360px !important; object-fit: cover; object-position: center 48% !important; } #experience-style .style-timeline-caption { left: 14px; right: 14px; bottom: 14px; padding: 12px 14px; } @media (max-width: 980px){ #experience-style {  padding: 22px 0 24px !important; }  #experience-style .section-sub {  margin-bottom: 12px !important; }  #experience-style .style-timeline-layout {  grid-template-columns: 1fr !important;  gap: 14px !important;  margin-top: 12px !important; }  #experience-style .style-timeline {  min-height: auto !important;  height: auto !important;  grid-template-rows: none !important;  gap: 10px !important; }  #experience-style .style-step, #experience-style .style-step-card {  height: auto !important; }  #experience-style .style-step-card {  padding: 14px 15px !important; }  #experience-style .style-timeline-media--portrait, #experience-style .style-timeline-media--portrait img {  min-height: 240px !important;  height: 240px !important; } }

#signature .cinema-grid { grid-template-columns: minmax(0,.98fr) minmax(0,1.02fr); gap: 20px; align-items: stretch !important; } #signature .cinema-grid .media { height: auto !important; min-height: 0 !important; display: flex; } #signature .cinema-grid .media img { flex: 1 1 auto; width: 100%; height: 100% !important; min-height: 100%; object-fit: cover; object-position: center 22%; display: block; } #signature .cinema-grid .points { display: flex !important; flex-direction: column; height: 100%; } #signature .cinema-grid .point { margin-bottom: 12px !important; } #signature .signature-divider { margin: 8px 0 12px !important; } #signature .signature-proofline { margin-top: 0 !important; } #signature .signature-proofline--four { display: grid !important; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; width: 100%; } #signature .signature-proofline--four .proof-pill { width: 100%; min-height: 54px; padding: 13px 14px; border-radius: 16px; justify-content: center; text-align: center; font-size: 13px; font-weight: 800; line-height: 1.25; } #signature .signature-proofline--four .proof-pill--cta, #signature .signature-proofline--four .proof-pill--cta-main { background: linear-gradient(135deg, var(--btk-terracotta) 0%, #D96A3B 100%) !important; border-color: rgba(198,90,46,.78) !important; color: #fff !important; box-shadow: 0 10px 24px var(--btk-terracotta-shadow), 0 4px 12px rgba(0,0,0,.10) !important; } #signature .signature-proofline--four .proof-pill--cta:hover, #signature .signature-proofline--four .proof-pill--cta:focus-visible, #signature .signature-proofline--four .proof-pill--cta-main:hover, #signature .signature-proofline--four .proof-pill--cta-main:focus-visible { transform: translateY(-2px); background: linear-gradient(135deg, var(--btk-terracotta-hover) 0%, #C85B30 100%) !important; border-color: rgba(182,80,39,.92) !important; color: #fff !important; box-shadow: 0 14px 30px rgba(198,90,46,.24), 0 10px 18px rgba(0,0,0,.12) !important; } #signature .signature-proofline--four .proof-pill--link:not(.proof-pill--cta):not(.proof-pill--cta-main):hover, #signature .signature-proofline--four .proof-pill--link:not(.proof-pill--cta):not(.proof-pill--cta-main):focus-visible { transform: translateY(-1px); background: rgba(255,255,255,.12); border-color: rgba(194,164,115,.34); } #signature .signature-cta-only { display: none !important; } @media (max-width: 1100px){ #signature .signature-proofline--four {  grid-template-columns: repeat(2,minmax(0,1fr)); } } @media (max-width: 980px){ #signature .cinema-grid {  grid-template-columns: 1fr; }  #signature .cinema-grid .media {  min-height: 360px !important; } } @media (max-width: 640px){ #signature .signature-proofline--four {  grid-template-columns: 1fr; } }

@media (min-width: 981px){ #signature .cinema-grid {  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr) !important;  gap: 18px !important;  align-items: stretch !important; }  #signature .cinema-grid .media {  display: block !important;  overflow: hidden !important;  height: 488px !important;  min-height: 488px !important;  max-height: 488px !important;  border-radius: 22px !important; }  #signature .cinema-grid .media img {  display: block !important;  width: 100% !important;  height: 488px !important;  min-height: 488px !important;  max-height: 488px !important;  object-fit: cover !important;  object-position: center 18% !important; }  #signature .cinema-grid .points {  display: grid !important;  grid-template-rows: repeat(3, minmax(0,1fr)) auto !important;  align-content: stretch !important;  gap: 10px !important;  overflow: hidden !important;  height: 488px !important;  min-height: 488px !important;  max-height: 488px !important; }  #signature .cinema-grid .point {  margin: 0 !important;  padding: 13px 18px !important;  border-radius: 20px !important;  min-height: 0 !important;  display: flex !important;  align-items: flex-start !important; }  #signature .cinema-grid .point > div {  line-height: 1.42 !important; }  #signature .cinema-grid .point strong {  font-size: 15px !important; }  #signature .cinema-grid .point span[style] {  display: block !important;  margin-top: 4px !important;  font-size: 13px !important; }  #signature .signature-divider {  display: none !important; }  #signature .signature-proofline {  margin-top: 0 !important; }  #signature .signature-proofline--four {  display: grid !important;  grid-template-columns: repeat(4,minmax(0,1fr)) !important;  gap: 10px !important;  width: 100% !important;  align-items: stretch !important; }  #signature .signature-proofline--four .proof-pill {  display: flex !important;  align-items: center !important;  justify-content: center !important;  width: 100% !important;  min-height: 40px !important;  height: 40px !important;  padding: 0 12px !important;  border-radius: 999px !important;  font-size: 13px !important;  line-height: 1.1 !important;  white-space: nowrap !important;  text-align: center !important; }  #signature .signature-proofline--four .proof-pill--cta, #signature .signature-proofline--four .proof-pill--cta-main {  background: linear-gradient(135deg, var(--btk-terracotta) 0%, #D96A3B 100%) !important;  border-color: rgba(198,90,46,.78) !important;  color: #fff !important;  box-shadow: none !important;  filter: none !important; }  #signature .signature-proofline--four .proof-pill--cta:hover, #signature .signature-proofline--four .proof-pill--cta:focus-visible, #signature .signature-proofline--four .proof-pill--cta-main:hover, #signature .signature-proofline--four .proof-pill--cta-main:focus-visible {  transform: none !important;  background: linear-gradient(135deg, var(--btk-terracotta-hover) 0%, #C85B30 100%) !important;  border-color: rgba(182,80,39,.92) !important;  color: #fff !important;  box-shadow: none !important;  filter: none !important; } } @media (max-width: 980px){ #signature .cinema-grid {  grid-template-columns: 1fr !important; }  #signature .cinema-grid .media {  min-height: 360px !important; }  #signature .signature-divider {  display: none !important; } }

@media (min-width: 981px){ #signature .cinema-grid {  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr) !important;  gap: 18px !important;  align-items: stretch !important; }  #signature .cinema-grid .media, #signature .cinema-grid .media img {  height: 488px !important;  min-height: 488px !important;  max-height: 488px !important; }  #signature .cinema-grid .points {  display: flex !important;  flex-direction: column !important;  gap: 12px !important;  height: 488px !important;  min-height: 488px !important;  max-height: 488px !important; }  #signature .cinema-grid .point {  flex: 1 1 0 !important;  min-height: 0 !important;  margin: 0 !important;  padding: 14px 16px !important;  border-radius: 20px !important;  display: flex !important;  align-items: flex-start !important;  gap: 12px !important; }  #signature .cinema-grid .point .mark {  margin-top: 6px !important; }  #signature .cinema-grid .point > div {  min-width: 0 !important; }  #signature .cinema-grid .point strong {  display: block !important;  font-size: 17px !important;  line-height: 1.2 !important;  font-weight: 800 !important; }  #signature .cinema-grid .point span[style] {  display: block !important;  margin-top: 9px !important;  font-size: 14px !important;  line-height: 1.42 !important;  opacity: .88 !important; }  #signature .signature-proofline {  margin-top: 0 !important;  padding-top: 0 !important;  border-top: none !important; }  #signature .signature-proofline--four {  display: grid !important;  grid-template-columns: minmax(0,.92fr) minmax(0,1.45fr) minmax(0,.95fr) !important;  grid-template-areas: "price ideal who"
      "cta cta cta" !important;  gap: 10px !important;  width: 100% !important;  align-items: stretch !important; }  #signature .signature-proofline--four .proof-pill {  min-width: 0 !important;  min-height: 40px !important;  height: 40px !important;  padding: 0 14px !important;  border-radius: 999px !important;  display: flex !important;  align-items: center !important;  justify-content: center !important;  box-sizing: border-box !important;  font-size: 13px !important;  line-height: 1 !important;  font-weight: 800 !important;  text-align: center !important;  white-space: nowrap !important; }  #signature .signature-proofline--four .proof-pill:nth-child(1) {  grid-area: price !important; }  #signature .signature-proofline--four .proof-pill:nth-child(2) {  grid-area: ideal !important; }  #signature .signature-proofline--four .proof-pill:nth-child(3) {  grid-area: who !important; }  #signature .signature-proofline--four .proof-pill:nth-child(4) {  grid-area: cta !important;  justify-self: start !important;  width: max-content !important;  min-width: 0 !important; }  #signature .signature-proofline--four .proof-pill--cta, #signature .signature-proofline--four .proof-pill--cta-main {  box-shadow: none !important;  filter: none !important; }  #signature .signature-proofline--four .proof-pill--cta-main:hover, #signature .signature-proofline--four .proof-pill--cta-main:focus-visible, #signature .signature-proofline--four .proof-pill--cta:hover, #signature .signature-proofline--four .proof-pill--cta:focus-visible {  transform: none !important;  box-shadow: none !important;  filter: none !important; } } @media (max-width: 980px){ #signature .signature-proofline--four {  display: grid !important;  grid-template-columns: 1fr 1fr !important;  gap: 10px !important; }  #signature .signature-proofline--four .proof-pill {  min-height: 40px !important;  height: 40px !important;  font-size: 12px !important;  white-space: nowrap !important; }  #signature .signature-proofline--four .proof-pill:nth-child(4) {  grid-column: 1 / -1 !important; } } @media (max-width: 640px){ #signature .signature-proofline--four {  grid-template-columns: 1fr !important; }  #signature .signature-proofline--four .proof-pill:nth-child(4) {  grid-column: auto !important; } }

@media (min-width: 981px){ #signature .cinema-grid {  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr) !important;  gap: 18px !important;  align-items: stretch !important; }  #signature .cinema-grid .media {  height: 488px !important;  min-height: 488px !important;  max-height: 488px !important;  border-radius: 24px !important;  overflow: hidden !important; }  #signature .cinema-grid .media img {  width: 100% !important;  height: 488px !important;  min-height: 488px !important;  max-height: 488px !important;  object-fit: cover !important;  object-position: center 18% !important;  display: block !important; }  #signature .cinema-grid .points {  display: grid !important;  grid-template-rows: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) auto !important;  gap: 12px !important;  height: 488px !important;  min-height: 488px !important;  max-height: 488px !important;  align-content: stretch !important; }  #signature .cinema-grid .point {  margin: 0 !important;  padding: 16px 20px !important;  border-radius: 22px !important;  min-height: 0 !important;  display: flex !important;  align-items: flex-start !important;  gap: 12px !important; }  #signature .cinema-grid .point .mark {  margin-top: 2px !important;  flex: 0 0 auto !important; }  #signature .cinema-grid .point > div {  line-height: 1.42 !important; }  #signature .cinema-grid .point strong {  display: block !important;  font-size: 16px !important;  line-height: 1.18 !important;  margin-bottom: 6px !important; }  #signature .cinema-grid .point span[style] {  display: block !important;  margin-top: 0 !important;  font-size: 14px !important;  line-height: 1.45 !important;  opacity: .88 !important; }  #signature .signature-proofline, #signature .signature-proofline--four {  margin-top: 0 !important; }  #signature .signature-proofline--four {  display: grid !important;  grid-template-columns: max-content max-content max-content !important;  grid-auto-rows: 40px !important;  gap: 10px 10px !important;  align-items: center !important;  justify-content: start !important;  width: 100% !important; }  #signature .signature-proofline--four .proof-pill {  width: auto !important;  min-width: 0 !important;  min-height: 40px !important;  height: 40px !important;  padding: 0 18px !important;  border-radius: 999px !important;  display: inline-flex !important;  align-items: center !important;  justify-content: center !important;  font-size: 13px !important;  font-weight: 800 !important;  line-height: 1 !important;  white-space: nowrap !important;  text-align: center !important;  box-shadow: none !important; }  #signature .signature-proofline--four .proof-pill:nth-child(1) {  grid-column: 1;  grid-row: 1; }  #signature .signature-proofline--four .proof-pill:nth-child(2) {  grid-column: 2;  grid-row: 1; }  #signature .signature-proofline--four .proof-pill:nth-child(3) {  grid-column: 3;  grid-row: 1; }  #signature .signature-proofline--four .proof-pill:nth-child(4) {  grid-column: 1;  grid-row: 2;  padding: 0 20px !important; }  #signature .signature-proofline--four .proof-pill--cta, #signature .signature-proofline--four .proof-pill--cta-main {  background: linear-gradient(135deg, var(--btk-terracotta) 0%, #D96A3B 100%) !important;  border-color: rgba(198,90,46,.78) !important;  color: #fff !important;  box-shadow: none !important;  filter: none !important; }  #signature .signature-proofline--four .proof-pill--cta:hover, #signature .signature-proofline--four .proof-pill--cta:focus-visible, #signature .signature-proofline--four .proof-pill--cta-main:hover, #signature .signature-proofline--four .proof-pill--cta-main:focus-visible {  transform: none !important;  background: linear-gradient(135deg, var(--btk-terracotta-hover) 0%, #C85B30 100%) !important;  border-color: rgba(182,80,39,.92) !important;  color: #fff !important;  box-shadow: none !important; } } @media (max-width: 980px){ #signature .cinema-grid {  grid-template-columns: 1fr !important; }  #signature .cinema-grid .media {  min-height: 360px !important; }  #signature .cinema-grid .points {  height: auto !important;  min-height: 0 !important;  max-height: none !important; }  #signature .signature-proofline--four {  display: flex !important;  flex-wrap: wrap !important;  gap: 10px !important; }  #signature .signature-proofline--four .proof-pill {  width: auto !important;  min-height: 40px !important;  padding: 0 16px !important;  white-space: normal !important; } }

#signature .cinema-grid { grid-template-columns: minmax(0,1fr) minmax(0,1.18fr); gap: 18px; align-items: stretch; } #signature .media { min-height: 488px; height: 488px; } #signature .points { display: grid; grid-template-rows: repeat(3,minmax(0,1fr)) auto; gap: 12px; min-height: 488px; height: 488px; } #signature .point { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px 16px 16px; border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.03) 100%); border: 1px solid rgba(255,255,255,.10); min-height: 0; } #signature .point .mark { margin-top: 6px; } #signature .point-copy { display: flex; flex-direction: column; gap: 10px; min-width: 0; } #signature .point-copy strong { display: block; font-size: 15px; line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; color: #fff; } #signature .point-copy p { margin: 0; font-size: 13px; line-height: 1.42; color: rgba(255,255,255,.84); } #signature .signature-proofline--four { display: grid; grid-template-columns: auto minmax(0,1fr) auto; grid-template-areas: "price ideal who"
    "cta cta cta"; gap: 10px 10px; align-items: center; align-content: start; } #signature .signature-proofline--four .proof-pill { min-height: 40px; padding: 0 16px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; line-height: 1; font-weight: 700; white-space: nowrap; } #signature .signature-proofline--four .proof-pill:nth-child(1) { grid-area: price; } #signature .signature-proofline--four .proof-pill:nth-child(2) { grid-area: ideal; } #signature .signature-proofline--four .proof-pill:nth-child(3) { grid-area: who; } #signature .signature-proofline--four .proof-pill:nth-child(4) { grid-area: cta; justify-self: start; } #signature .signature-proofline--four .proof-pill--cta, #signature .signature-proofline--four .proof-pill--cta-main { background: var(--terracotta); border-color: rgba(198,90,46,.95); color: #fff; box-shadow: none !important; } #signature .signature-proofline--four .proof-pill--cta:hover, #signature .signature-proofline--four .proof-pill--cta:focus-visible, #signature .signature-proofline--four .proof-pill--cta-main:hover, #signature .signature-proofline--four .proof-pill--cta-main:focus-visible { transform: translateY(-1px); box-shadow: none !important; } #signature .signature-proofline--four .proof-pill--link:not(.proof-pill--cta):not(.proof-pill--cta-main) { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); color: #fff; } @media (max-width:1100px){ #signature .cinema-grid {  grid-template-columns: 1fr; }  #signature .media, #signature .points {  height: auto;  min-height: 0; } } @media (max-width:760px){ #signature .signature-proofline--four {  grid-template-columns: 1fr;  grid-template-areas: "price"
      "ideal"
      "who"
      "cta"; }  #signature .signature-proofline--four .proof-pill:nth-child(4) {  justify-self: stretch; } }

.lang-switch { display: inline-flex; align-items: center; gap: 10px; background: none !important; border: none !important; box-shadow: none !important; padding: 0 !important; }
.lang-switch__link { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; text-decoration: none; transition: transform .2s ease, opacity .2s ease; opacity: 0.45; overflow: hidden; background: none !important; box-shadow: none !important; }
.lang-switch__link:hover, .lang-switch__link:focus-visible { opacity: 0.75; transform: scale(1.08); }
.lang-switch__link.is-active, .lang-switch__link[aria-current="page"] { opacity: 1; transform: scale(1.12); box-shadow: none !important; background: none !important; }
.lang-switch__link svg { width: 52px; height: 52px; display: block; }
@media (max-width: 640px){ .lang-switch__link { width: 42px; height: 42px; } .lang-switch__link svg { width: 42px; height: 42px; } }

/* Animations composées : même respiration visuelle, sans animer box-shadow. */
header .brand .dot {
  will-change: transform !important;
  animation: btk-dot-float-composited 5.2s cubic-bezier(.37,0,.23,1) infinite !important;
}
header .brand .dot::before {
  box-shadow: 0 0 0 10px rgba(255,106,0,.18) !important;
  will-change: transform, opacity;
  animation: btk-halo-composited 5.2s cubic-bezier(.37,0,.23,1) infinite !important;
}
header .brand .dot::after {
  box-shadow: 0 0 0 14px rgba(255,140,56,.12) !important;
  will-change: transform, opacity;
  animation: btk-halo-composited 5.2s cubic-bezier(.37,0,.23,1) 1.6s infinite !important;
}
@keyframes btk-dot-float-composited {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.035); }
}
@keyframes btk-halo-composited {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.84); }
  12% { opacity: .58; transform: translate(-50%,-50%) scale(.96); }
  48% { opacity: .22; transform: translate(-50%,-50%) scale(1.72); }
  72%, 100% { opacity: 0; transform: translate(-50%,-50%) scale(2.18); }
}
