/* ============================================================
   Passe le micro · V2 (refonte d'identité)
   Éditorial NOIR & BLANC + accent CORAIL. Calme, clair, mémorable.
   Source : moodboard + document d'instructions (juin 2026).
   Titres : Montserrat (≈ Gotham) · Texte : Sofia Sans (≈ Sofia Pro)
   ============================================================ */

:root {
  /* Palette officielle */
  --coral: #e94b3c;
  --coral-dark: #cf3322;     /* hover */
  --charcoal: #111111;
  --blanc: #f7f5f2;          /* blanc cassé · fond principal */
  --white: #ffffff;
  --pierre: #d9d6d0;         /* gris pierre · bordures, séparateurs, tags */

  --ink: #111111;            /* texte principal */
  --muted: #57534e;          /* texte secondaire (gris chaud) */
  --muted-2: #8a857d;

  --line: var(--pierre);
  --line-soft: rgba(17, 17, 17, 0.08);

  --bg: var(--blanc);
  --maxw: 1240px;

  /* Échelle 8px */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s6: 48px; --s8: 64px; --s12: 96px;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --font-title: 'Montserrat', 'Gotham', Arial, Helvetica, sans-serif;
  --font-body: 'Sofia Sans', 'Sofia Pro', 'Avenir Next', Avenir, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: var(--font-title); color: var(--charcoal); margin: 0; line-height: 1.1; letter-spacing: -0.01em; font-weight: 700; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s8); }
.container--narrow { max-width: 760px; }
.accent { color: var(--coral); }

@media (max-width: 1024px) { .container { padding: 0 var(--s4); } }
@media (max-width: 600px) { .container { padding: 0 var(--s3); } }

/* Masque pour révélation de titre ligne par ligne */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }

/* ---------- Motif « 3 traits de voix » (signature de marque, ponctuel) ---------- */
.voix { display: inline-flex; gap: 5px; align-items: flex-end; height: 22px; }
.voix span { width: 3px; border-radius: 3px; background: var(--coral); display: block; }
.voix span:nth-child(1) { height: 12px; transform: rotate(-18deg); }
.voix span:nth-child(2) { height: 18px; }
.voix span:nth-child(3) { height: 12px; transform: rotate(18deg); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 13px 26px; white-space: nowrap;
  background: var(--coral); color: var(--white);
  font-family: var(--font-title); font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  border: 2px solid transparent; border-radius: var(--radius-pill); cursor: pointer;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--blanc), 0 0 0 5px var(--coral); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn--lg { min-height: 54px; padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* Lien secondaire (pas de 2e bouton plein) */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-title); font-weight: 600; font-size: 15px; color: var(--charcoal);
  border-bottom: 1.5px solid var(--charcoal); padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.link-arrow:hover { color: var(--coral); border-color: var(--coral); gap: 12px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ---------- Header (sticky discret, fond blanc cassé) ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: saturate(150%) blur(12px); -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease, background .3s ease;
}
.nav.is-scrolled { border-bottom-color: var(--pierre); background: rgba(247, 245, 242, 0.95); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; align-items: center; gap: var(--s4); }
.nav__panel { display: flex; align-items: center; gap: var(--s4); }
.nav__links a:not(.btn) { font-family: var(--font-title); font-weight: 600; font-size: 14.5px; color: var(--charcoal); opacity: .82; transition: opacity .2s ease, color .2s ease; }
.nav__links a:not(.btn):hover { opacity: 1; color: var(--coral); }
.nav__toggle { display: none; }

/* Menu mobile */
@media (max-width: 960px) {
  .nav__links { gap: var(--s2); }
  .nav__links a.nav__lnk { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    background: transparent; border: 1px solid var(--pierre); border-radius: 10px; cursor: pointer; color: var(--charcoal);
  }
  .nav__toggle svg { width: 22px; height: 22px; }
  .nav.is-open .nav__panel {
    position: fixed; inset: 76px 0 auto 0; background: var(--blanc); border-bottom: 1px solid var(--pierre);
    display: flex; flex-direction: column; gap: 4px; padding: var(--s3) var(--s4);
  }
  .nav.is-open .nav__lnk { display: block; font-size: 17px; padding: 12px 0; opacity: 1; }
  .nav__panel { display: contents; }
  /* CTA de réservation gardé visible dans la barre, mais compact */
  .nav__panel .btn { min-height: 40px; padding: 9px 16px; font-size: 13.5px; }
  .nav.is-open .nav__panel .btn { width: 100%; min-height: 48px; font-size: 15px; margin-top: 6px; }
}
@media (max-width: 380px) {
  .nav__panel .btn { padding: 9px 13px; font-size: 13px; }
}

