/* =============================================================
   OPERA PRESTIGE — Destination Landing Pages — VERSION DARK
   Fichier : /wp-content/themes/uncode-child/css/destinations.css
   Chargé uniquement sur les pages utilisant le template "Destination LP"
   Préfixe classes : .lp- (landing page destinations)
   Direction : fonds noir/anthracite, accents gold, boutons ivoire.
   ============================================================= */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --lp-black:      #0a0a0a;
  --lp-anthracite: #111111;
  --lp-elev:       #161616;   /* surface "soulevée" au survol */
  --lp-mid-grey:   #4a4a4a;
  --lp-light-grey: #9a9a9a;
  --lp-cream:      #f5f0eb;
  --lp-white:      #ffffff;
  --lp-gold:       #c9a96e;
  --lp-gold-light: #dfc090;

  --lp-text:  rgba(255,255,255,.64);  /* corps de texte sur fond sombre */
  --lp-line:  rgba(255,255,255,.09);  /* filets / séparateurs */

  --lp-serif: 'Playfair Display', Georgia, serif;
  --lp-sans:  'Montserrat', sans-serif;
  /* Alias : certaines règles svc/exp référencent --lp-font-* */
  --lp-font-serif: 'Playfair Display', Georgia, serif;
  --lp-font-sans:  'Montserrat', sans-serif;
  --lp-ease:  0.3s ease;
  --lp-r:     3px;
}

/* ── Reset partiel (scope .lp-*) ───────────────────────────── */
.lp-hero *, .lp-intro *, .lp-collection *,
.lp-services *, .lp-why *, .lp-guide *,
.lp-season *, .lp-getting-there *, .lp-faq *,
.lp-destinations *, .lp-cta-final * {
  box-sizing: border-box;
}

/* ── Boutons (code blanc/noir transposé en IVOIRE) ──────────── */
.lp-btn {
  display: inline-block;
  font-family: var(--lp-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--lp-r);
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.lp-btn--white {
  background: var(--lp-cream); color: var(--lp-black);
  border: 1px solid var(--lp-cream);
}
.lp-btn--white:hover { background: var(--lp-white); border-color: var(--lp-white); transform: translateY(-2px); }
.lp-btn--outline-white {
  background: transparent; color: var(--lp-cream);
  border: 1px solid rgba(245,240,235,.45);
}
.lp-btn--outline-white:hover { background: var(--lp-cream); border-color: var(--lp-cream); color: var(--lp-black); }
/* Ancien bouton "black" (sur fond clair) → ivoire sur fond sombre */
.lp-btn--black {
  background: var(--lp-cream); color: var(--lp-black);
  border: 1px solid var(--lp-cream);
}
.lp-btn--black:hover { background: var(--lp-white); border-color: var(--lp-white); transform: translateY(-2px); }

/* ── Utilitaires ────────────────────────────────────────────── */
.lp-eyebrow {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--lp-gold); margin-bottom: 18px;
}
.lp-section-title {
  font-family: var(--lp-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400; line-height: 1.15;
  color: var(--lp-white);
}
.lp-section-title--light { color: var(--lp-white); }
.lp-divider { width: 48px; height: 1px; background: var(--lp-gold); margin: 22px 0; }
.lp-divider--center { margin-left: auto; margin-right: auto; }

/* ── 1. Hero ────────────────────────────────────────────────── */
.lp-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; background-color: var(--lp-black); overflow: hidden;
}
.lp-hero__bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,10,10,.55) 0%, rgba(10,10,10,.35) 40%, rgba(10,10,10,.8) 100%);
}
.lp-hero__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.lp-hero__content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }
.lp-hero__eyebrow {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--lp-gold); margin-bottom: 28px;
}
.lp-hero__h1 {
  font-family: var(--lp-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; color: var(--lp-white); line-height: 1.05;
}
.lp-hero__h1-italic { font-style: italic; color: var(--lp-gold); display: block; }
/* Filet doré dégradé entre le H1 et le sous-titre */
.lp-hero__divider {
  width: 72px; height: 1px;
  background: linear-gradient(to right, transparent, var(--lp-gold), transparent);
  margin: 34px auto 30px; opacity: .9;
}
.lp-hero__subtitle {
  font-size: .95rem; font-weight: 300;
  letter-spacing: .06em; color: rgba(255,255,255,.78);
  margin: 0 auto 48px; max-width: 520px; line-height: 1.7;
}
.lp-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.lp-hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: rgba(255,255,255,.4);
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  z-index: 2; animation: lp-scroll-bounce 2.2s ease-in-out infinite;
}
.lp-hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,.7), transparent);
}
@keyframes lp-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: .55; }
}

