@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap");

/* ============================================================
   VARIABLES — DARK (défaut) & LIGHT
   ============================================================ */
html[data-theme="dark"] {
  --bg:           #080706;
  --bg2:          #111009;
  --bg3:          #1a1611;
  --bg4:          #221e17;
  --text:         #f7f2e8;
  --muted:        rgba(247,242,232,.42);
  --gold:         #c9a96e;
  --gold-l:       #e8cfa0;
  --gold-p:       #f5e8cc;
  --border:       rgba(201,169,110,.12);
  --border2:      rgba(201,169,110,.25);
  --nav-bg:       rgba(8,7,6,.96);
  --input-bg:     #111009;
  --input-border: rgba(201,169,110,.2);
  --hero-overlay: linear-gradient(to top, rgba(8,7,6,.95) 0%, rgba(8,7,6,.3) 60%, transparent 100%);
  --pg-overlay:   linear-gradient(to top, rgba(8,7,6,.92), rgba(8,7,6,.2) 70%, transparent);
}

html[data-theme="light"] {
  --bg:           #f7f2e8;
  --bg2:          #ede8db;
  --bg3:          #e4ddd0;
  --bg4:          #ffffff;
  --text:         #1a1611;
  --muted:        rgba(26,22,17,.50);
  --gold:         #8a6a3a;
  --gold-l:       #a07d45;
  --gold-p:       #6b5228;
  --border:       rgba(26,22,17,.10);
  --border2:      rgba(26,22,17,.22);
  --nav-bg:       rgba(247,242,232,.96);
  --input-bg:     #ffffff;
  --input-border: rgba(26,22,17,.18);
  --hero-overlay: linear-gradient(to top, rgba(247,242,232,.15) 0%, transparent 60%);
  --pg-overlay:   linear-gradient(to top, rgba(26,22,17,.85), rgba(26,22,17,.2) 70%, transparent);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Curseur custom — desktop uniquement */
@media (pointer: fine) {
  body { cursor: none; }
}

/* ============================================================
   CURSEUR CUSTOM
   ============================================================ */
#lm-cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: screen;
}
html[data-theme="light"] #lm-cursor { mix-blend-mode: multiply; }
#lm-cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,.4);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ============================================================
   CANVAS PARTICULES
   ============================================================ */
#lm-particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.lm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 4rem;
  background: linear-gradient(to bottom, rgba(8,7,6,.85), transparent);
  transition: padding .4s ease, background .4s ease, border-color .4s ease;
}
html[data-theme="light"] .lm-nav {
  background: linear-gradient(to bottom, rgba(247,242,232,.85), transparent);
}
.lm-nav.scrolled {
  padding: 1.1rem 4rem;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.lm-nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 300;
  letter-spacing: .28em; color: var(--gold-p);
  text-transform: uppercase;
}

.lm-nav__links {
  display: flex; gap: 2.5rem; list-style: none; align-items: center;
}
.lm-nav__links a {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); transition: color .3s; position: relative;
}
.lm-nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .3s;
  transform-origin: right;
}
.lm-nav__links a:hover,
.lm-nav__links a.active { color: var(--gold-p); }
.lm-nav__links a:hover::after,
.lm-nav__links a.active::after { transform: scaleX(1); transform-origin: left; }

.lm-nav__right {
  display: flex; align-items: center; gap: 1rem;
}

.lm-theme-btn {
  background: none; border: 1px solid var(--border);
  color: var(--gold); width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; flex-shrink: 0;
}
.lm-theme-btn:hover { background: var(--border); border-color: var(--gold); }
.lm-theme-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.lm-nav__cta {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: .65rem 1.6rem;
  transition: background .3s; cursor: pointer; white-space: nowrap;
}
.lm-nav__cta:hover { background: var(--gold-l); color: var(--bg); }

