/* ==========================================================================
   Moments Heureux — feuille de style globale
   Agence de voyage · Marseille — design clair premium (Bootstrap 5.3 + AOS)
   NB : on reste "library-first" : ici uniquement l'identité, les décorations
   et les layouts complexes. Tout le reste passe par les utilitaires Bootstrap.
   TODO : prévoir une variante sombre si la direction valide (voir maquette v3)
   ========================================================================== */
html,body{overflow-x: hidden;}
/* --------------------------------------------------------------------------
   1. Variables & thème Bootstrap (ni noir, ni blanc : ivoire / teal / terracotta)
   -------------------------------------------------------------------------- */
:root {
  --mh-bg: #FBF7F0;            /* fond ivoire */
  --mh-bg-soft: #F3EBDC;       /* sable clair */
  --mh-card: #FFFFFF;
  --mh-ink: #26333A;           /* texte principal (ardoise, pas noir) */
  --mh-muted: #67767D;
  --mh-teal: #0E5A61;          /* bleu-pétrole méditerranéen */
  --mh-teal-deep: #093F44;
  --mh-teal-soft: #E1EEEC;
  --mh-terra: #C9663B;         /* terracotta provençale */
  --mh-terra-deep: #A94F2B;
  --mh-terra-soft: #F8E7DC;
  --mh-gold: #D9A441;
  --mh-line: #E9DFCC;
  --mh-radius: 1.25rem;
  --mh-shadow: 0 18px 45px -18px rgba(38, 51, 58, .25);
  --mh-shadow-sm: 0 10px 28px -14px rgba(38, 51, 58, .22);
  --mh-font-display: "Fraunces", Georgia, serif;
  --mh-font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

[data-bs-theme="light"] {
  --bs-body-bg: var(--mh-bg);
  --bs-body-color: var(--mh-ink);
  --bs-body-font-family: var(--mh-font-body);
  --bs-primary: var(--mh-teal);
  --bs-primary-rgb: 14, 90, 97;
  --bs-secondary: #5B6B72;
  --bs-secondary-rgb: 91, 107, 114;
  --bs-link-color: var(--mh-teal);
  --bs-link-color-rgb: 14, 90, 97;
  --bs-link-hover-color: var(--mh-terra);
  --bs-link-hover-color-rgb: 201, 102, 59;
  --bs-border-color: var(--mh-line);
  --bs-heading-color: var(--mh-ink);
}

::selection { background: var(--mh-terra); color: #fff; }

body {
  font-family: var(--mh-font-body);
  background:
    radial-gradient(60rem 30rem at 110% -10%, rgba(217, 164, 65, .10), transparent 60%),
    radial-gradient(50rem 28rem at -15% 8%, rgba(14, 90, 97, .08), transparent 55%),
    var(--mh-bg);
  color: var(--mh-ink);
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   2. Typographie
   -------------------------------------------------------------------------- */
h1, h2, h3, .mh-display {
  font-family: var(--mh-font-display);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--mh-ink);
}

.mh-display-xl { font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.05; }
.mh-display-lg { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.12; }

/* Mot souligné à la main (décoration typographique, sans SVG) */
.mh-underline {
  background-image: linear-gradient(transparent 62%, rgba(201, 102, 59, .35) 62%);
  background-repeat: no-repeat;
}

.mh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mh-teal);
  background: var(--mh-teal-soft);
  border: 1px solid rgba(14, 90, 97, .18);
  padding: .45rem 1rem;
  border-radius: 999px;
}
.mh-eyebrow--terra { color: var(--mh-terra); background: var(--mh-terra-soft); border-color: rgba(201, 102, 59, .22); }
.mh-eyebrow--light { color: #fff; background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .28); }

.mh-lead { color: var(--mh-muted); font-size: 1.08rem; line-height: 1.75; }

/* --------------------------------------------------------------------------
   3. Boutons (surcharge des variables Bootstrap, pas de CSS superflu)
   -------------------------------------------------------------------------- */
.btn { --bs-btn-font-weight: 700; --bs-btn-border-radius: 999px; }

.btn-primary {
  --bs-btn-bg: var(--mh-teal);
  --bs-btn-border-color: var(--mh-teal);
  --bs-btn-hover-bg: var(--mh-teal-deep);
  --bs-btn-hover-border-color: var(--mh-teal-deep);
  --bs-btn-active-bg: var(--mh-teal-deep);
  --bs-btn-active-border-color: var(--mh-teal-deep);
  --bs-btn-disabled-bg: var(--mh-teal);
  --bs-btn-disabled-border-color: var(--mh-teal);
}

.btn-terra {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--mh-terra);
  --bs-btn-border-color: var(--mh-terra);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #A94F2B;
  --bs-btn-hover-border-color: #A94F2B;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #A94F2B;
  --bs-btn-active-border-color: #A94F2B;
}