/* ── 2. Intro ───────────────────────────────────────────────── */
.lp-intro { background: var(--lp-black); padding: 104px 60px; }
.lp-intro__inner { max-width: 1200px; margin: 0 auto; }
.lp-intro__header { text-align: center; margin-bottom: 64px; }
.lp-intro__grid { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start; }
.lp-intro__text p { font-size: .93rem; line-height: 1.85; color: var(--lp-text); margin-bottom: 20px; font-weight: 300; }
.lp-intro__text p:last-child { margin-bottom: 0; }
.lp-intro__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--lp-line); }
.lp-intro__stat { background: var(--lp-anthracite); padding: 34px 24px; text-align: center; transition: background var(--lp-ease); }
.lp-intro__stat:hover { background: var(--lp-elev); }
.lp-intro__stat-value { font-family: var(--lp-serif); font-size: 2.3rem; font-weight: 400; color: var(--lp-gold); line-height: 1; margin-bottom: 8px; }
.lp-intro__stat-label { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--lp-light-grey); }

/* ── 3. Villa Grid ──────────────────────────────────────────── */
.lp-collection { background: var(--lp-anthracite); padding: 104px 60px; }
.lp-collection__inner { max-width: 1200px; margin: 0 auto; }
.lp-collection__header { text-align: center; margin-bottom: 60px; }
.lp-collection__subline { max-width: 640px; margin: 20px auto 0; font-size: .9rem; font-weight: 300; line-height: 1.7; color: var(--lp-light-grey); }
.lp-collection__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.lp-villa-card { background: rgba(255,255,255,.025); border: 1px solid var(--lp-line); overflow: hidden; transition: border-color var(--lp-ease), box-shadow var(--lp-ease), transform var(--lp-ease); }
.lp-villa-card:hover { border-color: rgba(201,169,110,.5); box-shadow: 0 24px 60px rgba(0,0,0,.5); transform: translateY(-4px); }
.lp-villa-card__image-wrap { position: relative; height: 300px; overflow: hidden; background: linear-gradient(135deg, #1c1a17, #0e0e0e); }
.lp-villa-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.lp-villa-card:hover .lp-villa-card__image-wrap img { transform: scale(1.04); }
.lp-villa-card__badge { position: absolute; top: 16px; left: 16px; background: var(--lp-gold); color: var(--lp-black); font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--lp-r); }
.lp-villa-card__body { padding: 28px 32px 36px; }
.lp-villa-card__name { font-family: var(--lp-serif); font-style: italic; font-size: 1.7rem; font-weight: 400; color: var(--lp-white); margin-bottom: 14px; }
.lp-villa-card__specs { display: flex; flex-wrap: wrap; margin-bottom: 18px; }
.lp-villa-card__spec { font-size: .68rem; font-weight: 500; letter-spacing: .08em; color: var(--lp-light-grey); text-transform: uppercase; }
.lp-villa-card__spec::after { content: '·'; margin: 0 8px; color: var(--lp-gold); }
.lp-villa-card__spec:last-child::after { display: none; }
.lp-villa-card__price { font-size: .82rem; font-weight: 400; color: var(--lp-light-grey); margin-bottom: 24px; }
.lp-villa-card__price strong { color: var(--lp-white); font-weight: 600; }
.lp-villa-card__cta { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--lp-white); border-bottom: 1px solid var(--lp-gold); padding-bottom: 3px; transition: color var(--lp-ease); text-decoration: none; }
.lp-villa-card__cta:hover { color: var(--lp-gold); }

/* ── 4. Services ────────────────────────────────────────────── */
.lp-services { background: var(--lp-black); padding: 104px 60px; }
.lp-services__inner { max-width: 1200px; margin: 0 auto; }
.lp-services__header { text-align: center; margin-bottom: 64px; }
.lp-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--lp-line); }
.lp-service-item { background: var(--lp-anthracite); padding: 44px 32px; transition: background var(--lp-ease); }
.lp-service-item:hover { background: var(--lp-elev); }
.lp-service-item__icon { width: 36px; height: 36px; margin-bottom: 20px; color: var(--lp-gold); }
.lp-service-item__title { font-family: var(--lp-serif); font-size: 1.05rem; font-weight: 400; color: var(--lp-white); margin-bottom: 12px; }
.lp-service-item__desc { font-size: .83rem; font-weight: 300; color: var(--lp-light-grey); line-height: 1.75; }

