/**
 * Lieux de Retraites — Landing page standalone
 * Scope : .landing-page, .home-page uniquement (navbar / footer restent Webflow)
 */

.landing-page, .home-page {
  overflow-x: clip;
  max-width: 100%;
  --ldrl-green: #28420a;
  --ldrl-green-deep: #1a2d06;
  --ldrl-green-soft: #3d5c3a;
  --ldrl-sage: #8fa67a;
  --ldrl-sage-light: #c5d4b8;
  --ldrl-cream: #f6f4ee;
  --ldrl-sand: #ebe7dc;
  --ldrl-white: #ffffff;
  --ldrl-ink: #1a1a18;
  --ldrl-muted: #5a5a54;
  --ldrl-line: rgba(26, 26, 24, 0.1);
  --ldrl-shadow: 0 20px 60px rgba(26, 26, 24, 0.08);
  --ldrl-shadow-lg: 0 32px 80px rgba(26, 26, 24, 0.12);
  --ldrl-radius: 20px;
  --ldrl-radius-lg: 28px;
  --ldrl-radius-pill: 999px;
  --ldrl-font-serif: "Fraunces", "Georgia", serif;
  --ldrl-font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --ldrl-max: 1280px;
  --ldrl-gutter: clamp(20px, 4vw, 48px);
  --ldrl-ease: cubic-bezier(0.22, 1, 0.36, 1);

  box-sizing: border-box;
  width: 100%;
  font-family: var(--ldrl-font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ldrl-ink);
  background: var(--ldrl-cream);
  -webkit-font-smoothing: antialiased;
}

.landing-page, .home-page *, .home-page *,
.landing-page, .home-page *, .home-page *::before,
.landing-page, .home-page *, .home-page *::after {
  box-sizing: border-box;
}

.landing-page, .home-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.landing-page, .home-page a {
  color: inherit;
  text-decoration: none;
}

.landing-page, .home-page button,
.landing-page, .home-page input,
.landing-page, .home-page select {
  font: inherit;
  color: inherit;
}

/* ——— Layout ——— */
.ldrl-wrap {
  width: 100%;
  max-width: var(--ldrl-max);
  margin-inline: auto;
  padding-inline: var(--ldrl-gutter);
}

.ldrl-section {
  padding-block: clamp(36px, 5vw, 56px);
}

.ldrl-section--below-search {
  padding-top: clamp(28px, 4vw, 40px);
}

.ldrl-section--tight {
  padding-block: clamp(32px, 4.5vw, 48px);
}

/* ——— Typography ——— */
.ldrl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ldrl-green-soft);
}

.ldrl-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ldrl-sage);
}

.ldrl-h1 {
  margin: 0;
  font-family: var(--ldrl-font-serif);
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ldrl-ink);
}

.ldrl-h2 {
  margin: 0;
  font-family: var(--ldrl-font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ldrl-lead {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: var(--ldrl-muted);
  max-width: 52ch;
}

/* ——— Buttons ——— */
.ldrl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--ldrl-radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.25s var(--ldrl-ease),
    color 0.25s var(--ldrl-ease),
    border-color 0.25s var(--ldrl-ease),
    transform 0.25s var(--ldrl-ease),
    box-shadow 0.25s var(--ldrl-ease);
  white-space: nowrap;
}

.ldrl-btn:focus-visible {
  outline: 2px solid var(--ldrl-green-soft);
  outline-offset: 3px;
}

.landing-page, .home-page .ldrl-btn--primary,
.landing-page, .home-page a.ldrl-btn--primary,
.landing-page, .home-page button.ldrl-btn--primary {
  background: var(--ldrl-green);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(40, 66, 10, 0.25);
}

.landing-page, .home-page .ldrl-btn--primary:hover,
.landing-page, .home-page a.ldrl-btn--primary:hover {
  background: var(--ldrl-green-deep);
  color: #ffffff !important;
  transform: translateY(-1px);
}

.landing-page, .home-page .ldrl-btn--primary svg {
  stroke: #ffffff;
}

.ldrl-btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ldrl-ink);
  border-color: var(--ldrl-line);
  backdrop-filter: blur(8px);
}

.ldrl-btn--ghost:hover {
  background: var(--ldrl-white);
  border-color: rgba(26, 26, 24, 0.18);
}

.ldrl-btn--outline {
  background: transparent;
  color: var(--ldrl-green);
  border-color: rgba(40, 66, 10, 0.35);
}

.ldrl-btn--outline:hover {
  background: rgba(40, 66, 10, 0.06);
}

.ldrl-btn--light {
  background: var(--ldrl-cream);
  color: var(--ldrl-green-deep);
}

.ldrl-btn--light:hover {
  background: var(--ldrl-white);
}

.ldrl-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ——— Hero v1 ——— */
.ldrl-hero {
  position: relative;
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(100px, 14vw, 140px);
  overflow: hidden;
}

