/* ==========================================================================
   Kingdom Casino UK — core-10
   ========================================================================== */

/* --- fonts ---------------------------------------------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/letterworks/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/letterworks/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/letterworks/inter-900.woff2') format('woff2');
}

/* --- tokens --------------------------------------------------------------- */
:root {
  --c-core: #212326;
  --c-spot: #f68242;
  --c-accent-pressed: #f56819;
  --c-bg: #0f1011;
  --c-surface-2: #191b1e;
  --c-body: #ffffff;
  --c-dim: #bebebe;
  --c-border: #2c3034;
  --c-rule-bold: #3d4147;
  --c-dim-2: #7a8086;
  --c-ramp-start: #fcd2b9;
  --c-grad-2: #faaa73;
  --c-rg-banner: #c1121f;

  --s-1: 2px;
  --s-2: 6px;
  --s-3: 10px;
  --s-4: 16px;
  --s-5: 48px;
  --s-6: 80px;
  --s-7: 128px;
  --s-8: 200px;

  --r-1: 1px;
  --r-2: 2px;
  --r-3: 6px;
  --r-4: 8px;
  --r-5: 14px;
  --r-6: 20px;
  --r-7: 26px;
  --r-8: 32px;
  --r-pill: 9999px;
  --r-orb: 50%;

  --d-1: 0 1px 1px rgba(0, 0, 0, 0.04);
  --d-2: 0 1px 2px rgba(0, 0, 0, 0.05);
  --d-3: 0 2px 4px rgba(0, 0, 0, 0.08);
  --d-4: 0 4px 10px rgba(0, 0, 0, 0.1);
  --d-5: 0 8px 20px rgba(0, 0, 0, 0.14);
  --d-6: 0 12px 28px rgba(0, 0, 0, 0.2);
  --d-7: 0 18px 40px rgba(0, 0, 0, 0.26);
  --d-8: 0 26px 60px rgba(0, 0, 0, 0.32);

  --f-lead: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --f-reading: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --z-xxl: 34px;
  --z-head: 26px;
  --z-display-3: 20px;
  --z-h4: 16px;
  --z-minor: 14px;
  --z-micro-head: 12px;
  --z-normal: 15px;
  --z-small: 12px;
  --z-legal: 10px;

  --l-snug: 1.05;
  --l-base: 1.4;
  --l-open: 1.6;

  --w-plain: 500;
  --w-mid: 700;
  --w-heavy: 900;

  --e-tight: -0.02em;
  --e-normal: 0.02em;
  --e-wide: 0.1em;

  --t-quick: 191ms;
  --t-base: 340ms;
  --t-gentle: 534ms;
  --x-out: cubic-bezier(0.21, 0.83, 0.47, 0.96);
  --x-start: cubic-bezier(0.39, 0.06, 0.49, 0.99);
  --x-smooth: cubic-bezier(0.39, 0.06, 0.49, 0.99);
  --x-overshoot: cubic-bezier(0.38, 1.55, 0.53, 1.2);

  --v-full: 1180px;
  --v-column: 1180px;
  --v-brief: 580px;
  --v-padding-mobile: 16px;
  --v-pad-md: 24px;
  --v-padding-desktop: 48px;
  --v-gutter: var(--v-padding-mobile);

  --b-thin: 1px;
  --b-even: 2px;
  --b-heavy: 3px;

  --h-size-desktop: 60px;
  --h-h-sm: 60px;
  --h-rg: 34px;

  --sec-y: var(--s-5);
  --p-lane: 22px;
  --p-drop: 26px;
}

/* --- scale up on wider screens -------------------------------------------- */
@media (min-width: 800px) {
  :root {
    --z-xxl: 44px;
    --z-head: 32px;
    --z-display-3: 22px;
    --z-h4: 17px;
    --z-minor: 15px;
    --z-micro-head: 13px;
    --z-normal: 16px;
    --z-small: 13px;
    --z-legal: 11px;
    --v-gutter: var(--v-pad-md);
  }
}

@media (min-width: 1100px) {
  :root {
    --z-xxl: 56px;
    --z-head: 38px;
    --z-display-3: 24px;
    --z-h4: 18px;
    --v-gutter: var(--v-padding-desktop);
  }
}