/* ---------- Sections ---------- */
.section { padding: var(--s12) 0; position: relative; }
.section--white { background: var(--white); }
.section--blanc { background: var(--blanc); }
.section__head { max-width: 720px; margin: 0 0 var(--s6); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-title); font-weight: 700; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); margin-bottom: var(--s2); }
.section__title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
.section__lead { color: var(--muted); font-size: 18px; margin-top: var(--s2); }

@media (max-width: 768px) { .section { padding: var(--s8) 0; } }

/* ---------- Hero (2 colonnes : texte à gauche, image ENTIÈRE à droite, fondu à gauche) ---------- */
.hero { padding: 132px 0 var(--s8); }
.hero__inner { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.hero__copy { max-width: 580px; }
.hero__title { font-size: clamp(36px, 5.4vw, 64px); font-weight: 800; letter-spacing: -0.025em; }
/* Logo qui complète le titre : grand format, sur sa propre ligne (desktop + mobile) */
.hero__title-logo { display: block; height: auto; width: min(76%, 360px); margin: 12px 0 2px; }
.hero__sub { max-width: 520px; margin: var(--s3) 0 0; font-size: clamp(16px, 2vw, 19px); color: var(--muted); }
.hero__cta { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s4); }
.hero__micro { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: var(--s4); padding: 0; }
.hero__micro li { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 14px; color: var(--muted); }
.hero__micro svg { width: 17px; height: 17px; color: var(--coral); flex-shrink: 0; }
/* 4 repères : grille 2x2 (le 4e « gratuit » au même niveau que les autres) */
.hero__micro--4 { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 14px 20px; align-items: start; }
.hero__micro--4 li { font-size: 13.5px; align-items: flex-start; }
.hero__micro--4 svg { margin-top: 2px; }
.hero__micro-free strong { color: var(--coral); font-weight: 700; white-space: nowrap; }
/* Image ENTIÈRE : fondu à gauche (bord carré, fond dans le crème) + coins arrondis + ombre À DROITE */
.hero__media { position: relative; margin: 0; will-change: transform, opacity;
  border-radius: 0 16px 16px 0;
  box-shadow: 30px 0 46px -26px rgba(17, 17, 17, 0.32); }
.hero__media img { width: 100%; height: auto; display: block; border-radius: 0 16px 16px 0; }
.hero__media::before { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1; border-radius: 0 16px 16px 0;
  background: linear-gradient(to right, var(--blanc) 0%, rgba(247,245,242,0.5) 9%, rgba(247,245,242,0) 26%); }
.js-motion .hero__media { opacity: 0; }

/* Mobile : texte d'abord, puis image entière en bandeau dessous */
@media (max-width: 880px) {
  .hero { padding: 116px 0 var(--s6); }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { max-width: none; }
  .hero__media::before { display: none; }
  /* Mobile : logo grand format, sur sa propre ligne, resserré sous « sur la main » */
  .hero__title-logo { display: block; height: auto; width: min(84%, 350px); margin: 6px 0 4px; }
}

/* ---------- Bloc 2 colonnes (réassurance / capsule) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: -1; }
.split__title { font-size: clamp(26px, 3.6vw, 38px); font-weight: 700; margin-bottom: var(--s3); }
.split__txt { color: var(--muted); font-size: 16.5px; }
.split__txt + .split__txt { margin-top: var(--s2); }
/* Photos de section : coins arrondis nets + ombre douce (relief subtil), pas de bordure */
.split__media { position: relative; overflow: hidden; border-radius: 16px; will-change: transform, opacity;
  box-shadow: 0 18px 40px -20px rgba(17,17,17,0.28), 0 4px 12px -6px rgba(17,17,17,0.10); }
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; }
.js-motion [data-clip] { opacity: 0; }
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: var(--s4); }
  .split--rev .split__media, .split__media { order: -1; }
}

