/* Léo Larchevêque — Creative Maker : feuille de style du bundle.
   Chargée après tokens.css. Toutes les valeurs passent par des custom properties. */

.llx,
.llx *,
.llx *::before,
.llx *::after { box-sizing: border-box; }

.llx {
  font-family: var(--font-sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

.llx-on-dark :focus-visible { outline-color: var(--focus-ring-inverse); }

/* ---------- Reveal ---------- */

.llx-reveal {
  opacity: var(--opacity-reveal);
  filter: blur(var(--blur-reveal));
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
              filter 700ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.llx-reveal-strong { filter: blur(var(--blur-reveal-strong)); transform: translateY(40px); }

.llx-reveal.is-in {
  opacity: 1;
  filter: blur(0px);
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .llx-reveal,
  .llx-reveal-strong { opacity: 1; filter: none; transform: none; transition: none; }
}

/* ---------- Badge ---------- */

.llx-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-pill);
  background: var(--surface-200);
  color: var(--ink);
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ---------- Tag ---------- */

.llx-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  line-height: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.llx-tag-solid { background: var(--accent); color: var(--on-accent); }
.llx-tag-soft { background: var(--accent-soft); color: var(--accent-ink); }
.llx-tag-neutral { background: var(--surface-200); color: var(--ink); }

/* ---------- SplitTitle ---------- */

.llx-title { margin: 0; color: var(--ink); font-family: var(--font-sans); }
.llx-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.llx-title-hero { font-size: 76px; line-height: 76px; font-weight: 600; letter-spacing: -0.06em; }
.llx-title-xl { font-size: 58px; line-height: 58px; font-weight: 600; letter-spacing: -0.06em; }
.llx-title-lg { font-size: 44px; line-height: 48px; font-weight: 600; letter-spacing: -0.05em; }
.llx-title-md { font-size: 32px; line-height: 36px; font-weight: 600; letter-spacing: -0.04em; }
.llx-title-sm { font-size: 22px; line-height: 26px; font-weight: 600; letter-spacing: -0.03em; }

@media (max-width: 767px) {
  .llx-title-hero { font-size: 40px; line-height: 42px; }
  .llx-title-xl { font-size: 34px; line-height: 36px; }
  .llx-title-lg { font-size: 30px; line-height: 34px; }
  .llx-title-md { font-size: 24px; line-height: 28px; }
}

/* ---------- Frame (equerres) ---------- */

.llx-frame { position: relative; display: block; border-radius: var(--radius-lg); }
.llx-frame-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: var(--surface-300);
}

.llx-frame-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: repeating-linear-gradient(135deg, var(--surface-200) 0 12px, var(--surface-300) 12px 24px);
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  padding: var(--space-4);
}

.llx-frame-c {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 0 solid var(--hairline-strong);
  pointer-events: none;
}

.llx-frame-c-tl { top: 10px; left: 10px; border-top-width: 1px; border-left-width: 1px; }
.llx-frame-c-tr { top: 10px; right: 10px; border-top-width: 1px; border-right-width: 1px; }
.llx-frame-c-bl { bottom: 10px; left: 10px; border-bottom-width: 1px; border-left-width: 1px; }
.llx-frame-c-br { bottom: 10px; right: 10px; border-bottom-width: 1px; border-right-width: 1px; }

.llx-frame-light .llx-frame-c { border-color: var(--ink-inverse); }

/* ---------- Button ---------- */

.llx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 15px var(--space-5);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), background-color 200ms, color 200ms, box-shadow 200ms;
}

.llx-btn:hover { transform: translateY(-2px); }
.llx-btn:active { transform: translateY(0); }

.llx-btn-primary { background: var(--surface-inverse); color: var(--ink-inverse); }
.llx-btn-primary:hover { background: #242424; box-shadow: var(--shadow-card-hover); }

.llx-btn-secondary { background: var(--surface-000); color: var(--ink); border-color: var(--hairline-strong); }
.llx-btn-secondary:hover { background: var(--surface-100); }

.llx-btn-ghost { background: transparent; color: var(--ink); padding-left: 0; padding-right: 0; }
.llx-btn-ghost:hover { color: var(--ink-muted); transform: none; }

.llx-btn-lg { padding: 19px var(--space-6); font-size: 16px; line-height: 16px; }
.llx-btn-block { width: 100%; }

@media (prefers-reduced-motion: reduce) { .llx-btn { transition: none; } .llx-btn:hover { transform: none; } }

/* ---------- SiteHeader / NavPill ---------- */

.llx-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-10);
}

.llx-header-name { font-size: 17px; line-height: 22px; font-weight: 600; letter-spacing: -0.03em; }
.llx-header-role { font-size: 12px; line-height: 16px; color: var(--ink-muted); }
.llx-header-on-photo .llx-header-name { color: var(--ink-inverse); }
.llx-header-on-photo .llx-header-role { color: var(--ink-inverse-muted); }

.llx-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  box-shadow: var(--shadow-pill);
}

.llx-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background-color 200ms, color 200ms;
}