/* --- reset / base --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: 76px;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--c-bg);
  color: var(--c-body);
  font-family: var(--f-reading);
  font-size: var(--z-normal);
  font-weight: var(--w-plain);
  line-height: var(--l-base);
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
  margin: 0;
}

h1 {
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-xxl);
  line-height: var(--l-snug);
  letter-spacing: var(--e-tight);
  text-transform: uppercase;
}

h2 {
  font-family: var(--f-lead);
  font-weight: var(--w-mid);
  font-size: var(--z-head);
  line-height: var(--l-snug);
  letter-spacing: var(--e-tight);
  text-transform: uppercase;
}

h3,
h4 {
  font-family: var(--f-lead);
  font-weight: var(--w-mid);
  letter-spacing: var(--e-normal);
  line-height: var(--l-base);
}

h3 {
  font-size: var(--z-display-3);
}

h4 {
  font-size: var(--z-h4);
}

h5,
h6 {
  font-family: var(--f-reading);
  font-weight: var(--w-heavy);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
}

h5 {
  font-size: var(--z-minor);
}

h6 {
  font-size: var(--z-micro-head);
}

p {
  margin: 0;
}

a {
  color: var(--c-spot);
  text-decoration: none;
  transition: color var(--t-quick) var(--x-out);
}

a:hover,
a:focus-visible {
  color: var(--c-ramp-start);
}

:focus-visible {
  outline: var(--b-even) solid var(--c-spot);
  outline-offset: 2px;
}

/* --- a11y ----------------------------------------------------------------- */
.skip-hop {
  position: absolute;
  left: var(--s-4);
  z-index: 200;
  background-color: var(--c-spot);
  color: var(--c-bg);
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-small);
  text-transform: uppercase;
  letter-spacing: var(--e-wide);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-3);
  top: var(--s-3);
}

.skip-hop:not(:focus) {
  top: -200px !important;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  [data-seen] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- reveal (motion: fade + rise) ----------------------------------------- */
[data-seen] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-gentle) var(--x-out), transform var(--t-gentle) var(--x-out);
}

[data-seen].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- shared section frame ------------------------------------------------- */
.fiche-frame,
.cour-frame,
.coffre-frame,
.chambre-frame,
.registre-frame,
.repere-frame,
.bandeau-frame,
.terrasse-frame,
.retable-frame,
.pupitre-frame,
.tableau-frame,
.enseigne-frame,
.secteur-frame,
.blason-frame,
.voute-frame {
  width: 100%;
  max-width: calc(var(--v-full) + 2 * var(--v-padding-desktop));
  margin-inline: auto;
  padding-inline: var(--v-gutter);
}

/* --- responsible gaming banner (RG-01) ------------------------------------ */
.rg-banner {
  display: block;
  text-align: center;
  background-color: var(--c-rg-banner);
  color: var(--c-body);
  font-family: var(--f-reading);
  font-size: var(--z-small);
  font-weight: var(--w-mid);
  letter-spacing: var(--e-normal);
  line-height: var(--l-base);
  padding: var(--s-3) var(--s-4);
  margin: 0;
}

.rg-hop {
  color: var(--c-body);
  background-color: var(--c-rg-banner);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rg-hop:hover,
.rg-hop:focus-visible {
  color: var(--c-ramp-start);
  background-color: var(--c-rg-banner);
}

/* --- header (HEAD-OVER, sticky, transparent over first screen) ------------- */
.socle {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  margin-block-end: -60px;
  background-color: rgba(15, 16, 17, 0);
  color: var(--c-body);
  transition: height var(--t-base) var(--x-out), background-color var(--t-base) var(--x-out);
}

.socle.is-stuck {
  height: 52px;
  background-color: var(--c-bg);
  box-shadow: var(--d-5);
}

.socle-band {
  height: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.socle-sign {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  color: var(--c-body);
  background-color: transparent;
}

.socle-plate {
  display: inline-flex;
  align-items: center;
  background-color: var(--c-core);
  color: var(--c-body);
  border-radius: var(--r-3);
  padding: var(--s-2) var(--s-3);
}

.socle-figure {
  display: block;
  height: 34px;
  width: auto;
  flex-shrink: 0;
}

.socle-toggle {
  display: none;
  margin-left: auto !important;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 44px;
  padding-inline: var(--s-3);
  background-color: var(--c-core);
  color: var(--c-body);
  border: var(--b-thin) solid var(--c-rule-bold);
  border-radius: var(--r-3);
  font-family: var(--f-reading);
  font-size: var(--z-small);
  font-weight: var(--w-heavy);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
  cursor: pointer;
}

.socle-lines {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--c-body);
}

.socle-lines::before,
.socle-lines::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--c-body);
}

.socle-lines::before {
  top: -6px;
}

.socle-lines::after {
  top: 6px;
}

.socle-guide {
  display: block;
  margin-left: auto;
  min-width: 0;
}