.ldrl-hero-bg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 35%, rgba(143, 166, 122, 0.22), transparent 72%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(197, 212, 184, 0.32), transparent 68%),
    linear-gradient(180deg, rgba(246, 244, 238, 0) 55%, var(--ldrl-cream) 100%);
}

.ldrl-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: center;
}

@media (min-width: 960px) {
  .ldrl-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
}

.ldrl-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ldrl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ldrl-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 8px;
}

.ldrl-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ldrl-muted);
}

.ldrl-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ldrl-white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(26, 26, 24, 0.06);
  color: var(--ldrl-green);
  flex-shrink: 0;
}

.ldrl-trust-icon svg {
  width: 18px;
  height: 18px;
}

/* Hero visual collage */
.ldrl-hero-visual {
  position: relative;
  min-height: 420px;
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 960px) {
  .ldrl-hero-visual {
    min-height: 520px;
  }
}

.ldrl-hero-main-img {
  width: 78%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--ldrl-radius-lg);
  overflow: hidden;
  box-shadow: var(--ldrl-shadow-lg);
  object-fit: cover;
}

.ldrl-hero-sub-img {
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: var(--ldrl-radius);
  overflow: hidden;
  box-shadow: var(--ldrl-shadow);
  border: 4px solid var(--ldrl-cream);
  object-fit: cover;
}

.ldrl-hero-accent-img {
  position: absolute;
  right: 8%;
  top: 8%;
  width: 38%;
  aspect-ratio: 3 / 4;
  border-radius: var(--ldrl-radius);
  overflow: hidden;
  box-shadow: var(--ldrl-shadow);
  border: 4px solid var(--ldrl-cream);
  object-fit: cover;
}

.ldrl-hero-float {
  position: absolute;
  left: 4%;
  top: 6%;
  z-index: 2;
  background: var(--ldrl-white);
  border-radius: var(--ldrl-radius);
  padding: 16px 18px;
  box-shadow: var(--ldrl-shadow);
  max-width: 200px;
}

.ldrl-hero-float strong {
  display: block;
  font-family: var(--ldrl-font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ldrl-green);
  line-height: 1.1;
}

.ldrl-hero-float span {
  font-size: 0.8125rem;
  color: var(--ldrl-muted);
}

.ldrl-hero-rating {
  position: absolute;
  right: 0;
  bottom: 4%;
  z-index: 2;
  background: var(--ldrl-green);
  color: var(--ldrl-white);
  border-radius: var(--ldrl-radius);
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(26, 42, 6, 0.28);
}

.ldrl-hero-rating strong {
  font-size: 1.25rem;
  font-weight: 600;
}

.ldrl-hero-rating small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 2px;
}

.ldrl-hero-keywords {
  position: absolute;
  right: -4%;
  top: 42%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ldrl-sage);
  opacity: 0.9;
  pointer-events: none;
}

@media (max-width: 959px) {
  .ldrl-hero-keywords {
    display: none;
  }
}