/* Burger mobile */
.lm-nav__burger {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--text); padding: 4px;
}
.lm-nav__burger svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* Drawer mobile */
.lm-nav__drawer {
  display: none; position: fixed; inset: 0;
  background: var(--bg); z-index: 190;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem; opacity: 0; transition: opacity .3s;
}
.lm-nav__drawer.open { display: flex; opacity: 1; }
.lm-nav__drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; font-style: italic;
  color: var(--text); cursor: pointer;
  transition: color .3s;
}
.lm-nav__drawer a:hover { color: var(--gold); }
.lm-nav__drawer-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: none; cursor: pointer; color: var(--text);
}
.lm-nav__drawer-close svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ============================================================
   UTILITAIRES COMMUNS
   ============================================================ */
.lm-section-label {
  font-size: .62rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.lm-section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.lm-section-label--center { justify-content: center; }

.lm-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300; line-height: 1.2; margin-bottom: 1.8rem;
}
.lm-section-title em { font-style: italic; color: var(--gold-p); }

.lm-display-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
}
.lm-display-title em { font-style: italic; color: var(--gold-p); }

/* Bouton primaire avec effet rideau */
.lm-btn-primary {
  position: relative; display: inline-flex; align-items: center;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 1.1rem 2.8rem; overflow: hidden;
  transition: color .4s; cursor: pointer; border: none;
  font-family: 'Jost', sans-serif;
}
.lm-btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--bg2);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.lm-btn-primary:hover { color: var(--gold); }
.lm-btn-primary:hover::before { transform: translateX(0); }
.lm-btn-primary span { position: relative; z-index: 1; }

/* Bouton ghost avec flèche */
.lm-btn-ghost {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); transition: color .3s; cursor: pointer;
  display: inline-flex; align-items: center; gap: .8rem;
  background: none; border: none; font-family: 'Jost', sans-serif;
}
.lm-btn-ghost::after { content: '→'; transition: transform .3s; }
.lm-btn-ghost:hover { color: var(--text); }
.lm-btn-ghost:hover::after { transform: translateX(5px); }

/* Animations reveal au scroll */
.lm-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s ease, transform .85s ease;
}
.lm-reveal.visible { opacity: 1; transform: translateY(0); }
.lm-reveal--d1 { transition-delay: .1s; }
.lm-reveal--d2 { transition-delay: .2s; }
.lm-reveal--d3 { transition-delay: .3s; }
.lm-reveal--d4 { transition-delay: .4s; }

/* ============================================================
   HERO — PAGE ACCUEIL
   ============================================================ */
.lm-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 4rem 6rem;
  overflow: hidden;
}
.lm-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.lm-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.35) saturate(.7);
}
html[data-theme="light"] .lm-hero__bg img {
  filter: brightness(.45) saturate(.65);
}
.lm-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--hero-overlay);
}

.lm-hero__line {
  position: absolute; top: 0; left: 50%; width: 1px; height: 0;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,.4), transparent);
  animation: lm-line-grow 2.5s ease forwards .5s; z-index: 1;
}
@keyframes lm-line-grow { to { height: 100%; } }

.lm-hero__bg-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15vw, 22vw, 26rem);
  font-weight: 300; line-height: .85;
  color: rgba(201,169,110,.04);
  position: absolute; right: -1rem; top: 50%;
  transform: translateY(-50%);
  user-select: none; pointer-events: none; z-index: 1;
  opacity: 0; animation: lm-fade-in 2s forwards 1s;
}
@keyframes lm-fade-in { to { opacity: 1; } }
@keyframes lm-slide-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lm-pulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.3); }
}

.lm-hero__inner { position: relative; z-index: 2; }

.lm-hero__eyebrow {
  font-size: .68rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1.2rem;
  opacity: 0; animation: lm-slide-up .8s forwards .8s;
}
.lm-hero__eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--gold); flex-shrink: 0;
}

.lm-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  font-weight: 300; line-height: 1; color: var(--text);
  opacity: 0; animation: lm-slide-up .9s forwards 1s;
}
.lm-hero__title em { font-style: italic; color: var(--gold-p); }

.lm-hero__subtitle {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 1.8rem; max-width: 400px; line-height: 1.9;
  opacity: 0; animation: lm-slide-up .9s forwards 1.2s;
}