.socle-list {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.socle-unit {
  position: relative;
  display: flex;
  align-items: center;
}

.socle-unit + .socle-unit::before {
  content: '\00b7';
  color: var(--c-dim);
  background-color: transparent;
  margin-inline-end: var(--s-3);
  font-size: var(--z-normal);
  line-height: 1;
}

.socle-unit[hidden] {
  display: none;
}

.socle-moreUnit {
  position: relative;
}

.socle-hop {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  color: var(--c-body);
  background-color: transparent;
  font-family: var(--f-reading);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

.socle-hop:hover,
.socle-hop:focus-visible {
  color: var(--c-body);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.socle-hop[aria-current='page'] {
  font-weight: var(--w-heavy);
  color: var(--c-body);
}

.socle-more {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 44px;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--c-body);
  font-family: var(--f-reading);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}

.socle-more::after {
  content: '\002b';
  color: var(--c-spot);
  background-color: transparent;
  font-weight: var(--w-heavy);
}

.socle-more:hover,
.socle-more:focus-visible {
  color: var(--c-body);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.socle-pane {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 210px;
  max-height: 60vh;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: var(--s-3);
  background-color: var(--c-core);
  color: var(--c-body);
  border: var(--b-thin) solid var(--c-rule-bold);
  border-radius: var(--r-4);
  box-shadow: var(--d-6);
}

.socle-pane.is-open {
  display: block;
}

.socle-pane .socle-unit {
  display: block;
}

.socle-pane .socle-unit::before {
  content: none;
}

.socle-pane .socle-hop {
  display: flex;
  min-height: 40px;
  text-shadow: none;
}

.socle-badge {
  flex-shrink: 0;
  margin-inline-start: var(--s-3);
  padding: var(--s-1) var(--s-2);
  background-color: var(--c-core);
  color: var(--c-ramp-start);
  border-radius: var(--r-2);
  font-family: var(--f-reading);
  font-size: var(--z-legal);
  font-weight: var(--w-heavy);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
}

.socle-dock {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 40;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background-color: var(--c-core);
  color: var(--c-body);
  border-block-start: var(--b-thin) solid var(--c-rule-bold);
  box-shadow: var(--d-6);
}

.socle-dock.is-open {
  display: block;
}

.socle-dockList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.socle-dockHop {
  display: block;
  padding: var(--s-3) var(--s-4);
  min-height: 46px;
  color: var(--c-body);
  background-color: var(--c-core);
  font-size: var(--z-normal);
  border-block-end: var(--b-thin) solid var(--c-rule-bold);
}

.socle-dockHop:hover,
.socle-dockHop:focus-visible {
  color: var(--c-bg);
  background-color: var(--c-spot);
}

.socle-dockHop[aria-current='page'] {
  font-weight: var(--w-heavy);
  color: var(--c-ramp-start);
  background-color: var(--c-core);
}

@media (max-width: 1023px) {
  .socle-guide {
    display: none;
  }

  .socle-toggle {
    display: flex;
  }

  .socle-badge {
    display: none;
  }
}

@media (min-width: 1024px) {
  .socle-dock {
    display: none !important;
  }
}

@media (min-width: 1100px) {
  .socle-figure {
    height: 40px;
  }

  .socle-band {
    padding-inline: var(--s-5);
  }
}

/* --- offer button base ---------------------------------------------------- */
.kd-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding-inline: var(--s-5);
  background-color: var(--c-spot);
  color: var(--c-bg);
  border-radius: var(--r-4);
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-micro-head);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
  text-align: center;
}

.kd-offer:hover,
.kd-offer:focus-visible {
  background-color: var(--c-accent-pressed);
  color: var(--c-bg);
}

/* --- hero (HERO-01 full-bleed cinematic) ---------------------------------- */
.fiche {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(480px, 74vh, 640px);
  background-color: var(--c-core);
  background-image: url('/scenes/vision-72.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.fiche-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.86) 100%);
  pointer-events: none;
}

.fiche-frame {
  position: relative;
  z-index: 3;
  padding-block: 92px var(--s-5);
}

.fiche-head {
  color: var(--c-body);
  max-width: var(--v-brief);
}

.fiche-sub {
  margin-block-start: var(--s-4);
  max-width: var(--v-brief);
  color: var(--c-ramp-start);
  font-size: var(--z-minor);
  line-height: var(--l-base);
}

.fiche-terms {
  display: block;
  margin-block-start: var(--s-3);
  max-width: var(--v-brief);
  color: var(--c-dim);
  background-color: transparent;
  font-size: var(--z-small);
  letter-spacing: var(--e-normal);
}

.fiche .kd-offer {
  margin-block-start: var(--s-4);
}

@media (min-width: 800px) {
  .fiche {
    min-height: clamp(560px, 88vh, 760px);
  }

  .fiche-frame {
    padding-block: 96px var(--s-5);
  }

  .fiche-sub {
    font-size: var(--z-h4);
  }
}

/* --- page header (PHEAD-10 manifesto) ------------------------------------- */
.cour {
  background-color: var(--c-bg);
  padding-block: 84px var(--sec-y);
  text-align: center;
}

.coffre + .cour {
  padding-block-start: var(--s-4);
}

.cour-head {
  font-size: clamp(30px, 7vw, 72px);
  line-height: var(--l-snug);
  color: var(--c-body);
}

.cour-dot {
  display: block;
  margin-block: var(--s-3);
  color: var(--c-spot);
  background-color: transparent;
  font-family: var(--f-lead);
  font-size: var(--z-head);
  line-height: 1;
}

.cour-sub {
  margin-inline: auto;
  max-width: var(--v-brief);
  font-style: italic;
  font-size: var(--z-h4);
  line-height: var(--l-base);
  color: var(--c-dim);
}

/* --- breadcrumbs (BREAD-02 pill chips) ------------------------------------ */
.coffre {
  background-color: var(--c-bg);
  padding-block: 84px 0;
}

.coffre-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.coffre-unit {
  display: inline-flex;
}

.coffre-hop,
.coffre-here {
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-pill);
  padding: var(--s-1) var(--s-3);
  font-size: var(--z-legal);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
}

.coffre-hop {
  background-color: var(--c-surface-2);
  color: var(--c-dim);
}

.coffre-hop:hover,
.coffre-hop:focus-visible {
  background-color: var(--c-spot);
  color: var(--c-bg);
}

.coffre-here {
  background-color: var(--c-core);
  color: var(--c-body);
}

/* --- prose (PROSE-03 marginal rule, thick dashed, roomy) ------------------- */
.chambre {
  background-color: var(--c-bg);
  padding-block: var(--sec-y);
}

.chambre-head {
  margin-block-end: var(--s-4);
  font-size: var(--z-head);
  font-weight: var(--w-heavy);
  color: var(--c-body);
}

.chambre-prose {
  margin-block-start: var(--p-drop);
  padding-inline-start: var(--p-lane);
  border-inline-start: var(--b-heavy) dashed var(--c-spot);
  font-size: var(--z-normal);
  line-height: var(--l-open);
  color: var(--c-dim);
}

.chambre:nth-of-type(even) .chambre-prose {
  border-inline-start-color: var(--c-ramp-start);
}

.chambre-prose strong {
  color: var(--c-body);
  font-weight: var(--w-heavy);
}

.chambre-prose em {
  color: var(--c-ramp-start);
  font-style: italic;
}

.chambre-list,
.chambre-order {
  margin-block-start: var(--p-drop);
  padding-inline-start: calc(var(--p-lane) + var(--s-4));
  border-inline-start: var(--b-heavy) dashed var(--c-spot);
  color: var(--c-dim);
  line-height: var(--l-open);
  list-style-position: outside;
}

.chambre:nth-of-type(even) .chambre-list,
.chambre:nth-of-type(even) .chambre-order {
  border-inline-start-color: var(--c-ramp-start);
}

.chambre-unit {
  margin-block-start: var(--s-3);
}

.chambre-unit::marker {
  color: var(--c-spot);
  font-weight: var(--w-heavy);
}

.chambre-figure {
  display: block;
  margin-block-start: var(--s-5);
  margin-inline: auto;
  max-width: 100%;
  width: fit-content;
}

.chambre-figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 52vh;
  border-radius: var(--r-5);
}