/* ——— Search pill (aligné /proprietes + budget + libellé Rechercher) ——— */
.ldrl-search-anchor {
  position: relative;
  z-index: 25;
  margin-top: calc(-1 * var(--ldrl-search-half, 46px));
  padding-bottom: var(--ldrl-search-half, 46px);
  display: flex;
  justify-content: center;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: min(1040px, 100%);
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-field,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-field {
  flex: 1.35 1 auto;
  min-width: 0;
  padding: 14px 22px;
  position: relative;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-field-label,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #303037;
  line-height: 1.2;
  margin-bottom: 4px;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-search-input,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-search-input {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: var(--ldrl-font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ldrl-ink);
  outline: none;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-search-input::placeholder,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-search-input::placeholder {
  color: var(--ldrl-muted);
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-pill-divider,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-pill-divider {
  flex-shrink: 0;
  width: 1px;
  margin: 10px 0;
  background: #ddd;
  align-self: stretch;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-capacity-btn,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-capacity-btn {
  flex-shrink: 0;
  border: none;
  background: transparent;
  padding: 12px 18px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-capacity-label,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-capacity-label {
  display: block;
  font-family: var(--ldrl-font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ldrl-muted);
  line-height: 1.25;
  white-space: nowrap;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-capacity-btn.has-value .ldr-toolbar-capacity-label,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-capacity-btn.has-value .ldr-toolbar-capacity-label {
  color: var(--ldrl-ink);
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-submit--labeled,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-submit--labeled {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  margin: 8px;
  padding: 0 26px;
  border: none;
  border-radius: 999px;
  background: var(--ldrl-green);
  color: #fff !important;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-submit--labeled svg,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-submit--labeled svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  flex-shrink: 0;
}

.landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-submit--labeled:hover,
.home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-submit--labeled:hover {
  background: var(--ldrl-green-deep);
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing,
  .home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 8px;
  }

  .landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-field,
  .home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-field {
    flex: 1 1 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 4px;
  }

  .landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-pill-divider,
  .home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-pill-divider {
    display: none;
  }

  .landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-capacity-btn,
  .home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-capacity-btn {
    flex: 1 1 auto;
    padding: 10px 12px;
  }

  .landing-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-submit--labeled,
  .home-page .ldr-toolbar-search-pill.ldrl-search-pill--landing .ldr-toolbar-search-submit--labeled {
    flex: 1 1 100%;
    margin: 6px 0 0;
    height: 48px;
  }
}

.ldrl-toolbar-cap-popover {
  position: fixed;
  z-index: 100002;
  width: min(260px, calc(100vw - 32px));
  padding: 16px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(48, 48, 55, 0.14);
  font-family: var(--ldrl-font-sans);
  font-size: 0.9375rem;
  color: #303037;
  -webkit-font-smoothing: antialiased;
}

.ldrl-toolbar-cap-pop-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.ldrl-toolbar-cap-inline-title {
  font-family: var(--ldrl-font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: #303037;
}

.ldrl-toolbar-cap-pop-row input[type="number"] {
  width: 5rem;
  min-width: 0;
  box-sizing: border-box;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font: inherit;
  font-size: 0.875rem;
  text-align: right;
  appearance: textfield;
  -moz-appearance: textfield;
}

.ldrl-toolbar-cap-pop-row input[type="number"]::-webkit-outer-spin-button,
.ldrl-toolbar-cap-pop-row input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Autocomplete (aligné /proprietes) */
.landing-page .ldr-search-wrap,
.home-page .ldr-search-wrap {
  position: relative;
}

.landing-page .ldr-search-suggest,
.home-page .ldr-search-suggest,
.ldr-search-suggest {
  position: fixed;
  z-index: 100002;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(48, 48, 55, 0.16);
  max-height: 320px;
  overflow-y: auto;
  box-sizing: border-box;
}

.ldrl-search-suggest {
  max-width: min(400px, calc(100vw - 32px));
}

.landing-page .ldr-search-suggest-item,
.home-page .ldr-search-suggest-item,
.ldr-search-suggest-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  color: #303037;
  font-size: 0.9rem;
  line-height: 1.35;
}

.landing-page .ldr-search-suggest-item:hover,
.home-page .ldr-search-suggest-item:hover,
.landing-page .ldr-search-suggest-item.is-highlighted,
.home-page .ldr-search-suggest-item.is-highlighted,
.ldr-search-suggest-item:hover,
.ldr-search-suggest-item.is-highlighted {
  background: #f5f3e9;
}

.landing-page .ldr-search-suggest-icon,
.home-page .ldr-search-suggest-icon,
.ldr-search-suggest-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f0eeea
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23303037' stroke-width='1.5' d='M12 21s7-4.35 7-10a7 7 0 1 0-14 0c0 5.65 7 10 7 10Z'/%3E%3Ccircle cx='12' cy='11' r='2.5' stroke='%23303037' stroke-width='1.5'/%3E%3C/svg%3E")
    center / 18px no-repeat;
}

.landing-page .ldr-search-suggest-text strong,
.home-page .ldr-search-suggest-text strong,
.ldr-search-suggest-text strong {
  font-weight: 600;
}

.ldrl-toolbar-cap-apply {
  width: 100%;
  padding: 7px 12px;
  border: none;
  border-radius: 8px;
  background: var(--ldrl-green);
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 720px) {
  .landing-page, .home-page .ldrl-toolbar-search-pill {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 8px;
  }

  .landing-page, .home-page .ldrl-toolbar-search-field {
    flex: 1 1 100%;
    padding: 10px 14px;
  }

  .landing-page, .home-page .ldrl-toolbar-pill-divider {
    display: none;
  }

  .landing-page, .home-page .ldrl-toolbar-capacity-btn {
    flex: 1 1 calc(50% - 8px);
    padding: 8px 12px;
  }

  .landing-page, .home-page .ldrl-toolbar-search-submit {
    margin: 4px 4px 4px auto;
  }
}

/* ——— Section headers ——— */
.ldrl-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.ldrl-section-head--stack {
  flex-direction: column;
  align-items: flex-start;
}

.ldrl-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ldrl-green);
  transition: gap 0.2s var(--ldrl-ease);
}

.ldrl-link-arrow:hover {
  gap: 10px;
}

/* ——— Categories bento ——— */
.ldrl-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .ldrl-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

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

.ldrl-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  padding: 20px;
  border-radius: var(--ldrl-radius);
  overflow: hidden;
  color: var(--ldrl-white);
  transition: transform 0.35s var(--ldrl-ease);
}

@media (min-width: 1024px) {
  .ldrl-cat-card {
    min-height: 280px;
  }

  .ldrl-cat-card--wide {
    grid-column: span 2;
  }
}

.ldrl-cat-card:hover {
  transform: translateY(-4px);
}

.ldrl-cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 20, 8, 0.82) 100%);
  z-index: 1;
}

.ldrl-cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ldrl-ease);
}

.ldrl-cat-card:hover img {
  transform: scale(1.05);
}

.ldrl-cat-body {
  position: relative;
  z-index: 2;
}

