/* NEW EDITORIAL THEME FOR MAISON K */

:root {
  --cream: #FFEDA8; /* Brand cream background */
  --dark: #3E2723; /* Brand dark brown */
  --white: #f9f9f9;
  --gray-light: #F7F7F7;
  --gold: #A88656;
  --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

body.editorial-theme {
  font-family: 'Pangram', sans-serif;
  color: var(--dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h3, h4, .logo-edit {
  font-family: 'Pangram', sans-serif;
  font-weight: 400;
  margin: 0;
}

h2 {
  font-family: 'Pangram', sans-serif;
  font-weight: 500 !important;
  font-size: 24px !important;
  margin: 0;
  -webkit-font-smoothing: auto;
  color: #3E2723;
}

p {
  line-height: 1.6;
}

/* Typography styles */
.section-surtitle {
  font-family: 'Pangram', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-size: 24px !important;
  font-weight: 500 !important;
  text-align: center;
  margin-bottom: 32px;
  -webkit-font-smoothing: auto;
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: 48px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    margin-bottom: 56px;
  }
}

.container-edit {
  padding: 0 16px;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header-edit {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 24px;
  background-color: #FCFCFC; /* Par défaut, fond solide */
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

/* Modificateur fixed */
.header-edit.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* Etat caché (quand on scrolle vers le bas sur mobile) */
.header-edit.header-hidden {
  transform: translateY(-100%);
}

/* ÉTAT TRANSPARENT : Fond transparent et icônes blanches */
.header-edit.header-transparent {
  background-color: transparent !important;
  border-bottom: none !important;
}

/* Filtre pour forcer le logo, l'icône calendrier et le burger en blanc */
.header-edit.header-transparent .logo-edit img,
.header-edit.header-transparent .icon-calendar,
.header-edit.header-transparent .icon-burger {
  filter: brightness(0) invert(1) !important;
}

/* ÉTAT SOLID : Fond blanc et icônes noires */
.header-edit.header-solid {
  background-color: #f9f9f9 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Retour aux couleurs d'origine pour les icônes */
.header-edit.header-solid .logo-edit img,
.header-edit.header-solid .icon-calendar {
  filter: none !important;
}

/* Retour à la couleur noire pour les lignes du burger */
.header-edit.header-solid .hamburger-edit span {
  background-color: #3E2723 !important;
}

/* Transitions pour les icônes */
.header-edit .logo-edit img,
.header-edit .icon-calendar,
.header-edit .hamburger-edit span {
  transition: filter 0.3s ease, background-color 0.3s ease;
}

.nav-left {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
}

.nav-center {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-edit {
  display: inline-block;
  text-decoration: none;
}

.logo-svg {
  height: 38px; /* Increased to match prominent logo in image */
  width: auto;
  display: block;
}

.hamburger-edit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  z-index: 100;
  position: relative;
}

.hamburger-edit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  z-index: 100;
  position: relative;
  transition: opacity 0.3s ease;
}

.hamburger-edit span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--dark);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  transform-origin: center;
}

.hamburger-edit.active {
  opacity: 0;
  pointer-events: none;
}

.btn-book-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  gap: 10px;
}

.nav-text-left, .nav-text-right {
  font-family: 'Pangram', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.3s ease;
}

.header-edit.header-transparent .nav-text-left,
.header-edit.header-transparent .nav-text-right {
  color: #fff;
}

.header-edit.header-solid .nav-text-left,
.header-edit.header-solid .nav-text-right {
  color: var(--dark);
}

@media (max-width: 767px) {
  .nav-text-left, .nav-text-right {
    display: none;
  }
  .nav-left, .btn-book-icon {
    gap: 0;
  }
  .header-edit {
    padding: 12px 16px;
  }
  .logo-svg {
    height: 32px;
  }
}

.icon-calendar {
  height: 24px; 
  width: auto;
  display: block;
}

/* ===== DARK OVERLAY ===== */
.menu-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== NEW MOBILE MENU FORMAT ===== */
.mobile-menu-edit {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-height: 85vh;
  background-color: #FDFBF7; /* A warmer, more premium off-white */
  border-radius: 24px 24px 0 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: 0 28px 40px;
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-edit.active {
  transform: translateY(0);
  pointer-events: auto;
}

/* Close button header */
.menu-header {
  display: flex;
  justify-content: flex-end;
  padding: 24px 0 16px;
  position: sticky;
  top: 0;
  background: #FDFBF7;
  z-index: 2;
}

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3E2723;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-close:hover, .menu-close:active {
  opacity: 0.5;
  transform: scale(0.95);
}

.menu-links-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.menu-links-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.menu-links-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
  padding: 0 0 24px 0;
}

.menu-links-container a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Pangram', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #3E2723;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.menu-links-container a:active,
.menu-links-container a:hover {
  color: #A88656;
}

.menu-divider {
  width: 100%;
  height: 1px;
  background-color: #523D2D;
  margin: 16px 0 32px 0;
  opacity: 0;
  transition: opacity 0.35s ease 0.4s;
}
.mobile-menu-edit.active .menu-divider {
  opacity: 0.4;
}

.menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease 0.45s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.45s;
}
.mobile-menu-edit.active .menu-ctas {
  opacity: 1;
  transform: translateY(0);
}