.chambre-figure.is-tall img {
  max-height: 50vh;
}

.chambre-figure.is-square img {
  max-width: 520px;
  max-height: 52vh;
}

.chambre-figure.is-wide img {
  max-height: 52vh;
}

.chambre-hook {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
  margin-block-start: var(--s-5);
  padding: var(--s-4);
  background-color: var(--c-surface-2);
  color: var(--c-body);
  border: var(--b-thin) solid var(--c-border);
  border-radius: var(--r-5);
}

.chambre-say {
  color: var(--c-body);
  background-color: var(--c-surface-2);
  font-family: var(--f-lead);
  font-size: var(--z-h4);
  font-weight: var(--w-mid);
  line-height: var(--l-base);
}

@media (min-width: 800px) {
  .chambre-hook {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
  }
}

/* --- items grid (GRID-02 numbered vertical strip) -------------------------- */
.registre {
  background-color: var(--c-bg);
  padding-block: var(--sec-y);
}

.registre-caption {
  margin-block-end: var(--s-4);
  color: var(--c-body);
}

.registre-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.registre-unit {
  display: flex;
  gap: var(--s-4);
  padding-block: var(--s-5);
  border-block-end: var(--b-thin) solid var(--c-border);
}

.registre-unit:last-child {
  border-block-end: 0;
}

.registre-band {
  display: block;
  padding-block: var(--s-5);
  border-block-end: var(--b-thin) solid var(--c-border);
}

.registre-band .chambre-hook {
  margin-block-start: 0;
}

.registre-num {
  flex: 0 0 auto;
  align-self: flex-start;
  width: 56px;
  color: var(--c-spot);
  background-color: transparent;
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-head);
  letter-spacing: var(--e-tight);
  line-height: var(--l-snug);
  transition: transform var(--t-base) var(--x-out);
}

.registre-unit:hover .registre-num {
  transform: scale(1.1);
}

.registre-main {
  min-width: 0;
}

.registre-head {
  color: var(--c-body);
  font-weight: var(--w-heavy);
}

.registre-prose {
  margin-block-start: var(--s-3);
  color: var(--c-dim);
  line-height: var(--l-open);
}

@media (min-width: 800px) {
  .registre-num {
    width: 80px;
    font-size: var(--z-xxl);
  }

  .registre-unit {
    gap: var(--s-5);
  }
}

/* --- reviews (REV-01 three-column cards with stars) ----------------------- */
.repere {
  background-color: var(--c-bg);
  padding-block: var(--sec-y);
}

