/*
Theme Name:       Le Bardo
Theme URI:        https://le-bardo.local
Description:      Thème custom pour la conciergerie Le Bardo — minimaliste, haut de gamme.
Version:          2.0.0
Author:           Fazel
Text Domain:      le-bardo
Requires PHP:     8.0
Requires at least: 6.0
*/

/* ─── Reset & Base ─────────────────────────────────────── */

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

:root {
  --color-black: #0a0a0a;
  --color-white: #ffffff;
  --color-gray-50: #fafafa;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e5e5e5;
  --color-gray-400: #a3a3a3;
  --color-gray-600: #525252;
  --color-gold: #c9a96e;
  --color-gold-dark: #b8953f;
  --color-gold-dim: rgba(201, 169, 110, 0.10);
  --font-primary: 'DM Sans', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --header-height: 76px;
  --header-height-scrolled: 64px;
  --transition: 0.3s ease;
  --max-width: 1280px;

  /* ── Z-index layers ── */
  --z-base: 0;
  --z-content: 1;
  --z-above: 2;
  --z-elevated: 5;
  --z-sticky: 50;
  --z-header: 100;
  --z-nav: 110;
  --z-fab: 200;
  --z-modal: 300;
  --z-top: 400;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
  padding-top: var(--header-height);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

/* ─── Skip Link (Accessibility) ───────────────────────── */

.lb-skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: var(--z-top);
  padding: 12px 24px;
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.lb-skip-link:focus {
  top: 0;
}

/* ─── Layout ───────────────────────────────────────────── */

.lb-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.lb-section {
  padding: 80px 0;
}

/* ─── Header ───────────────────────────────────────────── */

.lb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  background: var(--color-black);
  contain: layout style;
  will-change: height;
  transition: height var(--transition), box-shadow var(--transition);
}

.lb-header.is-scrolled {
  height: var(--header-height-scrolled);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.lb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */

.lb-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lb-header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lb-header__logo img {
  height: 40px;
  width: auto;
  will-change: height;
  transition: height var(--transition);
}

.lb-header.is-scrolled .lb-header__logo img {
  height: 34px;
}

/* Navigation */

.lb-header__nav {
  display: flex;
  align-items: center;
}

.lb-header__nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.lb-header__nav a {
  display: block;
  padding: 8px 18px;
  color: var(--color-gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.lb-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 1.5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.lb-header__nav a:hover,
.lb-header__nav .current-menu-item a,
.lb-header__nav .current_page_item a {
  color: var(--color-white);
}

.lb-header__nav a:hover::after,
.lb-header__nav .current-menu-item a::after,
.lb-header__nav .current_page_item a::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ─── Burger ───────────────────────────────────────────── */

.lb-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-nav);
}

.lb-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.lb-burger.is-active .lb-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lb-burger.is-active .lb-burger__line:nth-child(2) {
  opacity: 0;
}

.lb-burger.is-active .lb-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Nav ───────────────────────────────────────── */

@media (max-width: 768px) {
  .lb-burger {
    display: flex;
  }

  .lb-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: var(--color-black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .lb-header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .lb-header__nav ul {
    flex-direction: column;
    gap: 0;
  }

  .lb-header__nav a {
    font-size: 1.5rem;
    padding: 16px 24px;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: color var(--transition), opacity 0.4s ease, transform 0.4s ease;
  }

  .lb-header__nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .lb-header__nav.is-open li:nth-child(1) a { transition-delay: 0.05s; }
  .lb-header__nav.is-open li:nth-child(2) a { transition-delay: 0.1s; }
  .lb-header__nav.is-open li:nth-child(3) a { transition-delay: 0.15s; }
  .lb-header__nav.is-open li:nth-child(4) a { transition-delay: 0.2s; }

  .lb-header__nav a::after {
    display: none;
  }
}

/* ─── Content ──────────────────────────────────────────── */

.lb-content {
  min-height: 60vh;
}

.lb-page-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--color-gray-200);
  margin-bottom: 48px;
}

.lb-page-header h1 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* ─── Footer ───────────────────────────────────────────── */

.lb-footer {
  background: var(--color-black);
  color: var(--color-gray-400);
  padding: 56px 0 32px;
  margin-top: 0;
}