.btn-outline-teal {
  --bs-btn-color: var(--mh-teal);
  --bs-btn-border-color: rgba(14, 90, 97, .45);
  --bs-btn-hover-bg: var(--mh-teal);
  --bs-btn-hover-border-color: var(--mh-teal);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--mh-teal-deep);
  --bs-btn-active-border-color: var(--mh-teal-deep);
  --bs-btn-active-color: #fff;
}

.btn-light-glass {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, .55);
  --bs-btn-hover-color: var(--mh-ink);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
}

.btn-lg { --bs-btn-padding-x: 1.6rem; }

/* --------------------------------------------------------------------------
   4. Décorations réutilisables (100 % CSS, zéro SVG)
   -------------------------------------------------------------------------- */
/* Trame de points */
.mh-dots {
  background-image: radial-gradient(rgba(14, 90, 97, .22) 1.6px, transparent 1.6px);
  background-size: 17px 17px;
}
.mh-dots--light {
  background-image: radial-gradient(rgba(255, 255, 255, .35) 1.6px, transparent 1.6px);
}

/* Blob flou décoratif */
.mh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(58px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.mh-blob--teal { background: rgba(14, 90, 97, .22); }
.mh-blob--terra { background: rgba(201, 102, 59, .22); }
.mh-blob--gold { background: rgba(217, 164, 65, .22); }

/* Anneau décoratif */
.mh-ring {
  position: absolute;
  border: 2px dashed rgba(14, 90, 97, .30);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Pastille icône ronde */
.mh-icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  font-size: 1.15rem;
  color: var(--mh-teal);
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: 50%;
  box-shadow: var(--mh-shadow-sm);
  flex: 0 0 auto;
}
.mh-icon-bubble--terra { color: var(--mh-terra); background: var(--mh-terra-soft); border-color: rgba(201, 102, 59, .25); }
.mh-icon-bubble--gold { color: #8a6114; background: #FBF0DA; border-color: rgba(217, 164, 65, .35); }

/* Carte de base */
.mh-card {
  background: var(--mh-card);
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius);
  box-shadow: var(--mh-shadow-sm);
}

/* Chip / badge pill */
.mh-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: var(--mh-teal-soft, #E1EEEC);
  color: var(--mh-teal-deep);
}
.mh-chip--terra { background: var(--mh-terra-soft); color: var(--mh-terra); }
.mh-chip--dark { background: rgba(255, 255, 255, .16); color: #fff; border: 1px solid rgba(255, 255, 255, .3); }

/* Badge 18+ */
.mh-badge-18 {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: #fff;
  background: var(--mh-terra);
  border-radius: 999px;
  padding: .45rem 1.05rem;
  font-size: .82rem;
  box-shadow: var(--mh-shadow-sm);
}

/* Séparateur ondulé simple en dégradé (pas d'image) */
.mh-wave-line {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mh-teal), var(--mh-gold), var(--mh-terra), transparent);
  opacity: .55;
}

/* --------------------------------------------------------------------------
   5. Header : barre de contacts + navigation
   -------------------------------------------------------------------------- */