.repere-caption {
  margin-block-end: var(--s-4);
  color: var(--c-body);
}

.repere-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.repere-unit {
  padding: var(--s-4);
  background-color: var(--c-surface-2);
  color: var(--c-body);
  border: var(--b-thin) solid var(--c-border);
  border-radius: var(--r-4);
  transition: transform var(--t-base) var(--x-out);
}

.repere-unit:hover {
  transform: translateY(-3px);
}

.repere-slot {
  grid-column: 1 / -1;
}

.repere-slot .chambre-hook {
  margin-block-start: 0;
}

.repere-band {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
}

.repere-author {
  color: var(--c-body);
  background-color: var(--c-surface-2);
  font-weight: var(--w-heavy);
  font-size: var(--z-normal);
}

.repere-on {
  color: var(--c-dim);
  background-color: var(--c-surface-2);
  font-size: var(--z-legal);
}

.repere-stars {
  position: relative;
  display: inline-block;
  margin-block-start: var(--s-3);
  color: var(--c-dim-2);
  background-color: var(--c-surface-2);
  font-size: var(--z-h4);
  letter-spacing: 2px;
  line-height: 1.2;
}

.repere-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--c-spot);
  background-color: transparent;
}

.repere-quote {
  margin: 0;
  margin-block-start: var(--s-3);
  color: var(--c-dim);
  background-color: var(--c-surface-2);
  font-size: var(--z-normal);
  line-height: var(--l-open);
  font-style: normal;
}

@media (min-width: 800px) {
  .repere-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .repere-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s-4);
  }
}

/* --- faq (FAQ-09 magazine Q&A) -------------------------------------------- */
.bandeau {
  background-color: var(--c-bg);
  padding-block: var(--sec-y);
}

.bandeau-caption {
  margin-block-end: var(--s-4);
  color: var(--c-body);
}

.bandeau-list {
  margin: 0;
}

.bandeau-unit {
  padding-block: var(--s-4);
  border-block-end: var(--b-thin) solid var(--c-border);
}

.bandeau-unit:last-child {
  border-block-end: 0;
}

.bandeau-summary {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  cursor: pointer;
  list-style: none;
}

.bandeau-summary::after {
  content: '+';
  margin-inline-start: auto;
  align-self: center;
  color: var(--c-spot);
  background-color: transparent;
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-h4);
  line-height: 1;
  transition: transform var(--t-base) var(--x-out);
}

.bandeau-unit[open] .bandeau-summary::after {
  content: '\2212';
  transform: rotate(180deg);
}

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

.bandeau-mark {
  flex: 0 0 auto;
  min-width: 26px;
  color: var(--c-spot);
  background-color: transparent;
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-minor);
  line-height: var(--l-base);
}

.bandeau-head {
  margin: 0;
  color: var(--c-body);
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-minor);
  font-style: italic;
  line-height: var(--l-base);
}

.bandeau-prose {
  display: flex;
  gap: var(--s-3);
  margin-block-start: var(--s-3);
  color: var(--c-dim);
  font-size: var(--z-normal);
  line-height: var(--l-open);
}

@media (min-width: 800px) {
  .bandeau-head {
    font-size: var(--z-h4);
  }

  .bandeau-mark {
    font-size: var(--z-h4);
  }
}

/* --- data table (TABLE-01 striped rows) ----------------------------------- */
.terrasse {
  background-color: var(--c-bg);
  padding-block: var(--sec-y);
}

.terrasse-caption {
  margin-block-end: var(--s-4);
  color: var(--c-body);
}

.terrasse-scroll {
  overflow-x: auto;
  border-radius: var(--r-4);
  border: var(--b-thin) solid var(--c-border);
}

.terrasse-grid {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  background-color: var(--c-surface-2);
  color: var(--c-body);
  font-size: var(--z-normal);
}