.llx-nav a:hover { background: var(--surface-200); }
.llx-nav a[aria-current="page"] { background: var(--surface-inverse); color: var(--ink-inverse); }

/* ---------- StickyCta ---------- */

.llx-sticky {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 10px 10px 10px var(--space-5);
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  box-shadow: var(--shadow-pill);
}

.llx-sticky-copy { font-size: 14px; line-height: 20px; color: var(--ink); }
.llx-sticky-copy small { display: block; font-size: 12px; line-height: 16px; color: var(--ink-faint); }

@media (max-width: 640px) {
  .llx-sticky { width: 100%; justify-content: space-between; padding-left: var(--space-4); }
  .llx-sticky-copy small { display: none; }
}

/* ---------- Cards ---------- */

.llx-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--surface-100);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms;
}

a.llx-card:hover, button.llx-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

@media (prefers-reduced-motion: reduce) { .llx-card { transition: none; } a.llx-card:hover { transform: none; } }

.llx-card-media { aspect-ratio: 16 / 10; }
.llx-card-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.llx-card-title { font-size: 14px; line-height: 22px; font-weight: 500; color: var(--ink); }
.llx-card-date { font-size: 12px; line-height: 16px; color: var(--ink-faint); margin-top: 2px; }

/* Bento */

.llx-bento {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-4);
  min-height: 220px;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--surface-100);
  overflow: hidden;
  position: relative;
}

.llx-bento-dark { background: var(--surface-inverse); color: var(--ink-inverse); }
.llx-bento-title { font-size: 32px; line-height: 36px; font-weight: 600; letter-spacing: -0.04em; }
.llx-bento-title-sm { font-size: 22px; line-height: 26px; letter-spacing: -0.03em; }
.llx-bento-note { font-size: 14px; line-height: 22px; color: var(--ink-muted); }
.llx-bento-dark .llx-bento-note { color: var(--ink-inverse-muted); }
.llx-bento-fill { position: absolute; inset: 0; }
.llx-bento-fill + * { position: relative; }

.llx-stars { display: inline-flex; gap: 2px; color: var(--accent); font-size: 15px; line-height: 15px; }
.llx-avatars { display: inline-flex; }
.llx-avatars span {
  width: 28px; height: 28px; border-radius: var(--radius-pill);
  border: 2px solid var(--surface-100);
  margin-left: -8px;
  background: var(--surface-300);
  display: inline-block;
}
.llx-avatars span:first-child { margin-left: 0; }

/* Service */

.llx-service {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--surface-100);
  transition: background-color 200ms;
}

.llx-service:hover { background: var(--surface-200); }
.llx-service-thumb { flex: 0 0 auto; width: 64px; height: 48px; border-radius: var(--radius-md); overflow: hidden; }
.llx-service-title { font-size: 15px; line-height: 20px; font-weight: 500; }
.llx-service-desc { font-size: 13px; line-height: 20px; color: var(--ink-muted); margin-top: 4px; }

/* Blog */

.llx-blog-feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; }
.llx-blog-body { display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-6); }
@media (max-width: 767px) { .llx-blog-feature { grid-template-columns: 1fr; } }

/* ---------- Accordion ---------- */

.llx-acc { display: flex; flex-direction: column; }

.llx-acc-item { border-top: 1px solid var(--hairline); }
.llx-acc-item:last-child { border-bottom: 1px solid var(--hairline); }

.llx-acc-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
  width: 100%;
  padding: 26px 0;
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 21px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease;
}
.llx-acc-q:hover { color: var(--ink-muted); }
.llx-acc-item[data-open="true"] .llx-acc-q { padding-bottom: 12px; }

.llx-acc-sign {
  flex: 0 0 auto;
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 4px;
}
.llx-acc-sign::before,
.llx-acc-sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease;
}
.llx-acc-sign::after { transform: rotate(90deg); }
.llx-acc-item[data-open="true"] .llx-acc-sign::after { transform: rotate(0deg); opacity: 0; }

.llx-acc-a {
  padding: 0 60px 30px 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 28px;
  color: var(--ink-muted);
  animation: llx-acc-in 460ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes llx-acc-in {
  from { opacity: 0; transform: translateY(-8px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0px); }
}

@media (prefers-reduced-motion: reduce) {
  .llx-acc-a { animation: none; }
  .llx-acc-sign::before, .llx-acc-sign::after { transition: none; }
}

/* ---------- Conversion ---------- */

.llx-booking {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--surface-inverse);
  color: var(--ink-inverse);
}

.llx-booking-title { font-size: 32px; line-height: 36px; font-weight: 600; letter-spacing: -0.04em; }
.llx-booking-sub { font-size: 15px; line-height: 24px; color: var(--ink-inverse-muted); margin-top: var(--space-3); }
.llx-booking-points { display: flex; flex-direction: column; gap: var(--space-3); margin: 0; padding: 0; list-style: none; }
.llx-booking-points li { display: flex; gap: var(--space-3); font-size: 14px; line-height: 22px; color: var(--ink-inverse); }
.llx-booking .llx-btn-primary { background: var(--ink-inverse); color: var(--surface-inverse); }
.llx-booking .llx-btn-primary:hover { background: #e8e8e8; }

@media (max-width: 767px) { .llx-booking { grid-template-columns: 1fr; padding: var(--space-6); gap: var(--space-6); } }

.llx-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--surface-100);
}

