/* =============================================
   RESET KADENCE - Plein largeur
   ============================================= */
.entry-content-wrap,
.content-wrap,
.site-container,
.lr-slider,
.wp-block-cover.alignfull,
.wp-block-group.alignfull {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* =============================================
   HEADER — styles obsolètes supprimés
   Le système actif est dans le bloc GLOBAL HEADER SYSTEM plus bas
   ============================================= */

/* =============================================
   SLIDER — Plein largeur
   ============================================= */
.lr-slider-wrap {
  position: relative;
  width: 100%;
}

.lr-slider {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 420px;
  max-height: 620px;
  overflow: hidden;
}

.lr-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  overflow: hidden;
  will-change: transform;
  backface-visibility: hidden;
}

/* Ken Burns sur le slide actif */
.lr-slider__slide.active {
  transform: translateX(0);
  animation: lr-kb 8s ease-in-out forwards;
}

.lr-slider__slide.leaving {
  transform: translateX(-100%);
}

.lr-slider__slide.entering-prev {
  transform: translateX(-100%);
}

@keyframes lr-kb {
  from {
    background-size: 110%;
  }
  to {
    background-size: 105%;
  }
}

@keyframes lr-slide-in-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lr-slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lr-slider__slide.active .lr-slider__label {
  animation: lr-slide-in-left 0.5s ease 0.15s both;
}

.lr-slider__slide.active .lr-slider__content h1 {
  animation: lr-slide-in-up 0.6s ease 0.28s both;
}

.lr-slider__slide.active .lr-slider__content p {
  animation: lr-slide-in-up 0.6s ease 0.45s both;
}

.lr-slider__slide.active .lr-slider__btn {
  animation: lr-slide-in-up 0.6s ease 0.6s both;
}

@media (prefers-reduced-motion: reduce) {
  .lr-slider__slide {
    transition: none;
    animation: none;
  }
  .lr-slider__slide.active .lr-slider__label,
  .lr-slider__slide.active .lr-slider__content h1,
  .lr-slider__slide.active .lr-slider__content p,
  .lr-slider__slide.active .lr-slider__btn {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.lr-slider__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(5, 15, 10, 0.92) 0%,
      rgba(10, 25, 16, 0.6) 45%,
      rgba(5, 10, 8, 0.15) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
}

.lr-slider__content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-55%);
  text-align: left;
  color: #ffffff;
  max-width: 560px;
}

/* Label catégorie au-dessus du titre */
.lr-slider__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff8a65;
  margin-bottom: 1rem;
}

.lr-slider__label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: #d94010;
  border-radius: 2px;
}

.lr-slider__content h1 {
  font-family: var(--halpes-heading-font-family);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  line-height: 1.18;
}

.lr-slider__content p {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 460px;
}

.lr-slider__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: #d94010;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition:
    background 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
  box-shadow: 0 8px 24px rgba(212, 106, 46, 0.35);
}

.lr-slider__btn::after {
  content: "→";
  transition: transform 0.22s ease;
}

.lr-slider__btn:hover {
  background: #b85a25;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 106, 46, 0.45);
  color: #ffffff;
}

.lr-slider__btn:hover::after {
  transform: translateX(4px);
}

/* Flèches */
.lr-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.22s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.lr-slider__arrow:hover {
  background: rgba(212, 106, 46, 0.75);
  border-color: transparent;
  transform: translateY(-50%) scale(1.06);
}

.lr-slider__arrow--prev {
  left: 1.5rem;
}
.lr-slider__arrow--next {
  right: 1.5rem;
}

/* Barres de progression */
.lr-slider__dots {
  position: absolute;
  bottom: 5.5rem;
  left: 8%;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.lr-slider__dot {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition:
    background 0.22s,
    width 0.22s;
  padding: 0;
}

.lr-slider__dot.active {
  background: #d94010;
  width: 56px;
}

/* =============================================
   CARTES RAPIDES sur le slider (style Chicago)
   ============================================= */
.lr-quicklinks {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 20;
}

.lr-quicklinks__item {
  background: rgba(27, 67, 50, 0.88);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background 0.2s;
}

.lr-quicklinks__item:last-child {
  border-right: none;
}

.lr-quicklinks__item:hover {
  background: rgba(212, 106, 46, 0.9);
}

.lr-quicklinks__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 1.7rem;
  filter: grayscale(0.55) brightness(1.1);
  line-height: 1;
}

