/* =====================================================================================================================
🟣 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(22px,2.6vw,34px);
    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: 18px 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, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -0.3px;
    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, 760px);
}

.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;
    }
}