.ldrl-cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.ldrl-cat-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.ldrl-cat-icon--palette svg {
  transform: rotate(90deg);
}


.ldrl-cat-title {
  margin: 0 0 4px;
  font-family: var(--ldrl-font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  overflow-wrap: break-word;
}

@media (max-width: 639px) {
  .ldrl-categories--grid .ldrl-cat-title {
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
  }

  .ldrl-cat-desc {
    display: none;
  }
}

.ldrl-cat-desc {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  min-height: 2.7em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.ldrl-cat-card .ldrl-cat-icon {
  color: #ffffff;
}

/* ——— Featured places (grille 3, sans scroll) ——— */
.ldrl-featured-section {
  overflow: hidden;
}

.ldrl-featured-layout {
  display: grid;
  gap: 28px;
  min-width: 0;
}

@media (min-width: 900px) {
  .ldrl-featured-layout {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
  }
}

.ldrl-places-host {
  min-width: 0;
}

.ldrl-places-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-width: 0;
}

@media (max-width: 639px) {
  .ldrl-featured-section {
    overflow: visible;
  }

  .ldrl-featured-section,
  .ldrl-blog-section,
  .ldrl-featured-section .ldrl-places-host,
  .ldrl-blog-section .ldrl-articles-host {
    background: transparent;
  }

  .ldrl-places-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--ldrl-gutter);
    padding: 0 var(--ldrl-gutter) 4px;
    margin-inline: calc(-1 * var(--ldrl-gutter));
    background: transparent;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ldrl-places-grid::-webkit-scrollbar {
    display: none;
  }

  .ldrl-places-grid .ldrl-place-card {
    flex: 0 0 min(86vw, 300px);
    scroll-snap-align: center;
    min-width: 0;
    box-shadow: none;
    filter: none;
  }

  .ldrl-places-grid .ldrl-place-card:hover {
    box-shadow: none;
    transform: none;
  }
}

.ldrl-places-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

@media (max-width: 639px) {
  .ldrl-places-dots:not([hidden]) {
    display: flex;
  }
}

.ldrl-places-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(26, 26, 24, 0.22);
  cursor: pointer;
  transition:
    background 0.2s var(--ldrl-ease),
    transform 0.2s var(--ldrl-ease);
}

.ldrl-places-dot.is-active {
  background: var(--ldrl-green);
  transform: scale(1.2);
}

@media (min-width: 640px) {
  .ldrl-places-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.ldrl-featured-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ldrl-carousel-wrap {
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.ldrl-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  padding: 4px 4px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
}

.ldrl-carousel::-webkit-scrollbar {
  display: none;
}

.ldrl-carousel-nav {
  display: none;
  position: absolute;
  top: -52px;
  right: 0;
  gap: 8px;
}

@media (min-width: 900px) {
  .ldrl-carousel-nav {
    display: flex;
  }
}

.ldrl-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ldrl-line);
  background: var(--ldrl-white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.ldrl-carousel-btn:hover:not(:disabled) {
  background: var(--ldrl-cream);
  border-color: rgba(26, 26, 24, 0.2);
}

.ldrl-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.ldrl-place-card {
  display: block;
  border-radius: var(--ldrl-radius-lg);
  overflow: hidden;
  box-shadow: var(--ldrl-shadow);
  transition: transform 0.35s var(--ldrl-ease), box-shadow 0.35s var(--ldrl-ease);
}

.ldrl-place-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ldrl-shadow-lg);
}

.ldrl-place-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ldrl-sand);
}

.ldrl-place-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ldrl-ease);
}

.ldrl-place-card:hover .ldrl-place-media img {
  transform: scale(1.04);
}

.ldrl-place-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: var(--ldrl-radius-pill);
  background: var(--ldrl-green);
  color: var(--ldrl-white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.ldrl-place-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 20px 22px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 8, 0.15) 0%,
    transparent 38%,
    rgba(10, 16, 8, 0.75) 82%,
    rgba(10, 16, 8, 0.92) 100%
  );
}

.ldrl-place-overlay-content {
  color: #ffffff;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ldrl-place-type {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.ldrl-place-title {
  margin: 0 0 6px;
  font-family: var(--ldrl-font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
}

.ldrl-place-price {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* ——— Why section ——— */
.ldrl-why-section {
  padding-block: clamp(36px, 5vw, 56px);
}

.ldrl-why-split {
  border-radius: var(--ldrl-radius-lg);
  overflow: hidden;
}

.ldrl-why-split-top {
  background: linear-gradient(145deg, var(--ldrl-green-deep) 0%, #243a14 100%);
  padding: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(22px, 3vw, 32px);
  color: #ffffff;
}

.ldrl-why-split-bottom {
  background: transparent;
  border: 1.5px solid var(--ldrl-green-deep);
  border-top: none;
  border-radius: 0 0 var(--ldrl-radius-lg) var(--ldrl-radius-lg);
  padding: clamp(24px, 3.5vw, 40px);
}

.ldrl-why-split-bottom .ldrl-why-steps {
  margin-top: 0;
}

.ldrl-eyebrow--on-dark {
  color: var(--ldrl-sage-light);
}

.ldrl-eyebrow--on-dark .ldrl-eyebrow-dot {
  background: var(--ldrl-sage);
}

.ldrl-h2--on-dark {
  color: #ffffff;
}

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

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

@media (min-width: 960px) {
  .ldrl-why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.ldrl-why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--ldrl-radius);
  padding: 20px 18px;
  transition: background 0.25s var(--ldrl-ease);
}

.ldrl-why-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ldrl-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--ldrl-sage-light);
  margin-bottom: 12px;
}

