/* =========================================================
   sextorsions.com V2 — Direction D « Chaleureux & humain »
   Albert Sans (titres) + Hanken Grotesk (texte) · thème clair
   ========================================================= */

/* Nunito — titres */
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Lexend — corps de texte */
@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lexend";
  src: url("../fonts/Lexend-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* surfaces */
  --cream: #fff7f1;
  --cream-2: #fffaf6;
  --surface: #ffffff;
  --ink: #211d2b;
  --ink-2: #574f63;
  --muted: #6e6680;

  /* couleurs */
  --indigo: #ff5a4d;
  --indigo-50: #eef2ff;
  --coral: #ff5a4d;
  --coral-d: #e8412f;
  --coral-aa: #c0392b; /* contraste AA pour texte/interactif : 5.4:1 sur blanc */
  --coral-aa-d: #a82d24; /* variante sombre hover : 6.8:1 sur blanc */
  --coral-50: #fff0ed;
  --amber: #f59e0b;
  --amber-50: #fef3df;
  --green: #15a34a;
  --green-50: #e7f7ee;
  --danger: #ef4444;
  --danger-50: #fdeae8;

  --border: #e8c8b6;
  --border-cool: #ece7f5;

  /* rayons */
  --r-lg: 24px;
  --r: 18px;
  --r-sm: 12px;
  --pill: 999px;

  /* ombres (teintées chaud) */
  --sh-sm: 0 2px 8px -4px rgba(120, 80, 50, 0.25);
  --sh: 0 12px 28px -14px rgba(120, 70, 60, 0.28);
  --sh-lg: 0 22px 48px -20px rgba(90, 60, 90, 0.34);
  --sh-coral: 0 12px 24px -8px rgba(255, 90, 77, 0.5);
  --sh-indigo: 0 12px 24px -8px rgba(255, 90, 77, 0.5);

  /* type */
  --display: "Nunito", system-ui, sans-serif; /* titres */
  --body: "Lexend", system-ui, sans-serif; /* tout le reste */

  --header-h: 100px;
  --max-w: 1180px;
  --transition: 0.18s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1.02rem;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.08;
  color: var(--ink);
}
a {
  color: var(--coral-aa);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  background: #ffd9d3;
  color: #6b1b12;
}

:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 2px;
  border-radius: 6px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: #e7d8cc;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d8c4b4;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wrap-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--coral-aa);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  z-index: 500;
  font-weight: 700;
  box-shadow: var(--sh);
  transition: top var(--transition);
}
.skip-link:focus {
  top: 1rem;
  text-decoration: none;
}

/* ====================== HEADER ====================== */
.site-header {
  position: relative;
  padding-top: 10px;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
}
.brand:hover {
  text-decoration: none;
  opacity: 0.88;
}
.brand-logo {
  height: 100px;
  width: auto;
  display: block;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--indigo), #6d63f0);
  color: #fff;
  box-shadow: var(--sh-coral);
}
.brand-mark svg {
  width: 21px;
  height: 21px;
}
.brand .tld {
  color: var(--muted);
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 0.2rem;
  margin-left: auto;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: var(--pill);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  background: var(--surface);
  color: var(--coral-aa);
  text-decoration: none;
  box-shadow: var(--sh-sm);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.4rem;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 42px;
  padding: 0 1.1rem;
  border-radius: var(--pill);
  background: var(--coral-aa);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--sh-coral);
  transition: var(--transition);
}
.header-cta:hover {
  background: var(--coral-aa-d);
  text-decoration: none;
  transform: translateY(-1px);
}
.header-cta svg {
  width: 16px;
  height: 16px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink-2);
  cursor: pointer;
  place-items: center;
}
.menu-btn svg {
  width: 22px;
  height: 22px;
}
.menu-btn[aria-expanded="true"] svg {
  display: none;
}
.menu-btn[aria-expanded="true"]::before {
  content: "\2715";
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ink-2);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 1.5rem 1.1rem;
  border-top: 1px solid var(--border);
  background: var(--cream-2);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 0.8rem 0.6rem;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-weight: 600;
}
.mobile-nav a:hover {
  background: var(--surface);
  color: var(--coral-aa);
  text-decoration: none;
}