.lr-quicklinks__text h3 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.35rem;
  font-family: var(--halpes-font-sans-serif);
}

.lr-quicklinks__text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

/* =============================================
   FOOTER — Premium immersif
   ============================================= */
/* =============================================
   FOOTER — Premium immersif
   ============================================= */
.lr-footer {
  position: relative;
  background: #0f2518;
  color: #ffffff;
  overflow: hidden;
}

/* Ligne de séparation lumineuse depuis le CTA */
.lr-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 138, 101, 0.35),
    transparent
  );
}

/* Glow ambiance */
.lr-footer__glow {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 700px;
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(27, 67, 50, 0.28) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

/* Headline statement — la grande phrase impactante */
.lr-footer__statement {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lr-footer__statement .lr-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.lr-footer__headline {
  font-family: var(--lr-font-display, var(--halpes-heading-font-family));
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin: 0;
  max-width: 640px;
}

.lr-footer__headline span {
  color: #ff8a65;
}

.lr-footer__statement-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.lr-footer__statement-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: #d94010;
  color: #fff;
  font-family: var(--halpes-font-sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.22s,
    transform 0.22s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.lr-footer__statement-cta:hover {
  background: #b8360c;
  transform: translateY(-2px);
  color: #fff;
}
.lr-footer__statement-cta svg {
  transition: transform 0.22s;
}
.lr-footer__statement-cta:hover svg {
  transform: translateX(4px);
}

.lr-footer__statement-email {
  font-family: var(--halpes-font-sans-serif);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.lr-footer__statement-email:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Conteneur centré */
.lr-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
}

/* Zone liens */
.lr-footer__main {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lr-footer__main .lr-footer__inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

/* Colonne marque */
.lr-footer__logo img {
  height: 58px;
  width: auto;
  display: block;
  filter: brightness(1.1);
  transition: opacity 0.25s;
}
.lr-footer__logo:hover img {
  opacity: 0.75;
}

.lr-footer__tagline {
  margin: 1.2rem 0 1.8rem;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.9rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.42);
}

/* Réseaux sociaux */
.lr-footer__social {
  display: flex;
  gap: 0.5rem;
}
.lr-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.4);
  transition:
    background 0.22s,
    border-color 0.22s,
    color 0.22s,
    transform 0.2s;
  text-decoration: none;
}
.lr-footer__social-link:hover {
  background: rgba(217, 64, 16, 0.15);
  border-color: rgba(217, 64, 16, 0.4);
  color: #ff8a65;
  transform: translateY(-2px);
}

/* Navigation colonnes */
.lr-footer__nav-label {
  display: block;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 1.1rem;
}

.lr-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lr-footer__nav ul li a {
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.lr-footer__nav ul li a:hover {
  color: #ffffff;
}

/* Colonne newsletter */
.lr-footer__email {
  display: block;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 0.4rem;
}
.lr-footer__email:hover {
  color: #ffffff;
}

.lr-footer__address {
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.28);
  margin: 0 0 1.6rem;
}

/* Newsletter form */
.lr-footer__nl-form {
  display: flex;
  margin-top: 0.8rem;
}
.lr-footer__nl-form input[type="email"] {
  flex: 1;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #ffffff;
  font-size: 0.84rem;
  font-family: var(--halpes-font-sans-serif);
  outline: none;
  transition:
    border-color 0.22s,
    background 0.22s;
}
.lr-footer__nl-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.lr-footer__nl-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.28);
}
.lr-footer__nl-form button {
  padding: 0.65rem 1rem;
  background: #d94010;
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.lr-footer__nl-form button:hover {
  background: #b8360c;
}

/* Barre basse */
.lr-footer__bar {
  padding: 1.4rem 0;
}

.lr-footer__bar .lr-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.lr-footer__copy {
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.22);
}