.llx-proof-item { display: flex; align-items: center; gap: var(--space-3); }
.llx-proof-k { font-size: 22px; line-height: 26px; font-weight: 600; letter-spacing: -0.03em; }
.llx-proof-v { font-size: 13px; line-height: 18px; color: var(--ink-muted); }

.llx-logos { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-6); }
.llx-logo {
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: var(--opacity-muted);
  transition: opacity 200ms;
}
.llx-logo:hover { opacity: 1; }

/* ---------- NavBar : flou progressif + menu descendant ---------- */

.llx-navbar { position: relative; z-index: var(--z-nav); }

.llx-blurstack {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 190%;
  pointer-events: none;
}
.llx-blurstack span { position: absolute; inset: 0; display: block; }
.llx-navbar-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: 18px var(--space-10);
  background: transparent;
}

.llx-navbar-brand { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.llx-navbar-name { font-size: 17px; line-height: 22px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); }
.llx-navbar-role { font-size: 12px; line-height: 16px; color: var(--ink-muted); }

.llx-navbar-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.llx-navbar-link {
  position: relative;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 220ms, color 220ms;
}
.llx-navbar-link:hover { background: var(--surface-200); }
.llx-navbar-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 1.5px;
  background: var(--ink);
}

.llx-navbar-end { display: flex; align-items: center; gap: var(--space-3); }

.llx-burger {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--surface-inverse);
  cursor: pointer;
  flex: 0 0 auto;
}
.llx-burger::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--ink-inverse);
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
}
.llx-burger:active { transform: scale(0.92); }
.llx-navbar[data-open="true"] .llx-burger::after { animation: llx-burger-ring 620ms cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes llx-burger-ring {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.7); }
}

.llx-burger i {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink-inverse);
  /* fermeture : sec et rapide */
  transition: top 200ms cubic-bezier(0.4, 0, 1, 1) 120ms,
              transform 320ms cubic-bezier(0.4, 0, 1, 1),
              width 200ms cubic-bezier(0.4, 0, 1, 1) 120ms,
              background-color 320ms ease;
}
.llx-burger i:nth-child(1) { top: 18px; }
.llx-burger i:nth-child(2) { top: 25px; width: 12px; }

/* ouverture : les barres se rejoignent, puis la croix pivote d'un demi-tour */
.llx-navbar[data-open="true"] .llx-burger i {
  transition: top 220ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 620ms cubic-bezier(0.22, 1, 0.36, 1) 140ms,
              width 320ms cubic-bezier(0.22, 1, 0.36, 1),
              background-color 320ms ease;
}
.llx-navbar[data-open="true"] .llx-burger i:nth-child(1) { top: 21px; transform: rotate(225deg); }
.llx-navbar[data-open="true"] .llx-burger i:nth-child(2) { top: 21px; width: 18px; transform: rotate(-225deg); }

/* menu noir ouvert : pastille claire, barres sombres */
.llx-navbar[data-menu="dark"][data-open="true"] .llx-burger { background: var(--surface-000); }
.llx-navbar[data-menu="dark"][data-open="true"] .llx-burger i { background: var(--ink); }
.llx-navbar[data-menu="dark"][data-open="true"] .llx-burger::after { border-color: var(--surface-000); }

.llx-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 100vh;
  padding: var(--space-12) var(--space-10);
  box-sizing: border-box;
  background: #ffffffb8;
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  pointer-events: none;
  transition: clip-path 420ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 420ms;
  display: flex;
  flex-direction: column;
}
.llx-navbar[data-open="true"] .llx-menu {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  pointer-events: auto;
  transition: clip-path 620ms cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0s linear 0s;
}

.llx-menu-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.llx-menu-row {
  overflow: hidden;
}
.llx-menu-row a {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 180ms cubic-bezier(0.4, 0, 1, 1), opacity 140ms linear;
  transition-delay: 0ms !important;
}
.llx-navbar[data-open="true"] .llx-menu-row a {
  transform: none;
  opacity: 1;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1), opacity 340ms ease;
}

.llx-menu-row a {
  display: block;
  padding: 10px 0;
  font-size: 68px;
  line-height: 78px;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 200ms;
}
.llx-navbar[data-open="true"] .llx-menu-row a:hover { opacity: 0.4; }

@media (prefers-reduced-motion: reduce) {
  .llx-menu, .llx-menu-row, .llx-burger i { transition: none; filter: none; }
}

/* ---------- FilterBar ---------- */

.llx-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  border-bottom: 1px solid var(--hairline);
}
.llx-filters .llx-chip {
  position: relative;
  padding: 0 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-faint);
  transition: color 220ms ease;
}
.llx-filters .llx-chip:hover { color: var(--ink-muted); }
.llx-filters .llx-chip[aria-pressed="true"] { color: var(--ink); background: transparent; }
.llx-filters .llx-chip[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--ink);
}

/* ---------- WorkTile ---------- */