.mh-topbar {
  background: var(--mh-teal-deep);
  color: rgba(255, 255, 255, .92);
  font-size: .84rem;
  padding: .5rem 0;
}
.mh-topbar a { color: rgba(255, 255, 255, .92); text-decoration: none; font-weight: 600; }
.mh-topbar a:hover { color: var(--mh-gold); }
.mh-topbar i { color: var(--mh-gold); }
.mh-topbar__item { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }

.mh-offcanvas__contact-item {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .95rem;
  font-weight: 600;
  color: var(--mh-ink);
  text-decoration: none;
}
.mh-offcanvas__contact-item i { color: var(--mh-terra); margin-top: .2rem; width: 1.1rem; text-align: center; }

.mh-nav {
  background: rgba(251, 247, 240, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mh-line);
  transition: box-shadow .25s ease, padding .25s ease;
}
.mh-nav.is-scrolled { box-shadow: var(--mh-shadow-sm); }

.mh-brand { display: inline-flex; align-items: center; gap: .7rem; }
.mh-brand__logo {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--mh-line);
  padding: 4px;
}
.mh-brand__text {
  font-family: var(--mh-font-display);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1;
  color: var(--mh-ink);
}
.mh-brand__text span { color: var(--mh-terra); font-style: italic; }
.mh-brand__tagline {
  display: block;
  font-family: var(--mh-font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mh-muted);
  margin-top: .2rem;
}

.mh-nav .nav-link {
  font-weight: 600;
  font-size: .95rem;
  color: var(--mh-ink);
  padding: .55rem .85rem;
  border-radius: 999px;
}
.mh-nav .nav-link:hover { color: var(--mh-terra); }
.mh-nav .nav-link.active { color: var(--mh-teal); background: var(--mh-teal-soft); }

.mh-burger {
  border: 1px solid var(--mh-line);
  border-radius: 12px;
  padding: .5rem .75rem;
  color: var(--mh-teal);
  background: #fff;
  font-size: 1.15rem;
}
.mh-burger:focus { box-shadow: 0 0 0 3px rgba(14, 90, 97, .2); }

/* Offcanvas mobile */
.mh-offcanvas { background: var(--mh-bg); width: 21rem; }
.mh-offcanvas .nav-link {
  font-family: var(--mh-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--mh-ink);
  padding: .65rem 0;
  border-bottom: 1px dashed var(--mh-line);
}
.mh-offcanvas .nav-link.active { color: var(--mh-terra); }
.mh-offcanvas__contact a { color: var(--mh-teal); font-weight: 600; text-decoration: none; }
.mh-offcanvas__contact-item { display: flex; gap: .8rem; align-items: flex-start; font-size: .95rem; }
.mh-offcanvas__contact-item i { color: var(--mh-terra); margin-top: .25rem; }

/* --------------------------------------------------------------------------
   6. Hero + pile de photos
   -------------------------------------------------------------------------- */
.mh-hero { position: relative; padding: 4.5rem 0 5.5rem; }
.mh-hero__stat {
  display: flex;
  flex-direction: column;
  padding: .35rem 1.4rem;
  border-left: 3px solid var(--mh-terra);
}
.mh-hero__stat-num { font-family: var(--mh-font-display); font-size: 1.7rem; font-weight: 700; line-height: 1.1; }
.mh-hero__stat-label { font-size: .82rem; color: var(--mh-muted); font-weight: 600; }

.mh-photo-stack { position: relative; }
.mh-photo-stack img {
  border-radius: var(--mh-radius);
  border: 6px solid #fff;
  box-shadow: var(--mh-shadow);
  object-fit: cover;
  background: var(--mh-bg-soft);
}
.mh-photo-stack__main { width: 78%; aspect-ratio: 4 / 4.6; }
.mh-photo-stack__second {
  position: absolute;
  right: 0; bottom: -2.2rem;
  width: 46%;
  aspect-ratio: 1;
  transform: rotate(4deg);
}
.mh-photo-stack__badge {
  position: absolute;
  left: -1rem; bottom: 3.4rem;
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: 1rem;
  box-shadow: var(--mh-shadow);
  padding: .9rem 1.1rem;
  max-width: 15rem;
  transform: rotate(-2deg);
}