.lm-hero__actions {
  display: flex; align-items: center; gap: 2.5rem; margin-top: 2.5rem;
  opacity: 0; animation: lm-slide-up .9s forwards 1.4s;
}

.lm-hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  z-index: 2; opacity: 0; animation: lm-fade-in 1s forwards 2s;
}
.lm-hero__scroll span {
  font-size: .58rem; letter-spacing: .35em; text-transform: uppercase; color: var(--muted);
}
.lm-hero__scroll-bar {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: lm-pulse 1.8s ease-in-out infinite;
}

/* ============================================================
   STRIP STATS
   ============================================================ */
.lm-strip {
  display: flex; position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}
.lm-strip__item {
  flex: 1; padding: 1.5rem 2.5rem;
  display: flex; align-items: center; gap: 1.2rem;
  position: relative;
}
.lm-strip__item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; bottom: 15%;
  width: 1px; background: var(--border);
}
.lm-strip__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300; color: var(--gold);
  line-height: 1; white-space: nowrap;
}
.lm-strip__text {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); line-height: 1.8;
}
.lm-strip__text strong {
  display: block; color: var(--text);
  font-weight: 400; font-size: .76rem; margin-bottom: .15rem;
}

/* ============================================================
   ABOUT — SPLIT SCREEN
   ============================================================ */
.lm-about {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 75vh;
}
.lm-about__visual {
  position: relative; overflow: hidden; background: var(--bg3);
}
.lm-about__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.lm-about__visual:hover img { transform: scale(1.04); }
.lm-about__visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg3));
  pointer-events: none;
}
.lm-about__body {
  padding: 6rem 5rem; display: flex;
  flex-direction: column; justify-content: center;
  background: var(--bg3);
}
.lm-about__signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-style: italic;
  color: var(--gold); font-weight: 300; margin-bottom: 2rem;
}
.lm-about__body-text {
  font-size: .88rem; line-height: 2; color: var(--muted);
  max-width: 400px; margin-bottom: 2.5rem;
}

/* ============================================================
   GRILLE SERVICES (HOME — 3 soins)
   ============================================================ */
.lm-services { padding: 8rem 4rem; background: var(--bg); }
.lm-services__header { text-align: center; margin-bottom: 5rem; }
.lm-services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.lm-svc-card {
  padding: 3.5rem 2.8rem; background: var(--bg3);
  position: relative; overflow: hidden; cursor: pointer;
  transition: background .4s;
}
.lm-svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.06), transparent);
  opacity: 0; transition: opacity .4s;
}
.lm-svc-card:hover { background: var(--bg4); }
.lm-svc-card:hover::before { opacity: 1; }
.lm-svc-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 300;
  color: rgba(201,169,110,.1);
  position: absolute; top: 1.5rem; right: 2rem;
  transition: color .4s; line-height: 1;
}
.lm-svc-card:hover .lm-svc-card__num { color: rgba(201,169,110,.2); }
.lm-svc-card__line {
  width: 42px; height: 1px; background: var(--gold);
  margin-bottom: 2rem; transition: width .4s;
}
.lm-svc-card:hover .lm-svc-card__line { width: 65px; }
.lm-svc-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300;
  margin-bottom: 1rem; line-height: 1.2;
}
.lm-svc-card__name em { font-style: italic; color: var(--gold-p); }
.lm-svc-card__desc {
  font-size: .82rem; line-height: 1.9; color: var(--muted); margin-bottom: 2rem;
}
.lm-svc-card__tag {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border2);
  padding: .45rem 1rem; transition: all .3s; display: inline-block;
}
.lm-svc-card:hover .lm-svc-card__tag {
  background: rgba(201,169,110,.1); border-color: var(--gold);
}
.lm-services__more { text-align: center; margin-top: 3.5rem; }

/* ============================================================
   GALERIE
   ============================================================ */