.lr-footer__bar-links {
  display: flex;
  gap: 1.6rem;
}
.lr-footer__bar-links a {
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}
.lr-footer__bar-links a:hover {
  color: rgba(255, 255, 255, 0.55);
}

.lr-footer__location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ── Responsive footer ── */
@media (max-width: 1024px) {
  .lr-footer__statement .lr-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .lr-footer__statement-action {
    align-items: flex-start;
  }
  .lr-footer__main .lr-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 3.5rem;
  }
  .lr-footer__contact-block { flex-direction: row; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
}

@media (max-width: 640px) {
  .lr-footer__statement {
    padding: 3rem 0 2.5rem;
  }
  .lr-footer__headline {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .lr-footer__main {
    padding: 3rem 0 2.5rem;
  }
  .lr-footer__main .lr-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding: 0 1.4rem;
  }
  .lr-footer__bar .lr-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0 1.4rem;
  }
  .lr-footer__location {
    display: none;
  }
  .lr-footer__contact-block { flex-direction: column; gap: 0.55rem; }
  .lr-footer__bar-links { flex-wrap: wrap; gap: 0.8rem 1.2rem; }
}

/* ── Accent bar footer ────────────────────────── */
.lr-footer__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(200, 82, 26, 0.6) 20%,
    #c8521a 50%,
    rgba(200, 82, 26, 0.6) 80%,
    transparent 100%
  );
  z-index: 2;
}

/* ── Bloc contact colonne marque ─────────────── */
.lr-footer__contact-block {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1.4rem 0 1.2rem;
}
.lr-footer__contact-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.lr-footer__contact-line:hover {
  color: rgba(255, 255, 255, 0.85);
}
.lr-footer__contact-line svg {
  flex-shrink: 0;
  color: rgba(200, 82, 26, 0.7);
}
.lr-footer__contact-line--addr {
  cursor: default;
}
.lr-footer__contact-line--addr:hover {
  color: rgba(255, 255, 255, 0.52);
}

/* ── Présence géographique ────────────────────── */
.lr-footer__presence {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(167, 210, 185, 0.7);
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}
.lr-footer__presence-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3d8b6a;
  box-shadow: 0 0 6px rgba(61, 139, 106, 0.5);
  flex-shrink: 0;
}

/* ── Newsletter note ──────────────────────────── */
.lr-footer__nl-note {
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.2);
  margin: 0.6rem 0 0;
  line-height: 1.5;
}

/* =============================================
   RESPONSIVE SLIDER
   ============================================= */
@media (max-width: 768px) {
  .lr-slider {
    height: 46vh;
    min-height: 300px;
  }
  .lr-slider__content {
    left: 5%;
  }
  .lr-slider__arrow {
    display: none;
  }
}

/* =============================================
   FIXES KADENCE — reset marges homepage
   ============================================= */
.front-page #primary,
.home #primary,
.front-page .content-area,
.home .content-area,
.front-page .site-main,
.home .site-main,
.front-page .entry-content,
.home .entry-content {
  margin: 0 !important;
  padding: 0 !important;
}

/* =============================================
   SEARCH OVERLAY — fullscreen
   ============================================= */
.lr-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 243, 239, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.lr-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lr-search-overlay__close {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(27, 67, 50, 0.06);
  border: 1px solid rgba(27, 67, 50, 0.14);
  border-radius: 50%;
  color: #4a6658;
  cursor: pointer;
  transition:
    background 0.22s,
    color 0.22s,
    transform 0.22s;
}

.lr-search-overlay__close:hover {
  background: rgba(27, 67, 50, 0.12);
  border-color: rgba(27, 67, 50, 0.28);
  color: #1b4332;
  transform: rotate(90deg);
}

