/* Artosera — page d'accueil, direction Halo.
   Jetons Halo de la régie, DM Serif Display pour les titres, DM Sans pour le texte.
   Thème clair par défaut ; le sombre ne s'applique que sur choix explicite ([data-theme="dark"]).
   Les visuels sont des objets recomposés en HTML (fiche, facture, tablette…), pas des captures. */

@font-face { font-family: 'DM Sans'; src: url('fonts/dm-sans-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('fonts/dm-sans-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'DM Sans'; src: url('fonts/dm-sans-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'DM Serif Display'; src: url('fonts/dm-serif-display-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }

/* ---------- Jetons ---------- */
:root {
  --bg: #f6f6fa;
  --surface: #fff;
  --text: #303044;
  --muted: #716e82;
  --line: #e8e6ee;
  --accent: #69598f;
  --wash: #eeebf6;
  --stage: #f0eeed;
  --on-accent: #fff;
  /* Objets « physiques » (papier, écrans d'appareil) : restent clairs dans les deux thèmes. */
  --paper: #fff;
  --ink: #303044;
  --ink-muted: #716e82;
  --ink-line: #e8e6ee;
  /* Bande sombre (le stand) */
  --band: #262836;
  --band-text: #efedf6;
  --band-muted: #b7b3c9;
  --band-line: #3d3d50;
  --band-accent: #c1b2e2;
  /* Statuts de la régie */
  --st-green-bg: #e8f0eb; --st-green: #3e6a54;
  --st-amber-bg: #f5ecda; --st-amber: #815d24;
  --st-red-bg: #f8e5e5;   --st-red: #a54444;
  --st-gray-bg: #ecebf0;  --st-gray: #63616d;
  --shadow-soft: 0 1px 2px #2621390d, 0 14px 40px #26213914;
  --shadow-art: 0 2px 3px #1d1a2826, 0 18px 34px -10px #1d1a2859, 0 44px 70px -30px #1d1a2840;
  --shadow-paper: 0 1px 2px #1d1a2814, 0 22px 50px -14px #1d1a2838;
  --serif: 'DM Serif Display', 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 9vw, 124px);
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #1e202b;
  --surface: #272a36;
  --text: #efedf6;
  --muted: #b7b3c9;
  --line: #3b3b4d;
  --accent: #c1b2e2;
  --wash: #373145;
  --stage: #20232a;
  --on-accent: #252132;
  --paper: #fbfaf7;
  --band: #15161d;
  --band-line: #33333f;
  --shadow-soft: 0 1px 2px #0000004d, 0 14px 40px #00000059;
  --shadow-art: 0 2px 3px #0000006b, 0 18px 34px -10px #000000a6, 0 44px 70px -30px #00000080;
  --shadow-paper: 0 1px 2px #00000059, 0 24px 60px -14px #000000b8;
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p, figure, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 50; background: var(--surface); color: var(--text); padding: 12px 16px; border-radius: 10px; box-shadow: var(--shadow-soft); }
.skip-link:focus { top: 16px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }

/* Typographie */
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(44px, 6vw, 82px); line-height: 1.02; }
h2 { font-size: clamp(34px, 4.3vw, 56px); line-height: 1.06; }
h3 { font-size: 20px; line-height: 1.3; font-weight: 500; letter-spacing: -0.01em; }
.nw { white-space: nowrap; }
.serif { font-family: var(--serif); font-weight: 400; }
.lede { font-size: clamp(17px, 1.5vw, 19.5px); line-height: 1.62; color: var(--muted); max-width: 38em; text-wrap: pretty; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.kicker::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 24px 72px; align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.head.single { grid-template-columns: minmax(0, 1fr); max-width: 780px; }
.note { font-size: 15px; color: var(--muted); }

/* Boutons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px; border-radius: 12px;
  border: 1px solid var(--line); background: var(--surface); color: var(--text);
  font-size: 15px; font-weight: 500; line-height: 1.3; text-decoration: none; text-align: center;
  transition: background-color .2s, border-color .2s, transform .2s, color .2s;
}
.btn:hover { border-color: var(--accent); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.btn.primary:hover { background: color-mix(in srgb, var(--accent) 86%, var(--text)); transform: translateY(-1px); }
.btn.quiet { background: transparent; border-color: transparent; color: var(--accent); padding-inline: 10px; }
.btn.quiet:hover { text-decoration: underline; text-underline-offset: 4px; }
.btn svg { width: 18px; height: 18px; flex: none; }
.actions { display: flex; flex-wrap: wrap; gap: 12px 14px; align-items: center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: var(--accent); font-weight: 500; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.text-link svg { width: 18px; height: 18px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(3px); }

/* Éléments d'interface recomposés (décor, non interactifs) */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 500; line-height: 1.45; white-space: nowrap; }
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }
.pill.green { background: var(--st-green-bg); color: var(--st-green); }
.pill.amber { background: var(--st-amber-bg); color: var(--st-amber); }
.pill.red { background: var(--st-red-bg); color: var(--st-red); }
.pill.gray { background: var(--st-gray-bg); color: var(--st-gray); }
.pill.lav { background: #eeebf6; color: #69598f; }
.mbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  min-height: 36px; padding: 6px 12px; border-radius: 9px; border: 1px solid var(--ink-line);
  background: #fff; color: var(--ink); font-size: 12.5px; font-weight: 500; white-space: nowrap;
}
.mbtn.primary { background: #69598f; border-color: #69598f; color: #fff; }
.mbtn svg { width: 15px; height: 15px; flex: none; }
.app-bar { display: flex; align-items: center; gap: 14px; padding: 13px 20px; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.app-dots { display: flex; gap: 6px; flex: none; }
.app-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.app-bar .crumbs b { color: var(--text); font-weight: 500; }
.app-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 38px; padding: 7px 13px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); font-size: 13px; font-weight: 500; white-space: nowrap; }
.app-btn.primary { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.app-btn svg { width: 15px; height: 15px; }
.ui-light { /* écran d'appareil : toujours en thème clair Halo */
  --st-green-bg: #e8f0eb; --st-green: #3e6a54; --st-amber-bg: #f5ecda; --st-amber: #815d24;
  --st-red-bg: #f8e5e5; --st-red: #a54444; --st-gray-bg: #ecebf0; --st-gray: #63616d;
  color: var(--ink);
}

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.2) blur(14px); -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-row { display: flex; align-items: center; gap: 20px; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--text); min-height: 44px; flex: none; }
.brand-symbol { width: 26px; height: 32px; color: var(--accent); }
.brand-word { width: 102px; height: 21px; }
.site-nav { display: flex; gap: 2px; margin-left: 8px; }
.site-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 11px; border-radius: 10px;
  font-size: 15px; color: var(--muted); text-decoration: none; transition: color .2s, background-color .2s; white-space: nowrap;
}
.site-nav a:hover { color: var(--text); background: var(--wash); }
.site-nav a[aria-current="page"] { color: var(--accent); background: var(--wash); font-weight: 500; }
.header-tools { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.lang { display: inline-flex; align-items: center; gap: 2px; font-size: 13px; color: var(--muted); }
.lang a, .lang span { display: inline-grid; place-items: center; min-width: 44px; min-height: 44px; text-decoration: none; border-radius: 8px; }
.lang [aria-current] { color: var(--text); font-weight: 600; }
.lang a:hover { background: var(--wash); }
.icon-button { width: 44px; height: 44px; display: inline-grid; place-items: center; flex: none; border: 0; border-radius: 12px; background: transparent; color: var(--text); }
.icon-button:hover { background: var(--wash); }
.icon-button svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
.header-cta { min-height: 44px; padding: 10px 18px; font-size: 14.5px; }
.nav-toggle { display: none; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }
.nav-open .nav-toggle .icon-open { display: none; }

/* ---------- 1. Hero : le titre, puis le tableau de bord ---------- */
.hero { padding-block: clamp(32px, 5vw, 72px) clamp(56px, 7vw, 96px); position: relative; isolation: isolate; overflow-x: clip; }
.hero::before { /* halo doux derrière la fenêtre */
  content: ''; position: absolute; z-index: -1; left: 50%; top: 38%; width: min(1400px, 120vw); height: 70%;
  transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 16%, transparent), transparent);
  filter: blur(10px); pointer-events: none;
}
.hero-head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 28px clamp(32px, 5vw, 72px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.hero-copy { display: grid; gap: 26px; justify-items: start; }
.hero-title .kicker { margin-bottom: 22px; }

.browser {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  box-shadow: 0 1px 2px #2621390f, 0 30px 80px -30px #26213940, 0 60px 120px -60px #2621394d;
}
:root[data-theme="dark"] .browser { box-shadow: 0 1px 2px #00000066, 0 30px 80px -30px #000000b3; }
.browser-bar { display: flex; align-items: center; gap: 16px; padding: 11px 16px; border-bottom: 1px solid var(--line); background: var(--bg); }
.browser-url { flex: 0 1 360px; margin-inline: auto; display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-size: 12.5px; color: var(--muted); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 5px 12px; }
.browser-url svg { width: 12px; height: 12px; }
.browser-bar::after { content: ''; width: 48px; flex: none; } /* équilibre les trois points */
.browser-shot img { width: 100%; height: auto; }
.only-dark { display: none; }
:root[data-theme="dark"] .only-dark { display: block; }
:root[data-theme="dark"] .only-light { display: none; }
.browser + .visual-caption, .browser .visual-caption { margin: 0; padding: 12px 16px; border-top: 1px solid var(--line); background: var(--bg); text-align: center; }

/* Le mur de la salle : une œuvre accrochée, sa fiche, la liste de prix */
.wall {
  position: relative; isolation: isolate; overflow: hidden; border-radius: 28px;
  background:
    radial-gradient(40% 60% at 22% 0%, #ffffffcc, transparent 72%),
    radial-gradient(30% 50% at 82% 0%, #ffffff99, transparent 72%),
    linear-gradient(180deg, #f5f3f1, var(--stage) 82%);
  aspect-ratio: 1240 / 700;
}
:root[data-theme="dark"] .wall {
  background: radial-gradient(40% 60% at 22% 0%, #ffffff1f, transparent 72%), radial-gradient(30% 50% at 82% 0%, #ffffff12, transparent 72%), linear-gradient(180deg, #2a2d36, var(--stage) 82%);
}
.wall::after { /* plinthe et sol */
  content: ''; position: absolute; inset: auto 0 0 0; height: 11%; z-index: -1;
  background: linear-gradient(180deg, #d9d5d1 0 2px, #e7e4e1 2px);
}
:root[data-theme="dark"] .wall::after { background: linear-gradient(180deg, #363841 0 2px, #1a1c22 2px); }
.hung { position: absolute; left: 7%; top: 11%; width: 27%; }
.hung img { width: 100%; height: auto; aspect-ratio: 970 / 1300; object-fit: cover; box-shadow: var(--shadow-art); outline: 7px solid #f8f5ef; }
:root[data-theme="dark"] .hung img { outline-color: #30323a; }

.fiche-card {
  position: absolute; left: 40%; top: 9%; width: 29%;
  background: var(--paper); color: var(--ink); border-radius: 14px; padding: 24px 20px 18px;
  box-shadow: var(--shadow-paper); font-size: 13.5px; line-height: 1.45;
}
.fiche-card .tag {
  position: absolute; top: -13px; left: 18px; display: inline-flex; align-items: center; gap: 6px;
  background: #69598f; color: #fff; border-radius: 20px; padding: 4px 11px 4px 8px; font-size: 11.5px; font-weight: 500;
}
.fiche-card .tag svg { width: 11px; height: 14px; }
.fc-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.fc-artist { font-weight: 600; font-size: 14px; }
.fc-title { font-family: var(--serif); font-size: 23px; line-height: 1.12; margin-top: 2px; }
.fc-meta { color: var(--ink-muted); font-size: 12.5px; margin-top: 4px; }
.fc-dl { margin-top: 14px; border-top: 1px solid var(--ink-line); }
.fc-dl div { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--ink-line); font-size: 12.5px; }
.fc-dl dt { color: var(--ink-muted); }
.fc-dl dd { font-weight: 500; display: inline-flex; align-items: center; gap: 5px; text-align: right; }
.fc-dl dd svg { width: 12px; height: 12px; color: var(--ink-muted); }
.track { margin: 12px 0 0; display: grid; }
.track li { position: relative; display: grid; grid-template-columns: 16px 1fr; gap: 10px; padding: 2px 0 6px; font-size: 12.5px; color: var(--ink-muted); }
.track li b { color: var(--ink); font-weight: 500; }
.track li::before { content: ''; width: 9px; height: 9px; border-radius: 50%; margin: 5px 0 0 3px; background: #69598f; position: relative; z-index: 1; }
.track li:not(:last-child)::after { content: ''; position: absolute; left: 7px; top: 14px; bottom: -4px; width: 1px; background: #cfc8e0; }
.track li.now::before { background: #815d24; box-shadow: 0 0 0 4px #f5ecda; }
.track li.next::before { background: #fff; border: 1.5px solid #b9b3c8; }
.fc-actions { display: flex; gap: 8px; margin-top: 12px; }
.fc-actions .mbtn { flex: 1; }
.fc-actions .mbtn.primary { box-shadow: 0 0 0 3px #69598f33; }

.pricelist-sheet {
  position: absolute; right: 6%; top: 13%; width: 22%;
  background: var(--paper); color: var(--ink); aspect-ratio: 1 / 1.414; border-radius: 3px;
  box-shadow: var(--shadow-paper); padding: 22px 18px 16px; font-size: 11px; line-height: 1.4;
  transform: rotate(1.8deg); display: flex; flex-direction: column;
}
.pl-gal { font-family: var(--serif); font-size: 14px; }
.pl-title { font-family: var(--serif); font-size: 20px; line-height: 1.1; margin-top: 14px; }
.pl-sub { color: var(--ink-muted); font-size: 10.5px; margin-top: 3px; }
.pl-rows { margin-top: 14px; border-top: 1px solid var(--ink); }
.pl-row { display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; gap: 9px; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--ink-line); }
.pl-row img { width: 24px; height: 30px; object-fit: cover; }
.pl-row b { display: block; font-weight: 500; font-size: 11px; }
.pl-row small { display: block; font-size: 9.5px; color: var(--ink-muted); }
.pl-row .pill { font-size: 9.5px; padding: 0 7px; }
.pl-row .pill::before { width: 5px; height: 5px; }
.pl-row .amt { font-size: 11px; font-variant-numeric: tabular-nums; filter: blur(3.5px); user-select: none; }
.pl-foot { margin-top: auto; font-size: 9.5px; color: var(--ink-muted); display: flex; justify-content: space-between; gap: 8px; }
.wall-caption { position: absolute; left: 7%; bottom: 3%; font-size: 12px; color: var(--muted); }
:root[data-theme="dark"] .wall-caption { color: #9d99b0; }

/* ---------- 2. Garanties ---------- */
.assurances { border-block: 1px solid var(--line); }
.assurance-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.assurance { display: flex; align-items: center; gap: 14px; padding: 24px 22px; font-size: 15.5px; font-weight: 500; }
.assurance:first-child { padding-left: 0; }
.assurance + .assurance { border-left: 1px solid var(--line); }
.assurance svg { width: 26px; height: 26px; color: var(--accent); flex: none; }

/* ---------- 3. Le cœur : le mur, puis la journée ---------- */
.visual-caption { font-size: 13px; color: var(--muted); margin-top: 16px; }

.day { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: clamp(48px, 6vw, 80px); border-top: 2px solid var(--text); }
.day-col { padding: 24px 22px 8px 0; }
.day-col + .day-col { padding-left: 22px; border-left: 1px solid var(--line); }
.day-col .step { font-size: 12px; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.day-col h3 { font-family: var(--serif); font-weight: 400; font-size: 27px; line-height: 1.1; margin: 6px 0 14px; }
.day-col li { font-size: 15px; line-height: 1.45; padding: 7px 0; border-top: 1px solid var(--line); }
.core-mention { margin-top: 28px; padding: 18px 22px; border-radius: 14px; background: var(--wash); font-size: 15.5px; display: flex; gap: 14px; align-items: center; }
.core-mention svg { width: 22px; height: 22px; color: var(--accent); flex: none; }

/* ---------- 4. Les trois Signature ---------- */
.signature { background: var(--surface); border-block: 1px solid var(--line); }
.sig-grid { display: grid; grid-template-columns: minmax(0, 9fr) minmax(0, 15fr); grid-template-rows: auto auto; gap: 28px; }
.sig-plate { border-radius: 24px; background: var(--stage); display: grid; gap: 28px; padding: clamp(24px, 3.4vw, 44px); }
.sig-plate.invoice { grid-row: span 2; align-content: start; grid-template-columns: minmax(0, 1fr); }
.sig-plate > * { min-width: 0; }
.sig-plate.row { grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); align-items: center; gap: 32px; }
.sig-text { display: grid; gap: 10px; align-content: start; }
.sig-text .tagline { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.sig-text h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(23px, 2vw, 28px); line-height: 1.14; }
.sig-text p { color: var(--muted); font-size: 15.5px; }

.sheet {
  background: var(--paper); color: var(--ink); box-shadow: var(--shadow-paper); border-radius: 3px;
  aspect-ratio: 1 / 1.3; padding: 8% 8% 7%; display: flex; flex-direction: column; font-size: 12px; line-height: 1.45;
}
.invoice .sheet { transform: rotate(-1deg); }
.sh-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; font-size: 11px; color: var(--ink-muted); }
.sh-top b { display: block; font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--ink); line-height: 1.1; }
.inv-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: 9%; }
.inv-head h4 { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1; }
.inv-head span { font-size: 12px; color: var(--ink-muted); white-space: nowrap; }
.inv-parties { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 7%; font-size: 11px; color: var(--ink-muted); }
.inv-parties b { display: block; color: var(--ink); font-weight: 500; font-size: 12.5px; }
.inv-lines { margin-top: 8%; border-top: 1.5px solid var(--ink); }
.inv-lh { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--ink-muted); padding: 7px 0; border-bottom: 1px solid var(--ink-line); letter-spacing: .04em; text-transform: uppercase; }
.inv-line { display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--ink-line); }
.inv-line img { width: 36px; height: 44px; object-fit: cover; }
.inv-line b { display: block; font-weight: 500; font-size: 13px; }
.inv-line b i { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 15px; }
.inv-line small { display: block; font-size: 11px; color: var(--ink-muted); }
.inv-vat { margin-top: 7%; display: grid; gap: 6px; font-size: 11.5px; }
.inv-vat div { display: flex; justify-content: space-between; gap: 10px; padding: 8px 12px; background: #f6f5f9; border-radius: 6px; }
.inv-vat span:last-child { color: var(--ink-muted); }
.inv-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--ink-line); }
.fx-badge { display: inline-flex; align-items: center; gap: 7px; border: 1.5px solid #69598f; color: #69598f; border-radius: 8px; padding: 5px 10px; font-size: 12.5px; font-weight: 600; letter-spacing: .02em; }
.fx-badge svg { width: 15px; height: 15px; }
.inv-foot small { font-size: 10.5px; color: var(--ink-muted); text-align: right; }

/* Tablette (viewing room) et tablette de stand : même coque */
.tablet { background: #15161c; border-radius: 26px; padding: 12px; box-shadow: 0 26px 60px -22px #1d1a28b3, inset 0 0 0 1px #ffffff17; container-type: inline-size; }
.tablet-screen { background: #fbfaf7; border-radius: 15px; overflow: hidden; }
.vr-screen { padding: 16px 16px 12px; }
.vr-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 10.5px; color: var(--ink-muted); letter-spacing: .08em; text-transform: uppercase; }
.vr-top b { font-family: var(--serif); font-weight: 400; font-size: 14px; letter-spacing: 0; text-transform: none; color: var(--ink); }
.vr-h { font-family: var(--serif); font-size: 18px; line-height: 1.15; margin: 8px 0 12px; color: var(--ink); }
.vr-works { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.vr-works figure { display: grid; gap: 6px; min-width: 0; }
.vr-works .fr { background: #f0eeed; border-radius: 8px; aspect-ratio: 1 / 1.05; display: grid; place-items: center; }
.vr-works img { width: 58%; height: auto; aspect-ratio: 970/1300; object-fit: cover; box-shadow: 0 6px 14px -6px #1d1a2866; }
.vr-works img.sq { aspect-ratio: 800/1000; width: 64%; }
.vr-works figcaption { font-size: 11px; line-height: 1.3; color: var(--ink); }
.vr-works figcaption small { display: block; color: var(--ink-muted); font-size: 10px; }
.vr-foot { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--ink-line); font-size: 11.5px; color: var(--ink-muted); }
.vr-foot span { display: inline-flex; align-items: center; gap: 6px; }
.vr-foot b { color: #69598f; font-weight: 600; }
.vr-foot svg { width: 14px; height: 14px; }

.vault { background: var(--paper); color: var(--ink); border-radius: 16px; box-shadow: var(--shadow-paper); padding: 16px 16px 10px; font-size: 13px; }
.vault-head { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--ink-line); }
.vault-head img { width: 34px; height: 42px; object-fit: cover; }
.vault-head b { display: block; font-weight: 500; font-size: 13px; }
.vault-head small { font-size: 11.5px; color: var(--ink-muted); }
.vault-head svg { width: 18px; height: 18px; color: #69598f; }
.vault-row { display: grid; grid-template-columns: 30px minmax(0, 1fr) auto; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--ink-line); }
.vault-row:last-child { border-bottom: 0; }
.vault-row .doc { width: 30px; height: 30px; border-radius: 8px; background: #eeebf6; color: #69598f; display: grid; place-items: center; position: relative; }
.vault-row .doc svg { width: 16px; height: 16px; }
.vault-row .doc .bell { position: absolute; top: -3px; right: -3px; width: 10px; height: 10px; border-radius: 50%; background: #c0503f; box-shadow: 0 0 0 2px #fff; }
.vault-row b { font-weight: 500; font-size: 13px; display: block; }
.vault-row small { font-size: 11.5px; color: var(--ink-muted); }
.vault-row .pill { font-size: 11px; }

/* ---------- 5. Les modules : le stand, puis la carte ---------- */
.modules { padding-top: 0; }
.stand { background: var(--band); color: var(--band-text); padding-block: var(--section) clamp(56px, 7vw, 88px); }
.stand .kicker { color: var(--band-accent); }
.stand .lede { color: var(--band-muted); }
.stand-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.stand-copy { display: grid; gap: 22px; }
.group-title { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.15; }
.stand .group-title { color: var(--band-text); }
.mod-list { display: grid; }
.mod-list li { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); }
.stand .mod-list li { border-color: var(--band-line); }
.mod-list .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--wash); color: var(--accent); }
.stand .mod-list .ic { background: #34324a; color: var(--band-accent); }
.mod-list .ic svg { width: 20px; height: 20px; }
.mod-list b { display: block; font-weight: 500; font-size: 16px; }
.mod-list span { display: block; font-size: 15px; color: var(--muted); line-height: 1.5; margin-top: 2px; }
.stand .mod-list span { color: var(--band-muted); }

.stand-scene { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); }
.stand-photo { border-radius: 22px; overflow: hidden; aspect-ratio: 16 / 11; width: 72%; }
.stand-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 35%; }
.stand .tablet { position: absolute; right: 0; bottom: -36px; width: 66%; }
.fair-bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 16px; border-bottom: 1px solid #e8e6ee; font-size: 12px; color: #716e82; }
.fair-bar b { color: #303044; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.fair-bar b::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #3e6a54; }
.fair-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px; padding: 18px; align-items: center; color: #303044; }
.fair-art { background: #f0eeed; border-radius: 12px; aspect-ratio: 1 / 1.05; display: grid; place-items: center; }
.fair-art img { width: 66%; aspect-ratio: 800/1000; object-fit: cover; box-shadow: 0 10px 24px -8px #1d1a2866; }
.fair-info { display: grid; gap: 7px; justify-items: start; }
.fair-info .artist { font-size: 13.5px; font-weight: 500; }
.fair-info .title { font-family: var(--serif); font-size: clamp(24px, 7cqi, 36px); line-height: 1.05; }
.fair-info .meta { font-size: 12px; color: #716e82; }
.fair-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; width: 100%; }
.fair-actions .mbtn { min-height: 42px; font-size: 13px; }
.fair-actions .wide { grid-column: 1 / -1; }
.fair-body > *, .fair-actions .mbtn { min-width: 0; }
.fair-actions .mbtn { white-space: normal; text-align: center; }
@container (max-width: 460px) {
  .fair-body { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 14px; padding: 14px; }
  .fair-info .title { font-size: 26px; }
}
@container (max-width: 340px) {
  .fair-body { grid-template-columns: minmax(0, 1fr); }
  .fair-art { aspect-ratio: 16 / 10; }
  .fair-art img { width: auto; height: 80%; }
}

.mod-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 44px; padding-top: clamp(80px, 9vw, 120px); }
.mod-groups .group-title { margin-bottom: 14px; }
.modules-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }

/* ---------- 6. L'accompagnement ---------- */
.accomp { background: var(--wash); }
.accomp-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.phases { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.phase h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin-bottom: 8px; }
.phase ol { counter-reset: s; }
.phase li { counter-increment: s; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; padding: 16px 0; border-top: 1px solid color-mix(in srgb, var(--accent) 24%, transparent); }
.phase li::before { content: counter(s); width: 30px; height: 30px; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); display: grid; place-items: center; font-size: 13px; color: var(--accent); background: var(--surface); }
.phase:last-child li::before { content: ''; background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' fill='none' stroke='%2369598f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 15px no-repeat; }
.phase b { display: block; font-weight: 500; }
.phase span { color: var(--muted); font-size: 15px; }

.check-panel { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-soft); overflow: hidden; }
.check-panel .app-bar { padding: 12px 18px; }
.check-body { padding: 20px 20px 22px; display: grid; gap: 4px; }
.check-body h4 { font-size: 17px; font-weight: 500; margin-bottom: 2px; }
.check-body > small { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.check-row { display: grid; grid-template-columns: 28px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.check-row .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--st-green-bg); color: var(--st-green); display: grid; place-items: center; }
.check-row .tick svg { width: 15px; height: 15px; }
.check-row small { font-size: 12.5px; color: var(--muted); }
.check-done { margin-top: 10px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; padding: 12px 14px; border-radius: 12px; background: var(--st-green-bg); color: var(--st-green); font-size: 14px; font-weight: 500; }
.check-done svg { width: 18px; height: 18px; }
.check-done span { display: inline-flex; align-items: center; gap: 8px; }

.site-box { margin-top: clamp(48px, 6vw, 72px); display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 64px); align-items: center; background: var(--surface); border-radius: 26px; padding: clamp(28px, 4vw, 56px); overflow: hidden; }
.site-box h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: 1.1; }
.site-box > div { display: grid; gap: 18px; }
.site-box .lede { font-size: 17px; }
.site-offers { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.site-offers li { padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.site-offers b { display: block; color: var(--text); font-weight: 500; font-size: 16px; margin-bottom: 2px; }
.phone { width: 270px; justify-self: center; background: #15161c; border-radius: 42px; padding: 10px; box-shadow: 0 30px 70px -24px #1d1a28a6, inset 0 0 0 1px #ffffff17; margin-bottom: calc(-1 * clamp(28px, 4vw, 56px) - 90px); }
.phone-screen { background: #fbfaf7; color: #303044; border-radius: 33px; overflow: hidden; }
.ph-status { display: flex; justify-content: space-between; padding: 12px 22px 6px; font-size: 11px; font-weight: 600; }
.ph-nav { display: flex; justify-content: space-between; align-items: center; padding: 8px 18px 12px; }
.ph-nav b { font-family: var(--serif); font-weight: 400; font-size: 17px; }
.ph-nav svg { width: 18px; height: 18px; }
.ph-hero { background: #f0eeed; aspect-ratio: 1 / 1.02; display: grid; place-items: center; }
.ph-hero img { width: 58%; aspect-ratio: 800/1000; object-fit: cover; box-shadow: 0 12px 26px -10px #1d1a2880; }
.ph-copy { padding: 14px 18px 110px; }
.ph-copy small { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #716e82; }
.ph-copy b { display: block; font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.1; margin: 4px 0; }
.ph-copy span { display: block; font-size: 12px; line-height: 1.4; color: #716e82; }

/* ---------- 8. Pourquoi changer ---------- */
.why { background: var(--surface); border-block: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.why-aside { position: sticky; top: 108px; display: grid; gap: 28px; }
.calendar { width: 100%; max-width: 330px; background: var(--paper); color: var(--ink); border-radius: 18px; box-shadow: var(--shadow-paper); overflow: hidden; text-align: center; }
.cal-head { background: #69598f; color: #fff; padding: 12px; font-size: 14px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; position: relative; }
.cal-head::before, .cal-head::after { content: ''; position: absolute; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: #fbfaf7; }
.cal-head::before { left: 26px; } .cal-head::after { right: 26px; }
.cal-day { font-family: var(--serif); font-size: clamp(96px, 9vw, 128px); line-height: 1; padding-top: 18px; }
.cal-day sup { font-size: 40px; vertical-align: 64px; }
.cal-year { font-size: 20px; letter-spacing: .1em; color: var(--ink-muted); }
.cal-note { margin: 18px 20px 22px; padding-top: 14px; border-top: 1px dashed #d7d3e0; font-size: 14px; line-height: 1.45; }
.cal-note .fx-badge { margin-top: 10px; }
.reasons { display: grid; }
.reason { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 18px; padding: 28px 0; border-top: 1px solid var(--line); }
.reason:first-child { border-top: 2px solid var(--text); }
.reason .k { font-family: var(--serif); font-size: 52px; line-height: .95; color: var(--accent); }
.reason h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.2vw, 30px); line-height: 1.15; margin-bottom: 8px; }
.reason p { color: var(--muted); font-size: 16.5px; max-width: 44em; }
.move { margin-top: clamp(48px, 6vw, 72px); display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 24px clamp(32px, 5vw, 80px); align-items: center; padding: clamp(24px, 3.4vw, 44px); border-radius: 24px; background: var(--wash); }
.move h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.6vw, 34px); line-height: 1.12; }
.move p { color: var(--muted); font-size: 15.5px; margin: 12px 0 8px; }
.move-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 12px; }
.move-step { background: var(--surface); border-radius: 16px; padding: 18px; display: grid; gap: 8px; justify-items: start; min-height: 112px; align-content: start; }
.move-step .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--wash); color: var(--accent); display: grid; place-items: center; }
.move-step .ic svg { width: 20px; height: 20px; }
.move-step b { font-weight: 500; font-size: 16px; }
.move-arrow { color: var(--accent); }
.move-arrow svg { width: 22px; height: 22px; }

/* ---------- 9. Votre Artosera ---------- */
.compose-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.compose-copy { display: grid; gap: 24px; justify-items: start; }
.floors { width: 100%; display: grid; }
.floor { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.floor:last-child { border-bottom: 1px solid var(--line); }
.floor b { font-family: var(--serif); font-weight: 400; font-size: 23px; line-height: 1.15; }
.floor span { color: var(--muted); font-size: 15.5px; }
.compose { background: var(--stage); border-radius: 26px; padding: clamp(20px, 3vw, 40px); display: grid; gap: 14px; }
.cmp-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 20px; display: grid; gap: 12px; box-shadow: var(--shadow-soft); }
.cmp-card.dim { opacity: .62; box-shadow: none; }
.cmp-top { display: flex; align-items: center; gap: 12px; }
.cmp-top .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--wash); color: var(--accent); display: grid; place-items: center; flex: none; }
.cmp-top .ic svg { width: 20px; height: 20px; }
.cmp-top b { display: block; font-weight: 500; font-size: 16.5px; }
.cmp-top small { font-size: 13px; color: var(--muted); }
.answers { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
.answers span { display: grid; place-items: center; text-align: center; min-height: 40px; padding: 6px 8px; border-radius: 10px; border: 1px solid var(--line); font-size: 13px; line-height: 1.25; color: var(--muted); }
.answers span.on { background: var(--accent); border-color: var(--accent); color: var(--on-accent); font-weight: 500; }
.cmp-bar { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; background: var(--surface); border-radius: 16px; padding: 14px 16px; border: 1px solid var(--line); }
.cmp-progress { display: grid; gap: 7px; font-size: 13.5px; }
.cmp-progress b { font-weight: 600; font-variant-numeric: tabular-nums; }
.cmp-progress .track-bar { height: 6px; border-radius: 6px; background: var(--wash); overflow: hidden; }
.cmp-progress .track-bar i { display: block; height: 100%; width: 58.3%; background: var(--accent); border-radius: 6px; }
.cmp-bar .app-btn { min-height: 40px; }

/* ---------- 10. Appel final ---------- */
.cta { position: relative; isolation: isolate; color: #fff; overflow: hidden; }
.cta-photo { position: absolute; inset: 0; z-index: -2; }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.cta::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, #1b1a26eb 0%, #1b1a26c4 44%, #1b1a2640 100%); }
.cta-inner { padding-block: clamp(96px, 12vw, 164px); display: grid; gap: 24px; max-width: 640px; justify-items: start; }
.cta h2 { color: #fff; }
.cta p { color: #e7e4f0; font-size: 18.5px; max-width: 34em; }
.cta .btn.primary { background: #fff; border-color: #fff; color: #2c2940; }
.cta .btn.primary:hover { background: #eeebf6; }
.cta .btn.ghost { background: transparent; color: #fff; border-color: #ffffff8c; }
.cta .btn.ghost:hover { background: #ffffff1f; }
.cta :focus-visible { outline-color: #fff; }
.cta-mail { font-size: 15px !important; color: #d6d2e3 !important; }
.cta-mail a { text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.cta-mail a:hover { text-decoration: underline; }

/* ---------- 11. Pied de page ---------- */
.site-footer { padding-block: 64px 24px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr)); gap: 36px; }
.footer-brand p { color: var(--muted); margin-top: 12px; max-width: 26ch; }
.footer-col h4 { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 6px; }
.footer-col a, .footer-col span { display: flex; align-items: center; min-height: 44px; text-decoration: none; line-height: 1.3; }
.footer-col a:hover { color: var(--accent); }
.footer-legal { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 4px 24px; margin-top: 40px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer-legal nav { display: flex; flex-wrap: wrap; gap: 0 18px; }
.footer-legal a { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; min-height: 44px; min-width: 44px; }
.footer-legal a:hover { color: var(--text); }

/* ---------- Mouvement ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes hang { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
@keyframes slide { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }
.hero-title > * , .hero-copy > * { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.hero-title > :nth-child(2) { animation-delay: .06s; }
.hero-copy > :nth-child(1) { animation-delay: .12s; }
.hero-copy > :nth-child(2) { animation-delay: .18s; }
.browser { animation: rise .9s cubic-bezier(.2,.7,.2,1) .28s both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Adaptations ---------- */
@media (max-width: 1180px) {
  .site-nav a { padding: 0 8px; font-size: 14.5px; }
  .lang { display: none; }
  .day { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 8px; }
  .day-col:nth-child(4) { padding-left: 0; border-left: 0; }
  .wall { aspect-ratio: 1000 / 700; }
  .hung { left: 12%; width: 31%; }
  .fiche-card { left: 50%; width: 36%; top: 8%; }
  .pricelist-sheet { display: none; }
}

@media (max-width: 1020px) {
  .nav-toggle { display: inline-grid; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0; padding: 6px var(--gutter) 18px;
    flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px #1d1a2840; display: none;
  }
  .site-nav a { min-height: 52px; font-size: 17px; color: var(--text); border-bottom: 1px solid var(--line); border-radius: 0; padding: 0 4px; }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-open .site-nav { display: flex; }

  .browser-shot { max-height: 1160px; overflow: hidden; position: relative; }
  .browser-shot::after { content: ''; position: absolute; inset: auto 0 0 0; height: 120px; background: linear-gradient(transparent, var(--surface)); pointer-events: none; }
  .hero-head, .head, .stand-grid, .compose-grid, .accomp-grid, .site-box, .move { grid-template-columns: minmax(0, 1fr); }
  .assurance-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .assurance:nth-child(3) { border-left: 0; padding-left: 0; }
  .assurance:nth-child(n+3) { border-top: 1px solid var(--line); }
  .wall { aspect-ratio: auto; min-height: 600px; }
  .hung { top: 60px; left: 6%; width: 40%; }
  .fiche-card { top: 48px; left: 51%; width: 44%; }
  .sig-grid { grid-template-columns: minmax(0, 1fr); }
  .sig-plate.invoice { grid-row: auto; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: center; }
  .stand .tablet { position: relative; right: auto; bottom: auto; width: 82%; margin: -120px 0 0 auto; }
  .stand-photo { width: 78%; }
  .mod-groups { grid-template-columns: 1fr 1fr; gap: 40px 40px; }
  .why-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 8fr); gap: 32px; }
  .reason { grid-template-columns: 60px minmax(0, 1fr); gap: 12px; }
  .reason .k { font-size: 42px; }
  .phone { margin-bottom: 0; }
  .ph-copy { padding-bottom: 22px; }
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .header-cta { display: none; }
  .header-row { min-height: 64px; gap: 8px; }
  .hero-copy .actions, .compose-copy .actions { width: 100%; }
  .hero-copy .actions .btn, .compose-copy .actions .btn { flex: 1 1 auto; }

  .browser { border-radius: 16px; }
  .browser-bar { padding: 9px 12px; gap: 10px; }
  .browser-bar::after { width: 38px; }
  .app-dots i { width: 8px; height: 8px; }

  .assurance { padding: 18px 12px; font-size: 14.5px; gap: 10px; }
  .assurance svg { width: 22px; height: 22px; }

  .wall { min-height: 0; padding: 36px 18px 64px; display: grid; }
  .wall::after { height: 120px; }
  .hung { position: relative; left: auto; top: auto; width: 62%; margin-left: 2%; }
  .fiche-card { position: relative; left: auto; top: auto; width: 92%; max-width: 360px; margin: -40px 0 0 auto; }
  .wall-caption { left: 18px; right: 18px; bottom: 16px; }
  .day { grid-template-columns: minmax(0, 1fr); }
  .day-col, .day-col + .day-col, .day-col:nth-child(4) { padding: 20px 0 6px; border-left: 0; }
  .day-col + .day-col { border-top: 1px solid var(--line); }
  .day-col h3 { font-size: 25px; }
  .core-mention { align-items: flex-start; }

  .sig-plate.invoice, .sig-plate.row { grid-template-columns: minmax(0, 1fr); }
  .sig-plate { border-radius: 20px; padding: 22px 14px 26px; }
  .invoice .sheet { transform: none; aspect-ratio: auto; }
  .sheet { padding: 22px 16px; }
  .inv-head h4 { font-size: 26px; }

  .stand-photo { width: 100%; aspect-ratio: 4 / 3; }
  .stand .tablet { width: 100%; margin-top: -72px; padding: 9px; border-radius: 22px; }
  .mod-groups { grid-template-columns: minmax(0, 1fr); gap: 40px; }

  .phases { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .site-offers { grid-template-columns: minmax(0, 1fr); }
  .site-box { border-radius: 22px; padding: 26px 18px 0; }
  .phone { margin-bottom: -60px; width: min(270px, 84%); }
  .ph-copy { padding-bottom: 80px; }

  .why-grid { grid-template-columns: minmax(0, 1fr); }
  .why-aside { position: static; }
  .calendar { max-width: none; }
  .reason { grid-template-columns: 56px minmax(0, 1fr); gap: 12px; padding: 24px 0; }
  .reason .k { font-size: 40px; }
  .move-steps { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .move-arrow { justify-self: center; transform: rotate(90deg); }
  .move-step { min-height: 0; grid-template-columns: 38px 1fr; align-items: center; }

  .floor { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .answers { grid-template-columns: 1fr 1fr; }
  .cmp-bar { grid-template-columns: minmax(0, 1fr); }

  .cta::before { background: linear-gradient(180deg, #1b1a26d9 0%, #1b1a26eb 100%); }
  .cta .actions { width: 100%; }
  .cta .actions .btn { flex: 1 1 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
}

@media (max-width: 400px) {
  .brand-word { width: 90px; }
  .fiche-card { width: 96%; padding: 22px 16px 16px; }
  .fc-actions { flex-wrap: wrap; }
  .vr-works { gap: 6px; }
}