/* ── 5. Pourquoi Opera Prestige ─────────────────────────────── */
.lp-why { background: var(--lp-anthracite); padding: 104px 60px; }
.lp-why__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lp-why__left .lp-section-title { margin-bottom: 24px; }
.lp-why__left p { font-size: .93rem; line-height: 1.85; color: var(--lp-text); font-weight: 300; margin-bottom: 32px; }
.lp-why__list { list-style: none; display: flex; flex-direction: column; gap: 0; padding: 0; margin: 0; border-top: 1px solid var(--lp-line); }
.lp-why__list-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px 2px; border-bottom: 1px solid var(--lp-line); }
.lp-why__check { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; color: var(--lp-gold); }
.lp-why__list-item-content strong { display: block; font-size: .83rem; font-weight: 600; letter-spacing: .04em; color: var(--lp-white); margin-bottom: 4px; text-transform: uppercase; }
.lp-why__list-item-content span { font-size: .83rem; font-weight: 300; color: var(--lp-light-grey); line-height: 1.6; }

/* ── 6. Guide éditorial ─────────────────────────────────────── */
.lp-guide { background: var(--lp-black); padding: 104px 60px; }
.lp-guide__inner { max-width: 1200px; margin: 0 auto; }
.lp-guide__header { max-width: 720px; margin-bottom: 64px; }
.lp-guide__lead { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--lp-text); margin-top: 24px; }
.lp-guide__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 64px; }
.lp-guide-block__label { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--lp-gold); margin-bottom: 10px; }
.lp-guide-block h3 { font-family: var(--lp-serif); font-size: 1.3rem; font-weight: 400; color: var(--lp-white); margin-bottom: 14px; line-height: 1.3; }
.lp-guide-block p { font-size: .88rem; font-weight: 300; line-height: 1.85; color: var(--lp-text); }
.lp-guide-block p + p { margin-top: 12px; }

/* ── 7. Saisonnalité ────────────────────────────────────────── */
.lp-season { background: var(--lp-anthracite); padding: 104px 60px; }
.lp-season__inner { max-width: 1200px; margin: 0 auto; }
.lp-season__header { text-align: center; margin-bottom: 64px; }
.lp-season__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--lp-line); }
.lp-season-item { background: var(--lp-black); padding: 44px 36px; transition: background var(--lp-ease); }
.lp-season-item:hover { background: var(--lp-elev); }
.lp-season-item__period { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--lp-gold); margin-bottom: 14px; }
.lp-season-item h3 { font-family: var(--lp-serif); font-size: 1.2rem; font-weight: 400; color: var(--lp-white); margin-bottom: 16px; }
.lp-season-item p { font-size: .85rem; font-weight: 300; color: var(--lp-light-grey); line-height: 1.75; }

/* ── 8. Transport ───────────────────────────────────────────── */
.lp-getting-there { background: var(--lp-black); padding: 104px 60px; }
.lp-getting-there__inner { max-width: 1200px; margin: 0 auto; }
.lp-getting-there__header { text-align: center; margin-bottom: 64px; }
.lp-getting-there__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--lp-line); }
.lp-transport-item { background: var(--lp-anthracite); padding: 36px 28px; transition: background var(--lp-ease); }
.lp-transport-item:hover { background: var(--lp-elev); }
.lp-transport-item__icon { width: 32px; height: 32px; margin-bottom: 18px; color: var(--lp-gold); }
.lp-transport-item__icon svg { width: 100%; height: 100%; }
.lp-transport-item h3 { font-family: var(--lp-serif); font-size: 1rem; font-weight: 400; color: var(--lp-white); margin-bottom: 12px; }
.lp-transport-item p { font-size: .82rem; font-weight: 300; color: var(--lp-light-grey); line-height: 1.75; }

