/* ============================================================
   L'EXPERT DU GRANIT — Landing page de conversion (Google Ads)
   Design system : L'Expert du Granit
   CSS unique · self-hosted fonts · mobile-first
   ============================================================ */

/* ---------- Fonts (self-hosted variable) ---------- */
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("assets/fonts/OpenSans-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Brand core — 70 Blanc Cassé / 20 Anthracite / 10 Cuivre */
  --anthracite: #2F3133;
  --granit-gris: #7C8288;
  --blanc-casse: #F8F8F6;
  --cuivre: #C68A4A;

  --anthracite-900: #1E1F21;
  --anthracite-800: #2F3133;
  --anthracite-700: #3D4042;
  --anthracite-600: #4D5052;
  --gris-500: #7C8288;
  --gris-400: #9aa0a5;
  --gris-300: #c2c6c9;
  --gris-200: #dde0e2;
  --gris-100: #eceeef;
  --blanc-casse-2: #FFFFFF;
  --blanc-casse-1: #F8F8F6;
  --blanc-casse-0: #F1F1ED;
  --cuivre-700: #9c6730;
  --cuivre-600: #b07a3c;
  --cuivre-500: #C68A4A;
  --cuivre-400: #d3a067;
  --cuivre-300: #e3c197;

  --bg: var(--blanc-casse-1);
  --bg-alt: var(--blanc-casse-0);
  --bg-dark: var(--anthracite-800);
  --surface: var(--blanc-casse-2);

  --fg1: var(--anthracite-800);
  --fg2: #54585b;
  --fg3: var(--granit-gris);
  --fg-on-dark: var(--blanc-casse-1);
  --fg-on-dark-2: #b9bdc0;

  --accent: var(--cuivre-500);
  --accent-hover: var(--cuivre-600);
  --accent-press: var(--cuivre-700);

  --border: var(--gris-200);
  --border-strong: var(--granit-gris);
  --divider: rgba(47, 49, 51, 0.10);
  --focus-ring: rgba(198, 138, 74, 0.55);
  --success: #1F8A5B;

  --font-display: "Montserrat", system-ui, "Segoe UI", sans-serif;
  --font-body: "Open Sans", system-ui, "Segoe UI", sans-serif;

  --fw-h1: 800; --fw-h2: 700; --fw-h3: 600; --fw-cta: 600;
  --fw-body: 400; --fw-body-strong: 600;

  --fs-h1: 52px; --fs-h2: 38px; --fs-h3: 28px;
  --fs-body: 18px; --fs-cta: 18px; --fs-small: 15px; --fs-eyebrow: 13px;
  --lh-h1: 1.1; --lh-h2: 1.18; --lh-h3: 1.3; --lh-body: 1.7;
  --tracking-eyebrow: 0.18em; --tracking-cta: 0.02em;

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  --space-9: 96px; --space-10: 128px;

  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 14px; --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(47,49,51,0.06), 0 1px 3px rgba(47,49,51,0.08);
  --shadow-md: 0 4px 12px rgba(47,49,51,0.08), 0 2px 4px rgba(47,49,51,0.06);
  --shadow-lg: 0 18px 44px rgba(47,49,51,0.14), 0 6px 14px rgba(47,49,51,0.08);
  --shadow-cta: 0 8px 20px rgba(198,138,74,0.28);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 140ms; --dur: 240ms; --dur-slow: 480ms;

  --container: 1200px;
  --header-h: 76px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--fg2);
  font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; border-radius: var(--radius-sm); }
/* Programmatic focus targets (step headings) shouldn't show a ring — they're not interactive */
[tabindex="-1"]:focus { outline: none; }

.lp-container { max-width: var(--container); margin: 0 auto; padding: 0 32px; width: 100%; }
.lp-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.eyebrow {
  font-family: var(--font-display); font-weight: var(--fw-h3); font-size: var(--fs-eyebrow);
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--accent);
  display: block;
}
.eyebrow-light { color: var(--cuivre-300); }
.h1 { font-family: var(--font-display); font-weight: var(--fw-h1); font-size: var(--fs-h1); line-height: var(--lh-h1); color: var(--fg1); letter-spacing: -0.015em; text-wrap: balance; }
.h2 { font-family: var(--font-display); font-weight: var(--fw-h2); font-size: var(--fs-h2); line-height: var(--lh-h2); color: var(--fg1); letter-spacing: -0.01em; text-wrap: balance; margin-top: 12px; }
.h2-light { color: var(--blanc-casse-1); }
.h3 { font-family: var(--font-display); font-weight: var(--fw-h3); font-size: var(--fs-h3); line-height: var(--lh-h3); color: var(--fg1); }
.lead { font-size: 20px; line-height: 1.6; color: var(--fg2); }
.small { font-size: var(--fs-small); line-height: 1.55; color: var(--fg3); }