.ldrl-why-icon svg {
  width: 24px;
  height: 24px;
}

.ldrl-why-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.ldrl-why-text {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.ldrl-why-steps {
  margin-top: clamp(28px, 4vw, 40px);
}

.ldrl-why-steps-head {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.ldrl-why-steps-title {
  margin: 10px 0 0;
  font-family: var(--ldrl-font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.ldrl-why-steps--light .ldrl-why-steps-title {
  color: var(--ldrl-ink);
}

.ldrl-why-steps--light .ldrl-process-num {
  color: var(--ldrl-green-deep);
  background: var(--ldrl-white);
  border: 2px solid var(--ldrl-green);
  box-shadow: 0 0 0 4px var(--ldrl-cream);
}

.ldrl-why-steps--light .ldrl-process-copy h4 {
  color: var(--ldrl-ink);
}

.ldrl-why-steps--light .ldrl-process-copy p {
  color: var(--ldrl-muted);
}

@media (min-width: 768px) {
  .ldrl-why-steps--light .ldrl-process-seg {
    border-top-color: rgba(40, 66, 10, 0.22);
  }
}

/* Process « Comment ça marche » — segments entre pastilles (pas de trait continu) */
.ldrl-process {
  display: grid;
  gap: 24px;
}

.ldrl-process-item {
  min-width: 0;
}

.ldrl-process-marker {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.ldrl-process-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ldrl-font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--ldrl-green-deep);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 4px var(--ldrl-green-deep);
}

.ldrl-process-seg {
  display: none;
}

.ldrl-process-copy h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.ldrl-process-copy p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 768px) {
  .ldrl-process {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 12px;
    align-items: start;
  }

  .ldrl-process-seg {
    display: block;
    flex: 1;
    min-width: 0;
    height: 0;
    margin: 0 4px 0 10px;
    border-top: 2px dashed rgba(255, 255, 255, 0.38);
  }

  .ldrl-process-item--last .ldrl-process-seg {
    display: none;
  }
}

/* ——— Regions ——— */
.ldrl-regions {
  background: var(--ldrl-white);
  border-radius: var(--ldrl-radius-lg);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--ldrl-shadow);
}

.ldrl-regions-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .ldrl-regions-grid {
    grid-template-columns: 1fr 1.1fr 1fr;
    align-items: center;
    gap: 48px;
  }
}

.ldrl-map-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 280px;
  margin-inline: auto;
}

.ldrl-map-visual svg {
  width: 100%;
  height: 100%;
  color: var(--ldrl-sage-light);
}

.ldrl-map-pin {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--ldrl-white);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(26, 26, 24, 0.15);
  object-fit: cover;
}

.ldrl-map-pin--1 { top: 18%; left: 42%; }
.ldrl-map-pin--2 { top: 48%; left: 28%; }
.ldrl-map-pin--3 { top: 62%; left: 55%; }
.ldrl-map-pin--4 { top: 32%; left: 68%; }

.ldrl-regions-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ldrl-regions-cta {
  margin-top: 8px;
}

.ldrl-regions-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.ldrl-region-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .ldrl-region-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ldrl-region-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s var(--ldrl-ease), box-shadow 0.3s var(--ldrl-ease);
}

.ldrl-region-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(26, 26, 24, 0.12);
}

.ldrl-region-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ldrl-region-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 20, 8, 0.75) 100%);
  z-index: 1;
}

.ldrl-region-card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px 14px;
  color: #fff;
}

.ldrl-region-card-name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
}

.ldrl-region-card-count {
  display: block;
  font-size: 0.6875rem;
  opacity: 0.85;
  margin-top: 2px;
}

.ldrl-propose-box {
  background: var(--ldrl-cream);
  border-radius: var(--ldrl-radius);
  padding: 24px;
}

.ldrl-propose-box h3 {
  margin: 0 0 8px;
  font-family: var(--ldrl-font-serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.ldrl-propose-box p {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--ldrl-muted);
}

/* ——— Steps ——— */
.ldrl-steps {
  display: grid;
  gap: 32px;
}

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

  .ldrl-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--ldrl-sage-light) 0,
      var(--ldrl-sage-light) 8px,
      transparent 8px,
      transparent 16px
    );
    z-index: 0;
  }

  .ldrl-steps.ldrl-steps--in-panel::before {
    display: none;
    content: none;
  }
}