/* ── 9. FAQ ─────────────────────────────────────────────────── */
.lp-faq { background: var(--lp-anthracite); padding: 104px 60px; }
.lp-faq__inner { max-width: 860px; margin: 0 auto; }
.lp-faq__header { text-align: center; margin-bottom: 56px; }
.lp-faq__list { display: flex; flex-direction: column; gap: 10px; }
.lp-faq-item { border: 1px solid var(--lp-line); overflow: hidden; transition: border-color var(--lp-ease); }
.lp-faq-item[open] { border-color: rgba(201,169,110,.35); border-left: 2px solid var(--lp-gold); }
.lp-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 28px; cursor: pointer; list-style: none; font-size: .88rem; font-weight: 500; color: var(--lp-white); letter-spacing: .02em; transition: background var(--lp-ease); user-select: none; }
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item[open] summary,
.lp-faq-item summary:hover { background: rgba(201,169,110,.06); }
.lp-faq-item__icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--lp-gold); transition: transform .25s ease; }
.lp-faq-item[open] .lp-faq-item__icon { transform: rotate(45deg); }
.lp-faq-item__body { padding: 0 28px 24px; font-size: .88rem; font-weight: 300; color: var(--lp-text); line-height: 1.8; }

/* ── 10. Destinations ───────────────────────────────────────── */
.lp-destinations { background: var(--lp-black); padding: 104px 60px; }
.lp-destinations__inner { max-width: 1200px; margin: 0 auto; }
.lp-destinations__header { text-align: center; margin-bottom: 48px; }
.lp-destinations__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-dest-card { position: relative; height: 260px; overflow: hidden; cursor: pointer; background: linear-gradient(135deg, #1c1a17, #0e0e0e); display: block; text-decoration: none; border: 1px solid var(--lp-line); transition: border-color var(--lp-ease); }
.lp-dest-card:hover { border-color: rgba(201,169,110,.5); }
.lp-dest-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.15) 60%); transition: background var(--lp-ease); }
.lp-dest-card:hover .lp-dest-card__overlay { background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 60%); }
.lp-dest-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-dest-card__content { position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2; }
.lp-dest-card__name { font-family: var(--lp-serif); font-size: 1.1rem; font-weight: 400; color: var(--lp-white); margin-bottom: 6px; }
.lp-dest-card__link { font-size: .65rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--lp-gold); }
.lp-dest-card--active { border-color: var(--lp-gold); }
.lp-dest-card--active .lp-dest-card__overlay { background: linear-gradient(to top, rgba(201,169,110,.2) 0%, rgba(0,0,0,.5) 100%); }