.lr-search-overlay__inner {
  width: min(860px, calc(100% - 4rem));
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transform: translateY(24px);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.lr-search-overlay.is-open .lr-search-overlay__inner {
  transform: translateY(0);
}

.lr-search-overlay__hint {
  font-family: var(--lr-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7a9e8a;
  margin: 0;
}

/* Override WP search form inside overlay */
.lr-search-form {
  display: flex;
  align-items: stretch;
  width: 100%;
  gap: 0.6rem;
}

.lr-search-input {
  flex: 1 1 0%;
  min-width: 0;
  background: #fff;
  border: 1.5px solid rgba(27, 67, 50, 0.15);
  border-radius: 14px;
  outline: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 1.4rem 1.8rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-family: var(--lr-font-body);
  color: #1b3a2a;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.lr-search-input:focus {
  border-color: rgba(27, 67, 50, 0.4);
  box-shadow: 0 4px 32px rgba(27, 67, 50, 0.12);
}

.lr-search-input::placeholder {
  color: #b5cfc3;
}

.lr-search-input::-webkit-search-cancel-button,
.lr-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.lr-search-btn {
  flex-shrink: 0;
  padding: 1.4rem 2.2rem;
  background: #1b4332;
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--lr-font-body);
  cursor: pointer;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.22s;
}

.lr-search-btn:hover {
  background: #0d2b1f;
}

/* =============================================
   MOBILE MENU — fullscreen overlay forest green
   ============================================= */
.lr-mobile-menu {
  position: fixed;
  inset: 0;
  background: #1b4332;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition:
    opacity 0.38s ease,
    visibility 0.38s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.lr-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.lr-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}

.lr-mobile-menu__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.lr-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    background 0.22s,
    color 0.22s,
    transform 0.22s;
}

.lr-mobile-menu__close:hover {
  background: rgba(255, 138, 101, 0.12);
  border-color: rgba(255, 138, 101, 0.28);
  color: #ff8a65;
  transform: rotate(90deg);
}

.lr-mobile-menu__nav {
  flex: 1;
  padding: 2rem 1.8rem;
}

/* Mobile nav list */
.lr-mobile-nav__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.lr-mobile-nav__list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem !important;
  font-family: var(
    --lr-font-display,
    var(--lr-font-heading, var(--halpes-heading-font-family))
  ) !important;
  font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none !important;
  letter-spacing: -0.02em;
  border-radius: 10px;
  transition:
    color 0.22s,
    background 0.22s,
    padding-left 0.22s;
}

.lr-mobile-nav__list > li > a:hover,
.lr-mobile-nav__list > li.current-menu-item > a {
  color: #ff8a65 !important;
  background: rgba(255, 138, 101, 0.06);
  padding-left: 1.6rem !important;
}

/* Sub-menu mobile */
.lr-mobile-nav__list .sub-menu {
  list-style: none !important;
  padding: 0 0 0.5rem 1.6rem !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lr-mobile-nav__list .sub-menu a {
  display: block;
  padding: 0.65rem 1rem !important;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif)) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.48) !important;
  text-decoration: none !important;
  border-radius: 6px;
  transition:
    color 0.18s,
    background 0.18s;
}

.lr-mobile-nav__list .sub-menu a:hover {
  color: rgba(255, 255, 255, 0.88) !important;
  background: rgba(255, 255, 255, 0.05);
}

/* Stagger animation — via JS qui ajoute .is-entering */
.lr-mobile-nav__list > li {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lr-mobile-menu.is-entering .lr-mobile-nav__list > li {
  opacity: 1;
  transform: translateX(0);
}

.lr-mobile-nav__list > li:nth-child(1) {
  transition-delay: 0.06s;
}
.lr-mobile-nav__list > li:nth-child(2) {
  transition-delay: 0.12s;
}
.lr-mobile-nav__list > li:nth-child(3) {
  transition-delay: 0.18s;
}
.lr-mobile-nav__list > li:nth-child(4) {
  transition-delay: 0.24s;
}
.lr-mobile-nav__list > li:nth-child(5) {
  transition-delay: 0.3s;
}
.lr-mobile-nav__list > li:nth-child(6) {
  transition-delay: 0.36s;
}
.lr-mobile-nav__list > li:nth-child(7) {
  transition-delay: 0.42s;
}
.lr-mobile-nav__list > li:nth-child(8) {
  transition-delay: 0.48s;
}

.lr-mobile-menu__footer {
  padding: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
}

.lr-mobile-menu__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.lr-mobile-menu__contact-item:hover {
  color: rgba(255, 255, 255, 0.88);
}

.lr-mobile-menu__contact-item svg {
  flex-shrink: 0;
  color: #d94010;
}

.lr-mobile-menu__cta {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* =============================================
   HEADER TOPBAR — deep forest green premium
   ============================================= */
.lr-header__topbar {
  background: transparent;
  border-bottom: none;
  position: relative;
}

.lr-header__topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% -20%, rgba(45, 160, 100, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lr-header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.6rem 2.5rem;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.lr-header__topbar-logo {
  flex-shrink: 0;
}

.lr-header__topbar-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.25));
}