.lb-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .lb-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

.lb-footer__brand {
  color: var(--color-white);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.lb-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-gray-400);
  margin-bottom: 20px;
  max-width: 320px;
}

.lb-footer__social {
  display: flex;
  gap: 16px;
}

.lb-footer__social a {
  color: var(--color-gray-400);
  transition: color var(--transition);
}

.lb-footer__social a:hover {
  color: var(--color-gold);
}

.lb-footer__heading {
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.lb-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.lb-footer__links a {
  color: var(--color-gray-400);
  font-size: 0.875rem;
}

.lb-footer__links a:hover {
  color: var(--color-white);
}

.lb-footer__links li {
  font-size: 0.875rem;
}

.lb-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .lb-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.lb-footer__copy {
  font-size: 0.8125rem;
  color: var(--color-gray-600);
  margin: 0;
}

.lb-footer__legal {
  display: flex;
  gap: 20px;
}

.lb-footer__legal a {
  font-size: 0.8125rem;
  color: var(--color-gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.lb-footer__legal a:hover {
  color: var(--color-gold);
}

/* ─── WordPress blocks overrides ───────────────────────── */

.entry-content > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.entry-content h1,
.entry-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
}

.entry-content h2:first-child {
  margin-top: 0;
}

.entry-content p {
  margin-bottom: 16px;
  color: var(--color-gray-600);
  font-size: 1.0625rem;
}

.entry-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.entry-content li {
  margin-bottom: 8px;
  color: var(--color-gray-600);
}

.wp-block-columns {
  gap: 32px;
  margin-bottom: 48px;
}

.wp-block-column h3 {
  margin-bottom: 8px;
}

.wp-block-column p {
  font-size: 0.9375rem;
}

/* ─── Floating WhatsApp Button ──────────────────────────── */

.lb-wa-float {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: var(--z-fab);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lb-wa-float.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lb-wa-float__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .lb-wa-float__btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  }
}

.lb-wa-float__btn:active {
  transform: scale(0.95);
}

.lb-wa-float__btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.lb-wa-float__label {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 3px 9px;
  border-radius: 10px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   PAGES — Composants partagés (anciennement pages.css)
   ═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────
   Le Bardo — Pages CSS (mobile-first)
   ───────────────────────────────────────────────────────── */

/* ── Hero ──────────────────────────────────────────────── */

.lb-hero {
  padding: 48px 0 40px;
  background: var(--color-black);
  color: var(--color-white);
}

.lb-hero--light {
  background: var(--color-gray-100);
  color: var(--color-black);
}

.lb-hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.lb-hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.lb-hero__sub {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 640px;
}

.lb-hero--light .lb-hero__sub {
  color: var(--color-gray-600);
}

@media (min-width: 768px) {
  .lb-hero {
    padding: 80px 0 64px;
  }
  .lb-hero h1 {
    font-size: 2.75rem;
  }
  .lb-hero__sub {
    font-size: 1.125rem;
  }
}

/* ── CTA Buttons ───────────────────────────────────────── */

.lb-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 480px) {
  .lb-ctas {
    flex-direction: row;
    gap: 16px;
  }
}

.lb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  min-height: 52px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.lb-cta:active {
  transform: scale(0.97);
}

.lb-cta--primary {
  background: var(--color-white);
  color: var(--color-black);
}

@media (hover: hover) {
  .lb-cta--primary:hover {
    background: var(--color-gray-200);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }
}

.lb-cta--outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

@media (hover: hover) {
  .lb-cta--outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    transform: translateY(-2px);
  }
}

.lb-cta--gold {
  background: var(--color-gold);
  color: var(--color-black);
}

/* Shimmer sur les boutons gold */
.lb-cta--gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

@media (hover: hover) {
  .lb-cta--gold:hover {
    background: var(--color-gold-dark);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4);
  }
  .lb-cta--gold:hover::after {
    left: 140%;
  }
}

.lb-cta--whatsapp {
  background: #25d366;
  color: #fff;
}

.lb-cta--whatsapp:hover {
  background: #128c7e;
  color: #fff;
}

/* Dark bg variants */
.lb-section--dark .lb-cta--primary {
  background: var(--color-white);
  color: var(--color-black);
}