/* Placeholder token for [À COMPLÉTER] proof markers — visible but discreet */
.todo {
  font-style: normal; font-weight: 600; font-size: 0.85em;
  color: var(--cuivre-700); background: rgba(198,138,74,0.12);
  border: 1px dashed var(--cuivre-400); border-radius: 4px;
  padding: 1px 6px; white-space: nowrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-display); font-weight: var(--fw-cta); font-size: var(--fs-cta);
  border: none; cursor: pointer; border-radius: var(--radius-pill);
  padding: 16px 28px; min-height: 52px; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--dur) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
  letter-spacing: var(--tracking-cta); line-height: 1; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(198,138,74,0.34); }
.btn-primary:active { background: var(--accent-press); transform: scale(0.98); }
.btn-secondary { background: transparent; color: var(--anthracite); box-shadow: inset 0 0 0 2px var(--anthracite); }
.btn-secondary:hover { background: var(--anthracite); color: var(--blanc-casse); }
.btn-ghost { background: rgba(255,255,255,0.10); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.95); color: var(--anthracite); }
.btn-block { width: 100%; }
.btn-lg { font-size: 20px; padding: 19px 36px; min-height: 60px; }

/* Contextual CTA block (button + micro-copy reassurance) */
.cta-block { margin-top: 28px; }
.cta-block .btn { }
.cta-micro { display: block; margin-top: 12px; font-size: 14px; color: var(--fg3); }
.cta-block.is-dark .cta-micro { color: var(--fg-on-dark-2); }
.cta-block.is-center { text-align: center; }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.lp-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.lp-header-inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.lp-header.is-scrolled { background: rgba(248,248,246,0.9); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
.lp-logo { display: inline-flex; align-items: center; }
.lp-logo img { height: 68px; transition: opacity var(--dur) var(--ease); }
.lp-logo .logo-light { display: block; }
.lp-logo .logo-dark { display: none; position: absolute; }
.lp-header.is-scrolled .lp-logo .logo-light { display: none; }
.lp-header.is-scrolled .lp-logo .logo-dark { display: block; position: static; }
.lp-header-right { display: flex; align-items: center; gap: 22px; }
.lp-phone { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; transition: color var(--dur) var(--ease); }
.lp-phone svg { width: 18px; height: 18px; color: var(--cuivre-400); }
.lp-header.is-scrolled .lp-phone { color: var(--anthracite); }
.lp-phone:hover { color: var(--cuivre-400); }
.lp-header.is-scrolled .lp-phone:hover { color: var(--accent); }

/* ============================================================
   1 · HERO
   ============================================================ */
.lp-hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--header-h) + 40px) 0 56px; overflow: hidden; }
.lp-hero-bg { position: absolute; left: 0; right: 0; top: -15%; height: 130%; z-index: 0; will-change: transform; transform: translate3d(0,0,0); }
.lp-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: reduce) { .lp-hero-bg { top: 0; height: 100%; transform: none !important; will-change: auto; } }
.lp-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(25,26,28,0.90) 0%, rgba(25,26,28,0.74) 38%, rgba(25,26,28,0.40) 70%, rgba(25,26,28,0.30) 100%),
    linear-gradient(0deg, rgba(25,26,28,0.55) 0%, rgba(25,26,28,0) 45%);
}
.lp-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 460px; gap: 56px; align-items: center; width: 100%; }
.lp-hero-text { max-width: 600px; }
.lp-hero-title { font-family: var(--font-display); font-weight: var(--fw-h1); font-size: clamp(34px, 4.6vw, 56px); line-height: 1.08; color: #fff; letter-spacing: -0.02em; margin-top: 18px; text-shadow: 0 2px 30px rgba(0,0,0,0.3); text-wrap: balance; }
.lp-hero-title em { font-style: normal; color: var(--cuivre-400); }
.lp-hero-sub { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.92); margin-top: 22px; max-width: 52ch; }
.lp-hero-trust { list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px; padding: 0; margin: 26px 0 0; }
.lp-hero-trust li { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.95); font-size: 15px; font-weight: 600; font-family: var(--font-display); }
.lp-hero-trust .stars { color: var(--cuivre-400); letter-spacing: 1px; font-size: 16px; }
.lp-hero-trust .sep { color: rgba(255,255,255,0.32); }
.lp-hero-mobile-cta { display: none; margin-top: 30px; }

/* Embedded form shell in hero (desktop) */
.lp-hero-form { position: relative; z-index: 2; }

/* ============================================================
   2 · TRUST STRIP
   ============================================================ */