/* ====================== BADGES / PILLS ====================== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--pill);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  font-size: 0.86rem;
  font-weight: 700;
  color: #146c46;
}
.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  flex: none;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--pill);
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover {
  text-decoration: none;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn i {
  font-size: 1em;
  vertical-align: -0.1em;
}
.btn-coral {
  background: var(--coral-aa);
  color: #fff;
  box-shadow: var(--sh-coral);
}
.btn-coral:hover {
  background: var(--coral-aa-d);
  transform: translateY(-2px);
}
.btn-indigo {
  background: var(--coral-aa);
  color: #fff;
  box-shadow: var(--sh-coral);
}
.btn-indigo:hover {
  background: var(--coral-aa-d);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--surface);
  color: var(--coral-aa);
  border-color: var(--border-cool);
  box-shadow: var(--sh-sm);
}
.btn-ghost:hover {
  border-color: var(--coral-aa);
  background: var(--indigo-50);
}
.btn-lg {
  padding: 1rem 1.9rem;
  font-size: 1.1rem;
}

/* ====================== HERO ====================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(
    to bottom,
    var(--cream) 0%,
    #ffeae0 70%,
    #fffcf9 100%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 1.1rem 0 1rem;
  text-wrap: balance;
}
.hero h1 .em {
  color: var(--coral-d);
}
.hero-lead {
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  color: var(--ink-2);
  max-width: 32em;
  text-wrap: pretty;
  margin-bottom: 1.7rem;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.trust-chip {
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--pill);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-chip svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

/* hero media */
.hero-media {
  position: relative;
}
.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 17 / 14;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.hero-float {
  position: absolute;
  left: -14px;
  bottom: 28px;
  background: var(--surface);
  border-radius: var(--r);
  padding: 0.9rem 1.1rem;
  box-shadow: var(--sh-coral);
  border: 1px solid var(--border-cool);
  max-width: 17rem;
  animation: floaty 5s ease-in-out infinite;
}
.hero-float .q {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
}
.hero-float .by {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

/* ====================== SOS RÉFLEXES BAND ====================== */
.reflexes {
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}
.reflexes-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.reflexes-title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 16rem;
}
.reflexes-title .eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral-aa);
}
.reflexes-title h2 {
  font-size: 1.45rem;
  font-weight: 800;
}
.reflexes-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.reflex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r);
  background: var(--cream);
  border: 1px solid var(--border);
}
.reflex.no {
  background: var(--danger-50);
  border-color: color-mix(in srgb, var(--danger) 25%, transparent);
}
.reflex-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 2px solid var(--coral-d);
  color: var(--coral-aa);
  font-weight: 800;
  flex-shrink: 0;
}
.reflex.no .reflex-ic {
  background: transparent;
  border-color: var(--danger);
  color: var(--danger);
}
.reflex-ic svg {
  width: 19px;
  height: 19px;
}
.reflex-ic i {
  font-size: 17px;
}
.reflex--thumb {
  align-items: center;
}
.reflex--thumb .reflex-ic {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: var(--r-sm);
  border: none;
  background: none;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
}
.reflex strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.reflex p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.45;
}

/* ====================== SECTIONS ====================== */
.section {
  padding: clamp(3rem, 6vw, 4.6rem) 0;
}
.section-soft {
  background: var(--cream-2);
  border-block: 1px solid var(--border);
}
.section-indigo {
  background:
    radial-gradient(60% 100% at 100% 0%, #ffeee8 0%, transparent 60%),
    var(--cream-2);
  border-block: 1px solid var(--border);
}
.section-head {
  max-width: 100%;
  margin-bottom: 2.4rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--coral-aa);
  margin-bottom: 0.6rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-head p {
  margin-top: 0.8rem;
  font-size: 1.12rem;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ====================== CARDS ====================== */
.card-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.6rem;
  box-shadow: var(--sh-sm);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--sh);
  transform: translateY(-4px);
}
.card-ic {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--indigo-50);
  color: var(--coral-d);
  margin-bottom: 1.05rem;
}
.card-ic svg {
  width: 26px;
  height: 26px;
}
.card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}
.card p {
  font-size: 0.98rem;
  color: var(--ink-2);
  text-wrap: pretty;
}
.card.warn .card-ic {
  background: var(--coral-50);
  color: var(--coral-d);
}
.card.warn:hover {
  border-color: color-mix(in srgb, var(--coral) 40%, var(--border));
}