.lm-gallery { background: var(--bg2); }
.lm-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
}
.lm-gallery__item { overflow: hidden; position: relative; cursor: pointer; }
.lm-gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease, filter .4s;
}
.lm-gallery__item:hover img { transform: scale(1.06); filter: brightness(1.1); }
.lm-gallery__item--large { grid-column: span 2; grid-row: span 2; }
.lm-gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,7,6,0); transition: background .4s;
}
.lm-gallery__item:hover::after { background: rgba(8,7,6,.15); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.lm-cta {
  padding: 12rem 4rem; text-align: center;
  background: var(--bg3); position: relative; overflow: hidden;
}
.lm-cta__bg-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10vw, 16vw, 20rem); font-weight: 300;
  color: rgba(201,169,110,.025);
  user-select: none; pointer-events: none; white-space: nowrap;
}
.lm-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.8rem;
  position: relative; z-index: 1;
}
.lm-cta__title em { font-style: italic; color: var(--gold-p); }
.lm-cta__subtitle {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3.5rem; position: relative; z-index: 1;
}
.lm-cta__phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic; color: var(--gold);
  display: block; margin-top: 2.5rem; cursor: pointer;
  transition: color .3s; position: relative; z-index: 1;
}
.lm-cta__phone:hover { color: var(--gold-l); }

/* ============================================================
   PAGE HERO (pages internes)
   ============================================================ */
.lm-page-hero {
  position: relative; min-height: 55vh;
  display: flex; align-items: flex-end;
  padding: 0 4rem 4.5rem; overflow: hidden;
  padding-top: 80px;
}
.lm-page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.lm-page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.32) saturate(.65);
}
html[data-theme="light"] .lm-page-hero__bg img {
  filter: brightness(.42) saturate(.6);
}
.lm-page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--pg-overlay);
}
.lm-page-hero__inner { position: relative; z-index: 1; }
.lm-page-hero__inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1; color: #f7f2e8;
}
.lm-page-hero__inner h1 em { font-style: italic; color: var(--gold-p); }
.lm-page-hero__inner p {
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(247,242,232,.5); margin-top: 1rem; max-width: 500px;
}

/* ============================================================
   TARIFS — SÉLECTEUR DURÉE
   ============================================================ */
.lm-tarifs { padding: 7rem 4rem; background: var(--bg); }
.lm-dur-sel {
  display: flex; justify-content: center;
  gap: .8rem; margin: 2.5rem 0 4.5rem; flex-wrap: wrap;
}
.lm-dur-btn {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); background: transparent;
  border: 1px solid var(--border2); padding: .55rem 1.4rem;
  cursor: pointer; transition: all .3s;
  font-family: 'Jost', sans-serif;
}
.lm-dur-btn.active,
.lm-dur-btn:hover {
  background: var(--gold); border-color: var(--gold); color: var(--bg);
}

/* Grille tarifs */
.lm-tarifs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}
.lm-tarif-card {
  background: var(--bg3); padding: 2.5rem 2rem;
  position: relative; transition: background .3s; overflow: hidden;
  width: 100%;
}
.lm-tarif-card:hover { background: var(--bg4); }
.lm-tarif-card__img {
  height: 160px; margin: -2.5rem -2rem 1.5rem; overflow: hidden;
}
.lm-tarif-card__img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
}
.lm-tarif-card:hover .lm-tarif-card__img img { transform: scale(1.05); }
.lm-tarif-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; margin-bottom: .3rem; color: var(--text);
}
.lm-tarif-card__sep {
  width: 34px; height: 1px; background: var(--border2); margin: .8rem 0 1rem;
}
.lm-tarif-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: var(--gold-l);
  line-height: 1; margin-bottom: .6rem;
  transition: opacity .2s;
}
.lm-tarif-card__price.updating { opacity: .3; }
.lm-tarif-card__price sup { font-size: 1.2rem; vertical-align: super; }
.lm-tarif-card__desc {
  font-size: .78rem; line-height: 1.8; color: var(--muted);
}

/* ============================================================
   OFFRES SPÉCIALES
   ============================================================ */