/* --------------------------------------------------------------------------
   7. Bandeau de confiance / sections génériques
   -------------------------------------------------------------------------- */
.mh-strip { border-block: 1px solid var(--mh-line); background: rgba(255, 255, 255, .6); }
.mh-strip__item { display: flex; align-items: center; gap: .9rem; padding: 1.1rem .5rem; }
.mh-strip__item i { font-size: 1.35rem; color: var(--mh-terra); }
.mh-strip__title { font-weight: 800; font-size: .95rem; }
.mh-strip__text { font-size: .82rem; color: var(--mh-muted); }

/* En-tête de section réutilisable */
.mh-section { padding: 5rem 0; }
.mh-section-head { max-width: 46rem; }

/* --------------------------------------------------------------------------
   8. Cartes voyages / destinations
   -------------------------------------------------------------------------- */
.mh-trip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius);
  overflow: hidden;
  box-shadow: var(--mh-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mh-trip-card:hover { transform: translateY(-6px); box-shadow: var(--mh-shadow); }
.mh-trip-card__media { position: relative; aspect-ratio: 16 / 10; background: var(--mh-bg-soft); }
.mh-trip-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mh-trip-card__price {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(9, 63, 68, .92);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  padding: .4rem .9rem;
  border-radius: 999px;
}
.mh-trip-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.mh-trip-card__title { font-size: 1.25rem; margin: 0; }
.mh-trip-card__meta { display: flex; flex-wrap: wrap; gap: .45rem; }
.mh-trip-card__text { color: var(--mh-muted); font-size: .95rem; }
.mh-trip-card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; font-size: .9rem; color: var(--mh-ink); }
.mh-trip-card__list i { color: var(--mh-gold); width: 1.2rem; }

/* Variante horizontale des cartes voyages (desktop uniquement) */
@media (min-width: 992px) {
  .mh-trip-card--row { flex-direction: row; }
  .mh-trip-card--row .mh-trip-card__media { width: 42%; aspect-ratio: auto; min-height: 16rem; }
  .mh-trip-card--row .mh-trip-card__body { width: 58%; }
}

/* Cartes teaser de la section casino (accueil) */
.mh-teaser-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border-radius: var(--mh-radius);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}
.mh-teaser-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .16); }
.mh-teaser-card i { font-size: 1.5rem; color: var(--mh-gold); margin-bottom: .8rem; }

/* Sections à fond image : recadrage + rayon haut/bas */
.mh-casino-teaser, .mh-cta-final {
  background-size: cover;
  background-position: center;
}

/* Héros des pages internes (fond image + overlay inline obligatoire) */
.mh-page-hero {
  min-height: 46vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.mh-breadcrumb { --bs-breadcrumb-divider-color: rgba(255, 255, 255, .5); font-size: .88rem; font-weight: 600; }
.mh-breadcrumb a { color: rgba(255, 255, 255, .85); }

/* Cartes « expériences » (page destinations) */
.mh-exp-card {
  position: relative;
  height: 100%;
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius);
  overflow: hidden;
  box-shadow: var(--mh-shadow-sm);
}
.mh-exp-card__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; background: var(--mh-bg-soft); }
.mh-exp-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; }
.mh-exp-card--offset { transform: rotate(1.2deg); }
.mh-exp-card--offset:hover { transform: rotate(0deg); }

/* Variante sombre de la carte surface (sections à fond image) */
.mh-surface-dark {
  background: rgba(9, 63, 68, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--mh-radius);
  backdrop-filter: blur(6px);
}

/* Liste à puces dorées (encarts 18+, avantages) */
.mh-check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.mh-check-list li { position: relative; padding-left: 1.9rem; color: rgba(255, 255, 255, .88); font-size: .95rem; }
.mh-check-list i { position: absolute; left: 0; top: .15rem; color: var(--mh-gold); }

/* --------------------------------------------------------------------------
   9. Étapes / process
   -------------------------------------------------------------------------- */