.menu-cta-primary, .menu-cta-secondary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  font-family: 'Pangram', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.menu-cta-secondary {
  background-color: transparent;
  color: #3E2723;
  border: 1px solid #3E2723;
}

.menu-cta-primary {
  background-color: #3E2723;
  color: #FFEDA8;
  border: 1px solid #3E2723;
}

/* LV cascade animation */
.mobile-menu-edit.active .menu-links-container a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-edit.active .menu-links-container a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu-edit.active .menu-links-container a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu-edit.active .menu-links-container a:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu-edit.active .menu-links-container a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu-edit.active .menu-links-container a:nth-child(5) { transition-delay: 0.32s; }

/* Ajustement spécifique de la taille totale de l'effet Dior */
.hero-edit {
  position: relative;
  height: calc(95vh + 32px + (2 * var(--text-height, 136px)));
  background-color: var(--white);
}

/* Modifier la hauteur du background pour qu'il prenne tout l'espace disponible sous le header fixed */
.hero-edit-bg {
  position: absolute;
  inset: 0;
  height: 95vh; /* Prend 100% de la fenêtre au lieu de 85vh */
  background-image: url('images/brow-lift1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-edit-overlay {
  position: absolute;
  inset: 0;
  height: 95vh;
  background: none;
  z-index: 2;
}

/* On ajuste la position du texte pour compenser l'agrandissement */
.hero-edit-content-wrapper {
  position: sticky;
  top: calc(95vh - 40px + var(--header-offset, 0px));
  transform: none;
  z-index: 3;
  width: 100%;
}

.hero-edit-content {
  color: #f9f9f9;
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-100%);
}

#hero-content-dark {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(100% 0 0 0);
  pointer-events: none;
}

.text-dark-force {
  color: var(--dark) !important;
}

.hero-edit-subtitle {
  font-size: 14px;
  font-family: 'Pangram', sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 0;
  color: #f9f9f9;
}

.hero-edit-title {
  font-size: clamp(24px, 8.5vw, 34px);
  font-family: 'Pangram', sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 0;
  width: 100%;
  text-align: center;
  text-transform: none;
  color: #f9f9f9;
}

.link-discover {
  font-size: 15px;
  font-family: 'Pangram', sans-serif;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 6px;
  color: #f9f9f9;
}

/* INTRO */
.intro-edit {
  padding: 32px 0 0 0;
  position: relative;
  z-index: 5;
}