/* Bloc réassurance gratuité (filet corail, fond très clair · discret, pas promotionnel) */
.freebox { margin: 0 0 var(--s3); padding: 12px 16px; border-left: 3px solid var(--coral); background: rgba(233,75,60,0.05); border-radius: 0 8px 8px 0; font-size: 15.5px; color: var(--charcoal); }
.freebox strong { color: var(--coral); }
.freebox--note { margin: var(--s3) 0 0; font-size: 13.5px; color: var(--muted); }
.freebox--note strong { color: var(--coral); }

/* Section GB Studio : logo de marque (noir) + citation de clôture */
.gbs-logo { height: 65px; width: auto; display: block; margin-bottom: var(--s3); }
.gbs-quote { margin-top: var(--s3); font-family: var(--font-title); font-weight: 700; font-size: clamp(18px, 2.3vw, 23px); color: var(--charcoal); line-height: 1.32; }
@media (max-width: 768px) { .gbs-logo { height: 55px; } }

/* Section vidéo « Découvrez l'expérience » */
.video { position: relative; max-width: 940px; margin: 0 auto; border-radius: 16px; overflow: hidden; background: #000; will-change: transform, opacity;
  box-shadow: 0 22px 50px -20px rgba(17,17,17,0.32), 0 4px 12px -6px rgba(17,17,17,0.10); }
.video video { width: 100%; height: auto; display: block; }
/* Bouton play visible sur le poster */
.video__play { position: absolute; inset: 0; margin: auto; width: 86px; height: 86px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--coral); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 34px rgba(233,75,60,0.45), 0 0 0 8px rgba(255,255,255,0.14);
  transition: background .2s ease, transform .2s ease, opacity .35s ease; }
.video__play svg { width: 36px; height: 36px; margin-left: 4px; }
.video__play:hover { background: var(--coral-dark); transform: scale(1.06); }
.video__play:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.video.is-playing .video__play { opacity: 0; pointer-events: none; }
.video__caption { max-width: 720px; margin: var(--s4) auto 0; text-align: center; color: var(--muted); font-size: 17px; }
.video__cta { text-align: center; margin-top: var(--s4); }

/* Liste de bénéfices (courte, pas de cartes) */
.benefits { list-style: none; padding: 0; margin: var(--s4) 0 0; display: grid; gap: 14px; }
.benefits li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; }
.benefits svg { width: 20px; height: 20px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }

/* ---------- Grille 2x2 « Pourquoi » (séparateurs fins, pas d'ombres) ---------- */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-top: var(--s2); }
.grid2__cell { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: var(--s6) var(--s4); }
.grid2__num { display: inline-flex; margin-bottom: var(--s2); }
.grid2__title { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.grid2__txt { color: var(--muted); font-size: 15.5px; }
@media (max-width: 680px) { .grid2 { grid-template-columns: 1fr; } .grid2__cell { padding: var(--s4) var(--s3); } }

/* ---------- 5 étapes (séquence + ligne de progression) ---------- */
.steps { position: relative; max-width: 820px; margin: 0 auto; }
.steps__line { position: absolute; left: 23px; top: 24px; bottom: 24px; width: 2px; background: var(--pierre); }
.steps__line i { position: absolute; inset: 0 0 auto 0; height: 0; background: var(--coral); transform-origin: top; will-change: height; }
.step { position: relative; display: flex; gap: var(--s3); padding: var(--s3) 0; }
.step__num { position: relative; z-index: 1; flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 2px solid var(--coral); color: var(--coral); font-family: var(--font-title); font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.step__title { font-size: clamp(18px, 2.2vw, 21px); font-weight: 700; margin-bottom: 4px; }
.step__txt { color: var(--muted); font-size: 15.5px; }
@media (max-width: 600px) { .steps__line { left: 19px; } .step__num { width: 40px; height: 40px; font-size: 16px; } }

/* ---------- Tags (sujets) ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s4); }
.tag { font-size: 15px; color: var(--charcoal); background: transparent; border: 1px solid var(--pierre); border-radius: var(--radius-pill); padding: 10px 18px; transition: border-color .2s ease, color .2s ease; }
.tag:hover { border-color: var(--coral); color: var(--coral); }

/* ---------- Pour qui + inclus ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.words { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: var(--s3); }
.words span { font-size: 16px; color: var(--charcoal); }
.words span::after { content: '·'; color: var(--pierre); margin-left: 18px; }
.words span:last-child::after { content: ''; margin: 0; }
@media (max-width: 768px) { .duo { grid-template-columns: 1fr; gap: var(--s6); } }

/* ---------- CTA final (bloc NOIR CHARBON · unique) ---------- */
.cta { background: var(--charcoal); color: var(--white); padding: var(--s12) 0; }
.cta h2, .cta .section__title { color: var(--white); }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.cta__title { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; }
.cta__sub { color: rgba(255,255,255,0.8); font-size: 18px; margin-top: var(--s3); }
@media (max-width: 880px) { .cta__grid { grid-template-columns: 1fr; gap: var(--s6); } }

/* ---------- Formulaire ---------- */
.form { margin-top: 0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.field { margin-bottom: var(--s2); }
.field label { display: block; font-family: var(--font-title); font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--charcoal); }
.cta .field label { color: var(--white); }
.req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--charcoal);
  background: var(--white); border: 1px solid var(--pierre); border-radius: var(--radius-sm); padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(233,75,60,.25); }