/* ── 11. CTA Final ──────────────────────────────────────────── */
.lp-cta-final { background: linear-gradient(135deg, #141210, #0a0a0a 70%); padding: 128px 60px; text-align: center; position: relative; overflow: hidden; }
.lp-cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,169,110,.07), transparent 65%); pointer-events: none; }
.lp-cta-final__inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.lp-cta-final__title { font-family: var(--lp-serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; color: var(--lp-white); line-height: 1.15; margin-bottom: 20px; }
.lp-cta-final__sub { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 44px; }

/* ── Responsive 1024px ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .lp-intro, .lp-collection, .lp-services, .lp-why,
  .lp-guide, .lp-season, .lp-getting-there, .lp-faq,
  .lp-destinations, .lp-cta-final { padding-left: 36px; padding-right: 36px; }
  .lp-intro__grid { gap: 48px; }
  .lp-why__inner { gap: 48px; }
  .lp-getting-there__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive 860px ───────────────────────────────────────── */
@media (max-width: 860px) {
  .lp-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-services__grid { grid-template-columns: 1fr 1fr; }
  .lp-why__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-guide__grid { grid-template-columns: 1fr; gap: 36px; }
  .lp-season__grid { grid-template-columns: 1fr; }
  .lp-destinations__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lp-villa-card__image-wrap { height: 240px; }
}

/* ── Responsive 540px ───────────────────────────────────────── */
@media (max-width: 540px) {
  .lp-hero__h1 { font-size: 2.8rem; }
  .lp-hero__actions { flex-direction: column; align-items: center; }
  .lp-btn { padding: 14px 28px; }
  .lp-intro, .lp-collection, .lp-services, .lp-why,
  .lp-guide, .lp-season, .lp-getting-there, .lp-faq,
  .lp-destinations, .lp-cta-final { padding: 72px 20px; }
  .lp-intro__stats { grid-template-columns: 1fr 1fr; }
  .lp-collection__grid { grid-template-columns: 1fr; }
  .lp-services__grid { grid-template-columns: 1fr; }
  .lp-getting-there__grid { grid-template-columns: 1fr 1fr; }
  .lp-destinations__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .lp-dest-card { height: 200px; }
}


/* ════════════════════════════════════════════════════════════════
   SERVICE LP  (.svc-*)  +  EXPERIENCE LP (.exp-*)
   Ajout juin 2026 — nouvelles sections des templates page-service-lp
   et page-experience-lp. Héritent toutes les variables et bases .lp-*.
   ════════════════════════════════════════════════════════════════ */

/* ── body classes ────────────────────────────────────────────── */
body.opera-service-lp,
body.opera-experience-lp { background: var(--lp-black); color: var(--lp-cream); }

/* ── Hero (svc / exp) ────────────────────────────────────────── */
.svc-hero { position: relative; min-height: 100vh; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background-color: var(--lp-anthracite);
  background-size: cover; background-position: center; }

/* Re-use .lp-hero__overlay, .lp-hero__content, .lp-hero__title,
   .lp-hero__subtitle, .lp-hero__actions, .lp-hero__divider from villa LP */

/* Content block centred (flex column + auto margins as safety net) */
.svc-hero .lp-hero__content { margin-left: auto; margin-right: auto; text-align: center; }

/* H1 of svc/exp hero uses .lp-hero__title (not .lp-hero__h1) */
.lp-hero__title {
  font-family: var(--lp-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; color: var(--lp-white); line-height: 1.05;
  margin: 0;
}
.lp-hero__title em { font-style: italic; color: var(--lp-gold); }

/* Experience badge (above H1) */
.exp-hero__badge {
  display: inline-block;
  font-family: var(--lp-font-sans);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lp-gold);
  border: 1px solid rgba(201,169,110,.4);
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── svc-intro (shared) — no extra rules needed, reuses .lp-intro ── */

/* ── svc-featured : 3-col cards ──────────────────────────────── */
.svc-featured { padding: 100px 20px; background: var(--lp-anthracite); }
.svc-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}

.svc-card {
  background: var(--lp-black);
  border: 1px solid rgba(201,169,110,.18);
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.svc-card:hover { border-color: rgba(201,169,110,.5); transform: translateY(-4px); }

.svc-card__body { padding: 32px; flex: 1; }
.svc-card__enclave {
  font-family: var(--lp-font-sans);
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--lp-gold); margin-bottom: .5rem;
}
.svc-card__name {
  font-family: var(--lp-font-serif);
  font-size: 1.3rem; color: var(--lp-cream); margin-bottom: .75rem;
}
.svc-card__tagline { font-size: .88rem; color: rgba(245,240,235,.6); margin-bottom: 1rem; }
.svc-card__specs {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(201,169,110,.15);
  padding-top: 1rem;
}
.svc-card__specs li {
  font-family: var(--lp-font-sans); font-size: .78rem;
  color: rgba(245,240,235,.7); padding: 4px 0;
  padding-left: 14px; position: relative;
}
.svc-card__specs li::before { content: '—'; position: absolute; left: 0; color: var(--lp-gold); }
.svc-card__footer {
  padding: 20px 32px;
  border-top: 1px solid rgba(201,169,110,.15);
  display: flex; align-items: center; justify-content: space-between;
}
.svc-card__price {
  font-family: var(--lp-font-sans);
  font-size: .78rem; letter-spacing: .1em;
  color: var(--lp-gold);
}

/* ── svc-services — re-uses .lp-services / .lp-service-item ──── */
.svc-services { background: var(--lp-black); }

/* ── svc-why — re-uses .lp-why structure, slight layout tweak ── */
.svc-why { background: var(--lp-anthracite); }
.lp-why__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.lp-why__points { list-style: none; padding: 0; margin: 2rem 0 0; }
.lp-why__point {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid rgba(201,169,110,.1);
}
.lp-why__point:last-child { border-bottom: none; }
.lp-why__point-num {
  font-family: var(--lp-font-serif); font-size: 1.1rem; color: var(--lp-gold);
  min-width: 32px; line-height: 1.6;
}
.lp-why__point-title {
  font-family: var(--lp-font-sans); font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--lp-cream); margin-bottom: .25rem;
}
.lp-why__point-desc { font-size: .88rem; color: rgba(245,240,235,.65); line-height: 1.7; }
.lp-why__visual { position: relative; }
.lp-why__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* ── svc-guide — re-uses .lp-guide ─────────────────────────── */
.svc-guide { background: var(--lp-black); }

/* ── svc-season — re-uses .lp-season ───────────────────────── */
.svc-season { background: var(--lp-anthracite); }

/* ── svc-faq — re-uses .lp-faq ─────────────────────────────── */
.svc-faq { background: var(--lp-black); }