.lp-truststrip { background: var(--surface); border-bottom: 1px solid var(--border); }
.lp-truststrip-inner { padding: 38px 32px 34px; }
.lp-truststrip-logo { display: flex; justify-content: center; margin-bottom: 26px; }
.lp-truststrip-logo img { height: 72px; }
.lp-vp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.lp-vp { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.lp-vp-ico { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--blanc-casse-0); border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; }
.lp-vp-ico svg { width: 24px; height: 24px; color: var(--granit-gris); stroke-width: 1.75; }
.lp-vp-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--fg1); }
.lp-vp-desc { font-size: 13.5px; line-height: 1.5; color: var(--fg3); }
.lp-truststrip-cta { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }

/* ============================================================
   SECTIONS — generic
   ============================================================ */
.lp-section { padding: var(--space-9) 0; }
.lp-section-alt { background: var(--bg-alt); }
.lp-logo-center { display: flex; justify-content: center; margin-bottom: 22px; }
.lp-logo-center img { height: 66px; opacity: 0.92; }

/* Split (Before / After) */
.lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lp-split.is-reverse .lp-split-media { order: -1; }
.lp-split-body { max-width: 540px; }
.lp-split-body p + p { margin-top: 16px; }
.lp-split-body .body { font-size: 18px; line-height: 1.7; color: var(--fg2); margin-top: 18px; }
.lp-split-media { }
.lp-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; aspect-ratio: 4 / 3.4; background: var(--gris-100); }
.lp-figure img { width: 100%; height: 100%; object-fit: cover; }

/* "Before" placeholder media (no real photo provided) */
.lp-photo-todo {
  position: relative; aspect-ratio: 4 / 3.4; border-radius: var(--radius-lg); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #d9d6cf 0 22px, #d2cfc7 22px 44px);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; text-align: center;
  filter: grayscale(0.25);
}
.lp-photo-todo span {
  font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--anthracite-700);
  background: rgba(248,248,246,0.92); border: 1px dashed var(--granit-gris); border-radius: var(--radius-md);
  padding: 14px 20px; max-width: 78%; line-height: 1.5;
}

/* Before/After slider */
.lp-ba { position: relative; aspect-ratio: 4 / 3.4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y; background: var(--anthracite-800); }
.lp-ba-layer { position: absolute; inset: 0; }
.lp-ba-layer img { width: 100%; height: 100%; object-fit: cover; }
.lp-ba-before { z-index: 1; }
.lp-ba-after { z-index: 2; clip-path: inset(0 0 0 50%); }
.lp-ba-fill {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, #cfccc4 0 22px, #c7c4bc 22px 44px);
  display: flex; align-items: center; justify-content: center; filter: grayscale(0.3);
}
.lp-ba-fill span { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--anthracite-700); background: rgba(248,248,246,0.92); border: 1px dashed var(--granit-gris); border-radius: var(--radius-md); padding: 10px 14px; text-align: center; max-width: 80%; line-height: 1.45; }
.lp-ba-tag { position: absolute; bottom: 16px; z-index: 3; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: rgba(30,31,33,0.66); backdrop-filter: blur(4px); padding: 7px 12px; border-radius: var(--radius-pill); }
.lp-ba-tag.is-before { left: 16px; }
.lp-ba-tag.is-after { right: 16px; }
.lp-ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }
.lp-ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; }
.lp-ba-knob svg { width: 22px; height: 22px; color: var(--anthracite); }
.lp-ba input[type="range"] { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.lp-ba input[type="range"]:focus-visible + .lp-ba-handle .lp-ba-knob { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

/* ============================================================
   5 · BRIDGE
   ============================================================ */
.lp-bridge-head { max-width: 760px; margin: 0 auto; text-align: center; }
.lp-bridge-head .body { margin-top: 18px; font-size: 18px; color: var(--fg2); }
.lp-bridge-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.lp-bcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-sm); transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.lp-bcard:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.lp-bcard.is-feature { background: var(--anthracite-800); border-color: var(--anthracite-800); }
.lp-bcard-ico { width: 54px; height: 54px; border-radius: var(--radius-md); background: rgba(198,138,74,0.14); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.lp-bcard-ico svg { width: 27px; height: 27px; color: var(--cuivre-500); stroke-width: 1.9; }
.lp-bcard.is-feature .lp-bcard-ico { background: rgba(198,138,74,0.2); }
.lp-bcard h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--fg1); line-height: 1.25; }
.lp-bcard.is-feature h3 { color: #fff; }
.lp-bcard p { margin-top: 12px; font-size: 15.5px; line-height: 1.6; color: var(--fg2); }
.lp-bcard.is-feature p { color: var(--fg-on-dark-2); }
.lp-bcard .pill { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 18px; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cuivre-300); }