.lm-offres { padding: 5rem 4rem; background: var(--bg3); }
.lm-offres__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; max-width: 900px; margin: 3rem auto 0;
}
.lm-offre-card {
  padding: 3.5rem; background: var(--bg4);
  border: 1px solid var(--border); text-align: center;
  transition: border-color .3s;
}
.lm-offre-card:hover { border-color: var(--gold); }
.lm-offre-card__icon {
  font-size: 1.8rem; color: var(--gold); margin-bottom: 1.5rem;
}
.lm-offre-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; margin-bottom: 1rem; color: var(--text);
}
.lm-offre-card p {
  font-size: .85rem; line-height: 1.9; color: var(--muted);
}
.lm-offre-card strong { color: var(--text); }

/* ============================================================
   NEWS / ACTUALITÉS
   ============================================================ */
.lm-news { padding: 6rem 4rem; background: var(--bg); }
.lm-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3px; margin-top: 3.5rem;
}
.lm-news-card { background: var(--bg3); overflow: hidden; transition: background .3s; }
.lm-news-card:hover { background: var(--bg4); }
.lm-news-card__img { height: 200px; overflow: hidden; }
.lm-news-card__img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s;
}
.lm-news-card:hover .lm-news-card__img img { transform: scale(1.05); }
.lm-news-card__body { padding: 2rem; }
.lm-news-card__date {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
}
.lm-news-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 300;
  margin-bottom: .8rem; line-height: 1.3; color: var(--text);
}
.lm-news-card__excerpt {
  font-size: .82rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.2rem;
}
.lm-news-card__link {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.lm-news-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 6rem 2rem; border: 1px solid var(--border);
}
.lm-news-empty p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic; color: var(--muted); margin-bottom: 2rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.lm-contact { padding: 6rem 4rem; background: var(--bg); }
.lm-contact__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.lm-contact__info { display: flex; flex-direction: column; gap: 2.2rem; }
.lm-contact__info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300; line-height: 1.2; margin-bottom: .5rem; color: var(--text);
}
.lm-contact__info-title em { font-style: italic; color: var(--gold-p); }
.lm-contact__info-intro {
  font-size: .88rem; line-height: 2; color: var(--muted); margin-bottom: 1rem;
}
.lm-contact__item { display: flex; gap: 1.2rem; align-items: flex-start; }
.lm-contact__item-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.lm-contact__item-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.lm-contact__item-label {
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .3rem;
}
.lm-contact__item-value { font-size: .95rem; color: var(--text); }
.lm-contact__item-value a { color: var(--text); transition: color .3s; }
.lm-contact__item-value a:hover { color: var(--gold); }
.lm-contact__img {
  margin-top: 1rem; border: 1px solid var(--border);
  overflow: hidden; height: 220px;
}
.lm-contact__img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .6s;
}
.lm-contact__img:hover img { transform: scale(1.04); }

/* Formulaire */
.lm-form { display: flex; flex-direction: column; gap: 1.4rem; }
.lm-form__group { display: flex; flex-direction: column; gap: .5rem; }
.lm-form__group label {
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.lm-form__group input,
.lm-form__group textarea {
  width: 100%; background: var(--input-bg);
  border: 1px solid var(--input-border); color: var(--text);
  padding: .9rem 1.1rem; font-family: 'Jost', sans-serif;
  font-size: .88rem; font-weight: 300; outline: none;
  transition: border-color .3s; border-radius: 0; -webkit-appearance: none;
}
.lm-form__group input:focus,
.lm-form__group textarea:focus { border-color: var(--gold); }
.lm-form__group textarea { resize: vertical; min-height: 130px; }
.lm-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lm-form__submit {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 1.1rem 2.5rem; border: none; cursor: pointer;
  position: relative; overflow: hidden; transition: color .4s;
  align-self: flex-start; font-family: 'Jost', sans-serif;
}
.lm-form__submit::before {
  content: ''; position: absolute; inset: 0; background: var(--bg2);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.lm-form__submit:hover { color: var(--gold); }
.lm-form__submit:hover::before { transform: translateX(0); }
.lm-form__submit span { position: relative; z-index: 1; }

/* Banner téléphone */
.lm-phone-banner {
  max-width: 1100px; margin: 4rem auto 0;
  padding: 3rem; background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.lm-phone-banner__text {
  flex: 1; font-size: .78rem; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase;
}
.lm-phone-banner__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-style: italic; color: var(--gold);
  cursor: pointer; transition: color .3s;
}
.lm-phone-banner__num:hover { color: var(--gold-l); }

/* Toast notification */
.lm-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gold); color: var(--bg);
  padding: 1rem 2.5rem; font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase;
  z-index: 9999; opacity: 0; transition: all .4s;
}
.lm-toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ============================================================
   FOOTER
   ============================================================ */