.ldrl-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.ldrl-step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--ldrl-white);
  border: 2px solid var(--ldrl-sage-light);
  display: grid;
  place-items: center;
  font-family: var(--ldrl-font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ldrl-green);
  box-shadow: 0 8px 24px rgba(26, 26, 24, 0.06);
}

.ldrl-step h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.ldrl-step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ldrl-muted);
  line-height: 1.55;
}

/* ——— Host CTA ——— */
.ldrl-host-cta {
  position: relative;
  border-radius: var(--ldrl-radius-lg);
  overflow: hidden;
  background: var(--ldrl-green-deep);
  color: var(--ldrl-white);
  padding: clamp(40px, 6vw, 64px);
}

.ldrl-host-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 45, 6, 0.92) 0%, rgba(26, 45, 6, 0.75) 55%, rgba(26, 45, 6, 0.5) 100%),
    var(--ldrl-host-bg) center / cover no-repeat;
  z-index: 0;
}

.ldrl-host-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

@media (min-width: 768px) {
  .ldrl-host-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 48px;
  }
}

.ldrl-host-inner .ldrl-h2 {
  color: var(--ldrl-white);
}

.ldrl-host-inner .ldrl-lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: none;
}

.ldrl-host-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ldrl-host-copy {
  display: flex;
  flex-direction: column;
}

.ldrl-host-copy .ldrl-h2 {
  margin-bottom: 18px;
}

.ldrl-host-copy .ldrl-lead {
  margin-bottom: 28px;
}

.ldrl-host-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.ldrl-host-perk-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.ldrl-host-perk-icon svg {
  width: 24px;
  height: 24px;
}

.ldrl-host-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.landing-page, .home-page .ldrl-btn--on-dark {
  background: var(--ldrl-cream);
  color: var(--ldrl-green-deep) !important;
}

.landing-page, .home-page .ldrl-btn--on-dark:hover {
  background: var(--ldrl-white);
  color: var(--ldrl-green-deep) !important;
}

.ldrl-btn--on-dark-outline {
  background: transparent;
  color: var(--ldrl-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.ldrl-btn--on-dark-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ——— Articles ——— */
.ldrl-articles-host {
  min-width: 0;
}

.ldrl-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-width: 0;
}

@media (max-width: 639px) {
  .ldrl-articles {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--ldrl-gutter);
    padding: 0 var(--ldrl-gutter) 4px;
    margin-inline: calc(-1 * var(--ldrl-gutter));
    background: transparent;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ldrl-articles::-webkit-scrollbar {
    display: none;
  }

  .ldrl-articles .ldrl-article-card {
    flex: 0 0 min(86vw, 300px);
    scroll-snap-align: center;
    min-width: 0;
    box-shadow: none;
    filter: none;
  }

  .ldrl-articles .ldrl-article-card:hover {
    box-shadow: none;
    transform: none;
  }
}

.ldrl-articles-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

@media (max-width: 639px) {
  .ldrl-articles-dots:not([hidden]) {
    display: flex;
  }
}

.ldrl-articles-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(26, 26, 24, 0.22);
  cursor: pointer;
  transition:
    background 0.2s var(--ldrl-ease),
    transform 0.2s var(--ldrl-ease);
}

.ldrl-articles-dot.is-active {
  background: var(--ldrl-green);
  transform: scale(1.2);
}

@media (min-width: 768px) {
  .ldrl-articles {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.ldrl-article-card {
  display: flex;
  flex-direction: column;
  background: var(--ldrl-white);
  border-radius: var(--ldrl-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 26, 24, 0.05);
  transition: transform 0.35s var(--ldrl-ease), box-shadow 0.35s var(--ldrl-ease);
}

.ldrl-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ldrl-shadow);
}

.ldrl-article-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ldrl-sand);
}

.ldrl-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ldrl-ease);
}

.ldrl-article-card:hover .ldrl-article-media img {
  transform: scale(1.04);
}

.ldrl-article-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.ldrl-article-cat {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ldrl-sage);
}

.ldrl-article-title {
  margin: 0;
  font-family: var(--ldrl-font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35;
  flex: 1;
}

.ldrl-article-title a {
  color: inherit;
}

.ldrl-article-title a:hover {
  color: var(--ldrl-green);
}

.ldrl-article-excerpt {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ldrl-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ——— Reveal animations ——— */
@media (prefers-reduced-motion: no-preference) {
  .landing-page.ldrl, .home-page.ldrl-ready .ldrl-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.7s var(--ldrl-ease),
      transform 0.7s var(--ldrl-ease);
  }

  .landing-page.ldrl, .home-page.ldrl-ready .ldrl-reveal.ldrl-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page, .home-page .ldrl-reveal {
    opacity: 1;
    transform: none;
  }
}

/* ——— Variante v2 (hero plein écran, maquette ChatGPT) ——— */
.landing-page.ldrl, .home-page.ldrl-variant-v2 {
  --ldrl-sage-cta: #c5d4b8;
}

.ldrl-hero-v2 {
  position: relative;
  min-height: clamp(540px, 74vh, 720px);
  display: flex;
  align-items: stretch;
  overflow: visible;
  margin-bottom: 0;
  --ldrl-search-half: 46px;
  padding-bottom: var(--ldrl-search-half);
}

.ldrl-hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ldrl-hero-v2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ldrl-hero-v2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(15, 28, 10, 0.72) 0%,
    rgba(15, 28, 10, 0.45) 45%,
    rgba(15, 28, 10, 0.25) 100%
  );
}