/* ── svc-related ─────────────────────────────────────────────── */
.svc-related { padding: 100px 20px; background: var(--lp-anthracite); }

/* Row 1 : service tiles */
.svc-related__tiles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 2rem;
}
.svc-related-tile {
  background: var(--lp-black);
  border: 1px solid rgba(201,169,110,.15);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .3s, transform .3s;
}
.svc-related-tile:hover { border-color: rgba(201,169,110,.4); transform: translateY(-3px); }
.svc-related-tile__icon { width: 32px; height: 32px; color: var(--lp-gold); }
.svc-related-tile__title {
  font-family: var(--lp-font-serif); font-size: 1.1rem; color: var(--lp-cream);
}
.svc-related-tile__desc { font-size: .86rem; color: rgba(245,240,235,.6); line-height: 1.65; flex: 1; }

/* Row 2 : destination cards — re-uses .lp-dest-grid / .lp-dest-card */
.lp-dest-card--current {
  cursor: default;
  border: 1px solid rgba(201,169,110,.5);
}
.lp-dest-card__current-label {
  font-family: var(--lp-font-sans); font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--lp-gold);
}
.lp-dest-card__link-label,
.lp-dest-card__soon-label {
  font-family: var(--lp-font-sans); font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(245,240,235,.6);
}
.lp-dest-card--soon {
  cursor: default; pointer-events: none; opacity: .55;
}
/* Cartes avec image en flux normal (svc-related.php) : la hauteur fixe
   de 260px + overflow:hidden hérités de .lp-dest-card (pensés pour le
   format image-de-fond + texte en overlay des pages Destination)
   coupent le texte qui suit l'image. On laisse la carte grandir
   librement dès qu'elle contient ce wrapper d'image. */
.lp-dest-card:has(.lp-dest-card__img-wrap) {
  height: auto;
  overflow: visible;
}
/* Cartes avec image en flux normal (svc-related.php) : la hauteur fixe
   de 260px + overflow:hidden hérités de .lp-dest-card (pensés pour le
   format image-de-fond + texte en overlay des pages Destination)
   coupent le texte qui suit l'image. On laisse la carte grandir
   librement dès qu'elle contient ce wrapper d'image. */
.lp-dest-card:has(.lp-dest-card__img-wrap) {
  height: auto;
  overflow: visible;
}
.lp-dest-card__img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.lp-dest-card__img { width: 100%; height: 100%; object-fit: cover; }
.lp-dest-card__body { padding: 16px; }
.lp-dest-card__name {
  font-family: var(--lp-font-serif); font-size: 1rem; color: var(--lp-cream);
  margin-bottom: 4px;
}
/* Re-export lp-dest-grid if not already declared */
.lp-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

/* ── svc-cta — re-uses .lp-cta ─────────────────────────────── */
.svc-cta { background: var(--lp-black); }
.lp-cta { padding: 120px 20px; }
.lp-cta__inner { text-align: center; max-width: 680px; margin: 0 auto; }
.lp-cta__title {
  font-family: var(--lp-font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--lp-cream); margin-bottom: 1rem; line-height: 1.2;
}
.lp-cta__subtitle { font-size: 1rem; color: rgba(245,240,235,.65); margin-bottom: 2.5rem; }
.lp-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ════════════════════════════════════════════════════════════════
   EXPERIENCE LP — sections exclusives (.exp-*)
   ════════════════════════════════════════════════════════════════ */

/* ── exp-programme : timeline verticale ─────────────────────── */
.exp-programme { padding: 100px 20px; background: var(--lp-black); }

.exp-timeline {
  list-style: none; padding: 0; margin: 3rem 0 0;
  position: relative;
}
/* vertical gold line */
.exp-timeline::before {
  content: ''; position: absolute;
  left: 12px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%, var(--lp-gold) 10%, var(--lp-gold) 90%, transparent 100%);
}

.exp-milestone {
  display: grid;
  grid-template-columns: 24px 120px 1fr;
  gap: 0 28px;
  padding-bottom: 56px;
  position: relative;
  align-items: start;
}
.exp-milestone:last-child { padding-bottom: 0; }

/* dot on the timeline */
.exp-milestone__dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--lp-gold);
  background: var(--lp-black);
  margin-top: 4px;
  position: relative; z-index: 1;
  transition: box-shadow .3s;
}
.exp-milestone:hover .exp-milestone__dot,
.exp-milestone--featured .exp-milestone__dot {
  background: var(--lp-gold);
  box-shadow: 0 0 16px rgba(201,169,110,.6);
}
.exp-milestone--featured .exp-milestone__dot {
  width: 18px; height: 18px;
  margin-top: 1px; margin-left: -3px;
  box-shadow: 0 0 24px rgba(201,169,110,.8);
}