.terrasse-grid th {
  padding: var(--s-4);
  text-align: left;
  background-color: var(--c-core);
  color: var(--c-spot);
  font-family: var(--f-reading);
  font-weight: var(--w-mid);
  font-size: var(--z-micro-head);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.terrasse-grid td {
  padding: var(--s-4);
  text-align: left;
  background-color: var(--c-surface-2);
  color: var(--c-dim);
  border-block-start: var(--b-thin) solid var(--c-border);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.terrasse-grid td:first-child {
  color: var(--c-body);
  background-color: var(--c-surface-2);
  font-weight: var(--w-mid);
}

.terrasse-grid tbody tr:nth-child(even) td {
  background-color: var(--c-core);
}

.terrasse-grid tbody tr:nth-child(even) td:first-child {
  background-color: var(--c-core);
}

.terrasse-note {
  margin-block-start: var(--s-3);
  color: var(--c-dim);
  font-size: var(--z-small);
}

/* --- cta block (CTA-10 magazine pull-quote) ------------------------------- */
.retable {
  background-color: var(--c-bg);
  padding-block: var(--sec-y);
  text-align: center;
}

.retable-quote {
  position: relative;
  margin-inline: auto;
  max-width: 900px;
  font-family: var(--f-lead);
  font-style: italic;
  font-weight: var(--w-heavy);
  font-size: var(--z-xxl);
  line-height: var(--l-snug);
  letter-spacing: var(--e-tight);
  color: var(--c-body);
  background-color: transparent;
}

.retable-quote::before {
  content: '\201c';
  display: block;
  color: var(--c-spot);
  background-color: transparent;
  font-family: var(--f-lead);
  font-size: 72px;
  line-height: 0.7;
}

.retable-sub {
  margin-block-start: var(--s-4);
  margin-inline: auto;
  max-width: var(--v-brief);
  color: var(--c-dim);
  font-size: var(--z-normal);
  line-height: var(--l-open);
}

.retable-hop {
  margin-block-start: var(--s-4);
}

/* --- inline cta (INLINE-CTA-06 dual-button mini bar) ---------------------- */
.voute {
  display: block;
  padding-block: var(--s-4);
}

.voute-shell {
  margin-inline: auto;
  max-width: 600px;
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: center;
  text-align: center;
  background-color: var(--c-surface-2);
  color: var(--c-body);
  border: var(--b-thin) solid var(--c-border);
  border-radius: var(--r-5);
}

.voute-prose {
  color: var(--c-dim);
  background-color: var(--c-surface-2);
  font-size: var(--z-normal);
}

.voute-acts {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  width: 100%;
}

.voute-goto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding-inline: var(--s-4);
  background-color: var(--c-core);
  color: var(--c-body);
  border: var(--b-thin) solid var(--c-rule-bold);
  border-radius: var(--r-4);
  font-family: var(--f-lead);
  font-weight: var(--w-mid);
  font-size: var(--z-micro-head);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
}

.voute-goto:hover,
.voute-goto:focus-visible {
  background-color: var(--c-rule-bold);
  color: var(--c-body);
  border-color: var(--c-body);
}

@media (min-width: 800px) {
  .voute-acts {
    flex-direction: row;
    justify-content: center;
  }

  .voute-acts > * {
    flex: 0 1 auto;
  }
}

/* --- legal (LEGAL-05 definition list) ------------------------------------- */
.pupitre {
  background-color: var(--c-bg);
  padding-block: var(--sec-y);
}

.pupitre-list {
  margin: 0;
}

.pupitre-term {
  position: relative;
  margin-block-start: var(--s-5);
  padding-block-start: var(--s-3);
  color: var(--c-body);
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-h4);
  text-transform: uppercase;
  letter-spacing: var(--e-normal);
}

.pupitre-term::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--c-spot);
}

.pupitre-def {
  margin-inline-start: 0;
  margin-block: var(--s-3) var(--s-4);
  color: var(--c-dim);
  font-size: var(--z-normal);
  line-height: var(--l-open);
}

.pupitre-def p + p {
  margin-block-start: var(--s-4);
}

.pupitre-detail {
  color: var(--c-dim);
  font-size: var(--z-small);
  letter-spacing: var(--e-normal);
}

.pupitre-note {
  margin-block-start: var(--s-5);
  padding: var(--s-4);
  background-color: var(--c-surface-2);
  color: var(--c-dim);
  border-inline-start: var(--b-heavy) solid var(--c-spot);
  border-radius: var(--r-3);
  font-size: var(--z-small);
  line-height: var(--l-open);
}

/* --- contact form (FORM-06 floating labels) ------------------------------- */
.tableau {
  background-color: var(--c-bg);
  padding-block: var(--sec-y);
}

.tableau-caption {
  margin-block-end: var(--s-4);
  color: var(--c-body);
}

.tableau-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  max-width: 620px;
}

.tableau-control {
  position: relative;
}

.tableau-input,
.tableau-area {
  width: 100%;
  padding: var(--s-5) var(--s-4) var(--s-3);
  background-color: var(--c-surface-2);
  color: var(--c-body);
  border: var(--b-thin) solid var(--c-border);
  border-radius: var(--r-4);
  font-family: var(--f-reading);
  font-size: var(--z-normal);
}

.tableau-area {
  min-height: 148px;
  resize: vertical;
}

.tableau-badge {
  position: absolute;
  top: 50%;
  left: var(--s-4);
  transform: translateY(-50%);
  color: var(--c-dim);
  background-color: transparent;
  font-size: var(--z-normal);
  pointer-events: none;
  transition: top var(--t-quick) var(--x-out), font-size var(--t-quick) var(--x-out);
}

.tableau-area + .tableau-badge {
  top: var(--s-5);
}

.tableau-input:focus + .tableau-badge,
.tableau-input:not(:placeholder-shown) + .tableau-badge,
.tableau-area:focus + .tableau-badge,
.tableau-area:not(:placeholder-shown) + .tableau-badge {
  top: var(--s-4);
  transform: translateY(0);
  font-size: var(--z-legal);
  color: var(--c-spot);
  background-color: transparent;
}