/* ============================================================
   6 · PROCESS (timeline)
   ============================================================ */
.lp-process { background: var(--anthracite-900); }
.lp-process .lp-logo-center img { filter: brightness(0) invert(1); opacity: 0.9; }
.lp-process-head { text-align: center; max-width: 720px; margin: 0 auto; }
.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; position: relative; }
.lp-step { border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-lg); padding: 28px 24px; background: rgba(255,255,255,0.025); position: relative; }
.lp-step-top { display: flex; align-items: center; justify-content: space-between; }
.lp-step-ico { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(198,138,74,0.14); display: inline-flex; align-items: center; justify-content: center; }
.lp-step-ico svg { width: 23px; height: 23px; color: var(--cuivre-400); stroke-width: 1.9; }
.lp-step-n { font-family: var(--font-display); font-weight: 800; font-size: 40px; color: rgba(255,255,255,0.13); line-height: 1; }
.lp-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; margin-top: 22px; line-height: 1.25; }
.lp-step p { font-size: 14.5px; line-height: 1.6; color: var(--fg-on-dark-2); margin-top: 10px; }
.lp-step p .hi { color: var(--cuivre-400); font-weight: 700; }

/* ============================================================
   7 · TESTIMONIALS
   ============================================================ */
.lp-tm-head { text-align: center; max-width: 720px; margin: 0 auto; }
.lp-tm-google {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 26px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 10px 22px 10px 16px; box-shadow: var(--shadow-sm);
}
.lp-tm-google .g-logo { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--anthracite); letter-spacing: -0.01em; }
.lp-tm-google .g-logo span:nth-child(1){color:#4285F4}.lp-tm-google .g-logo span:nth-child(2){color:#EA4335}.lp-tm-google .g-logo span:nth-child(3){color:#FBBC05}.lp-tm-google .g-logo span:nth-child(4){color:#4285F4}.lp-tm-google .g-logo span:nth-child(5){color:#34A853}.lp-tm-google .g-logo span:nth-child(6){color:#EA4335}
.lp-tm-google .g-stars { color: var(--cuivre-500); letter-spacing: 1px; font-size: 16px; }
.lp-tm-google .g-note { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--fg2); }
.lp-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.lp-review { margin: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.lp-review-photo { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gris-100); }
.lp-review-photo img { width: 100%; height: 100%; object-fit: cover; }
.lp-review-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.lp-stars { color: var(--cuivre-500); letter-spacing: 2px; font-size: 16px; }
.lp-review blockquote { margin: 14px 0 0; font-size: 16px; line-height: 1.62; color: var(--fg1); quotes: "«" "»"; }
.lp-review-by { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--divider); }
.lp-review-by strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg1); }
.lp-review-by span { font-size: 13px; color: var(--fg3); }
.lp-review-verified { margin-top: 12px; display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--success); }
.lp-review-verified svg { width: 15px; height: 15px; }

/* ============================================================
   8 · FORM
   ============================================================ */
.lp-quote { position: relative; background: var(--anthracite-800); overflow: hidden; }
.lp-quote-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.10; }
.lp-quote-bg img { width: 100%; height: 100%; object-fit: cover; }
.lp-quote .lp-container { position: relative; z-index: 1; }
.lp-quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lp-quote-pitch .body { color: var(--fg-on-dark-2); font-size: 18px; margin-top: 16px; }
.lp-quote-bullets { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.lp-quote-bullets li { display: flex; align-items: center; gap: 12px; color: var(--blanc-casse-1); font-size: 16px; }
.lp-quote-bullets svg { width: 19px; height: 19px; color: var(--cuivre-400); stroke-width: 2.5; flex: none; }

/* Form card */
.lp-form-card { background: var(--surface); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); }
.lp-form-card.is-compact { padding: 26px; }

/* progress */
.lp-form-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.lp-form-back { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); color: var(--fg2); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all var(--dur) var(--ease); }
.lp-form-back:hover { border-color: var(--anthracite); color: var(--anthracite); }
.lp-form-back svg { width: 18px; height: 18px; }
.lp-form-back[hidden] { display: none; }
.lp-form-progress-main { flex: 1; }
.lp-form-progress-label { display: flex; justify-content: space-between; align-items: baseline; }
.lp-form-progress-label .step-count { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg3); }
.lp-form-progress-label .step-pct { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--accent); }
.lp-progress-track { height: 6px; border-radius: 999px; background: var(--gris-100); margin-top: 8px; overflow: hidden; }
.lp-progress-fill { height: 100%; width: 0; background: var(--accent); border-radius: 999px; transition: width var(--dur-slow) var(--ease); }