.llx-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-200);
  text-decoration: none;
  color: var(--ink-inverse);
  isolation: isolate;
}

.llx-tile-img,
.llx-tile-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.llx-tile-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: var(--ink-faint);
  background: repeating-linear-gradient(135deg, var(--surface-200) 0 12px, var(--surface-300) 12px 24px);
}
.llx-tile:hover .llx-tile-img,
.llx-tile:hover .llx-tile-ph { transform: scale(1.05); }

.llx-tile-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a0a0a00 42%, #0a0a0a33 62%, #0a0a0ae0 100%);
  transition: opacity 400ms;
}

.llx-tile-top { position: absolute; top: 14px; left: 14px; opacity: 0; transform: translateY(-6px); transition: opacity 320ms, transform 320ms; }
.llx-tile:hover .llx-tile-top, .llx-tile:focus-visible .llx-tile-top { opacity: 1; transform: none; }

.llx-tile-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-5);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.llx-tile-title { font-size: 17px; line-height: 23px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink-inverse); }
.llx-tile-meta { font-size: 13px; line-height: 19px; color: #e6e6e6; }
.llx-tile .llx-frame-c { border-color: var(--ink-inverse); opacity: 0; transition: opacity 320ms; }
.llx-tile:hover .llx-frame-c, .llx-tile:focus-visible .llx-frame-c { opacity: 0.85; }

@media (prefers-reduced-motion: reduce) {
  .llx-tile-img, .llx-tile-ph, .llx-tile-body, .llx-tile-top { transition: none; }
  .llx-tile:hover .llx-tile-img, .llx-tile:hover .llx-tile-ph { transform: none; }
}

/* ---------- MacbookReveal ---------- */

.llx-mac { position: relative; width: 100%; perspective: 2400px; padding-bottom: 48px; }

.llx-mac-stage {
  transform-style: preserve-3d;
  transform: rotateX(16deg);
  transition: transform 1800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.llx-mac[data-on="true"] .llx-mac-stage { transform: rotateX(6deg); }

.llx-mac-lid {
  position: relative;
  transform-origin: 50% 100%;
  transform: rotateX(-90deg);
  transition: transform 1700ms cubic-bezier(0.22, 1, 0.36, 1);
  padding: 9px 9px 18px;
  border-radius: 14px 14px 3px 3px;
  background: linear-gradient(175deg, #f4f5f7 0%, #dcdee2 5%, #c3c6cb 48%, #a9adb3 100%);
  box-shadow:
    inset 0 1px 0 #ffffffe6,
    inset 1px 0 0 #ffffff8c,
    inset -1px 0 0 #ffffff8c,
    inset 0 -1px 0 #8d9096,
    0 22px 48px #0a0a0a24;
}
.llx-mac[data-on="true"] .llx-mac-lid { transform: rotateX(-1deg); }

.llx-mac-bezel {
  position: relative;
  padding: 11px 9px 15px;
  border-radius: 8px;
  background: linear-gradient(180deg, #202023 0%, #0e0e10 100%);
  box-shadow: inset 0 0 0 1px #00000099, inset 0 1px 0 #ffffff14;
}
.llx-mac-cam {
  position: absolute;
  top: 4px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #4a4d54 0%, #17181b 70%);
}

.llx-mac-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  overflow: hidden;
  background: var(--surface-000);
  box-shadow: inset 0 0 0 1px #00000080, 0 0 22px #ffffff0f;
}
.llx-mac-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.llx-mac-glare {
  position: absolute; inset: 0;
  background: linear-gradient(112deg, #ffffff2e 0%, #ffffff0a 26%, #ffffff00 46%);
  pointer-events: none;
}

.llx-mac-ph { position: absolute; inset: 0; display: flex; flex-direction: column; background: var(--surface-000); overflow: hidden; }
.llx-mac-bar { display: flex; align-items: center; gap: 6px; padding: 9px 13px; background: var(--surface-200); flex: 0 0 auto; }
.llx-mac-bar i { width: 8px; height: 8px; border-radius: 999px; background: var(--surface-300); display: inline-block; }
.llx-mac-url { margin-left: 10px; padding: 3px 12px; border-radius: 999px; background: var(--surface-000); font-size: 11px; line-height: 16px; color: var(--ink-muted); }

/* la page défile toute seule dans l'écran, une fois l'ordinateur ouvert */
.llx-mac-page {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  transform: translateY(0);
}
.llx-mac[data-on="true"] .llx-mac-page { animation: llx-mac-scroll 16s cubic-bezier(0.45, 0, 0.55, 1) 1.9s infinite alternate; }

@keyframes llx-mac-scroll {
  0%, 12% { transform: translateY(0); }
  46%, 58% { transform: translateY(-40%); }
  92%, 100% { transform: translateY(-78%); }
}

.llx-mac-hero { display: block; height: 150px; border-radius: 8px; background: linear-gradient(160deg, #1d1f22 0%, #33373c 100%); position: relative; flex: 0 0 auto; }
.llx-mac-hero-t { position: absolute; left: 16px; bottom: 18px; width: 52%; height: 14px; border-radius: 4px; background: #ffffffd9; }
.llx-mac-row { display: flex; gap: 10px; flex: 0 0 auto; }
.llx-mac-row i { flex: 1 1 0; height: 78px; border-radius: 7px; background: var(--surface-200); display: block; }
.llx-mac-wide { display: block; height: 104px; border-radius: 8px; background: repeating-linear-gradient(135deg, var(--surface-200) 0 10px, var(--surface-300) 10px 20px); flex: 0 0 auto; }
.llx-mac-foot { display: block; height: 86px; border-radius: 8px; background: #17181b; flex: 0 0 auto; }
.llx-mac-label { display: block; padding: 6px 0 16px; text-align: center; font-size: 11px; line-height: 16px; color: var(--ink-faint); flex: 0 0 auto; }

.llx-mac-base {
  position: relative;
  height: 216px;
  margin: -6px -3.6% 0;
  transform-origin: 50% 0;
  transform: rotateX(76deg);
  border-radius: 3px 3px 15px 15px;
  background: linear-gradient(180deg, #bfc2c7 0%, #dfe1e4 18%, #cdd0d5 68%, #a8abb1 100%);
  box-shadow: inset 0 1px 0 #ffffffc4, 0 3px 0 #94979d;
}
.llx-mac-hinge {
  position: absolute; left: 3.2%; right: 3.2%; top: 0;
  height: 8px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(180deg, #5f6368 0%, #a4a7ad 100%);
}
.llx-mac-keys {
  position: absolute; left: 8.5%; right: 8.5%; top: 28px;
  height: 100px;
  border-radius: 5px;
  background:
    repeating-linear-gradient(90deg, #212328 0 6.1%, #c2c5ca 6.1%, #c2c5ca 7.0%),
    repeating-linear-gradient(180deg, #212328 0 20%, #c2c5ca 20%, #c2c5ca 23%);
  box-shadow: inset 0 0 0 1px #8b8e94;
  opacity: 0.9;
}
.llx-mac-pad {
  position: absolute; left: 50%; top: 142px;
  transform: translateX(-50%);
  width: 29%; height: 56px;
  border-radius: 5px;
  background: linear-gradient(180deg, #c6c9ce 0%, #d6d9dd 100%);
  box-shadow: inset 0 0 0 1px #9da0a6;
}
.llx-mac-lip {
  position: absolute; left: 43%; right: 43%; bottom: 0;
  height: 6px;
  border-radius: 999px 999px 0 0;
  background: #9b9ea4;
}

.llx-mac-shadow {
  position: absolute; left: 6%; right: 6%; bottom: 0;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #0a0a0a47 0%, #0a0a0a00 72%);
  filter: blur(8px);
}

@media (prefers-reduced-motion: reduce) {
  .llx-mac-lid, .llx-mac-stage { transition: none; transform: rotateX(0deg); }
  .llx-mac[data-on="true"] .llx-mac-page { animation: none; }
}

/* ---------- Capability ---------- */

.llx-cap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--surface-100);
  transition: background-color 240ms, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}
.llx-cap:hover { background: var(--surface-200); transform: translateY(-3px); }
.llx-cap-kicker { font-size: 12px; line-height: 16px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.llx-cap-title { margin: 0; font-size: 22px; line-height: 28px; font-weight: 600; letter-spacing: -0.03em; }
.llx-cap-desc { margin: 0; font-size: 14px; line-height: 23px; color: var(--ink-muted); }
.llx-cap-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: var(--space-3); }
.llx-cap-stack span {
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: var(--surface-000);
  font-size: 11px;
  line-height: 15px;
  color: var(--ink-muted);
}

@media (prefers-reduced-motion: reduce) { .llx-cap { transition: none; } .llx-cap:hover { transform: none; } }

/* ---------- Footer ---------- */

.llx-footer { background: var(--surface-inverse); color: var(--ink-inverse); padding: var(--space-12) var(--space-10) var(--space-6); }
.llx-footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-8); }
.llx-footer p { margin: 0 0 var(--space-4); font-size: 15px; line-height: 24px; color: var(--ink-inverse-muted); }
.llx-footer h3 { margin: 0 0 var(--space-4); font-size: 13px; line-height: 18px; font-weight: 500; color: var(--ink-inverse); }
.llx-footer ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.llx-footer a { color: var(--ink-inverse-muted); font-size: 14px; line-height: 20px; text-decoration: none; }
.llx-footer a:hover { color: var(--ink-inverse); }
.llx-footer-rule { display: none; }

.llx-leo {
  position: relative;
  margin-top: var(--space-12);
  font-size: 220px;
  line-height: 180px;
  font-weight: 700;
  letter-spacing: -0.07em;
  color: var(--ink-inverse);
  text-align: center;
}
.llx-leo::before {
  content: attr(data-word);
  position: absolute;
  inset: 0;
  color: var(--ink-inverse);
  filter: blur(26px);
  opacity: 0.5;
  pointer-events: none;
}
.llx-leo::after {
  content: attr(data-word);
  position: absolute;
  inset: 0;
  color: var(--ink-inverse);
  filter: blur(6px);
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 767px) {
  .llx-footer { padding: var(--space-8) var(--gutter-mobile) var(--space-5); }
  .llx-footer-top { grid-template-columns: 1fr; gap: var(--space-6); }
  .llx-leo { font-size: 96px; line-height: 86px; }
}

/* ---------- PhotoArc ---------- */

.llx-arc {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  perspective: 1500px;
  padding: 36px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  overscroll-behavior-x: contain;
}
.llx-arc:active { cursor: grabbing; }
.llx-arc::-webkit-scrollbar { display: none; }

.llx-arc-row {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  padding: 0 24px;
  transform-style: preserve-3d;
}

.llx-arc-item {
  flex: 0 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-200);
  box-shadow: 0 24px 60px #0a0a0a24;
  transition: box-shadow 400ms;
  will-change: transform, width, height;
  position: relative;
}
.llx-arc-item * { user-select: none; -webkit-user-drag: none; }
.llx-arc-item:hover { box-shadow: 0 32px 80px #0a0a0a33; }

.llx-arc-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.llx-arc-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  box-sizing: border-box;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: var(--ink-faint);
  background: repeating-linear-gradient(135deg, var(--surface-200) 0 12px, var(--surface-300) 12px 24px);
}

@media (prefers-reduced-motion: reduce) { .llx-arc-item { transition: none; } }

/* ---------- BookingFlow ---------- */

.llx-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  min-height: 460px;
  padding: var(--space-8) var(--space-10);
  border-radius: var(--radius-xl);
  background: var(--surface-100);
}

.llx-flow-top { display: flex; align-items: center; gap: var(--space-5); }
.llx-flow-step { flex: 0 0 auto; font-size: 12px; line-height: 16px; font-weight: 500; letter-spacing: 0.08em; color: var(--ink-faint); }
.llx-flow-bar { flex: 1 1 auto; height: 2px; border-radius: 2px; background: var(--surface-300); overflow: hidden; }
.llx-flow-bar i { display: block; height: 100%; background: var(--ink); transition: width 620ms cubic-bezier(0.16, 1, 0.3, 1); }

.llx-flow-back {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 18px;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background-color 180ms, color 180ms;
}
.llx-flow-back:hover { background: var(--surface-200); color: var(--ink); }

.llx-flow-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
  animation: llx-flow-in 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes llx-flow-in {
  from { opacity: 0; transform: translateY(26px); filter: blur(10px); }
  to { opacity: 1; transform: none; filter: blur(0px); }
}

.llx-flow-q { margin: 0; font-size: 44px; line-height: 50px; font-weight: 600; letter-spacing: -0.05em; color: var(--ink); max-width: 20ch; }
.llx-flow-done { margin: 0; font-size: 17px; line-height: 28px; color: var(--ink-muted); max-width: 42ch; }
.llx-flow-note { margin: 0; font-size: 13px; line-height: 20px; color: var(--ink-faint); }

.llx-flow-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.llx-flow-chip {
  padding: 16px 22px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  background: var(--surface-000);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 220ms, color 220ms, border-color 220ms, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.llx-flow-chip:hover {
  background: var(--surface-inverse);
  border-color: var(--surface-inverse);
  color: var(--ink-inverse);
  transform: translateY(-3px);
}

.llx-flow-input {
  width: 100%;
  max-width: 620px;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 2px solid var(--hairline-strong);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--ink);
  transition: border-color 220ms;
}
.llx-flow-input::placeholder { color: var(--ink-faint); }
.llx-flow-input:focus { outline: none; border-bottom-color: var(--ink); }

.llx-flow-foot { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }

.llx-flow-recap { display: flex; flex-wrap: wrap; gap: 8px; }
.llx-flow-recap span {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--surface-200);
  font-size: 13px;
  line-height: 18px;
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .llx-flow-body { animation: none; }
  .llx-flow-chip:hover { transform: none; }
}

/* Barre posée sur le hero : texte clair tant qu'on n'a pas défilé */
.llx-navbar[data-light="true"] .llx-navbar-name { color: var(--ink-inverse); }
.llx-navbar[data-light="true"] .llx-navbar-role { color: var(--ink-inverse-muted); }
.llx-navbar[data-light="true"] .llx-navbar-link { color: var(--ink-inverse); }
.llx-navbar[data-light="true"] .llx-navbar-link:hover { background: #ffffff2e; }
.llx-navbar[data-light="true"] .llx-navbar-link[aria-current="page"]::after { background: var(--ink-inverse); }
.llx-navbar[data-light="true"] .llx-burger { background: #ffffff; }
.llx-navbar[data-light="true"] .llx-burger i { background: var(--ink); }
.llx-navbar-name,
.llx-navbar-role,
.llx-navbar-link,
.llx-burger,
.llx-burger i { transition: color 320ms ease, background-color 320ms ease; }


/* ---------- QuoteSlider ---------- */

.llx-quotes { position: relative; display: flex; flex-direction: column; gap: var(--space-5); }
.llx-quotes-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.llx-quotes-track::-webkit-scrollbar { display: none; }

.llx-quote {
  flex: 0 0 auto;
  width: 480px;
  scroll-snap-align: start;
  margin: 0;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--surface-100);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.llx-quote-text { margin: 0; font-size: 19px; line-height: 30px; letter-spacing: -0.02em; color: var(--ink); }
.llx-quote-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.llx-quote-av { width: 38px; height: 38px; border-radius: var(--radius-pill); background: var(--surface-300); flex: 0 0 auto; }
.llx-quote-name { display: block; font-size: 14px; line-height: 20px; font-weight: 500; color: var(--ink); }
.llx-quote-role { display: block; font-size: 12px; line-height: 17px; color: var(--ink-faint); }

.llx-quotes-nav { display: flex; gap: 8px; }
.llx-quotes-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  background: var(--surface-000);
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 200ms, color 200ms, border-color 200ms;
}
.llx-quotes-btn:hover { background: var(--surface-inverse); border-color: var(--surface-inverse); color: var(--ink-inverse); }

/* ---------- WorkGallery ---------- */

.llx-wg { position: relative; display: flex; flex-direction: column; gap: 0; }

.llx-wg-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  border-bottom: 1px solid var(--hairline);
}
.llx-wg-head .llx-filters { border-bottom: 0; }
.llx-chip-n {
  margin-left: 4px;
  font-size: 10px;
  font-weight: 500;
  vertical-align: super;
  color: var(--ink-faint);
}
.llx-filters .llx-chip[aria-pressed="true"] .llx-chip-n { color: var(--accent); }

.llx-wg-views { display: flex; align-items: center; gap: var(--space-5); padding-bottom: 16px; }
.llx-wg-count {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: var(--space-3);
}
.llx-wg-view {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: var(--ink-faint);
  cursor: pointer;
  transition: color 200ms ease;
}
.llx-wg-view:hover { color: var(--ink-muted); }
.llx-wg-view[aria-pressed="true"] { color: var(--ink); }

/* index view */

.llx-wg-index { display: flex; flex-direction: column; }

.llx-wg-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 190px 260px 32px;
  align-items: center;
  gap: var(--space-5);
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
  animation: llx-wg-in 640ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: opacity 320ms ease;
}
@keyframes llx-wg-in { to { opacity: 1; transform: none; } }

.llx-wg-index[data-hot="true"] .llx-wg-row { opacity: 0.34; }
.llx-wg-index[data-hot="true"] .llx-wg-row[data-on="true"] { opacity: 1; }

.llx-wg-num {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

.llx-wg-title {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 34px;
  line-height: 42px;
  font-weight: 600;
  letter-spacing: -0.045em;
}
.llx-wg-t1, .llx-wg-t2 { display: block; transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1); }
.llx-wg-t2 { position: absolute; inset: 0; transform: translateY(100%); color: var(--accent); }
.llx-wg-row[data-on="true"] .llx-wg-t1 { transform: translateY(-100%); }
.llx-wg-row[data-on="true"] .llx-wg-t2 { transform: translateY(0); }

.llx-wg-kind {
  font-size: 13px;
  line-height: 20px;
  color: var(--ink);
}
.llx-wg-meta {
  font-size: 13px;
  line-height: 20px;
  color: var(--ink-faint);
}
.llx-wg-arrow {
  justify-self: end;
  font-size: 18px;
  color: var(--ink-faint);
  transform: translate(-6px, 6px);
  opacity: 0;
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}
.llx-wg-row[data-on="true"] .llx-wg-arrow { transform: none; opacity: 1; color: var(--accent); }

/* cursor preview */

.llx-wg-peek {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transform-origin: 20% 20%;
  transition: opacity 300ms ease, clip-path 620ms cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(46% 0 46% 0);
  background: repeating-linear-gradient(135deg, var(--surface-200) 0 14px, var(--surface-300) 14px 28px);
}
.llx-wg-peek[data-on="true"] { opacity: 1; clip-path: inset(0 0 0 0); }
.llx-wg-peek-in {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: var(--ink-faint);
}
@media (hover: none) { .llx-wg-peek { display: none; } }

/* grid view */

.llx-wg-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  padding-top: var(--space-7);
}
.llx-wg-col { display: flex; flex-direction: column; gap: 14px; }
.llx-wg-col[data-col="1"] { padding-top: 48px; }
.llx-wg-col[data-col="2"] { padding-top: 20px; }
.llx-wg-col[data-col="3"] { padding-top: 68px; }

/* ---------- PhotoMarquee ---------- */

.llx-marq { position: relative; overflow: hidden; width: 100%; }
.llx-marq::before,
.llx-marq::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.llx-marq::before { left: 0; background: linear-gradient(90deg, var(--surface-000), transparent); }
.llx-marq::after { right: 0; background: linear-gradient(270deg, var(--surface-000), transparent); }

.llx-marq-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation-name: llx-marq-run;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes llx-marq-run { to { transform: translate3d(-50%, 0, 0); } }
.llx-marq:hover .llx-marq-track { animation-play-state: paused; }

.llx-marq-cell {
  position: relative;
  flex: 0 0 auto;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--surface-200) 0 14px, var(--surface-300) 14px 28px);
}
.llx-marq-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  font-size: 11px;
  line-height: 16px;
  color: var(--ink-faint);
}

@media (prefers-reduced-motion: reduce) {
  .llx-marq-track { animation: none; }
  .llx-wg-row { animation: none; opacity: 1; transform: none; }
}

/* QuoteSlider — glisse et cas d'un seul avis */
.llx-quotes-track { cursor: grab; }
.llx-quotes-track:active { cursor: grabbing; }
.llx-quotes[data-single="true"] .llx-quote { width: 100%; max-width: none; }
.llx-quotes[data-single="true"] .llx-quotes-track { cursor: default; }
.llx-quotes[data-single="true"] .llx-quote-text { font-size: 22px; line-height: 34px; }

/* Bouton posé sur un fond sombre ou une photo */
.llx-btn.llx-btn-light { color: var(--ink-inverse); }
.llx-btn.llx-btn-light:hover { color: var(--ink-inverse-muted); }

/* StickyCta — n'apparaît qu'une fois le hero passé */
.llx-sticky[data-shown="false"] {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  pointer-events: none;
  transition: opacity 260ms ease, transform 300ms cubic-bezier(0.4, 0, 1, 1);
}
.llx-sticky[data-shown="true"] {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .llx-sticky[data-shown="false"], .llx-sticky[data-shown="true"] { transition: none; transform: none; }
}

/* BookingFlow — étape date */
.llx-flow-date { font-family: inherit; color: var(--ink); }
.llx-flow-skip {
  align-self: flex-start;
  margin-top: -4px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  color: var(--ink-faint);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  transition: color 200ms ease;
}
.llx-flow-skip:hover { color: var(--ink); }
.llx-flow-skip[aria-pressed="true"] { color: var(--accent); text-decoration-color: var(--accent); }

/* BookingFlow posé sur un fond sombre */
.llx-flow.llx-flow-card {
  background: var(--surface-000);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55);
}