.lr-header__topbar-center {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.lr-header__topbar-col {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background 0.2s;
}

.lr-header__topbar-col:first-child {
  border-left: none;
}

.lr-header__topbar-col:hover {
  background: rgba(255, 255, 255, 0.05);
}

.lr-header__topbar-col--addr {
  cursor: default;
}

.lr-header__topbar-col--addr:hover {
  background: transparent;
}

.lr-header__topbar-col-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.lr-header__topbar-col-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lr-header__topbar-col-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.lr-header__topbar-col-value {
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

/* Chips */
.lr-header__topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.lr-header__topbar-chip:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.lr-header__topbar-chip--location {
  cursor: default;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border-color: rgba(255,255,255,0.07);
}

.lr-header__topbar-chip--location:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.07);
  color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.lr-header__topbar-chip svg {
  flex-shrink: 0;
  opacity: 0.6;
}

/* Dot séparateur */
.lr-header__topbar-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* Social icons dans topbar (fond vert) */
.lr-header__topbar-social {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.lr-header__topbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.lr-header__topbar-social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
}
.lr-header__topbar-social-link svg {
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

.lr-header__topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 1rem;
  background: linear-gradient(135deg, #d46a2e 0%, #c8521a 60%, #b84718 100%);
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  border-radius: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 4px 16px rgba(200, 82, 26, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.2s;
}

.lr-header__topbar-cta:hover {
  background: linear-gradient(135deg, #e07230 0%, #d05a1e 60%, #c04a14 100%);
  box-shadow:
    0 8px 28px rgba(200, 82, 26, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
  transform: translateY(-1px);
  color: #fff !important;
}

.lr-header__topbar-cta svg {
  flex-shrink: 0;
  transition: transform 0.22s;
}

.lr-header__topbar-cta:hover svg {
  transform: translateX(3px);
}

/* ── NAVBAR droite : réseaux sociaux + loupe ── */
.lr-header__navbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Séparateur vertical */
.lr-header__sep {
  width: 1px;
  height: 16px;
  background: rgba(27, 67, 50, 0.12);
  margin: 0 0.2rem;
  flex-shrink: 0;
}

/* Tooltips */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1b4332;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif));
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.lr-header__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  color: #1b4332 !important;
  border: 1px solid rgba(27, 67, 50, 0.22);
  border-radius: 50%;
  box-shadow: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.lr-header__social svg {
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

.lr-header__social:hover {
  background: rgba(200, 82, 26, 0.08);
  border-color: rgba(200, 82, 26, 0.28);
  color: #c8521a !important;
  box-shadow: none;
  transform: translateY(-1px);
}

.lr-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(27, 67, 50, 0.22);
  color: #1b4332 !important;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lr-header__search svg {
  stroke: currentColor;
  display: block;
  flex-shrink: 0;
}

.lr-header__search:hover {
  background: rgba(27, 67, 50, 0.07);
  border-color: rgba(27, 67, 50, 0.22);
  color: #1b4332 !important;
}

/* =============================================
   GLOBAL HEADER SYSTEM
   ============================================= */

/* Neutralise le contexte de positionnement créé par Kadence sur #masthead */
#masthead {
  position: static !important;
  z-index: auto !important;
}

.lr-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  height: 118px;
  z-index: 1000;
  background: linear-gradient(100deg, #0f2b1c 0%, #1b4332 40%, #1e5038 70%, #163828 100%);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lr-header__topbar {
  max-height: 144px;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

/* Navbar — fond light flottant */
.lr-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 88px;
  padding: 0.65rem 2rem;
  gap: 1.5rem;
  background: rgba(255, 254, 250, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(27, 67, 50, 0.08);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.07),
    0 1px 4px rgba(0, 0, 0, 0.04);
  margin-bottom: -33px;
  border-radius: 20px;
  z-index: 2;
  transition:
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    border-color 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.lr-header.lr-nav-stuck {
  padding-bottom: var(--lr-sticky-offset, 74px);
}

.lr-header.lr-nav-stuck .lr-header__inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  margin-bottom: 0;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.97);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid rgba(27, 67, 50, 0.1);
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.05);
  transform: translateY(0);
  animation: lr-sticky-slide-in 0.46s cubic-bezier(0.22, 1, 0.36, 1);
  padding-left: max(1rem, calc((100% - 1440px) / 2 + 2rem));
  padding-right: max(1rem, calc((100% - 1440px) / 2 + 2rem));
}