.tableau-send {
  align-self: flex-start;
  min-height: 52px;
  padding-inline: var(--s-5);
  background-color: var(--c-spot);
  color: var(--c-bg);
  border: 0;
  border-radius: var(--r-4);
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-micro-head);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--t-quick) var(--x-out), background-color var(--t-quick) var(--x-out);
}

.tableau-send:hover,
.tableau-send:focus-visible {
  background-color: var(--c-accent-pressed);
  color: var(--c-bg);
  transform: scale(1.05);
}

.tableau-say {
  display: none;
  margin-block-start: var(--s-4);
  padding: var(--s-4);
  background-color: var(--c-surface-2);
  color: var(--c-body);
  border-inline-start: var(--b-heavy) solid var(--c-spot);
  border-radius: var(--r-3);
  font-size: var(--z-normal);
  line-height: var(--l-open);
}

.tableau-say.is-open {
  display: block;
}

/* --- author card (AUTH-08 minimal avatar + name) -------------------------- */
.enseigne {
  background-color: var(--c-bg);
  padding-block: var(--s-5);
}

.enseigne-frame {
  display: flex;
}

.enseigne-who {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background-color: var(--c-surface-2);
  color: var(--c-body);
  border: var(--b-thin) solid var(--c-border);
  border-radius: var(--r-5);
}

.enseigne-portrait {
  position: relative;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: var(--r-orb);
  background-color: var(--c-core);
}

.enseigne-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enseigne-prose {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.enseigne-author {
  color: var(--c-body);
  background-color: var(--c-surface-2);
  font-weight: var(--w-heavy);
  font-size: var(--z-normal);
}

.enseigne-duty {
  color: var(--c-dim);
  background-color: var(--c-surface-2);
  font-size: var(--z-legal);
}

/* --- author byline (BYLINE-05 horizontal bar) ----------------------------- */
.secteur {
  display: block;
  background-color: var(--c-core);
  padding-block: var(--s-5);
}

.secteur-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
}

.secteur-who {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.secteur-portrait {
  position: relative;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: var(--r-orb);
  background-color: var(--c-bg);
}

.secteur-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secteur-prose {
  min-width: 0;
}

.secteur-author {
  color: var(--c-body);
  background-color: var(--c-core);
  font-weight: var(--w-heavy);
  font-size: var(--z-normal);
}

.secteur-author a {
  color: var(--c-body);
  background-color: var(--c-core);
}

.secteur-author a:hover,
.secteur-author a:focus-visible {
  color: var(--c-ramp-start);
  background-color: var(--c-core);
}

.secteur-duty {
  color: var(--c-dim);
  background-color: var(--c-core);
  font-size: var(--z-small);
}

.secteur-on {
  display: block;
  margin-block-start: var(--s-1);
  color: var(--c-dim);
  background-color: var(--c-core);
  font-size: var(--z-legal);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
}

.secteur-hook {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: var(--s-3) var(--s-4);
  background-color: var(--c-core);
  color: var(--c-spot);
  border: var(--b-thin) solid var(--c-spot);
  border-radius: var(--r-4);
  font-size: var(--z-small);
  font-weight: var(--w-mid);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
}

.secteur-hook:hover,
.secteur-hook:focus-visible {
  background-color: var(--c-spot);
  color: var(--c-bg);
}

@media (min-width: 800px) {
  .secteur-frame {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* --- error block (ERR-01 centered hero-style) ----------------------------- */
.blason {
  background-color: var(--c-bg);
  padding-block: 92px var(--s-6);
  text-align: center;
}

.blason-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}

.blason-num {
  color: var(--c-spot);
  background-color: transparent;
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: clamp(80px, 18vw, 200px);
  line-height: var(--l-snug);
  letter-spacing: var(--e-tight);
}

.blason-head {
  max-width: var(--v-brief);
  color: var(--c-body);
}

.blason-prose {
  max-width: var(--v-brief);
  color: var(--c-dim);
  font-size: var(--z-h4);
  line-height: var(--l-base);
}

.blason-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding-inline: var(--s-5);
  background-color: var(--c-spot);
  color: var(--c-bg);
  border-radius: var(--r-4);
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-micro-head);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
}

.blason-go:hover,
.blason-go:focus-visible {
  background-color: var(--c-accent-pressed);
  color: var(--c-bg);
}

/* --- cookie banner (COOK-07 discrete toast, banner: slide-side) ----------- */
.lisere {
  position: fixed;
  z-index: 90;
  inset-block-end: var(--s-4);
  inset-inline-end: var(--s-4);
  inset-inline-start: var(--s-4);
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 0 100%);
  transition: clip-path var(--t-gentle) var(--x-out), opacity var(--t-base) var(--x-out), visibility 0s linear var(--t-gentle);
}

.lisere.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0);
  transition: clip-path var(--t-gentle) var(--x-out), opacity var(--t-base) var(--x-out), visibility 0s;
}