/* meta column (day + label) */
.exp-milestone__meta { display: flex; flex-direction: column; gap: 4px; }
.exp-milestone__day {
  font-family: var(--lp-font-sans);
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--lp-gold);
}
.exp-milestone__label {
  font-family: var(--lp-font-sans);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245,240,235,.45);
}

/* content column */
.exp-milestone__title {
  font-family: var(--lp-font-serif); font-size: 1.15rem;
  color: var(--lp-cream); margin-bottom: .5rem; line-height: 1.3;
}
.exp-milestone--featured .exp-milestone__title { color: var(--lp-gold); font-size: 1.3rem; }
.exp-milestone__body { font-size: .88rem; color: rgba(245,240,235,.65); line-height: 1.75; }

/* ── exp-inclusions : 2-col checklist ───────────────────────── */
.exp-inclusions { padding: 100px 20px; background: var(--lp-anthracite); }
.exp-inclusions__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.exp-inclusions__list {
  list-style: none; padding: 0; margin: 2rem 0 0;
}
.exp-inclusions__item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid rgba(201,169,110,.1);
}
.exp-inclusions__item:last-child { border-bottom: none; }
.exp-inclusions__check {
  flex-shrink: 0; width: 20px; height: 20px;
  border: 1px solid var(--lp-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-gold); margin-top: 1px;
}
.exp-inclusions__check svg { width: 10px; height: 10px; }
.exp-inclusions__item-body { display: flex; flex-direction: column; gap: 2px; }
.exp-inclusions__item-title {
  font-family: var(--lp-font-sans); font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--lp-cream);
}
.exp-inclusions__item-desc { font-size: .82rem; color: rgba(245,240,235,.55); line-height: 1.6; }

.exp-inclusions__visual { position: relative; }
.exp-inclusions__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.exp-inclusions__img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: rgba(201,169,110,.05);
  border: 1px solid rgba(201,169,110,.15);
  display: flex; align-items: center; justify-content: center;
}
.exp-inclusions__img-placeholder svg { width: 64px; height: 64px; }


/* ════════════════════════════════════════════════════════════════
   Responsive additions (svc-* / exp-*)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .svc-featured__grid { grid-template-columns: 1fr 1fr; }
  .lp-why__layout { grid-template-columns: 1fr; gap: 48px; }
  .exp-inclusions__layout { grid-template-columns: 1fr; gap: 48px; }
  .exp-inclusions__visual { display: none; }
  .lp-dest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .svc-related__tiles { grid-template-columns: 1fr; }
  .svc-featured__grid { grid-template-columns: 1fr; }
  .exp-milestone { grid-template-columns: 24px 1fr; gap: 0 20px; }
  .exp-milestone__meta { grid-column: 2; grid-row: 1; }
  .exp-milestone__content { grid-column: 2; grid-row: 2; }
}

@media (max-width: 540px) {
  .svc-featured, .svc-related, .exp-programme, .exp-inclusions { padding: 72px 20px; }
  .lp-dest-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .exp-timeline::before { left: 8px; }
  .exp-milestone { grid-template-columns: 18px 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   CLASSES UTILITAIRES .lp-* PARTAGÉES PAR LES TEMPLATES SERVICE /
   EXPERIENCE LP (svc-*, exp-*) — absentes jusqu'ici, d'où les
   sections "texte brut" (stats, FAQ) et les boutons au style défaut.
   ════════════════════════════════════════════════════════════════ */

/* ── Boutons : variantes primary / ghost / tailles (alignées Cannes) ── */
.lp-btn--primary {
  background: var(--lp-cream); color: var(--lp-black);
  border: 1px solid var(--lp-cream);
}
.lp-btn--primary:hover { background: var(--lp-white); border-color: var(--lp-white); transform: translateY(-2px); }
.lp-btn--ghost {
  background: transparent; color: var(--lp-cream);
  border: 1px solid rgba(245,240,235,.45);
}
.lp-btn--ghost:hover { background: var(--lp-cream); border-color: var(--lp-cream); color: var(--lp-black); }
.lp-btn--lg { padding: 18px 44px; font-size: .75rem; }
.lp-btn--sm { padding: 11px 26px; font-size: .66rem; }

