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

/**
 * MB Fabrication Editor - Frontend CSS v4.4.0
 * ✓ Bloc header natif par colonne (eyebrow + titre + description indépendants)
 * ✓ Réutilise .mb3-eyebrow, .mb3-h2, .mb3-title-wrap, etc. existants
 * ✓ Séparation complète eyebrow/titre
 * ✓ Alignement CTA flexible
 */

/* ============================================================
   RESET + Storefront neutralization
   ============================================================ */

html body.mb3-template .mb3,
html body .mb3 {
    all: initial;
    box-sizing: border-box;
}

html body .mb3 * {
    box-sizing: border-box;
}

html body .mb3 *::before,
html body .mb3 *::after {
    box-sizing: border-box;
}

/* Storefront : .col-full a 32px de padding de chaque côté.
   On sort .mb3 de ce padding pour que toutes les sections atteignent les bords du viewport.
   Le mb3-wrap intérieur (padding: 0 40px, full-width) assure la respiration du contenu. */
.site-content .mb3,
.entry-content .mb3,
#main .mb3 {
    width: calc(100% + 64px) !important;  /* compense 32px × 2 */
    max-width: calc(100% + 64px) !important;
    margin-left: -32px !important;
    margin-right: -32px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* ============================================================
   VARIABLES & BASE
   ============================================================ */

html body .mb3 {
    --mb-bg: #ffffff;
    --mb-bg-2: #f2f2f0;
    --mb-ink: #2a2724;
    --mb-ink-2: #5a5249;
    --mb-mute: #8a8275;
    --mb-rule: #e2e0dc;
    --mb-accent: #8a6b4c;
    display: block !important;
    width: 100% !important;
    background: var(--mb-bg) !important;
    color: var(--mb-ink) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    -webkit-font-smoothing: antialiased;
    margin: 0 !important;
    padding: 0 !important;
}