/* steps wrapper / slide */
.lp-form-stage { position: relative; }
.lp-step-screen { display: none; animation: lp-slide var(--dur-slow) var(--ease); }
.lp-step-screen.is-active { display: block; }
@keyframes lp-slide { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lp-step-screen { animation: none; } }

.lp-step-q { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.25; color: var(--fg1); }
.lp-step-help { font-size: 15px; color: var(--fg3); margin-top: 8px; line-height: 1.5; }

/* welcome / intro screen */
.lp-intro { text-align: center; padding: 6px 4px 2px; }
.lp-intro-title { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1.2; color: var(--fg1); letter-spacing: -0.01em; }
.lp-intro-sub { font-size: 16px; line-height: 1.55; color: var(--fg2); margin-top: 12px; }
.lp-intro-meta { display: flex; flex-direction: column; gap: 10px; margin: 22px 0; }
.lp-intro-meta .row { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 14.5px; font-weight: 600; color: var(--fg1); }
.lp-intro-meta .row svg { width: 18px; height: 18px; color: var(--accent); }
.lp-social-proof { font-size: 13.5px; color: var(--fg3); margin-top: 4px; }

/* tile choices */
.lp-tiles { display: grid; gap: 12px; margin-top: 22px; }
.lp-tiles.cols-2 { grid-template-columns: 1fr 1fr; }
.lp-tiles.cols-1 { grid-template-columns: 1fr; }
.lp-tile {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  min-height: 60px; padding: 14px 18px; cursor: pointer;
  background: var(--bg); border: 1.5px solid var(--border-strong); border-radius: var(--radius-md);
  font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--fg1);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.lp-tile:hover { border-color: var(--accent); background: #fff; }
.lp-tile:active { transform: scale(0.99); }
.lp-tile .tile-ico { flex: none; width: 26px; height: 26px; color: var(--granit-gris); display: inline-flex; }
.lp-tile .tile-ico svg { width: 26px; height: 26px; stroke-width: 1.8; }
.lp-tile .tile-label { flex: 1; line-height: 1.3; }
.lp-tile .tile-check { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--gris-300); display: inline-flex; align-items: center; justify-content: center; transition: all var(--dur) var(--ease); }
.lp-tile .tile-check svg { width: 14px; height: 14px; color: #fff; opacity: 0; }
.lp-tile.is-active { border-color: var(--accent); background: rgba(198,138,74,0.08); box-shadow: 0 0 0 1px var(--accent) inset; }
.lp-tile.is-active .tile-ico { color: var(--accent); }
.lp-tile.is-active .tile-check { background: var(--accent); border-color: var(--accent); }
.lp-tile.is-active .tile-check svg { opacity: 1; }

/* text fields */
.lp-field-group { margin-top: 22px; }
.lp-label { display: block; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--fg1); margin-bottom: 8px; }
.lp-input {
  font-family: var(--font-body); font-size: 16px; width: 100%; padding: 15px 16px;
  border: 1.5px solid var(--border-strong); border-radius: var(--radius-md); background: var(--bg); color: var(--fg1);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.lp-input::placeholder { color: var(--fg3); }
.lp-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
.lp-input.is-error { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.18); }
.lp-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-field-err { font-size: 13px; color: #c0392b; margin-top: 7px; min-height: 0; display: none; }
.lp-field-err.is-shown { display: block; }
.lp-city-hint { font-size: 14px; color: var(--success); margin-top: 8px; font-weight: 600; display: none; }
.lp-city-hint.is-shown { display: block; }
.lp-city-hint.is-out { color: var(--cuivre-700); }

/* RGPD checkbox */
.lp-check { display: flex; align-items: flex-start; gap: 11px; margin-top: 18px; cursor: pointer; }
.lp-check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.lp-check .box { flex: none; width: 22px; height: 22px; border-radius: 5px; border: 2px solid var(--gris-300); display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; transition: all var(--dur) var(--ease); }
.lp-check .box svg { width: 14px; height: 14px; color: #fff; opacity: 0; }
.lp-check input:checked + .box { background: var(--accent); border-color: var(--accent); }
.lp-check input:checked + .box svg { opacity: 1; }
.lp-check input:focus-visible + .box { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.lp-check .txt { font-size: 13.5px; line-height: 1.5; color: var(--fg2); }
.lp-check.is-error .box { border-color: #c0392b; }

/* intermediate reassurance screen */
.lp-reassure { text-align: center; padding: 16px 6px; }
.lp-reassure-ico { width: 64px; height: 64px; border-radius: 50%; background: rgba(198,138,74,0.12); display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.lp-reassure-ico svg { width: 32px; height: 32px; color: var(--accent); stroke-width: 1.8; }
.lp-reassure h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--fg1); line-height: 1.3; }
.lp-reassure p { font-size: 15.5px; line-height: 1.55; color: var(--fg2); margin-top: 12px; }
.lp-reassure .rgpd { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13.5px; color: var(--fg3); }
.lp-reassure .rgpd svg { width: 16px; height: 16px; color: var(--granit-gris); }

/* transition micro-copy toast */
.lp-microcopy { font-size: 13.5px; font-weight: 600; color: var(--success); margin-top: 14px; min-height: 18px; opacity: 0; transition: opacity var(--dur) var(--ease); }
.lp-microcopy.is-shown { opacity: 1; }

/* actions */
.lp-form-actions { margin-top: 24px; }
.lp-form-fine { font-size: 12px; line-height: 1.5; color: var(--fg3); margin-top: 12px; text-align: center; }

/* success screen */
.lp-done { text-align: center; padding: 8px 4px; }
.lp-done-ico { width: 72px; height: 72px; border-radius: 50%; background: rgba(31,138,91,0.12); display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 8px; }
.lp-done-ico svg { width: 38px; height: 38px; color: var(--success); stroke-width: 2; }
.lp-done h3 { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--fg1); margin-top: 10px; line-height: 1.25; }
.lp-done .sub { font-size: 15.5px; line-height: 1.6; color: var(--fg2); margin-top: 12px; }
.lp-done .ref { display: inline-block; margin-top: 16px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--anthracite); background: var(--blanc-casse-0); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 8px 18px; }
.lp-accelerator { margin-top: 24px; text-align: left; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.lp-accelerator .acc-head { display: flex; align-items: flex-start; gap: 11px; }
.lp-accelerator .acc-head svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 2px; }
.lp-accelerator .acc-head strong { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg1); }
.lp-accelerator .acc-head p { font-size: 13.5px; line-height: 1.5; color: var(--fg2); margin-top: 4px; }
.lp-upload { display: block; margin-top: 16px; border: 1.5px dashed var(--border-strong); border-radius: var(--radius-md); padding: 18px; text-align: center; cursor: pointer; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); background: var(--surface); position: relative; }
.lp-upload:hover { border-color: var(--accent); background: #fff; }
.lp-upload svg { width: 26px; height: 26px; color: var(--granit-gris); margin: 0 auto 6px; }
.lp-upload span { display: block; font-size: 13.5px; font-weight: 600; color: var(--fg2); }
.lp-upload small { font-size: 12px; color: var(--fg3); }
.lp-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.lp-upload-list { margin-top: 10px; font-size: 13px; color: var(--success); font-weight: 600; }
.lp-textarea { font-family: var(--font-body); font-size: 15px; width: 100%; margin-top: 14px; padding: 13px 15px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-md); background: var(--surface); color: var(--fg1); resize: vertical; min-height: 84px; }
.lp-textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
.lp-done-social { margin-top: 20px; font-size: 14px; color: var(--fg3); }
.lp-done-social a { font-weight: 600; }