/* numbered step cards */
.step-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.step-num {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--indigo), #ff5a4d);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--sh-coral);
}
.step-num.done {
  background: linear-gradient(150deg, var(--green), #34c46b);
  box-shadow: 0 12px 24px -10px rgba(21, 163, 74, 0.5);
}

/* ====================== CALLOUTS ====================== */
.callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  background: var(--coral-50);
  border: 1px solid color-mix(in srgb, var(--coral) 28%, transparent);
}
.callout.warn {
  background: var(--amber-50);
  border-color: color-mix(in srgb, var(--amber) 35%, transparent);
}
.callout.info {
  background: var(--indigo-50);
  border-color: var(--border-cool);
}
.callout-ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--coral-d);
  box-shadow: var(--sh-sm);
}
.callout.warn .callout-ic {
  color: #b4790a;
}
.callout.info .callout-ic {
  color: var(--coral-d);
}
.callout-ic svg {
  width: 22px;
  height: 22px;
}
.callout-ic i {
  font-size: 20px;
}
.callout strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.2rem;
}
.callout p {
  font-size: 0.98rem;
  color: var(--ink-2);
}
.mt {
  margin-top: 1.6rem;
}

/* ====================== STATS ====================== */
.stats-band {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--sh-sm);
}
.stat-value {
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.4vw, 2.7rem);
  font-weight: 800;
  color: var(--coral-d);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 0.7rem;
  display: block;
}
.stat small {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-2);
  margin-top: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.stats-source {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.82rem;
}
.stats-source a {
  color: rgba(255 255 255 / 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.stats-source a:hover {
  color: #fff;
}

/* ====================== HUMAN BAND (photo + texte) ====================== */
.human-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.8rem;
  align-items: center;
}
.human-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.human-band h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
  text-wrap: balance;
}
.human-band p {
  font-size: 1.08rem;
  color: var(--ink-2);
  text-wrap: pretty;
}
.human-points {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.human-points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
}
.human-points .ic {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--green-50);
  color: var(--green);
  display: grid;
  place-items: center;
}
.human-points .ic svg {
  width: 16px;
  height: 16px;
}
.human-points .ic i {
  font-size: 14px;
}