.mh-step { position: relative; height: 100%; }
.mh-step__num {
  width: 3.4rem; height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mh-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--mh-teal), var(--mh-teal-deep));
  border-radius: 50%;
  box-shadow: var(--mh-shadow-sm);
}
.mh-step--terra .mh-step__num { background: linear-gradient(135deg, var(--mh-terra), #A94F2B); }
.mh-step--gold .mh-step__num { background: linear-gradient(135deg, var(--mh-gold), #B8842B); }
.mh-steps-line {
  position: absolute;
  top: 1.7rem; left: 8%;
  width: 84%;
  border-top: 2px dashed rgba(14, 90, 97, .3);
  z-index: 0;
}

/* --------------------------------------------------------------------------
   10. Section à fond image (overlay via style inline obligatoire)
   -------------------------------------------------------------------------- */
.mh-bg-section {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
.mh-bg-card {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px);
  border-radius: var(--mh-radius);
}

/* --------------------------------------------------------------------------
   11. Chiffres / stats
   -------------------------------------------------------------------------- */
.mh-stat { text-align: center; padding: 1.5rem 1rem; }
.mh-stat__num {
  font-family: var(--mh-font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--mh-teal);
  line-height: 1;
}
.mh-stat__label { color: var(--mh-muted); font-weight: 600; font-size: .92rem; margin-top: .4rem; }

/* --------------------------------------------------------------------------
   12. Témoignages
   -------------------------------------------------------------------------- */
.mh-quote {
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius);
  padding: 1.6rem;
  height: 100%;
  box-shadow: var(--mh-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mh-quote__stars { color: var(--mh-gold); font-size: .85rem; letter-spacing: .1em; }
.mh-quote__text { font-size: .98rem; color: var(--mh-ink); flex: 1; }
.mh-quote__author { display: flex; align-items: center; gap: .8rem; }
.mh-quote__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--mh-terra-soft);
  background: var(--mh-bg-soft);
}
.mh-quote__name { font-weight: 800; font-size: .95rem; }
.mh-quote__meta { font-size: .8rem; color: var(--mh-muted); }

/* --------------------------------------------------------------------------
   13. FAQ (accordéon Bootstrap restylé)
   -------------------------------------------------------------------------- */
.mh-faq .accordion-item {
  border: 1px solid var(--mh-line);
  border-radius: 1rem !important;
  margin-bottom: .8rem;
  overflow: hidden;
  background: #fff;
}
.mh-faq .accordion-button {
  font-family: var(--mh-font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--mh-ink);
  background: #fff;
  padding: 1.1rem 1.3rem;
}
.mh-faq .accordion-button:not(.collapsed) {
  background: var(--mh-teal-soft, #E1EEEC);
  color: var(--mh-teal-deep);
  box-shadow: none;
}
.mh-faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(14, 90, 97, .18); }
.mh-faq .accordion-body { color: var(--mh-muted); font-size: .95rem; line-height: 1.65; }

/* --------------------------------------------------------------------------
   14. CTA final
   -------------------------------------------------------------------------- */
.mh-cta-contact {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  padding: .55rem 1.2rem;
  font-size: .92rem;
}
.mh-cta-contact i { color: var(--mh-gold); }

/* --------------------------------------------------------------------------
   15. À propos : équipe, portfolio, frise
   -------------------------------------------------------------------------- */
.mh-team-card {
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius);
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mh-team-card:hover { transform: translateY(-6px); box-shadow: var(--mh-shadow); }
.mh-team-card__photo { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; display: block; background: var(--mh-bg-soft); }
.mh-team-card__body { padding: 1.1rem 1.2rem 1.3rem; }

.mh-folio-card {
  position: relative;
  border-radius: var(--mh-radius);
  overflow: hidden;
  background: var(--mh-bg-soft);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--mh-line);
}
.mh-folio-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.mh-folio-card:hover img { transform: scale(1.05); }
.mh-folio-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(transparent, rgba(9, 63, 68, .88));
  color: #fff;
}

.mh-timeline { position: relative; padding-left: 2rem; border-left: 2px dashed rgba(14, 90, 97, .35); }
.mh-timeline__item { position: relative; padding-bottom: 1.8rem; }
.mh-timeline__item::before {
  content: "";
  position: absolute;
  left: -2.72rem;
  top: .35rem;
  width: 1rem; height: 1rem;
  border-radius: 50%;
  background: var(--mh-terra);
  border: 3px solid var(--mh-bg);
  box-shadow: 0 0 0 2px rgba(201, 102, 59, .4);
}
.mh-timeline__year { font-family: var(--mh-font-display); font-weight: 700; color: var(--mh-terra); }

/* --------------------------------------------------------------------------
   16. Avertissement 18+ / jeu responsable
   -------------------------------------------------------------------------- */
.mh-disclaimer {
  background: #fff;
  border: 1px solid var(--mh-line);
  border-left: 6px solid var(--mh-terra);
  border-radius: var(--mh-radius);
  box-shadow: var(--mh-shadow-sm);
}
.mh-disclaimer__warning {
  background: var(--mh-terra-soft);
  border: 1px solid rgba(201, 102, 59, .35);
  border-radius: 1rem;
}
.mh-disclaimer ul { padding-left: 1.2rem; }
.mh-disclaimer li { margin-bottom: .45rem; color: var(--mh-muted); }
.mh-disclaimer a { color: var(--mh-teal); font-weight: 700; }

/* Variante sombre de la liste à puces (sur fond clair) */
.mh-check-list--dark li { color: var(--mh-muted); }

/* --------------------------------------------------------------------------
   17. Contacts
   -------------------------------------------------------------------------- */
.mh-contact-card {
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: var(--mh-radius);
  box-shadow: var(--mh-shadow-sm);
}

/* Pages légales : sommaire collant + blocs de contenu */
.mh-legal-nav {
  position: sticky;
  top: 6.5rem;
}
.mh-legal-nav .list-group-item {
  border: 0;
  border-left: 3px solid transparent;
  border-radius: .6rem !important;
  font-size: .93rem;
  font-weight: 600;
  color: var(--mh-muted);
  padding: .55rem .9rem;
}
.mh-legal-nav .list-group-item-action:hover { background: var(--mh-teal-soft); color: var(--mh-teal-deep); }
.mh-legal-body h2 { scroll-margin-top: 6rem; }
.mh-legal-body h3 { font-size: 1.05rem; font-weight: 700; margin-top: 1.4rem; }
.mh-legal-body p, .mh-legal-body li { color: var(--mh-muted); line-height: 1.75; }
.mh-legal-body ul { padding-left: 1.3rem; }
.mh-legal-body li { margin-bottom: .5rem; }
.mh-map-frame {
  border-radius: var(--mh-radius);
  border: 1px solid var(--mh-line);
  box-shadow: var(--mh-shadow-sm);
  width: 100%;
  height: 100%;
  min-height: 22rem;
  filter: saturate(.9);
}

/* Formulaire : focus cohérent avec la charte */
.form-control, .form-select {
  border-radius: .8rem;
  border-color: var(--mh-line);
  padding: .72rem 1rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--mh-teal);
  box-shadow: 0 0 0 .2rem rgba(14, 90, 97, .15);
}
.form-label { font-weight: 700; font-size: .9rem; }