html body .mb3 * {
    font-family: inherit !important;
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */

html body .mb3 p {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
    color: var(--mb-ink-2) !important;
    margin: 0 0 1.1em !important;
    padding: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    max-width: none !important;
}

html body .mb3 p:last-child {
    margin-bottom: 0 !important;
}

html body .mb3 strong,
html body .mb3 b {
    color: var(--mb-ink) !important;
    font-weight: 500 !important;
}

html body .mb3 em,
html body .mb3 i {
    font-style: italic !important;
}

html body .mb3 a {
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* ───────────────────────────────────────────────────────────
   EYEBROW (séparé, avec wrapper <p> avant)
   ─────────────────────────────────────────────────────────── */

html body .mb3 .mb3-eyebrow-wrap {
    margin: 0 0 16px !important;
    padding: 0 !important;
}

html body .mb3 .mb3-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: var(--mb-mute) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
}

html body .mb3 .mb3-eyebrow::before {
    content: "" !important;
    width: 34px !important;
    height: 1px !important;
    background: var(--mb-accent) !important;
    display: inline-block !important;
}

/* ─────────────────────────────────────────────────────────────
   À AJOUTER dans frontend.css — APRÈS les règles .mb3-eyebrow
   ─────────────────────────────────────────────────────────────
   
   Remplace l'ancien .mb3-eyebrow { margin: 0 0 18px ... }
   par deux wrappers séparés + retire le margin de l'eyebrow lui-même
   ───────────────────────────────────────────────────────────── */

/* Wrapper eyebrow — espacement indépendant */
html body .mb3 .mb3-eyebrow-wrap {
    margin: 0 0 16px !important;
    padding: 0 !important;
}

/* Retire le margin de l'eyebrow lui-même (géré par le wrapper) */
html body .mb3 .mb3-eyebrow {
    margin: 0 !important;
}

/* Wrapper titre — espacement indépendant */
html body .mb3 .mb3-title-wrap {
    margin: 0 0 28px !important;
    padding: 0 !important;
}

/* Retire le margin des h2.mb3-h2 (géré par le wrapper) */
html body .mb3 h2.mb3-h2 {
    margin: 0 !important;
}

/* ─────────────────────────────────────────────────────────────
   CTA — alignement flexible (left / center / right)
   Ajouter APRÈS .mb3-cta--center existant
   ───────────────────────────────────────────────────────────── */

html body .mb3 .mb3-cta--left {
    justify-content: flex-start !important;
}

html body .mb3 .mb3-cta--right {
    justify-content: flex-end !important;
}
/* ───────────────────────────────────────────────────────────
   TITRE (séparé, avec wrapper <p> avant)
   ─────────────────────────────────────────────────────────── */

html body .mb3 .mb3-title-wrap {
    margin: 0 0 28px !important;
    padding: 0 !important;
}

html body .mb3 h1.mb3-h1 {
    font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif !important;
    font-weight: 300 !important;
    font-size: clamp(44px, 5.5vw, 82px);
    line-height: 1.02 !important;
    letter-spacing: -0.01em !important;
    color: var(--mb-ink) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
    max-width: none !important;
}

html body .mb3 h2.mb3-h2 {
    font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif !important;
    font-weight: 300 !important;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    color: var(--mb-ink) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
    max-width: none !important;
}

html body .mb3 h1,
html body .mb3 h2,
html body .mb3 h3,
html body .mb3 h4 {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 400 !important;
    color: var(--mb-ink) !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    max-width: none !important;
}

/* ============================================================
   WRAPPERS
   ============================================================ */

html body .mb3 .mb3-wrap {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 var(--site-pad, 70px) !important;
}

html body .mb3 .mb3-narrow {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ============================================================
   SECTIONS
   ============================================================ */

html body .mb3 .mb3-section {
    padding: 70px 0 !important;
    background: #fff !important;
}

html body .mb3 .mb3-section--alt {
    background: var(--mb-bg-2) !important;
}

html body .mb3 .mb3-section--tight {
    padding: 50px 0 !important;
}

/* Première section : pas de padding-top (la page ne commence pas trop bas) */
html body .mb3 .mb3-section:first-child {
    padding-top: 0 !important;
}

/* Deux sections blanc consécutives : supprimer le padding-top de la 2e (pas de double espace) */
html body .mb3 .mb3-section:not(.mb3-section--alt) + .mb3-section:not(.mb3-section--alt) {
    padding-top: 20px !important;
}

/* Deux sections grises consécutives : idem */
html body .mb3 .mb3-section--alt + .mb3-section--alt {
    padding-top: 20px !important;
}

html body .mb3 .mb3-section--center {
    text-align: center !important;
}

/* ============================================================
   COLONNES
   ============================================================ */

html body .mb3 .mb3-cols {
    display: grid !important;
    align-items: start !important;
}

html body .mb3 .mb3-cols--2 {
    grid-template-columns: 1fr 1.2fr !important;
    gap: 64px !important;
}

html body .mb3 .mb3-cols--3 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
}

html body .mb3 .mb3-cols--4 {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px !important;
}

html body .mb3 .mb3-cols--equal {
    grid-template-columns: 1fr 1fr !important;
}

html body .mb3 .mb3-seasons__img {
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
    background: var(--mb-bg-2) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

html body .mb3 .mb3-seasons__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
}

/* ============================================================
   PILLARS (5) - FIXED ALIGNMENT
   ============================================================ */

html body .mb3 .mb3-pillars {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    grid-template-rows: auto auto 1fr !important;
    gap: 0 40px !important;
    align-items: start !important;
}

html body .mb3 .mb3-pillar {
    display: grid !important;
    grid-row: span 3 !important;
    grid-template-rows: subgrid !important;
    margin: 0 !important;
    padding: 0 !important;
    row-gap: 0 !important;
}

html body .mb3 .mb3-pillar__num {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--mb-mute) !important;
    margin: 0 0 14px !important;
    align-self: start !important;
    padding: 0 !important;
}

html body .mb3 .mb3-pillar__title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: var(--mb-ink) !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    align-self: start !important;
    line-height: 1.2 !important;
}

html body .mb3 .mb3-pillar__body {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: var(--mb-ink-2) !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: start !important;
}

/* ============================================================
   STATS
   ============================================================ */

html body .mb3 .mb3-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
    margin-top: 40px !important;
}