/* ── Trust Badge ───────────────────────────────────────── */

.lb-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.875rem;
  opacity: 0.7;
}

.lb-trust span {
  white-space: nowrap;
}

/* ── Section ───────────────────────────────────────────── */

.lb-section {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .lb-section {
    padding: 80px 0;
  }
}

.lb-section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.lb-section--light {
  background: var(--color-gray-100);
}

.lb-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .lb-section__title {
    font-size: 2rem;
  }
}

.lb-section__intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: 32px;
  max-width: 720px;
}

.lb-section--dark .lb-section__intro {
  color: var(--color-gray-400);
}

/* ── Split (2 colonnes) ────────────────────────────────── */

.lb-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .lb-split {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.lb-split__card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.3s ease;
}

@media (hover: hover) {
  .lb-split__card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
}

.lb-split__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.lb-split__card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-gray-600);
  margin-bottom: 20px;
}

/* ── Stats ─────────────────────────────────────────────── */

.lb-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .lb-stats {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}

.lb-stat {
  text-align: center;
  padding: 20px 12px;
}

.lb-stat__number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .lb-stat__number {
    font-size: 2.25rem;
  }
}

.lb-stat__label {
  font-size: 0.8125rem;
  color: var(--color-gray-400);
  line-height: 1.4;
}

/* ── Grid (3 colonnes services) ────────────────────────── */

.lb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .lb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lb-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lb-grid__item {
  padding: 24px;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  background: var(--color-white);
}

.lb-section--dark .lb-grid__item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.lb-grid__item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.lb-grid__item p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-600);
}

.lb-section--dark .lb-grid__item p {
  color: var(--color-gray-400);
}

/* ── Testimonials ──────────────────────────────────────── */

.lb-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .lb-testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.lb-testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  padding: 24px;
}

.lb-section--dark .lb-testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.lb-testimonial__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-gray-600);
  margin-bottom: 16px;
  font-style: italic;
}

.lb-section--dark .lb-testimonial__text {
  color: var(--color-gray-400);
}

.lb-testimonial__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-black);
}

.lb-section--dark .lb-testimonial__author {
  color: var(--color-white);
}

.lb-testimonial__info {
  font-size: 0.8125rem;
  color: var(--color-gray-400);
}

/* ── Differentiators / Features ────────────────────────── */

.lb-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .lb-features {
    gap: 40px;
  }
}

.lb-feature {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-gray-200);
}

.lb-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lb-section--dark .lb-feature {
  border-color: rgba(255, 255, 255, 0.1);
}

.lb-feature h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lb-feature p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-gray-600);
}

.lb-section--dark .lb-feature p {
  color: var(--color-gray-400);
}

/* ── Comparison Table ──────────────────────────────────── */

.lb-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px;
}

.lb-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.lb-table th,
.lb-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--color-gray-200);
}

.lb-table th:first-child,
.lb-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.lb-table thead th {
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-gray-600);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-gray-200);
}

.lb-table thead th:nth-child(2) {
  color: var(--color-gold);
}

/* ── Checklist ─────────────────────────────────────────── */

.lb-checklist {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .lb-checklist--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lb-checklist li {
  padding: 12px 16px;
  padding-left: 44px;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.5;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
}

.lb-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 16px;
  top: 12px;
  color: var(--color-gold);
  font-weight: 700;
}

/* ── FAQ Accordion ─────────────────────────────────────── */

.lb-faq {
  max-width: 800px;
}

.lb-faq__item {
  border-bottom: 1px solid var(--color-gray-200);
}

.lb-section--dark .lb-faq__item {
  border-color: rgba(255, 255, 255, 0.1);
}

.lb-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  position: relative;
  min-height: 48px;
}

.lb-faq__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--color-gray-400);
}

.lb-faq__item.is-open .lb-faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}

.lb-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lb-faq__a p {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-gray-600);
}

.lb-section--dark .lb-faq__a p {
  color: var(--color-gray-400);
}

.lb-faq__item.is-open .lb-faq__a {
  max-height: 500px;
}

/* ── Steps ─────────────────────────────────────────────── */

.lb-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}