/* ====================== COUNTRY CONTACTS ====================== */
.country-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}
.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--pill);
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-2);
  cursor: pointer;
  transition: var(--transition);
}
.country-chip:hover {
  border-color: var(--coral-aa);
  color: var(--coral-aa);
}
.country-chip.active {
  background: var(--coral-aa);
  border-color: var(--coral-aa);
  color: #fff;
}
.country-chip .flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  flex: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.country-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.country-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.country-card:hover {
  box-shadow: var(--sh);
  border-color: color-mix(in srgb, var(--indigo) 30%, var(--border));
}
.country-card.is-hidden {
  display: none;
}
.country-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.country-head .flag {
  width: 40px;
  height: 27px;
  border-radius: 6px;
  flex: none;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.1),
    var(--sh-sm);
}
.country-head h3 {
  font-size: 1.25rem;
  font-weight: 800;
}
.country-head .region {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.05rem;
}
.country-emergency {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.4rem;
  background: var(--danger-50);
  border-bottom: 1px solid color-mix(in srgb, var(--danger) 20%, transparent);
  font-size: 0.92rem;
  color: var(--ink-2);
}
.country-emergency svg {
  width: 17px;
  height: 17px;
  color: var(--danger);
  flex: none;
}
.country-emergency b {
  color: var(--danger);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.contact-list {
  list-style: none;
  padding: 0.7rem 0.85rem 1.05rem;
  display: grid;
  gap: 0.3rem;
}
.contact {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.75rem 0.7rem;
  border-radius: 12px;
  transition: var(--transition);
}
.contact:hover {
  background: var(--indigo-50);
}
.contact-ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--indigo-50);
  color: var(--coral-d);
  display: grid;
  place-items: center;
}
.contact.is-priority .contact-ic {
  background: linear-gradient(150deg, var(--indigo), #6d63f0);
  color: #fff;
}
.contact-ic svg {
  width: 20px;
  height: 20px;
}
.contact-ic i {
  font-size: 18px;
}
.contact-body {
  min-width: 0;
  flex: 1;
}
.contact-name {
  font-size: 0.98rem;
  font-weight: 800;
  font-family: var(--display);
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: var(--pill);
  background: var(--indigo-50);
  color: var(--coral-aa);
}
.tag.urgent {
  background: var(--danger-50);
  color: var(--danger);
}
.tag.free {
  background: var(--green-50);
  color: var(--green);
}
.contact-meta {
  font-size: 0.88rem;
  color: var(--ink-2);
  margin-top: 0.15rem;
  text-wrap: pretty;
}
.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.9rem;
  margin-top: 0.4rem;
  align-items: center;
}
.contact-phone {
  font-size: 1rem;
  font-weight: 800;
  color: var(--coral-aa);
  font-variant-numeric: tabular-nums;
}
.contact-phone:hover {
  text-decoration: underline;
}
.contact-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--coral-aa);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.contact-link svg {
  width: 13px;
  height: 13px;
}
.contact-link i {
  font-size: 11px;
  vertical-align: -0.05em;
}