.lm-footer {
  position: relative; z-index: 2;
  padding: 2.5rem 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.lm-footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300;
  letter-spacing: .3em; color: var(--gold-p); text-transform: uppercase;
}
.lm-footer__copy { font-size: .68rem; letter-spacing: .1em; color: var(--muted); }
.lm-footer__links { display: flex; gap: 1.8rem; list-style: none; }
.lm-footer__links a {
  font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); transition: color .3s;
}
.lm-footer__links a:hover { color: var(--gold); }

/* ============================================================
   RICH TEXT (Wagtail)
   ============================================================ */
.lm-rich-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin: 2.5rem 0 1rem; color: var(--text); }
.lm-rich-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; margin: 2rem 0 .8rem; color: var(--text); }
.lm-rich-text p { font-size: .95rem; line-height: 1.9; color: var(--muted); margin-bottom: 1rem; }
.lm-rich-text ul, .lm-rich-text ol { margin-left: 1.5rem; margin-bottom: 1rem; color: var(--muted); font-size: .95rem; }
.lm-rich-text blockquote {
  border-left: 3px solid var(--gold); padding-left: 1.5rem;
  margin: 2rem 0; font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic; color: var(--muted);
}
.lm-rich-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .lm-about { grid-template-columns: 1fr; }
  .lm-about__visual { height: 380px; }
  .lm-about__visual::after {
    background: linear-gradient(to top, var(--bg3), transparent);
  }
}

@media (max-width: 968px) {
  .lm-contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .lm-tarifs__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lm-offres__grid { grid-template-columns: 1fr; }
  .lm-strip { flex-wrap: wrap; }
  .lm-strip__item { flex: 1 1 48%; border-bottom: 1px solid var(--border); }
  .lm-strip__item::after { display: none; }
  .lm-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .lm-gallery__item--large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 900px) {
  .lm-nav { padding: 1.4rem 2rem; }
  .lm-nav.scrolled { padding: 1rem 2rem; }
  .lm-nav__links { display: none; }
  .lm-nav__cta { display: none; }
  .lm-nav__burger { display: block; }

  .lm-hero { padding: 0 2rem 5rem; }
  .lm-page-hero { padding: 80px 2rem 3.5rem; }
  .lm-about__body { padding: 4rem 2.5rem; }

  .lm-services,
  .lm-tarifs,
  .lm-news,
  .lm-contact,
  .lm-offres,
  .lm-cta { padding-left: 2rem; padding-right: 2rem; }

  .lm-services__grid { grid-template-columns: 1fr; }
  .lm-news__grid { grid-template-columns: 1fr; }

  .lm-footer { flex-direction: column; align-items: flex-start; gap: .8rem; }
}

@media (max-width: 540px) {
  .lm-hero__title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .lm-hero__actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .lm-strip { flex-direction: column; }
  .lm-strip__item { flex: none; width: 100%; }
  .lm-gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .lm-gallery__item { height: 200px; }
  .lm-gallery__item--large { height: 240px; }
  .lm-tarifs__grid { grid-template-columns: 1fr; gap: 20px; }
  .lm-phone-banner { flex-direction: column; align-items: flex-start; }
  .lm-form__row { grid-template-columns: 1fr; }
  .lm-dur-sel { justify-content: flex-start; }
  .lm-offres__grid { grid-template-columns: 1fr; }
}