/* ============================================================
   9 · FAQ
   ============================================================ */
.lp-faq-head { text-align: center; max-width: 720px; margin: 0 auto; }
.lp-faq-list { max-width: 840px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--dur) var(--ease); }
.lp-faq-item.is-open { box-shadow: var(--shadow-md); }
.lp-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--fg1); line-height: 1.4; }
.lp-faq-q .q-ico { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border-strong); display: inline-flex; align-items: center; justify-content: center; transition: all var(--dur) var(--ease); }
.lp-faq-q .q-ico svg { width: 16px; height: 16px; color: var(--anthracite); transition: transform var(--dur) var(--ease); }
.lp-faq-item.is-open .q-ico { background: var(--accent); border-color: var(--accent); }
.lp-faq-item.is-open .q-ico svg { color: #fff; transform: rotate(45deg); }
.lp-faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease); }
.lp-faq-a-inner { padding: 0 26px 24px; font-size: 16px; line-height: 1.7; color: var(--fg2); }
.lp-faq-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   10 · CTA FINAL
   ============================================================ */
.lp-finalcta { position: relative; overflow: hidden; background: var(--anthracite-900); }
.lp-finalcta-bg { position: absolute; inset: 0; z-index: 0; }
.lp-finalcta-bg img { width: 100%; height: 100%; object-fit: cover; }
.lp-finalcta-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(20,21,22,0.92) 0%, rgba(20,21,22,0.74) 50%, rgba(20,21,22,0.78) 100%); }
.lp-finalcta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; padding: var(--space-10) 0; }
.lp-finalcta .lp-logo-center img { filter: brightness(0) invert(1); opacity: 0.92; }
.lp-finalcta p.body { color: rgba(255,255,255,0.9); font-size: 19px; line-height: 1.6; margin-top: 20px; }
@keyframes lp-pulse { 0%,100% { box-shadow: 0 8px 20px rgba(198,138,74,0.28); } 50% { box-shadow: 0 8px 30px rgba(198,138,74,0.6); } }
@media (prefers-reduced-motion: no-preference) { .lp-pulse { animation: lp-pulse 2.4s var(--ease) infinite; } }