html body .mb3 .mb3-stat {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

html body .mb3 .mb3-stat__label {
    display: block !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: var(--mb-ink) !important;
    margin-bottom: 6px !important;
}

/* ============================================================
   CTA — FLEXIBLE ALIGNMENT
   ============================================================ */

html body .mb3 .mb3-cta {
    margin-top: 40px !important;
    display: flex !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
}

/* Alignement des boutons */
html body .mb3 .mb3-cta--left {
    justify-content: flex-start !important;
}

html body .mb3 .mb3-cta--center {
    justify-content: center !important;
}

html body .mb3 .mb3-cta--right {
    justify-content: flex-end !important;
}

html body .mb3 .mb3-cta a {
    display: inline-block !important;
    padding: 14px 26px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    line-height: 1 !important;
    transition: all 0.2s ease !important;
    border-radius: 0 !important;
}

html body .mb3 .mb3-cta__primary {
    background: var(--mb-ink) !important;
    color: #ffffff !important;
    border: 1px solid var(--mb-ink) !important;
}

html body .mb3 .mb3-cta__primary:hover {
    background: var(--mb-accent) !important;
    border-color: var(--mb-accent) !important;
    color: #ffffff !important;
}

html body .mb3 .mb3-cta__ghost {
    color: var(--mb-ink) !important;
    border: 1px solid var(--mb-ink) !important;
    background: transparent !important;
}

html body .mb3 .mb3-cta__ghost:hover {
    background: var(--mb-ink) !important;
    color: #ffffff !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
    html body .mb3 .mb3-cols--2,
    html body .mb3 .mb3-cols--3,
    html body .mb3 .mb3-cols--4 {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    html body .mb3 .mb3-pillars {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto auto !important;
    }

    html body .mb3 .mb3-pillar {
        grid-row: auto !important;
        grid-template-rows: auto !important;
    }

    html body .mb3 .mb3-stats {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 560px) {
    html body .mb3 .mb3-wrap {
        padding: 0 var(--site-pad, 22px) !important;
    }

    html body .mb3 .mb3-section {
        padding: 70px 0 !important;
    }

    html body .mb3 .mb3-section--tight {
        padding: 60px 0 !important;
    }

    html body .mb3 .mb3-cols--2,
    html body .mb3 .mb3-cols--3,
    html body .mb3 .mb3-cols--4 {
        gap: 30px !important;
    }

    html body .mb3 .mb3-pillars {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    html body .mb3 .mb3-pillar {
        grid-row: auto !important;
        grid-template-rows: auto !important;
    }

    html body .mb3 .mb3-stats {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    html body .mb3 .mb3-cta {
        flex-direction: column !important;
    }

    html body .mb3 .mb3-cta a {
        width: 100% !important;
        text-align: center !important;
    }
}
/* ============================================================
   GALERIE WC PLEINE LARGEUR — v4.0.5
   ============================================================ */

/* Padding réduit pour la section galerie (override du 100px général) */
html body .mb3 .mb3-section--wc-gallery {
    padding: 40px 0 !important;
}

/* La grille produits WC/MB occupe toute la largeur disponible */
html body .mb3 .mb3-section--wc-gallery .products,
html body .mb3 .mb3-section--wc-gallery ul.products {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 var(--site-pad, 70px) !important;
    box-sizing: border-box !important;
}

html body .mb3 .mb3-section--wc-gallery .products li.product,
html body .mb3 .mb3-section--wc-gallery ul.products li.product {
    box-sizing: border-box !important;
}
/* ============================================================
   HERO — multi-images + diaporama (fade/slide/zoom) — v4.5.0
   ============================================================ */

html body .mb3 .mb3-section--hero {
    position: relative !important;
    padding: 0 !important;
    background-color: #2a2724 !important;
    overflow: hidden !important;
    min-height: 72vh !important;
    display: flex !important;
    align-items: flex-end !important;
}

/* Conteneur des slides */
html body .mb3 .mb3-hero__slideshow {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
}

/* Slide — invisible par défaut */
html body .mb3 .mb3-hero__slide {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-image: var(--mb-hero-img, none) !important;
    opacity: 0 !important;
    will-change: opacity, transform !important;
}

/* Slide active */
html body .mb3 .mb3-hero__slide--active {
    opacity: 1 !important;
}

/* ── FONDU ── */
html body .mb3 .mb3-hero--trans-fade .mb3-hero__slide {
    transition: opacity 1.2s ease !important;
}

/* ── BALAYAGE ── */
html body .mb3 .mb3-hero--trans-slide .mb3-hero__slide {
    transform: translateX(50px) !important;
    transition: opacity 0.05s linear 0.9s, transform 0.9s cubic-bezier(.77,0,.18,1) !important;
}
html body .mb3 .mb3-hero--trans-slide .mb3-hero__slide--active {
    transform: translateX(0) !important;
    transition: opacity 0.05s linear, transform 0.9s cubic-bezier(.77,0,.18,1) !important;
}
html body .mb3 .mb3-hero--trans-slide .mb3-hero__slide--prev {
    opacity: 0 !important;
    transform: translateX(-50px) !important;
    transition: opacity 0.5s ease, transform 0.9s cubic-bezier(.77,0,.18,1) !important;
}

/* ── ZOOM DOUX (Ken Burns) ── */
html body .mb3 .mb3-hero--trans-zoom .mb3-hero__slide {
    transform: scale(1.0) !important;
    transition: opacity 1.4s ease !important;
}
html body .mb3 .mb3-hero--trans-zoom .mb3-hero__slide--active {
    transform: scale(1.07) !important;
    transition: opacity 1.4s ease, transform 8s ease-out !important;
}
html body .mb3 .mb3-hero--trans-zoom .mb3-hero__slide--prev {
    opacity: 0 !important;
    transition: opacity 1.4s ease !important;
}

/* Overlay — gradient dynamique via --mb-hero-overlay */
html body .mb3 .mb3-hero__overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: var(--mb-hero-overlay,
        linear-gradient(to right, rgba(42,39,36,.74) 0%, rgba(42,39,36,.36) 52%, rgba(42,39,36,.06) 100%)
    ) !important;
    pointer-events: none !important;
}

/* Wrap au-dessus de l'overlay */
html body .mb3 .mb3-section--hero .mb3-wrap {
    position: relative !important;
    z-index: 2 !important;
    padding-top: 120px !important;
    padding-bottom: 100px !important;
    width: 100% !important;
}

html body .mb3 .mb3-hero__content {
    max-width: 560px !important;
}

html body .mb3 .mb3-hero__eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, .72) !important;
    margin: 0 0 26px !important;
    padding: 0 !important;
    line-height: 1.4 !important;
}
html body .mb3 .mb3-hero__eyebrow::before {
    content: "" !important;
    width: 34px !important; height: 1px !important;
    background: rgba(255, 255, 255, .48) !important;
    display: inline-block !important; flex-shrink: 0 !important;
}

html body .mb3 h2.mb3-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 300 !important;
    font-size: clamp(44px, 5.5vw, 80px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.01em !important;
    color: #ffffff !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    text-transform: none !important;
    max-width: none !important;
}

html body .mb3 .mb3-hero__desc {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, .80) !important;
    margin: 0 0 40px !important;
    padding: 0 !important;
    max-width: 440px !important;
}

html body .mb3 .mb3-hero__cta {
    display: flex !important; gap: 14px !important; flex-wrap: wrap !important; margin: 0 !important;
}
html body .mb3 .mb3-hero__cta .mb3-cta__primary {
    background: #ffffff !important; color: #2a2724 !important; border-color: #ffffff !important;
}
html body .mb3 .mb3-hero__cta .mb3-cta__primary:hover {
    background: rgba(255,255,255,.88) !important; border-color: rgba(255,255,255,.88) !important;
}
html body .mb3 .mb3-hero__cta .mb3-cta__ghost {
    color: #ffffff !important; border-color: rgba(255,255,255,.65) !important; background: transparent !important;
}
html body .mb3 .mb3-hero__cta .mb3-cta__ghost:hover {
    background: rgba(255,255,255,.12) !important; border-color: rgba(255,255,255,.85) !important;
}

@media (max-width: 980px) {
    html body .mb3 .mb3-section--hero { min-height: 60vh !important; }
    html body .mb3 .mb3-section--hero .mb3-wrap { padding-top: 80px !important; padding-bottom: 70px !important; }
    html body .mb3 .mb3-hero__content { max-width: 100% !important; }
}
@media (max-width: 560px) {
    html body .mb3 .mb3-section--hero { min-height: 88vw !important; }
    html body .mb3 .mb3-section--hero .mb3-wrap { padding-top: 60px !important; padding-bottom: 50px !important; }
    html body .mb3 h2.mb3-hero__title { font-size: clamp(36px, 9vw, 52px) !important; }
    html body .mb3 .mb3-hero__cta { flex-direction: column !important; }
    html body .mb3 .mb3-hero__cta a { width: 100% !important; text-align: center !important; }
}


/* ============================================================
   BLOC EXTENSIBLE (expand) — v4.4.0
   ============================================================ */

html body .mb3 .mb3-expand {
    margin: 0 !important;
    padding: 0 !important;
}

html body .mb3 .mb3-expand__trigger {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    background: none !important;
    border: none !important;
    border-bottom: 1px solid var(--mb-rule, #e2e0dc) !important;
    padding: 14px 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    gap: 12px !important;
    text-align: left !important;
    transition: border-color .2s !important;
}

html body .mb3 .mb3-expand__trigger:hover {
    border-color: var(--mb-accent, #8a6b4c) !important;
}

html body .mb3 .mb3-expand__trigger:focus {
    outline: none !important;
}

html body .mb3 .mb3-expand__label {
    flex: 1 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: .08em !important;
    text-transform: none !important;
    color: var(--mb-ink, #2a2724) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Chevron — carré border-right + border-bottom tourné 45° */
html body .mb3 .mb3-expand__chevron {
    display: inline-block !important;
    width: 7px !important;
    height: 7px !important;
    border-right: 1.5px solid var(--mb-accent, #8a6b4c) !important;
    border-bottom: 1.5px solid var(--mb-accent, #8a6b4c) !important;
    transform: rotate(45deg) translateY(-2px) !important;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1) !important;
    flex-shrink: 0 !important;
}

html body .mb3 .mb3-expand__trigger[aria-expanded="true"] .mb3-expand__chevron {
    transform: rotate(-135deg) translateY(2px) !important;
}

/* Corps — fermé par défaut */
html body .mb3 .mb3-expand__body {
    overflow: hidden !important;
    max-height: 0 !important;
    transition: max-height .4s cubic-bezier(.4, 0, .2, 1) !important;
    margin: 0 !important;
    padding: 0 !important;
}

html body .mb3 .mb3-expand__body[data-open] {
    max-height: 1200px !important;
}

html body .mb3 .mb3-expand__inner {
    padding: 16px 0 20px !important;
}

html body .mb3 .mb3-expand__inner p {
    font-size: 15px !important;
    color: var(--mb-ink-2, #5a5249) !important;
}
/* ============================================================
   ACCORDÉON SECTION — titres grands (.mb3-expand--h) v4.6.0
   Variante de .mb3-expand pour les sections type accordion :
   trigger Cormorant Garamond + padding plus généreux
   ============================================================ */

html body .mb3 .mb3-accordion {
    margin-top: 0 !important;
}

html body .mb3 .mb3-expand--h .mb3-expand__trigger {
    padding: 18px 0 !important;
}

html body .mb3 .mb3-expand--h .mb3-expand__label {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: clamp(17px, 1.6vw, 21px) !important;
    font-weight: 400 !important;
    letter-spacing: .01em !important;
    color: var(--mb-ink, #2a2724) !important;
    line-height: 1.3 !important;
}

html body .mb3 .mb3-expand--h .mb3-expand__trigger:hover .mb3-expand__label {
    color: var(--mb-accent, #8a6b4c) !important;
}

html body .mb3 .mb3-expand--h .mb3-expand__inner {
    padding: 20px 0 28px !important;
}

html body .mb3 .mb3-expand--h .mb3-expand__inner p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--mb-ink-2, #5a5249) !important;
}

/* Tailles trigger accordéon (mb3-expand--h-{size}) — v4.7.0 */
html body .mb3 .mb3-expand--h-small  .mb3-expand__label { font-size: 15px !important; }
html body .mb3 .mb3-expand--h-normal .mb3-expand__label { font-size: clamp(17px,1.6vw,21px) !important; }
html body .mb3 .mb3-expand--h-large  .mb3-expand__label { font-size: clamp(20px,1.9vw,26px) !important; }
html body .mb3 .mb3-expand--h-xl     .mb3-expand__label { font-size: clamp(24px,2.4vw,32px) !important; }

/* Alignement trigger accordéon */
html body .mb3 .mb3-expand--h-center .mb3-expand__trigger { text-align: center !important; }
html body .mb3 .mb3-expand--h-right  .mb3-expand__trigger { text-align: right  !important; }