/* ── Conteneur interne des sections svc/exp ── */
.lp-container { max-width: 1200px; margin: 0 auto; width: 100%; }

/* ── Eyebrow diamants ✦ ── */
.lp-eyebrow__diamond { color: var(--lp-gold); margin: 0 8px; font-size: .8em; opacity: .85; }

/* ── En-têtes de section ── */
.lp-section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.lp-section-header--left { text-align: left; margin-left: 0; margin-right: 0; max-width: 560px; }
.lp-section-header__title {
  font-family: var(--lp-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400; line-height: 1.15; color: var(--lp-white);
}
.lp-section-header__subtitle {
  margin-top: 18px; font-size: .92rem; font-weight: 300;
  line-height: 1.7; color: var(--lp-light-grey);
}

/* ── Intro : paragraphes (div.lp-intro__p au lieu de <p>) ── */
.lp-intro__p { font-size: .93rem; line-height: 1.85; color: var(--lp-text); margin-bottom: 20px; font-weight: 300; }
.lp-intro__p:last-child { margin-bottom: 0; }
.lp-intro__p--lead { font-size: 1.06rem; color: var(--lp-white); }
.lp-intro__p a { color: var(--lp-gold); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,.4); }

/* ── Stat cards (parent .lp-intro__stats déjà en grid 2col) ── */
.lp-stat-card { background: var(--lp-anthracite); padding: 34px 24px; text-align: center; transition: background var(--lp-ease); }
.lp-stat-card:hover { background: var(--lp-elev); }
.lp-stat-card__number { display: block; font-family: var(--lp-serif); font-size: 2.3rem; font-weight: 400; color: var(--lp-gold); line-height: 1; margin-bottom: 8px; }
.lp-stat-card__label { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--lp-light-grey); line-height: 1.4; }

/* ── FAQ accordéon (button + chevron SVG borné) ── */
.lp-faq__list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--lp-line); }
.lp-faq__item { border-bottom: 1px solid var(--lp-line); }
.lp-faq__question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 24px; background: none; border: none; cursor: pointer; padding: 26px 4px;
  text-align: left; font-family: var(--lp-serif); font-size: 1.12rem; font-weight: 400;
  color: var(--lp-white); transition: color var(--lp-ease);
}
.lp-faq__question:hover { color: var(--lp-gold); }
.lp-faq__chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--lp-gold); transition: transform var(--lp-ease); }
.lp-faq__chevron svg { width: 20px; height: 20px; display: block; }
.lp-faq__question[aria-expanded="true"] .lp-faq__chevron { transform: rotate(180deg); }
.lp-faq__answer { padding: 4px 4px 28px; font-size: .9rem; line-height: 1.8; font-weight: 300; color: var(--lp-text); max-width: 70ch; }
.lp-faq__answer[hidden] { display: none; }
.lp-faq__answer a { color: var(--lp-gold); text-decoration: none; }

/* ── Guide : blocs (parent .lp-guide__grid déjà en grid 2col) ── */
.lp-guide__block { position: relative; }
.lp-guide__num { display: block; font-family: var(--lp-serif); font-size: 1rem; color: var(--lp-gold); margin-bottom: 14px; letter-spacing: .1em; }
.lp-guide__label { font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--lp-gold); margin-bottom: 10px; }
.lp-guide__block-title { font-family: var(--lp-serif); font-size: 1.3rem; font-weight: 400; color: var(--lp-white); margin-bottom: 14px; line-height: 1.3; }
.lp-guide__content { font-size: .88rem; font-weight: 300; line-height: 1.85; color: var(--lp-text); }
.lp-guide__content p + p { margin-top: 12px; }
.lp-guide__content a { color: var(--lp-gold); text-decoration: none; }

/* ── Season : cartes (parent .lp-season__grid déjà en grid 3col) ── */
.lp-season__card { background: var(--lp-black); padding: 44px 36px; transition: background var(--lp-ease); }
.lp-season__card:hover { background: var(--lp-elev); }
.lp-season__period { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--lp-gold); margin-bottom: 14px; }
.lp-season__name { font-family: var(--lp-serif); font-size: 1.2rem; font-weight: 400; color: var(--lp-white); margin-bottom: 16px; }
.lp-season__body { font-size: .85rem; font-weight: 300; color: var(--lp-light-grey); line-height: 1.75; }

/* ── Why : colonne contenu (évite l'écrasement du grid) ── */
.lp-why__content { min-width: 0; }