/* Logo sticky — caché par défaut */
.lr-header__sticky-logo {
  display: none;
  align-items: center;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.lr-header__sticky-logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* Logo visible en sticky */
.lr-header.lr-nav-stuck .lr-header__sticky-logo {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Mode light — liens nav */
.lr-header.lr-nav-stuck .lr-nav__list > li > a {
  color: #0d2218 !important;
}

.lr-header.lr-nav-stuck .lr-nav__list > li > a:hover,
.lr-header.lr-nav-stuck .lr-nav__list > li.current-menu-item > a,
.lr-header.lr-nav-stuck .lr-nav__list > li.current-menu-ancestor > a {
  color: #1b4332 !important;
}

/* Mode light — icônes droite */
.lr-header.lr-nav-stuck .lr-header__social {
  color: #1b4332;
  background: transparent;
  border-color: rgba(27, 67, 50, 0.22);
}

.lr-header.lr-nav-stuck .lr-header__social:hover {
  color: #c8521a;
  background: rgba(200, 82, 26, 0.08);
  border-color: rgba(200, 82, 26, 0.28);
  box-shadow: none;
}

.lr-header.lr-nav-stuck .lr-header__search {
  color: #1b4332;
  background: transparent;
  border-color: rgba(27, 67, 50, 0.22);
}

.lr-header.lr-nav-stuck .lr-header__search:hover {
  color: #1b4332;
  background: rgba(27, 67, 50, 0.07);
  border-color: rgba(27, 67, 50, 0.22);
}

.lr-header.lr-nav-stuck .lr-header__sep {
  background: rgba(27, 67, 50, 0.15);
}

/* Mode light — burger mobile */
.lr-header.lr-nav-stuck .lr-header__burger span {
  background: #1b4332;
}

@keyframes lr-sticky-slide-in {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.992);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lr-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.lr-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.lr-nav__list li {
  position: relative;
}

.lr-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem !important;
  font-size: 0.95rem !important;
  font-weight: 200 !important;
  color: #1b3a2a !important;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif)) !important;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  transition: color 0.22s;
  white-space: nowrap;
}

/* Underline slide — SaaS style */
.lr-nav__list > li > a::after {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: #d94010;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.lr-nav__list > li > a:hover::after,
.lr-nav__list > li.current-menu-item > a::after,
.lr-nav__list > li.current-menu-ancestor > a::after {
  transform: scaleX(1);
}

.lr-nav__list > li > a:hover,
.lr-nav__list > li.current-menu-item > a,
.lr-nav__list > li.current-menu-ancestor > a {
  color: #1b4332 !important;
}

/* Chevron animé sur les items avec dropdown */
.lr-nav__list > li.menu-item-has-children > a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 0.4rem;
  margin-right: 0.5em;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.lr-nav__list > li.menu-item-has-children:hover > a::before {
  transform: rotate(-135deg) translateY(-2px);
}

.lr-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 0.6rem 0.5rem;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 12px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.22s;
  pointer-events: none;
}

.lr-nav__list li:hover > .sub-menu,
.lr-nav__list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Pont invisible comblant le gap avant le sous-menu — utilise un pseudo-élément dédié */
.lr-nav__list li.menu-item-has-children::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 99;
}