.field textarea { resize: vertical; }
.field input.invalid, .field select.invalid { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(233,75,60,.3); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form__consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 var(--s2); font-size: 13.5px; color: var(--muted); cursor: pointer; line-height: 1.5; }
.cta .form__consent { color: rgba(255,255,255,0.78); }
.form__consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--coral); flex-shrink: 0; cursor: pointer; }
.form__status { margin-top: var(--s2); font-size: 14.5px; font-weight: 500; min-height: 20px; }
.form__status.ok { color: #6ee7a8; }
.form__status.err { color: #ff9a8f; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: var(--s4) auto 0; }
.faq { border-bottom: 1px solid var(--pierre); }
.faq summary { cursor: pointer; list-style: none; font-family: var(--font-title); font-weight: 600; font-size: 16.5px; color: var(--charcoal); padding: 22px 40px 22px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ''; position: absolute; right: 6px; top: 26px; width: 11px; height: 11px; border-right: 2px solid var(--coral); border-bottom: 2px solid var(--coral); transform: rotate(45deg); transition: transform .25s ease; }
.faq[open] summary::after { transform: rotate(-135deg); }
.faq p { padding: 0 0 22px; color: var(--muted); font-size: 15.5px; }

/* ---------- Logos partenaires (monochrome) ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 60px); margin-top: var(--s2); }
.partners__item { height: 50px; display: flex; align-items: center; border-radius: 8px; }
.partners__item img { height: 100%; width: auto; max-width: 170px; object-fit: contain; filter: brightness(0) saturate(100%); opacity: .55; transition: opacity .3s ease, transform .3s ease; }
.partners__item:hover img, .partners__item:focus-visible img { opacity: .9; transform: scale(1.04); }
.partners__item:focus-visible { outline: 2px solid var(--coral); outline-offset: 6px; }

/* Carte formulaire partenaire (Commandites) */
.partner-card { background: var(--white); border: 1px solid var(--pierre); border-radius: 16px; padding: clamp(20px, 3vw, 32px); }
.partner-card__title { font-family: var(--font-title); font-weight: 700; font-size: 20px; color: var(--charcoal); margin-bottom: var(--s3); }

/* Ancres : décalage pour le header fixe */
[id] { scroll-margin-top: 92px; }
.partners__note { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: var(--s4); }

/* ---------- Footer ---------- */
.footer { background: var(--blanc); border-top: 1px solid var(--pierre); padding: var(--s8) 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer__logo { height: 34px; width: auto; }
.footer__txt { font-size: 14px; color: var(--muted); }
.footer__social { display: flex; gap: 10px; list-style: none; padding: 0; margin: 6px 0 2px; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--charcoal); border: 1px solid var(--pierre); transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.footer__social a:hover { color: var(--coral); border-color: var(--coral); transform: translateY(-2px); }
.footer__social a:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }
.footer__social svg { width: 18px; height: 18px; }
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; font-size: 13px; }
.footer__legal a, .footer__link-btn { color: var(--muted); transition: color .2s ease; }
.footer__legal a:hover, .footer__link-btn:hover { color: var(--coral); }
.footer__legal span { color: var(--muted-2); }
.footer__link-btn { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }
.footer__copy { font-size: 12px; color: var(--muted-2); }

/* ---------- Consentement (Loi 25) · repris, recoloré V2 ---------- */
.cc-banner { position: fixed; left: 24px; z-index: 60; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); width: 380px; max-width: calc(100vw - 28px); background: var(--white); border: 1px solid var(--pierre); border-radius: var(--radius); box-shadow: 0 18px 44px rgba(17,17,17,.14); transform: translateY(140%); transition: transform .4s cubic-bezier(.22,1,.36,1); }
.cc-banner.is-visible { transform: translateY(0); }
.cc-banner__inner { display: flex; flex-direction: column; gap: 12px; padding: 20px; }
.cc-banner__head strong { font-family: var(--font-title); font-size: 15px; color: var(--charcoal); }
.cc-banner__txt { font-size: 13px; color: var(--muted); line-height: 1.55; }
.cc-banner__links { font-size: 12px; }
.cc-banner__links a { color: var(--coral); }
.cc-banner__links span { color: var(--muted-2); margin: 0 4px; }
.cc-banner__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cc-banner__actions .btn { width: 100%; min-height: 40px; padding: 9px 14px; font-size: 13.5px; }
.cc-banner__actions .btn[data-cc="accept"] { grid-column: 1 / -1; }
.cc-banner__actions .btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--pierre); }
.cc-banner__actions .btn--ghost:hover { background: var(--blanc); border-color: var(--charcoal); }
.cc-modal { position: fixed; inset: 0; z-index: 70; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity .3s ease; }
.cc-modal[hidden] { display: none; }
.cc-modal.is-visible { opacity: 1; }
.cc-modal__backdrop { position: absolute; inset: 0; background: rgba(17,17,17,.5); }
.cc-modal__card { position: relative; width: 100%; max-width: 480px; background: var(--white); border: 1px solid var(--pierre); border-radius: var(--radius); padding: 28px; box-shadow: 0 30px 80px rgba(17,17,17,.3); max-height: 90vh; overflow-y: auto; }
.cc-modal__title { font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--charcoal); }
.cc-modal__lead { font-size: 13.5px; color: var(--muted); margin: 8px 0 20px; }
.cc-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.cc-row__txt strong { display: block; font-size: 15px; color: var(--charcoal); }
.cc-row__txt span { font-size: 13px; color: var(--muted); }
.cc-badge { font-size: 11px; font-weight: 600; color: var(--muted); border: 1px solid var(--pierre); border-radius: 999px; padding: 4px 12px; white-space: nowrap; }
.cc-row--toggle input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--coral); cursor: pointer; flex-shrink: 0; }
.cc-modal__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.cc-modal__actions .btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--pierre); }
.cc-reopen { position: fixed; left: 18px; bottom: 18px; z-index: 55; width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--white); color: var(--muted); border: 1px solid var(--pierre); cursor: pointer; box-shadow: 0 6px 20px rgba(17,17,17,.12); transition: color .2s ease, border-color .2s ease; }
.cc-reopen:hover { color: var(--coral); border-color: var(--coral); }
.cc-reopen svg { width: 21px; height: 21px; }
.cc-reopen[hidden] { display: none; }
@media (max-width: 460px) { .cc-banner { left: 12px; right: 12px; width: auto; } .cc-reopen { left: 12px; bottom: 12px; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-animate], [data-split], [data-arrive], [data-clip] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
.js-motion [data-animate], .js-motion [data-arrive] { opacity: 0; }