@media (min-width: 768px) {
  .lb-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.lb-step {
  counter-increment: step;
  padding: 24px;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  background: var(--color-white);
}

.lb-section--dark .lb-step {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.lb-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.lb-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lb-step p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-600);
}

.lb-section--dark .lb-step p {
  color: var(--color-gray-400);
}

/* ── CTA Section ───────────────────────────────────────── */

.lb-cta-section {
  text-align: center;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .lb-cta-section {
    padding: 80px 0;
  }
}

.lb-cta-section h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .lb-cta-section h2 {
    font-size: 2rem;
  }
}

.lb-cta-section p {
  color: var(--color-gray-400);
  margin-bottom: 28px;
  font-size: 1rem;
}

.lb-cta-section .lb-ctas {
  justify-content: center;
  align-items: center;
}

/* ── Reassurance bar ───────────────────────────────────── */

.lb-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 24px;
  font-size: 0.8125rem;
  color: var(--color-gray-400);
}

/* ── Service Block (big icon + text) ───────────────────── */

.lb-service-block {
  margin-bottom: 48px;
}

.lb-service-block h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
}

.lb-service-block ul {
  list-style: none;
  padding: 0;
}

.lb-service-block li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-600);
}

.lb-service-block li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
}

.lb-service-block li strong {
  color: var(--color-black);
}

/* ── Profiles grid ─────────────────────────────────────── */

.lb-profiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .lb-profiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lb-profile {
  padding: 24px;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  background: var(--color-white);
}

.lb-profile h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lb-profile p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-gray-600);
}

/* ══════════════════════════════════════════════════════════
   BLOG CAROUSEL SECTION (shared across pages)
   Préfixe : lb-blog-section
   ══════════════════════════════════════════════════════════ */

.lb-blog-section {
    background: var(--color-gray-50);
    padding: 56px 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .lb-blog-section { padding: 80px 0; }
}

.lb-blog-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* ── Header row ──────────────────────────────────────────── */

.lb-blog-section__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 480px) {
    .lb-blog-section__header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.lb-blog-section__accent {
    width: 40px;
    height: 3px;
    background: var(--color-gold);
    border: none;
    margin: 0 0 16px;
}

.lb-blog-section__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.15;
    margin: 0 0 6px;
}

@media (min-width: 768px) {
    .lb-blog-section__title { font-size: 2.25rem; }
}

.lb-blog-section__sub {
    font-size: 0.9375rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

.lb-blog-section__all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    flex-shrink: 0;
}

.lb-blog-section__all:hover { color: #b08d4a; }

/* ── Horizontal scroll track ─────────────────────────────── */

.lb-blog-section__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.lb-blog-section__track::-webkit-scrollbar { display: none; }

/* ── Card ────────────────────────────────────────────────── */

.lb-blog-section__card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media (max-width: 375px) {
    .lb-blog-section__card { flex: 0 0 260px; }
}

@media (min-width: 768px) {
    .lb-blog-section__card { flex: 0 0 320px; }
}

@media (hover: hover) {
    .lb-blog-section__card:hover {
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
    }
}

.lb-blog-section__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* ── Card image ──────────────────────────────────────────── */

.lb-blog-section__card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0f0f0;
}

.lb-blog-section__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .lb-blog-section__card:hover .lb-blog-section__card-img img {
        transform: scale(1.05);
    }
}

.lb-blog-section__card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

/* ── Card body ───────────────────────────────────────────── */

.lb-blog-section__card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lb-blog-section__card-cat {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.lb-blog-section__card-title {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.3;
    margin: 0 0 8px;
}

.lb-blog-section__card-excerpt {
    font-size: 0.8125rem;
    color: #888;
    line-height: 1.5;
    margin: 0 0 auto;
    padding-bottom: 14px;
}

.lb-blog-section__card-more {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gold);
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

/* ── Navigation arrows ───────────────────────────────────── */

.lb-blog-section__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.lb-blog-section__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.lb-blog-section__arrow:hover {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #fff;
}

/* ── Small phones ────────────────────────────────────────── */

@media (max-width: 375px) {
    .lb-blog-section { padding: 40px 0; }
    .lb-blog-section__inner { padding: 0 16px; }
    .lb-blog-section__title { font-size: 1.5rem; }
    .lb-blog-section__track { gap: 14px; }
}