.intro-k {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.intro-title-center {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.link-book {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 40px;
}

.intro-image-block {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('images/maison-k-image.jpg');
  background-size: cover;
  background-position: center;
  margin-top: calc(24px - var(--text-height, 136px));
  margin-bottom: 32px;
}

.intro-text-block {
  text-align: left;
}

.intro-text-block .section-surtitle {
  text-align: left;
  margin-bottom: 10px;
}

.intro-text-block .section-title {
  text-align: left;
  line-height: 1.2;
  margin-bottom: 24px;
  font-size: 24px;
  text-transform: none !important;
  font-weight: 500;
  color: #3E2723;
}

.intro-desc {
  text-align: left;
  font-size: 10px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.intro-desc strong {
  color: #3E2723;
  font-weight: 500; /* Or keep standard strong weight */
}

.intro-desc:last-of-type {
  margin-bottom: 24px;
}

.btn-outline-intro {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  border: 1px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  font-family: 'Pangram', sans-serif;
  font-weight: 500;
  font-size: 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-outline-intro:hover {
  background-color: var(--dark);
  color: var(--white);
}

.intro-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.intro-heading {
  font-size: 1.5rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.intro-desc {
  font-size: 0.9rem;
  color: #1E1E1E;
  margin-bottom: 24px;
}

.btn-outline-edit {
  display: inline-block;
  border: 1px solid var(--dark);
  color: var(--dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 14px 24px;
  font-weight: 500;
}

/* PRESTATIONS PHARES */
.prestations-edit {
  padding: 32px 0 0 0;
  background-color: var(--white);
}

.presta-surtitle {
  text-align: center;
  margin-bottom: 10px;
}

.presta-title {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 0;
  text-transform: none !important;
}

.presta-header-sticky {
  position: sticky;
  top: 70px;
  z-index: 10;
  background-color: var(--white);
  padding-top: 32px;
  padding-bottom: 24px;
}

.cards-clip-wrapper {
  position: relative;
}

.cards-vertical {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-vert {
  position: sticky;
  top: var(--presta-cards-top, 210px);
  width: 100%;
  aspect-ratio: 358 / 527;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0;
}

.card-vert:nth-child(1) {
  z-index: 1;
}

.card-vert:nth-child(2) {
  z-index: 2;
}

.card-vert:nth-child(3) {
  z-index: 3;
}

.card-vert .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.card-vert .card-overlay {
  display: none;
}

.card-vert .card-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  text-align: center;
  width: 100%;
  padding: 0 24px 32px !important;
}

.card-vert .card-content h3 {
  font-family: 'Pangram', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFEDA8;
  transition: none !important;
}

.card-vert .card-content p {
  font-family: 'Pangram', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #f9f9f9;
  margin: 0 0 12px 0;
  line-height: 1.5;
  transition: none !important;
}

.card-link,
.card-link:hover,
.card-link:focus,
.card-link:active,
.card-link:visited {
  all: unset !important;
  font-family: 'Pangram', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #f9f9f9 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
  cursor: pointer !important;
}

@media (max-width: 767px) {
  .card-vert:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .card-vert .card-bg {
    transition: none !important;
  }

  .card-vert:hover .card-bg {
    transform: none !important;
  }
}

.presta-cta {
  text-align: center;
  margin-top: 24px;
}

.link-all-prestas {
  font-family: 'Pangram', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 6px;
  display: block;
  text-align: center;
  padding-bottom: 60px;
}

/* ACADEMIE */
.academie-edit {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

@media (max-width: 767px) {
  .academie-edit {
    min-height: 600px;
    justify-content: flex-end;
    padding: 60px 20px 24px 20px;
  }
  .aca-bg {
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
  }
}

.aca-bg {
  position: absolute;
  inset: 0;
  background-color: #222;
  background-image: url('images/brow-lift2.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.aca-overlay {
  display: none;
}

.aca-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.aca-subtitle {
  font-family: 'Pangram', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #f9f9f9;
  letter-spacing: 0.05em;
}

.aca-title {
  color: #FFEDA8;
  font-size: 24px;
  font-weight: 500 !important;
  margin-bottom: 12px;
  text-transform: none !important;
}

.aca-desc {
  font-size: 13px;
  margin-bottom: 16px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  color: #f9f9f9;
}

.btn-outline-gold {
  display: inline-block;
  border: 1.5px solid #FFEDA8;
  color: #FFEDA8;
  font-family: 'Pangram', sans-serif;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-gold:hover {
  background: #FFEDA8;
  color: var(--dark);
}

@media (min-width: 768px) {
  .academie-edit {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    min-height: 650px;
    background-color: var(--white);
  }

  .aca-bg {
    position: relative;
    width: 55%;
    flex: 0 0 55%;
    background-image: url('images/brow-lift2-pc.png');
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-color: transparent;
    right: auto;
    inset: auto;
  }

  .aca-content {
    width: 50%;
    flex: 0 0 50%;
    margin-left: -5%;
    z-index: 2;
    background-color: transparent;
    padding: 60px max(16px, calc((100vw - 1200px) / 2 + 16px)) 60px 0;
    box-shadow: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .aca-subtitle {
    color: #1E1E1E;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }

  .aca-title {
    color: #3E2723;
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: left;
  }

  .aca-desc {
    color: #1E1E1E;
    font-size: 16px;
    margin-left: 0;
    margin-bottom: 32px;
    line-height: 1.6;
    text-align: left;
    max-width: 500px;
  }

  .btn-outline-gold {
    border: 1.5px solid #3E2723;
    color: #3E2723;
    padding: 14px 32px;
  }

  .btn-outline-gold:hover {
    background-color: #3E2723;
    color: #FFEDA8;
    border-color: #3E2723;
  }
}

/* POURQUOI NOUS */
.pourquoi-edit {
  padding: 60px 0 0 0;
  background-color: var(--white);
}

.pourquoi-surtitle {
  margin-bottom: 12px !important;
}

.pourquoi-title {
  margin-bottom: 24px !important;
  text-transform: none !important;
  font-size: 24px !important;
  font-weight: 500 !important;
}

.pq-cards-scroll {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 0 16px 20px 16px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
}

.pq-cards-scroll::-webkit-scrollbar {
  display: none;
}

.pq-card {
  flex: 0 0 85%;
  background-color: transparent;
  padding: 0;
  scroll-snap-align: start;
  text-align: left;
}

.pq-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #E2D5B8; /* placeholder */
  background-size: cover;
  background-position: center;
  margin-bottom: 8px;
}

.pq-card h3 {
  font-family: 'Pangram', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase !important;
  color: #3E2723;
}

.pq-card p {
  font-family: 'Pangram', sans-serif;
  font-size: 13px;
  color: #444;
  margin: 0;
  line-height: 1.4;
}

/* AVIS */
.avis-edit {
  padding: 60px 0;
  background-color: var(--white);
  overflow: hidden;
}

.avis-edit .section-title {
  text-transform: none !important;
}

.avis-planity-badge {
  display: none; /* Hidden to match exact design */
}

.avis-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.avis-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.avis-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.avis-track .avis-card {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  scroll-snap-align: start;
}

.avis-card {
  position: relative;
  background-color: #f9f9f9;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.09) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 16px 24px;
  box-shadow: none;
  border: 1px solid #523D2D;
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Decorative angled element in top-left */
.avis-deco {
  position: absolute;
  width: 140px;
  height: auto;
  left: -4px;
  top: -4px;
  background-color: transparent;
  transform: none;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.avis-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #E8D5B8;
  margin: 0 auto 4px;
}

.avis-name {
  font-family: 'Pangram', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3E2723;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.avis-stars {
  color: #FDE047;
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.avis-quote {
  font-family: 'Pangram', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #1E1E1E;
  text-align: center;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 0;
  word-wrap: break-word;
}

.quote-mark {
  display: none; /* Hide custom quotes to match simple design */
}

/* Bottom Controls */
.avis-bottom-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.avis-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.dot {
  width: 16px;
  height: 6px;
  border-radius: 4px;
  background-color: #523D2D;
  cursor: pointer;
  transition: width 0.3s ease;
}

.dot.active {
  width: 40px;
}

.avis-link-all {
  font-family: 'Pangram', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #3E2723;
  text-decoration: underline;
  text-underline-offset: 6px;
  transition: color 0.3s ease;
}

.avis-link-all:hover {
  color: #1E1E1E;
}

/* NEW MOBILE FOOTER DESIGN */
.footer-wrapper {
  background-color: #FFEDA8;
  padding: 60px 0 24px;
}

.footer-top {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 40px;
}

.footer-surtitle {
  font-family: 'Pangram', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1E1E1E;
  margin-bottom: 12px;
}

.footer-title {
  font-family: 'Pangram', sans-serif;
  font-size: 2.2rem;
  font-weight: 500 !important;
  color: #1E1E1E;
  margin-bottom: 24px;
  text-transform: none !important;
  -webkit-font-smoothing: auto;
}

.footer-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #3E2723;
  color: #FFEDA8;
  font-family: 'Pangram', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 12px 48px;
  border-radius: 4px;
  outline: 1.5px solid #3E2723;
  outline-offset: -1px;
  margin-bottom: 40px;
}

.footer-info-grid {
  display: flex;
  justify-content: space-between;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.footer-info-col strong {
  display: block;
  font-family: 'Pangram', sans-serif;
  font-size: 0.85rem;
  color: #1E1E1E;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-info-col p {
  font-family: 'Pangram', sans-serif;
  font-size: 0.85rem;
  color: #1E1E1E;
  line-height: 1.4;
  margin: 0;
}

.footer-card {
  background-color: #f9f9f9;
  margin: 0 16px;
  padding: 32px 20px;
  border-radius: 4px;
}

.footer-top-rows {
  display: flex;
  flex-direction: column;
}

.footer-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #1E1E1E;
  padding: 8px 0;
}

.footer-row-text h3 {
  font-family: 'Pangram', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #3E2723;
  margin: 0 0 4px 0;
  -webkit-font-smoothing: auto;
}

.footer-row-text p {
  font-family: 'Pangram', sans-serif;
  font-size: 0.8rem;
  color: #444;
  margin: 0;
}

.footer-divider {
  height: 1px;
  background-color: rgba(0,0,0,0.1);
  margin: 24px 0;
}

.footer-links-grid {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.footer-links-col h3 {
  font-family: 'Pangram', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #3E2723;
  margin: 0 0 12px 0;
  -webkit-font-smoothing: auto;
}

.footer-links-col a {
  display: block;
  font-family: 'Pangram', sans-serif;
  font-size: 0.85rem;
  color: #1E1E1E;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials img {
  width: 24px;
  height: 24px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 24px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.footer-legals-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-legals-links a {
  font-family: 'Pangram', sans-serif;
  font-size: 0.85rem;
  color: #444;
  text-decoration: none;
}

.footer-copyright {
  text-align: center;
  font-family: 'Pangram', sans-serif;
  font-size: 0.85rem;
  color: #444;
}

/* DESKTOP TWEAKS */
@media(min-width: 768px) {
  .hero-edit { height: 100vh; }
  .hero-edit-content-wrapper {
    position: absolute;
    top: auto;
    bottom: 80px;
    transform: none;
    width: 100%;
  }
  .hero-edit-content {
    transform: none;
  }
  #hero-content-dark {
    display: none;
  }
  .hero-edit-bg { height: 100vh; background-image: url('images/brow-lift1-pc.jpg'); }
  .hero-edit-overlay { height: 100vh; }
  .hero-edit-title { font-size: 4rem; width: auto; max-width: 850px; }
  .intro-edit { 
    padding: 0; 
  }
  .intro-edit .container-edit {
    display: flex;
    flex-direction: row-reverse;
    align-items: center; /* Stop stretching the image block */
    gap: 0;
    max-width: 100%;
    padding: 0;
  }
  .intro-image-block {
    flex: 0 0 50%;
    margin-top: 0;
    margin-bottom: 0;
    aspect-ratio: 1 / 1;
    background-image: url('images/maison-k-image-mieux.png');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
    align-self: flex-start;
  }
  @media (max-width: 1024px) {
    .intro-text-block {
      padding: 60px 24px 60px 24px !important;
    }
  }
  .intro-text-block { 
    flex: 0 0 50%;
    max-width: none; 
    margin: 0; 
    text-align: left; 
    padding: 100px 60px 100px max(16px, calc((100vw - 1200px) / 2 + 16px));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .intro-text-block > div {
    text-align: left !important;
  }
  .intro-text-block .section-surtitle {
    margin-bottom: 12px;
  }
  h2, .section-title {
    font-size: 38px !important;
    line-height: 1.2;
  }
  .intro-text-block h2, .intro-text-block .section-title {
    margin-bottom: 32px !important;
  }
  .intro-text-block .intro-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .intro-text-block .footer-btn {
    background-color: transparent;
    color: #3E2723;
    border: 1.5px solid #3E2723;
    transition: all 0.3s ease;
  }
  .intro-text-block .footer-btn:hover {
    background-color: #3E2723;
    color: #FFEDA8;
  }
  .cards-vertical { flex-direction: row; }
  .card-vert { flex: 1; height: 500px; }
  .pourquoi-edit { padding-top: 64px; }
  .pourquoi-surtitle { margin-bottom: 10px !important; }
  .pourquoi-title { margin-bottom: 48px !important; }
  .pq-cards-scroll { justify-content: center; max-width: 1400px; margin: 0 auto; gap: 28px; }
  .pq-card { flex: 1; max-width: 380px; text-align: center; }
  .pq-img { margin-bottom: 12px; }
  .pq-card h3 { margin-bottom: 12px; }
  .pq-card p { line-height: 1.6; }

  /* Avis slider - show more on desktop */
  .avis-edit { padding: 80px 0; }
  .avis-track {
    overflow-x: visible;
  }
  .avis-track .avis-card {
    flex: 1;
  }
  .avis-dots {
    display: none;
  }
  .avis-card {
    padding: 32px 24px;
    min-height: 300px;
  }
  .avis-avatar {
    width: 48px;
    height: 48px;
  }
  .avis-name {
    font-size: 12px;
  }
  .avis-stars {
    font-size: 12px;
  }
  .avis-quote {
    font-size: 12px;
    max-width: 450px;
  }
  .quote-mark {
    font-size: 12px;
  }

  /* Footer side-by-side rows */
  .footer-top-rows {
    flex-direction: row;
    gap: 32px;
  }
  .footer-top-rows .footer-card-row {
    flex: 1;
  }
  .top-row-divider {
    width: 1px;
    height: auto;
    margin: 0;
    align-self: stretch;
  }

  /* Footer bottom bar alignment */
  .footer-bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .footer-legals-links {
    margin-bottom: 0;
  }
}

/* ========================================
   PRESTATIONS PAGE - VERTICAL CARD POLISH
   ======================================== */

/* Hover effect on prestation cards */
.card-vert {
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-vert:hover {
}
.card-vert:hover .card-overlay {
  background: linear-gradient(to top, rgba(43,33,28,0.92) 0%, rgba(43,33,28,0.1) 55%);
}
.card-vert:hover .card-link {
  opacity: 1;
}

/* Ensure card bg covers properly */
.card-vert .card-bg {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.card-vert:hover .card-bg {
  transform: scale(1.03);
}

/* Card link hover style */
.card-link {
  transition: opacity var(--transition), letter-spacing var(--transition);
}

/* Prestations section spacing between categories */
.prestations-edit + .prestations-edit {
  padding-top: 20px;
}

/* Desktop-specific prestations tweaks */
@media(min-width: 768px) {
  .prestations-edit {
    padding-top: 48px;
    padding-bottom: 8px;
  }
  .presta-cta {
    margin-top: 24px;
  }
  .presta-header-sticky {
    position: relative;
    top: auto;
    padding-bottom: 48px;
  }
  .cards-clip-wrapper .container-edit {
    max-width: 100%;
    padding: 0 40px;
  }
  .cards-vertical {
    gap: 28px;
  }
  .card-vert {
    height: 480px;
    position: relative;
    top: auto;
  }
}

@media(min-width: 1024px) {
  .prestations-edit {
    padding-top: 64px;
    padding-bottom: 16px;
  }
  .presta-cta {
    margin-top: 32px;
  }
  .presta-header-sticky {
    padding-bottom: 56px;
  }
  .cards-clip-wrapper .container-edit {
    max-width: 1400px;
    padding: 0 40px;
  }
  .card-vert {
    height: 520px;
  }
  .cards-vertical {
    gap: 32px;
  }
  .card-content h3 {
    font-size: 1.6rem;
  }
  .pourquoi-edit {
    padding-top: 96px;
  }
  .pourquoi-title {
    margin-bottom: 56px !important;
  }
  .pq-cards-scroll {
    gap: 32px;
  }
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

/* Blog card — horizontal on desktop, stacked on mobile */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--dark);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  background-color: #E2D5B8;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.blog-card-body {
  padding: 24px 20px;
}

.blog-card-cat {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
  display: inline-block;
}

.blog-card-title {
  font-family: 'Pangram', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--dark);
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-card-meta {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blog categories filter bar */
.blog-cats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 8px;
}

.blog-cat-btn {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--dark);
  text-decoration: none;
  transition: all var(--transition);
}
.blog-cat-btn:hover,
.blog-cat-btn.active {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* Desktop blog grid */
@media(min-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .blog-card {
    flex-direction: column;
  }
  .blog-card-img {
    height: 260px;
  }
}

@media(min-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .blog-card-img {
    height: 300px;
  }
  .blog-card-title {
    font-size: 1.35rem;
  }
}

/* ========================================
   BLOG ARTICLE PAGE STYLES
   ======================================== */

/* Article hero — shorter than main hero */
.article-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  background-color: #e0e0e0;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(43,33,28,0.65) 0%, rgba(43,33,28,0.15) 100%);
  z-index: 2;
}
.article-hero-content {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}
.article-hero-cat {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.article-hero-title {
  font-family: 'Pangram', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.article-hero-meta {
  font-size: 0.7rem;
  opacity: 0.8;
}

@media(min-width: 768px) {
  .article-hero {
    height: 55vh;
  }
  .article-hero-title {
    font-size: 2.6rem;
  }
}

/* Article body — editorial long-form */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px;
}

.article-body h2 {
  font-family: 'Pangram', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 1.3;
}

.article-body h3 {
  font-family: 'Pangram', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
}

.article-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body li::marker {
  color: var(--gold);
}

/* Highlight box / callout */
.article-callout {
  background-color: var(--cream);
  padding: 28px 24px;
  margin: 36px 0;
  /* border-left: 3px solid var(--gold); */
}

.article-callout p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.article-callout strong {
  color: var(--dark);
}

/* Article CTA — drives to formations/prestations */
.article-cta {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  margin: 80px auto 0;
  max-width: 1200px;
}

.article-cta .cta-surtitle {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  font-weight: 500;
}

.article-cta .cta-title {
  color: var(--white);
  font-family: 'Pangram', sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.article-cta .btn-dark-edit {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  padding: 16px 40px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.4s ease;
  border: 1px solid var(--white);
}

.article-cta .btn-dark-edit:hover {
  background: transparent;
  color: var(--white);
}

@media(min-width: 768px) {
  .article-body h2 {
    font-size: 1.8rem;
  }
  .article-cta {
    padding: 100px 40px;
  }
  .article-cta .cta-title {
    font-size: 2.5rem;
  }
}

/* Related articles at bottom */
.related-articles {
  padding: 60px 0;
  background-color: var(--gray-light);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 0;
  padding: 12px 0 0;
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--dark);
}
.breadcrumb span {
  margin: 0 6px;
}

/* Article sidebar-style info box */
.article-info-box {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 24px 20px;
  margin: 36px 0;
}

.article-info-box h4 {
  font-family: 'Pangram', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--dark);
}

.article-info-box p {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: #444;
}

.article-info-box .price-tag {
  font-family: 'Pangram', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.article-info-box .btn-dark-edit {
}

.lv-article-link-wrapper:hover .lv-article-img {
  transform: scale(1.02);
}

.lv-article-img-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .lv-article-img-container {
    aspect-ratio: 16 / 10;
  }
}

.lv-article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lv-article-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lv-article-cat {
  font-family: 'Pangram', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.lv-article-title {
  font-family: 'Pangram', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.3;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 1.3;
}

.article-body h3 {
  font-family: 'Pangram', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dark);
}

.article-body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body li::marker {
  color: var(--gold);
}

/* Highlight box / callout */
.article-callout {
  background-color: var(--cream);
  padding: 28px 24px;
  margin: 36px 0;
  /* border-left: 3px solid var(--gold); */
}

.article-callout p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.article-callout strong {
  color: var(--dark);
}

/* Article CTA — drives to formations/prestations */
.article-cta {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  margin: 80px auto 0;
  max-width: 1000px;
}

.article-cta .cta-surtitle {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  font-weight: 500;
}

.article-cta .cta-title {
  color: var(--white);
  font-family: 'Pangram', sans-serif;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.article-cta .btn-dark-edit {
  display: inline-block;
  background: var(--white);
  color: var(--dark);
  padding: 16px 40px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.4s ease;
  border: 1px solid var(--white);
}

.article-cta .btn-dark-edit:hover {
  background: transparent;
  color: var(--white);
}

@media(min-width: 768px) {
  .article-body h2 {
    font-size: 1.8rem;
  }
  .article-cta {
    padding: 100px 40px;
  }
  .article-cta .cta-title {
    font-size: 2.5rem;
  }
}

/* Related articles at bottom */
.related-articles {
  padding: 60px 0;
  background-color: var(--gray-light);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 0;
  padding: 12px 0 0;
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--dark);
}
.breadcrumb span {
  margin: 0 6px;
}

/* Article sidebar-style info box (Duplicate overridden) */
.article-info-box {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  padding: 40px;
  margin: 48px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-radius: 0;
  /* border-left: 6px solid var(--gold); */
}

.article-info-box h4 {
  font-family: 'Pangram', sans-serif !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  color: var(--gold) !important;
  font-weight: 700;
}

.article-info-box p {
  font-family: 'Pangram', sans-serif;
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--dark);
  line-height: 1.8;
}

.article-info-box .price-tag {
  font-family: 'Pangram', sans-serif !important;
  font-size: 2.2rem;
  font-style: normal;
  color: var(--dark) !important;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.article-info-box .btn-dark-edit {
  display: inline-block;
  padding: 18px 45px;
  font-family: 'Pangram', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--dark);
  color: var(--cream) !important;
  transition: all 0.4s ease;
  border: 1px solid var(--dark);
}

/* .article-info-box .btn-dark-edit:hover {
  background: transparent;
  color: var(--dark) !important;
  border-color: var(--dark);
} */

/* Effet Parallaxe Prestations Louis Vuitton */
.presta-cards-container {
  background: var(--white);
  position: relative;
  z-index: 5;
}

/* ==========================================
   LOUIS VUITTON STYLE BLOG ARTICLES
   ========================================== */
.lv-section {
  margin-bottom: 80px;
}

.lv-section-title {
  font-family: 'Pangram', sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #3E2723;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: -0.02em;
}

.lv-section-subtitle {
  font-family: 'Pangram', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 40px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .lv-section-title {
    font-size: 2.2rem;
  }
}

.lv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .lv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.lv-article {
  width: 100%;
}

.lv-article-link-wrapper {
  text-decoration: none;
  display: block;
  color: inherit;
}

.lv-article-link-wrapper:hover .lv-article-img {
  transform: scale(1.02);
}

.lv-article-img-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 16px;
}

.lv-article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lv-article-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lv-article-cat {
  font-family: 'Pangram', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.lv-article-title {
  font-family: 'Pangram', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 12px;
}

.lv-article-read {
  font-family: 'Pangram', sans-serif;
  font-size: 0.85rem;
  color: #1e1e1e;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}

/* Fix page-hero h1 font */
.page-hero h1 {
  font-family: 'Pangram', sans-serif !important;
  font-weight: 500;
}


/* --- FORCED PANGRAM HEADINGS BY USER REQUEST --- */
body.editorial-theme h1,
body.editorial-theme h2,
body.editorial-theme h3,
body.editorial-theme h4,
body.editorial-theme h5,
body.editorial-theme h6,
.page-hero h1,
.article-body h2,
.article-body h3,
.article-hero-title,
.blog-card-title,
.lv-section-title,
.lv-article-title {
  font-family: 'Pangram', sans-serif !important;
}

/* --- FORCED ARTICLE WIDTH BY USER REQUEST --- */
@media (min-width: 768px) {
  .article-body {
    max-width: 1000px;
  }
}

@media (min-width: 1024px) {
  .article-body {
    max-width: 1200px;
  }
}

/* Accordion FAQ styles matching the main pages */
.faq-formations, .faq-accordion {
  max-width: 700px;
  margin: 48px auto;
  text-align: left;
}

.faq-formations details, .faq-accordion details {
  border-bottom: 1px solid #3E2723;
  padding: 24px 0;
}

.faq-formations summary, .faq-accordion summary {
  font-family: 'Pangram', sans-serif !important;
  font-weight: 500;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-formations summary::-webkit-details-marker,
.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-formations summary svg, .faq-accordion summary svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark);
  transition: transform 0.3s ease;
  fill: none;
  stroke-width: 1.5px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-formations details[open] summary svg,
.faq-accordion details[open] summary svg {
  transform: rotate(180deg);
}

.faq-formations p, .faq-accordion p {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}