.lr-nav__list .sub-menu a {
  display: block;
  padding: 0.72rem 1rem;
  font-size: 0.87rem !important;
  font-weight: 200 !important;
  color: #2d4035 !important;
  font-family: var(--lr-font-body, var(--halpes-font-sans-serif)) !important;
  text-decoration: none;
  border-radius: 8px;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.lr-nav__list .sub-menu a:hover {
  color: #1b4332 !important;
  background: rgba(27, 67, 50, 0.07);
}

.lr-header__burger {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(27, 67, 50, 0.06);
  border: 1px solid rgba(27, 67, 50, 0.14);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.22s ease,
    border-color 0.22s ease;
}

.lr-header__burger:hover {
  background: rgba(27, 67, 50, 0.12);
  border-color: rgba(27, 67, 50, 0.24);
}

.lr-header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #2d4035;
  border-radius: 2px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.lr-header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lr-header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.lr-header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* body {
  padding-top: 66px !important;
} */

@media (max-width: 1024px) {
  .lr-header__inner {
    width: min(1440px, calc(100% - 1.25rem));
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    gap: 1rem;
  }

  .lr-header.lr-nav-stuck .lr-header__inner {
    width: min(1440px, calc(100% - 1.25rem));
    top: 0.4rem;
  }

  .lr-nav__list > li > a {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 0.9rem !important;
  }
}

@media (max-width: 768px) {
  .lr-header.lr-nav-stuck {
    padding-bottom: var(--lr-sticky-offset-mobile, 74px);
  }

  .lr-header.lr-nav-stuck .lr-header__inner {
    width: 100%;
    top: 0;
    border-radius: 0;
  }

  /* Topbar mobile : logo + bouton contacter uniquement */
  .lr-header__topbar-contacts,
  .lr-header__topbar-social {
    display: none;
  }

  .lr-header__topbar-inner {
    justify-content: space-between;
    padding: 0.5rem 1.25rem;
  }

  /* Navbar pleine largeur sur mobile */
  .lr-header__inner {
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
  }

  .lr-header__burger {
    display: inline-flex;
  }

  /* Desktop nav masquée sur mobile — le menu fullscreen prend le relais */
  .lr-header__nav {
    display: none;
  }

  /* Masquer les icônes sociales sur mobile */
  .lr-header__social,
  .lr-header__sep {
    display: none;
  }

}

/* ── Topbar colonnes responsive ── */
@media (max-width: 1400px) {
  .lr-header__topbar-col {
    padding: 0.4rem 0.7rem;
  }
  .lr-header__topbar-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    gap: 1rem;
  }
}

@media (max-width: 1180px) {
  /* Cacher le bouton CTA quand pas assez de place */
  .lr-header__topbar-cta {
    display: none;
  }
}

@media (max-width: 1100px) {
  /* Réduire la taille des liens nav pour éviter le retour à la ligne */
  .lr-nav__list > li > a {
    padding-left: 0.55rem !important;
    padding-right: 0.55rem !important;
    font-size: 0.82rem !important;
  }

  /* Cacher les réseaux sociaux et le séparateur dans la navbar */
  .lr-header__navbar-right .lr-header__social,
  .lr-header__navbar-right .lr-header__sep {
    display: none;
  }
}

@media (max-width: 1280px) {
  /* Masquer le mobile */
  .lr-header__topbar-col--mobile {
    display: none;
  }
  .lr-header__topbar-col {
    padding: 0.4rem 0.6rem;
  }
  .lr-header__topbar-col-label {
    display: none;
  }
  .lr-header__topbar-col-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 1024px) {
  .lr-header__topbar-col--email {
    display: none;
  }
  .lr-header__topbar-col {
    padding: 0.35rem 0.5rem;
  }
  .lr-header__topbar-col-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 900px) {
  .lr-header__topbar-col--addr {
    display: none;
  }
}

/* =============================================
   SCROLL TO TOP
   ============================================= */
.lr-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: #1b4332;
  border: none;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease, background 0.22s;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.35);
}

.lr-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lr-scroll-top:hover {
  background: #0d2b1f;
  box-shadow: 0 6px 28px rgba(27, 67, 50, 0.5);
  transform: translateY(-2px);
}