@media (max-width: 899px) {
  .ldrl-hero-v2-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 28, 10, 0.55) 0%,
      rgba(15, 28, 10, 0.72) 55%,
      rgba(15, 28, 10, 0.82) 100%
    );
  }
}

.ldrl-hero-v2-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--ldrl-max);
  margin-inline: auto;
  padding: clamp(32px, 5vw, 52px) var(--ldrl-gutter) clamp(48px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 900px) {
  .ldrl-hero-v2-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
  }
}

.ldrl-hero-v2-copy {
  display: flex;
  flex-direction: column;
}

.ldrl-hero-v2-copy .ldrl-eyebrow {
  margin-bottom: 14px;
}

.ldrl-hero-v2-copy .ldrl-h1 {
  margin-bottom: 18px;
}

.ldrl-hero-v2-copy .ldrl-lead {
  margin-bottom: 32px;
}

.ldrl-hero-v2-copy .ldrl-hero-actions {
  margin-top: 0;
  gap: 14px;
}

.ldrl-eyebrow--light {
  color: var(--ldrl-sage-light);
}

.ldrl-eyebrow--light .ldrl-eyebrow-dot {
  background: var(--ldrl-sage-cta);
}

.ldrl-h1--light {
  color: #ffffff;
}

.ldrl-lead--light {
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
}

.landing-page, .home-page .ldrl-btn--outline-light {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.landing-page, .home-page .ldrl-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
}

.ldrl-hero-v2-card {
  background: transparent;
  box-shadow: none;
  padding: 0;
  max-width: 380px;
  width: 100%;
  justify-self: end;
}

.ldrl-hero-v2-collage {
  position: relative;
  min-height: 300px;
  margin-bottom: 20px;
}