/* ====================== FAQ ====================== */
.faq-list {
  display: grid;
  gap: 0.85rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] {
  border-color: color-mix(in srgb, var(--indigo) 35%, var(--border));
  box-shadow: var(--sh-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.45rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item .chev {
  flex: none;
  transition: transform var(--transition);
  color: var(--muted);
}
.faq-item .chev svg {
  width: 22px;
  height: 22px;
}
.faq-item .chev i {
  font-size: 14px;
  display: block;
}
.faq-item[open] .chev {
  transform: rotate(180deg);
  color: var(--coral-d);
}
.faq-answer {
  padding: 0 1.45rem 1.3rem;
}
.faq-answer p {
  font-size: 1rem;
  color: var(--ink-2);
  text-wrap: pretty;
}
.faq-answer ul {
  padding-left: 1.4rem;
  display: grid;
  gap: 0.45rem;
  color: var(--ink-2);
  font-size: 1rem;
}
.faq-answer ul li {
  text-wrap: pretty;
}
.faq-answer ul + p,
.faq-answer dl + p {
  margin-top: 1rem;
}
.faq-answer .legal-dl {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-answer .legal-dl dt {
  font-weight: 600;
  color: var(--ink);
}
.faq-answer .legal-dl dd {
  margin: 0;
  color: var(--ink-2);
  padding-left: 0.9rem;
  border-left: 2px solid var(--border);
}

/* ====================== FOOTER ====================== */
.site-footer {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-emergency {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border-radius: var(--r);
  background: var(--danger-50);
  border: 1px solid color-mix(in srgb, var(--danger) 22%, transparent);
  margin-bottom: 2.2rem;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.footer-emergency svg {
  width: 19px;
  height: 19px;
  color: var(--danger);
  flex: none;
}
.footer-emergency i {
  font-size: 17px;
  color: var(--danger);
  flex: none;
}
.footer-emergency b {
  color: var(--danger);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  margin-bottom: 2.4rem;
}
.footer-brand .brand {
  margin-bottom: 0.9rem;
}
.footer-brand .brand-logo {
  height: 100px;
}
.footer-brand p {
  font-size: 0.95rem;
  color: var(--ink-2);
  max-width: 34ch;
  text-wrap: pretty;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.9rem;
  font-weight: 800;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.footer-col a,
.footer-col span {
  font-size: 0.95rem;
  color: var(--ink-2);
}
.footer-col a:hover {
  color: var(--coral-aa);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--muted);
}
.footer-bottom .disclaimer {
  max-width: 62ch;
  text-wrap: pretty;
}

/* ====================== IMAGE-SLOT skinning ====================== */
image-slot {
  --is-placeholder-bg: linear-gradient(160deg, #ffe9dd, #ffe0ec 60%, #e9ecff);
  --is-placeholder-color: #b06a44;
  --is-placeholder-border: 1.5px dashed #f0c4ac;
  display: block;
}

/* ====================== REVEAL ====================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ====================== RINGING PHONE ICON ====================== */
.rp {
  display: contents;
}
.header-cta .rp svg {
  width: 28px;
  height: 16px;
  overflow: visible;
}
.rp path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.rp-mobile {
  stroke-width: 1.5px;
  animation: rp-ringing 2s linear infinite;
}
.rp-smallleft,
.rp-smallright {
  stroke-width: 1px;
  animation: rp-waves 2s ease-out infinite;
  animation-delay: -0.4s;
  opacity: 0;
}
.rp-mediumleft,
.rp-mediumright {
  stroke-width: 1.2px;
  animation: rp-waves 2s ease-out infinite;
  animation-delay: -0.2s;
  opacity: 0;
}
.rp-bigleft,
.rp-bigright {
  stroke-width: 1.5px;
  animation: rp-waves 2s ease-out infinite;
  animation-delay: 0s;
  opacity: 0;
}
@keyframes rp-waves {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes rp-ringing {
  0% {
    transform: translate(0, 0);
  }
  1% {
    transform: translate(-1%, 0);
  }
  2% {
    transform: translate(0, 0);
  }
  3% {
    transform: translate(1%, 0);
  }
  4% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(-2%, 0);
  }
  6% {
    transform: translate(0, 0);
  }
  7% {
    transform: translate(2%, 0);
  }
  8% {
    transform: translate(0, 0);
  }
  9% {
    transform: translate(-1%, 0);
  }
  10% {
    transform: translate(0, 0);
  }
  11% {
    transform: translate(1%, 0);
  }
  12% {
    transform: translate(0, 0);
  }
  13% {
    transform: translate(-2%, 0);
  }
  14% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .pulse-dot,
  .hero-float {
    animation: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .hero-media {
    max-width: 520px;
  }
  .reflexes-title {
    max-width: none;
  }
  .human-band {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .human-photo {
    max-width: 560px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .nav {
    display: none;
  }
  .menu-btn {
    display: grid;
  }
  .header-cta .label-full {
    display: none;
  }
  .header-cta {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
  }
  .menu-btn {
    width: 48px;
    height: 48px;
  }
  .brand {
    flex: 1;
    min-width: 0;
  }
  .brand-logo {
    width: 100%;
    height: auto;
  }
  .header-inner {
    height: auto;
    padding: 0.65rem 0.75rem;
  }
  .callout {
    gap: 0.75rem;
    padding: 1rem 1.1rem;
  }
  .section-head h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .hero-actions .btn {
    flex: 1;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
  }
  .brand-logo {
    width: 100%;
    height: auto;
  }
  .header-inner {
    height: auto;
    padding: 0.6rem 0.6rem;
  }
  .reflexes-card {
    padding: 1.2rem 1rem;
  }
  .reflex {
    padding: 0.75rem 0.8rem;
  }
  .faq-item summary {
    font-size: 1rem;
    padding: 1rem 1.1rem;
  }
  .faq-answer {
    padding: 0 1.1rem 1rem;
  }
  .section {
    padding: clamp(2rem, 6vw, 3rem) 0;
  }
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }
}

/* ================================================================
   Page presse — liste compacte
   ================================================================ */
.press-year-label {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 2rem 0 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.press-year-label:first-child {
  margin-top: 0;
}
.press-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.press-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.press-item:hover {
  border-color: var(--coral);
  box-shadow: var(--sh-sm);
}
.press-item-body {
  flex: 1;
  min-width: 0;
}
.press-item-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}
.press-item-meta time {
  font-size: 0.75rem;
  color: var(--muted);
}
.press-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.press-item-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: color 0.15s;
}
.press-item:hover .press-item-icon {
  color: var(--coral);
}

/* ================================================================
   Page vidéos — cartes horizontales
   ================================================================ */
.video-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Carte horizontale */
.video-card {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  align-items: start;
  min-width: 0;
  overflow: hidden;
}
.video-card-embed {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}
.video-card-embed iframe,
.video-card-embed > div,
.video-card-embed :is(object, embed, video) {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  border: 0;
}
.video-card-embed iframe {
  display: block;
}
.video-card-embed > div,
.video-card-embed > div * {
  min-width: 0 !important;
  max-width: 100% !important;
}
.video-card-embed > div :is(iframe, object, embed, video) {
  width: 100% !important;
  height: 100% !important;
}
.video-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.1rem 0;
  min-width: 0;
}
.video-card-platform {
  display: block;
  line-height: 1;
}
.video-card-platform img {
  height: 22px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
}
.video-card-title {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
  overflow-wrap: anywhere;
}
.video-card-date {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.video-card-date svg {
  flex-shrink: 0;
}
.video-card-date i {
  flex-shrink: 0;
  font-size: 12px;
}
.video-card-link {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.video-card-link:hover {
  text-decoration: underline;
}
.video-cards-no-date-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
@media (max-width: 760px) {
  .video-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 560px) {
  .video-card {
    border-radius: 12px;
    padding: 0.85rem;
  }
  .video-card-platform img {
    max-width: 96px;
  }
  .video-card-title {
    font-size: 0.94rem;
  }
  .video-card-date,
  .video-card-link {
    font-size: 0.8rem;
  }
}
@media (max-width: 380px) {
  .video-card {
    margin-inline: -0.35rem;
  }
}

/* ================================================================
   Thème sombre
   ================================================================ */
[data-theme="dark"] {
  --cream: #18141e;
  --cream-2: #1d1929;
  --surface: #23202e;
  --ink: #f0eaf8;
  --ink-2: #c3b7d6;
  --muted: #9387a8;
  --border: #382f47;
  --border-cool: #302840;
  --indigo-50: #201d38;
  --coral-50: #2b1c1b;
  --amber-50: #261f12;
  --green-50: #132618;
  --danger-50: #2b1515;
  --sh-sm: 0 2px 8px -4px rgba(0, 0, 0, 0.6);
  --sh: 0 12px 28px -14px rgba(0, 0, 0, 0.6);
  --sh-lg: 0 22px 48px -20px rgba(0, 0, 0, 0.7);
  --sh-coral: 0 12px 24px -8px rgba(255, 90, 77, 0.25);
  --sh-indigo: 0 12px 24px -8px rgba(255, 90, 77, 0.25);
}
[data-theme="dark"] ::selection {
  background: #3d2a50;
  color: #f0eaf8;
}
[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: #3a3145;
}
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
  background: #4a4060;
}
[data-theme="dark"] .hero {
  background: var(--cream);
}
[data-theme="dark"] .section-indigo {
  background:
    radial-gradient(
      60% 100% at 100% 0%,
      rgba(100, 40, 40, 0.4) 0%,
      transparent 60%
    ),
    var(--cream-2);
}
[data-theme="dark"] image-slot {
  --is-placeholder-bg: linear-gradient(160deg, #2a1e2e, #1e1a2e 60%, #1a1d2e);
  --is-placeholder-color: #9388b0;
  --is-placeholder-border: 1.5px dashed #382f47;
}

/* Transitions fluides uniquement lors du basculement */
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease !important;
}

/* Bouton flottant de thème */
.theme-toggle {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: var(--pill);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh);
  padding: 0;
}
.theme-toggle:hover {
  background: var(--cream-2);
  color: var(--ink);
  box-shadow: var(--sh-lg);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.theme-toggle i {
  font-size: 18px;
  pointer-events: none;
}

/* Shared utility classes */
.wrap-center {
  text-align: center;
}
.wrap-center-note {
  color: var(--ink-2);
  margin-bottom: 1.2rem;
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
}