/* ============================================================
   11 · FOOTER
   ============================================================ */
.lp-footer { background: var(--anthracite-900); color: var(--fg-on-dark-2); padding: var(--space-8) 0 0; }
.lp-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: var(--space-7); }
.lp-footer-logo { height: 84px; }
.lp-footer-tagline { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cuivre-300); font-family: var(--font-display); font-weight: 600; margin-top: 16px; }
.lp-footer-about { font-size: 14px; line-height: 1.7; margin-top: 12px; color: var(--fg-on-dark-2); max-width: 38ch; }
.lp-footer-social { display: flex; gap: 12px; margin-top: 18px; }
.lp-footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: inline-flex; align-items: center; justify-content: center; color: var(--fg-on-dark-2); transition: all var(--dur) var(--ease); }
.lp-footer-social a:hover { color: #fff; border-color: var(--cuivre-400); background: rgba(198,138,74,0.14); }
.lp-footer-social svg { width: 18px; height: 18px; }
.lp-footer-col { display: flex; flex-direction: column; gap: 11px; }
.lp-footer-h { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin-bottom: 4px; }
.lp-footer-col a, .lp-footer-col .li { color: var(--fg-on-dark-2); text-decoration: none; font-size: 14.5px; display: inline-flex; align-items: center; gap: 9px; transition: color var(--dur) var(--ease); }
.lp-footer-col a:hover { color: var(--cuivre-400); }
.lp-footer-col svg { width: 16px; height: 16px; color: var(--cuivre-400); flex: none; }
.lp-footer-reassure { border-top: 1px solid rgba(255,255,255,0.08); padding: 26px 0; display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: center; }
.lp-footer-badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: var(--fg-on-dark); }
.lp-footer-badge svg { width: 18px; height: 18px; color: var(--cuivre-400); }
.lp-footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.lp-footer-barinner { max-width: var(--container); margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; gap: 8px 24px; flex-wrap: wrap; color: var(--gris-400); font-size: 12.5px; line-height: 1.6; }
.lp-footer-bar a { color: var(--gris-300); }
.lp-footer-legal { display: flex; flex-wrap: wrap; gap: 4px 14px; }

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.lp-sticky-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(248,248,246,0.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border); box-shadow: 0 -6px 22px rgba(47,49,51,0.10); transition: transform 280ms var(--ease), opacity 200ms var(--ease); }
.lp-sticky-bar .btn { width: 100%; }
/* Masque la sticky bar quand le visiteur est sur le hero ou le formulaire (CTA déjà sous les yeux) */
.lp-sticky-bar.is-hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .lp-hero-grid { grid-template-columns: 1fr 420px; gap: 40px; }
  .lp-vp-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 22px; }
  .lp-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .lp-footer-col.is-contact { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  :root { --fs-h1: 38px; --fs-h2: 30px; --fs-h3: 24px; --fs-body: 16px; }
  .lp-section { padding: var(--space-8) 0; }
  .lp-hero { min-height: auto; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 0; }
  .lp-hero-form { display: none; }            /* embedded form hidden on mobile (lives in #formulaire) */
  .lp-hero-mobile-cta { display: block; }
  .lp-hero-text { max-width: 640px; }
  .lp-split { grid-template-columns: 1fr; gap: 32px; }
  .lp-split.is-reverse .lp-split-media { order: 0; }
  .lp-bridge-cards { grid-template-columns: 1fr; gap: 16px; }
  .lp-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lp-reviews { grid-template-columns: 1fr; gap: 18px; }
  .lp-quote-grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-quote-pitch { text-align: center; }
  .lp-quote-bullets { display: inline-flex; text-align: left; }
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-footer-col.is-contact { grid-column: auto; }
  .lp-phone span.phone-text { display: none; }
}
@media (max-width: 560px) {
  .lp-container { padding: 0 20px; }
  .lp-header-inner { padding: 12px 20px; gap: 10px; }
  /* Header : retire le bouton CTA (déjà présent dans la sticky bar bas) pour éviter le débord */
  .lp-header-right .btn { display: none; }
  .lp-logo img { height: 54px; }
  .lp-truststrip-inner { padding: 30px 20px; }
  .lp-vp-grid { grid-template-columns: 1fr; gap: 18px; }
  .lp-vp { flex-direction: row; align-items: center; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .lp-form-card { padding: 22px 18px; }
  .lp-tiles.cols-2 { grid-template-columns: 1fr; }
  .lp-row-2 { grid-template-columns: 1fr; }
  .lp-sticky-bar { display: block; }
  body.has-sticky-bar { padding-bottom: 78px; }
  .lp-finalcta-inner { padding: var(--space-8) 0; }
  /* Hero : retire les séparateurs "·" qui orphelinent en flex-wrap sur mobile */
  .lp-hero-trust .sep { display: none; }
  .lp-hero-trust { gap: 6px 14px; }
  /* Boutons sur mobile : padding/font réduits + wrap autorisé pour ne jamais forcer la largeur min-content du parent */
  .btn { white-space: normal; line-height: 1.25; }
  .btn-lg { font-size: 17px; padding: 16px 22px; min-height: 54px; }
  .btn-lg svg { width: 17px; height: 17px; }
  .btn-block { padding-left: 18px; padding-right: 18px; }
  /* Évite que les enfants flex/grid forcent le parent à la largeur de leur contenu intrinsèque */
  .lp-split-body, .lp-split-media, .lp-quote-pitch, .lp-bcard, .lp-step { min-width: 0; }
}

/* ============================================================
   2bis · GALERIE / RÉALISATIONS
   ============================================================ */
.lp-gallery-head { text-align: center; max-width: 760px; margin: 0 auto; }
.lp-gallery-sub { font-size: var(--fs-body); line-height: var(--lh-body); color: var(--fg2); margin-top: 16px; }
.lp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 208px;
  gap: 14px;
  margin-top: 52px;
}
.lp-gal-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--gris-100);
  isolation: isolate;
}
.lp-gal-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 640ms var(--ease);
}
.lp-gal-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(28,29,30,0.72) 0%, rgba(28,29,30,0.20) 38%, rgba(28,29,30,0) 62%);
  opacity: 0.82;
  transition: opacity var(--dur) var(--ease);
  z-index: 1;
}
.lp-gal-tile:hover { box-shadow: var(--shadow-lg); }
.lp-gal-tile:hover img { transform: scale(1.06); }
.lp-gal-tile:hover::after { opacity: 1; }
.lp-gal-tile figcaption {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px;
  pointer-events: none;
}
.lp-gal-tag {
  align-self: flex-start;
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  background: rgba(198,138,74,0.92);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.lp-gal-cap {
  display: flex; flex-direction: column; gap: 3px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.lp-gal-tile:hover .lp-gal-cap,
.lp-gal-tile:focus-within .lp-gal-cap { transform: none; opacity: 1; }
.lp-gal-cap strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; line-height: 1.2; color: #fff;
}
.lp-gal-cap span {
  font-size: 13.5px; line-height: 1.4; color: rgba(255,255,255,0.86);
}
.lp-gal-tile.is-lg .lp-gal-cap strong { font-size: 23px; }
/* Explicit mosaic placement (desktop) */
.lp-gal-tile.t1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.lp-gal-tile.t2 { grid-column: 3 / 4; grid-row: 1 / 3; }
.lp-gal-tile.t3 { grid-column: 4 / 5; grid-row: 1 / 3; }
.lp-gal-tile.t4 { grid-column: 1 / 3; grid-row: 3 / 4; }
.lp-gal-tile.t5 { grid-column: 3 / 4; grid-row: 3 / 5; }
.lp-gal-tile.t6 { grid-column: 4 / 5; grid-row: 3 / 5; }
.lp-gal-tile.t7 { grid-column: 1 / 3; grid-row: 4 / 5; }
.lp-gallery-cta {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 44px;
}
.lp-gallery-cta .cta-micro { font-size: var(--fs-small); color: var(--fg3); }

@media (max-width: 900px) {
  .lp-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .lp-gal-tile.t1 { grid-column: 1 / 3; grid-row: span 2; }
  .lp-gal-tile.t2, .lp-gal-tile.t3, .lp-gal-tile.t5, .lp-gal-tile.t6 { grid-column: span 1; grid-row: span 2; }
  .lp-gal-tile.t4, .lp-gal-tile.t7 { grid-column: 1 / 3; grid-row: span 1; }
  .lp-gal-cap { transform: none; opacity: 1; }
}
@media (max-width: 560px) {
  .lp-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .lp-gal-tile.t1, .lp-gal-tile.t2, .lp-gal-tile.t3, .lp-gal-tile.t4,
  .lp-gal-tile.t5, .lp-gal-tile.t6, .lp-gal-tile.t7 { grid-column: 1 / -1; grid-row: span 1; }
}