/* --------------------------------------------------------------------------
   18. Notifications (toast maison — jamais d'alert())
   -------------------------------------------------------------------------- */
.mh-toast-zone {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-width: min(24rem, calc(100vw - 2rem));
}
.mh-toast {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--mh-line);
  border-left: 5px solid var(--mh-teal);
  border-radius: 1rem;
  box-shadow: var(--mh-shadow);
  padding: 1rem 1.2rem;
  animation: mh-toast-in .3s ease;
}
.mh-toast--terra { border-left-color: var(--mh-terra); }
.mh-toast i { font-size: 1.25rem; color: var(--mh-teal); margin-top: .1rem; }
.mh-toast--terra i { color: var(--mh-terra); }
.mh-toast__title { font-weight: 800; font-size: .95rem; }
.mh-toast__text { font-size: .88rem; color: var(--mh-muted); margin: 0; }
.mh-toast__close {
  border: 0; background: none;
  color: var(--mh-muted);
  padding: 0 .2rem;
  line-height: 1;
}
@keyframes mh-toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.mh-toast { animation: mh-toast-in .3s ease; }

/* --------------------------------------------------------------------------
   19. Bandeau cookies (uniquement sur la page d'accueil, injecté en JS)
   -------------------------------------------------------------------------- */
.mh-cookies {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 1080;
  margin-inline: auto;
  max-width: 46rem;
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: 1.25rem;
  box-shadow: var(--mh-shadow);
  padding: 1.25rem 1.4rem;
}
.mh-cookies__text { font-size: .9rem; color: var(--mh-muted); margin: 0; }
.mh-cookies a { color: var(--mh-teal); font-weight: 700; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.mh-footer {
  background:
    radial-gradient(40rem 20rem at 90% 0%, rgba(217, 164, 65, .12), transparent 55%),
    var(--mh-teal-deep);
  color: rgba(255, 255, 255, .85);
  padding: 4rem 0 0;
}
.mh-footer h5, .mh-footer h6 {
  color: var(--mh-gold);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 1.1rem;
}
.mh-footer a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.mh-footer a:hover { color: var(--mh-gold); }
.mh-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.mh-footer__links a { text-decoration: none; font-size: .95rem; }
.mh-footer__contact { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .9rem; font-size: .95rem; }
.mh-footer__contact i { color: var(--mh-gold); margin-top: .25rem; width: 1.1rem; text-align: center; }
.mh-footer__contact a { color: rgba(255, 255, 255, .85); text-decoration: none; font-weight: 600; }
.mh-footer__contact a:hover { color: var(--mh-gold); }
.mh-footer__legal-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .9rem;
  margin-left: 1.1rem;
}
.mh-footer__legal-links a:hover { color: var(--mh-gold); }
.mh-footer__contact i { color: var(--mh-gold); margin-top: .25rem; }
.mh-footer__contact a { color: rgba(255, 255, 255, .92); text-decoration: none; font-weight: 600; }
.mh-footer__contact a:hover { color: var(--mh-gold); }
.mh-footer__legal { font-size: .84rem; color: rgba(255, 255, 255, .66); line-height: 1.7; }
.mh-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .86rem;
}
.mh-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  text-decoration: none;
  transition: all .2s ease;
}
.mh-footer__social:hover { background: var(--mh-terra); border-color: var(--mh-terra); color: #fff; }

/* --------------------------------------------------------------------------
   21. Petites classes utilitaires maison (complètent Bootstrap)
   -------------------------------------------------------------------------- */
.mh-text-muted { color: var(--mh-muted) !important; }
.mh-surface { background: rgba(255, 255, 255, .65); border: 1px solid var(--mh-line); border-radius: var(--mh-radius); }
.mh-section-alt { background: linear-gradient(180deg, rgba(243, 235, 220, .55), rgba(243, 235, 220, .15)); }
.mh-img-cover { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--mh-bg-soft); }
.mh-rounded { border-radius: var(--mh-radius); }
.mh-ls-wide { letter-spacing: .12em; }

/* Modale : cohérence visuelle */
.modal-content { border-radius: var(--mh-radius); border: 1px solid var(--mh-line); }
.modal-header { border-bottom: 1px dashed var(--mh-line); }
.modal-footer { border-top: 0; }

/* Accordion : flèche alignée, bordures douces */
.mh-faq .accordion-button:not(.collapsed) { box-shadow: none; }

/* Offcanvas : ombre douce */
.mh-offcanvas { box-shadow: var(--mh-shadow); }

/* --------------------------------------------------------------------------
   22. Responsive
   FIXME : vérifier la pile de photos sur petits écrans iPhone SE
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .mh-hero { padding: 3rem 0 4.5rem; }
  .mh-section { padding: 3.5rem 0; }
  .mh-steps-line { display: none; }
}

@media (max-width: 575.98px) {
  .mh-display-xl { font-size: 2.1rem; }
  .mh-hero__stat { padding: .3rem .9rem; }
}