/* BookingFlow — erreurs et choix de créneau */
.llx-flow-err { margin: -8px 0 0; font-size: 14px; line-height: 21px; color: var(--accent-ink); }
.llx-flow-input[aria-invalid="true"] { border-bottom-color: var(--accent); }

.llx-flow-days { display: flex; flex-wrap: wrap; gap: 10px; }
.llx-flow-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 84px;
  padding: 14px 12px 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-md);
  background: var(--surface-000);
  font-family: var(--font-sans);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.llx-flow-day:hover { transform: translateY(-2px); border-color: var(--ink); }
.llx-flow-day[aria-pressed="true"] { background: var(--surface-inverse); border-color: var(--surface-inverse); color: var(--ink-inverse); }
.llx-flow-day-d { font-size: 12px; line-height: 16px; letter-spacing: 0.06em; opacity: 0.7; }
.llx-flow-day-n { font-size: 24px; line-height: 28px; font-weight: 600; letter-spacing: -0.04em; }
.llx-flow-day-m { font-size: 12px; line-height: 16px; opacity: 0.7; }

.llx-flow-slots { animation: llx-flow-slots-in 480ms cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes llx-flow-slots-in {
  from { opacity: 0; transform: translateY(12px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
.llx-flow-slot { padding: 13px 20px; font-size: 15px; }
.llx-flow-slot[aria-pressed="true"] { background: var(--surface-inverse); border-color: var(--surface-inverse); color: var(--ink-inverse); }

@media (prefers-reduced-motion: reduce) {
  .llx-flow-slots { animation: none; }
  .llx-flow-day:hover { transform: none; }
}


/* ---------- Menu : pied avec le rendez-vous ---------- */

.llx-menu-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
  margin-top: var(--space-9);
  padding-top: var(--space-7);
  border-top: 1px solid var(--hairline);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 160ms linear, transform 200ms cubic-bezier(0.4, 0, 1, 1);
  transition-delay: 0ms !important;
}
.llx-navbar[data-open="true"] .llx-menu-foot {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}
.llx-menu-copy { display: flex; flex-direction: column; gap: 4px; }
.llx-menu-hook { font-size: 18px; line-height: 26px; font-weight: 500; color: var(--ink); }
.llx-menu-sub { font-size: 14px; line-height: 22px; color: var(--ink-muted); }

@media (prefers-reduced-motion: reduce) {
  .llx-menu-foot { transition: none; transform: none; }
  .llx-navbar[data-open="true"] .llx-burger::after { animation: none; }
}


/* ---------- Menu : variante sombre, pour les pages à fond noir ---------- */

.llx-menu-dark {
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(40px) saturate(0.9) brightness(0.55);
  -webkit-backdrop-filter: blur(40px) saturate(0.9) brightness(0.55);
}
.llx-menu-dark .llx-menu-row a { color: var(--ink-inverse); }
.llx-menu-dark .llx-menu-foot { border-top-color: rgba(255, 255, 255, 0.18); }
.llx-menu-dark .llx-menu-hook { color: var(--ink-inverse); }
.llx-menu-dark .llx-menu-sub { color: var(--ink-inverse-muted); }