.ldrl-hero-v2-collage-main {
  width: 82%;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.ldrl-hero-v2-collage-sub {
  position: absolute;
  left: -6%;
  bottom: 4%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 16px;
  object-fit: cover;
  border: none;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ldrl-hero-v2-collage-accent {
  position: absolute;
  right: -4%;
  top: -6%;
  width: 44%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  object-fit: cover;
  border: none;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (max-width: 899px) {
  .ldrl-hero-v2 {
    min-height: auto;
    padding-bottom: calc(var(--ldrl-search-half) + 12px);
  }

  .ldrl-hero-v2-inner {
    gap: 24px;
    padding-bottom: 32px;
  }

  .ldrl-hero-v2-card {
    max-width: none;
    justify-self: stretch;
  }

  .ldrl-hero-v2-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: static;
    min-height: 0;
    margin-bottom: 12px;
  }

  .ldrl-hero-v2-collage-main,
  .ldrl-hero-v2-collage-sub,
  .ldrl-hero-v2-collage-accent {
    position: static;
    width: 100%;
    margin: 0;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  }

  .ldrl-hero-v2-stat {
    margin: 0;
    justify-content: stretch;
  }

  .ldrl-stat-pill {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
  }

  .ldrl-stat-label {
    max-width: none;
    text-align: center;
  }
}

.ldrl-hero-v2-stat {
  margin: 8px 0 0;
  display: flex;
  justify-content: center;
}

.ldrl-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--ldrl-radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.ldrl-stat-value {
  font-family: var(--ldrl-font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ldrl-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  text-align: left;
  max-width: 11ch;
  line-height: 1.3;
}

.ldrl-categories--grid {
  grid-template-columns: repeat(2, 1fr);
}

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

@media (min-width: 1100px) {
  .ldrl-categories--grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ——— Explorer (expérience / régions) ——— */
.ldrl-explore-block {
  background: var(--ldrl-white);
  border-radius: var(--ldrl-radius-lg);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--ldrl-shadow);
}

.ldrl-explore-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: clamp(16px, 2.5vw, 22px);
}

.ldrl-explore-intro {
  min-width: 0;
}

.ldrl-explore-intro .ldrl-h2 {
  margin: 8px 0 0;
  max-width: 22ch;
}

@media (max-width: 899px) {
  .ldrl-explore-top {
    gap: 22px 10px;
    margin-bottom: 14px;
  }

  .ldrl-explore-intro .ldrl-h2 {
    max-width: none;
    margin: 4px 0 0;
  }

  .ldrl-explore-tab {
    font-size: 0.6875rem;
    padding: 4px 10px;
  }

  .ldrl-explore-switcher {
    padding: 2px;
  }
}

@media (min-width: 900px) {
  .ldrl-explore-top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 24px;
    row-gap: 12px;
  }

  .ldrl-explore-intro .ldrl-h2 {
    max-width: 22ch;
  }
}

.ldrl-explore-switcher {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  padding: 3px;
  border-radius: 9999px;
  border: 1px solid rgba(40, 66, 10, 0.12);
  background: linear-gradient(to bottom, #f2f7ec, #e8f2e2);
  box-shadow: 0 4px 16px -8px rgba(40, 66, 10, 0.1);
}

@media (min-width: 900px) {
  .ldrl-explore-switcher {
    justify-self: end;
  }
}

.ldrl-explore-tab {
  position: relative;
  border: none;
  background: transparent;
  padding: 5px 11px;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(48, 48, 55, 0.75);
  cursor: pointer;
  transition:
    color 0.2s var(--ldrl-ease),
    background 0.2s var(--ldrl-ease),
    box-shadow 0.2s var(--ldrl-ease);
}

.ldrl-explore-tab:hover {
  color: var(--ldrl-green);
}

.ldrl-explore-tab.is-active {
  background: var(--ldrl-green);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(40, 66, 10, 0.55);
}

.ldrl-explore-panel:not(.is-active) {
  display: none;
}

.ldrl-explore-panel-intro {
  margin: 0 0 18px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ldrl-muted);
  max-width: 48ch;
}

.ldrl-explore-footer {
  margin-top: 20px;
}

.ldrl-explore-panel .ldrl-cat-card {
  min-height: 168px;
}

@media (min-width: 1024px) {
  .ldrl-explore-panel .ldrl-cat-card {
    min-height: 220px;
  }
}

.ldrl-explore-regions {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .ldrl-explore-regions {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

.ldrl-explore-regions .ldrl-region-card {
  aspect-ratio: 5 / 4;
  min-height: 0;
}

@media (min-width: 900px) {
  .ldrl-explore-regions {
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .ldrl-explore-regions .ldrl-region-card {
    aspect-ratio: unset;
    min-height: 100px;
  }

  .ldrl-explore-regions .ldrl-region-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ——— Régions (2 colonnes, legacy) ——— */
.ldrl-regions-block {
  background: var(--ldrl-white);
  border-radius: var(--ldrl-radius-lg);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: var(--ldrl-shadow);
}

.ldrl-regions-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 900px) {
  .ldrl-regions-layout {
    grid-template-columns: minmax(260px, 300px) 1fr;
    gap: 40px;
    align-items: stretch;
  }
}

.ldrl-regions-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ldrl-regions-copy .ldrl-lead {
  max-width: none;
  margin-bottom: 8px;
}

.ldrl-regions-copy .ldrl-link-arrow {
  margin-top: 4px;
}

.ldrl-regions-right {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
}

.ldrl-regions-right .ldrl-region-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  flex: 1;
}

@media (min-width: 640px) {
  .ldrl-regions-right .ldrl-region-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

.ldrl-regions-right .ldrl-region-card {
  min-height: 112px;
}

@media (min-width: 900px) {
  .ldrl-regions-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
  }

  .ldrl-regions-right .ldrl-region-cards {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-content: stretch;
    min-height: 0;
  }

  .ldrl-regions-right .ldrl-region-card {
    min-height: 0;
    height: auto;
    aspect-ratio: unset;
  }

  .ldrl-regions-right .ldrl-region-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Blog — en-tête + tags */
.ldrl-blog-section .ldrl-blog-header {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.ldrl-blog-header-copy {
  margin-bottom: 20px;
}

.ldrl-blog-header-copy .ldrl-h2 {
  margin-top: 8px;
}

.ldrl-blog-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.ldrl-blog-all {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}

.ldrl-blog-tags-row {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 639px) {
  .ldrl-blog-header-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .ldrl-blog-tags-row {
    order: 1;
  }

  .ldrl-blog-all {
    order: 2;
    margin-left: 0;
    align-self: flex-start;
  }
}

.ldrl-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin: 0;
}

.ldrl-blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--ldrl-radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid var(--ldrl-line);
  background: var(--ldrl-white);
  color: var(--ldrl-ink);
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background 0.2s var(--ldrl-ease),
    border-color 0.2s var(--ldrl-ease),
    color 0.2s var(--ldrl-ease);
}

.ldrl-blog-empty {
  margin: 0;
  color: var(--ldrl-muted);
  font-size: 0.9375rem;
}

.ldrl-blog-tag:hover {
  border-color: var(--ldrl-sage);
  color: var(--ldrl-green);
}

.ldrl-blog-tag.is-active {
  background: var(--ldrl-sage-light);
  border-color: transparent;
  color: var(--ldrl-green-deep);
}

@media (max-width: 639px) {
  .ldrl-blog-tags {
    gap: 6px;
  }

  .ldrl-blog-tag {
    padding: 5px 11px;
    font-size: 0.6875rem;
    font-weight: 600;
  }
}

.ldrl-article-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ldrl-green-soft);
  margin-bottom: 8px;
}

.ldrl-article-cat:hover {
  color: var(--ldrl-green);
  text-decoration: underline;
}