.lisere-shell {
  margin-inline-start: auto;
  max-width: 320px;
  padding: var(--s-4);
  background-color: var(--c-core);
  color: var(--c-body);
  border-inline-start: 4px solid var(--c-spot);
  border-radius: var(--r-3);
  box-shadow: var(--d-4);
}

.lisere-say {
  color: var(--c-dim);
  background-color: var(--c-core);
  font-size: var(--z-small);
  line-height: var(--l-base);
}

.lisere-allow {
  margin-block-start: var(--s-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding-inline: var(--s-4);
  background-color: var(--c-spot);
  color: var(--c-bg);
  border: 0;
  border-radius: var(--r-3);
  font-family: var(--f-lead);
  font-weight: var(--w-heavy);
  font-size: var(--z-small);
  letter-spacing: var(--e-wide);
  text-transform: uppercase;
  cursor: pointer;
}

.lisere-allow:hover,
.lisere-allow:focus-visible {
  background-color: var(--c-accent-pressed);
  color: var(--c-bg);
}

@media (max-width: 720px) {
  .lisere-shell {
    max-width: none;
    padding: 12px 14px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .lisere-allow {
    width: 100%;
    min-height: 36px !important;
    font-size: 12px !important;
  }
}

/* --- footer (FOOT-09 wide single-strip industrial) ------------------------ */
.etiquette {
  background-color: var(--c-core);
  color: var(--c-body);
  padding-block: var(--s-4);
  margin-block-start: var(--s-5);
}

.etiquette-shell {
  width: 100%;
  max-width: calc(var(--v-full) + 2 * var(--v-padding-desktop));
  margin-inline: auto;
  padding-inline: var(--v-gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
}

.etiquette-sign {
  display: inline-flex;
  align-items: center;
  background-color: var(--c-core);
}

.etiquette-figure {
  display: block;
  height: 36px;
  width: auto;
}

.etiquette-list,
.etiquette-lawList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.etiquette-list {
  gap: var(--s-4);
}

.etiquette-lawList {
  gap: var(--s-3);
}

.etiquette-hop {
  color: var(--c-body);
  background-color: var(--c-core);
  font-size: var(--z-small);
  letter-spacing: var(--e-wide);
}

.etiquette-hop:hover,
.etiquette-hop:focus-visible {
  color: var(--c-spot);
  background-color: var(--c-core);
}

.etiquette-lawHop {
  color: var(--c-dim);
  background-color: var(--c-core);
  font-size: var(--z-legal);
  letter-spacing: var(--e-wide);
}

.etiquette-lawHop:hover,
.etiquette-lawHop:focus-visible {
  color: var(--c-spot);
  background-color: var(--c-core);
}

.etiquette-small {
  color: var(--c-dim);
  background-color: var(--c-core);
  font-size: var(--z-legal);
}

.etiquette-guide,
.etiquette-lawGuide {
  min-width: 0;
}

@media (min-width: 1100px) {
  .etiquette-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
  }
}

/* --- faq open motion (accordion: height-icon) ----------------------------- */
@keyframes bandeauDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.bandeau-unit[open] .bandeau-prose {
  animation: bandeauDrop var(--t-base) var(--x-out) 1;
}

/* --- offer button (cta-style-anim: sky, underline pulse) ------------------ */
.atrium-hit{display:inline-flex;align-items:center;justify-content:center;padding:0 var(--s-5);min-height:52px;border-radius:var(--r-4);font-size:var(--z-micro-head);font-weight:var(--w-heavy);letter-spacing:var(--e-wide)}
.atrium-hit{position:relative;
  background:#0284C7;color:#0F1011;text-decoration:none;text-transform:uppercase;
  transition:background 0.12s ease;}
.atrium-hit.atrium-hit{color:#0F1011;text-decoration:none;}
.atrium-hit:hover{background:#0369A1;color:#FFFFFF;animation:none}
.atrium-hit.atrium-hit:hover{color:#FFFFFF;text-decoration:none}
.atrium-hit:hover::after{animation:none}
.atrium-hit:active{background:#075985;color:#FFFFFF}
.atrium-hit:focus-visible{outline:3px solid #0F1011;outline-offset:3px}
@keyframes atrium-pulse{0%,100%{transform:scaleX(0)}40%,60%{transform:scaleX(1)}}
.atrium-hit::after{content:"";position:absolute;left:12%;right:12%;bottom:6px;height:3px;background:currentColor;opacity:.5;transform-origin:left;animation:atrium-pulse 1.4s cubic-bezier(.15,.85,.50,1) infinite}
@media (prefers-reduced-motion:reduce){.atrium-hit,.atrium-hit::after{animation:none!important;transition:none!important}}
.kd-offer.atrium-hit:focus-visible {
  outline-color: #ffffff;
}

.kd-offer.atrium-hit {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

@media (max-width: 560px) {
  .kd-offer.atrium-hit {
    width: 100%;
    padding-inline: var(--s-4);
  }
}

@media (max-width: 1062px) {
  .socle-guide,
  .socle-list,
  .socle-hop { display: none !important; }
  .socle-toggle { display: flex !important; }
}
