/* ==========================================================================
   Luigi Pizza — Pizzeria & épicerie italienne, La Talaudière — main.css
   Palette alignée sur la VRAIE charte du client (flyer "Chez Luigi" reçu le
   2026-09-21) : noir chaud, rouge et vert italiens francs, blanc, sur fond
   crème pour les sections claires. Voir CLAUDE.md du projet.
   ========================================================================== */

/* -- 1. Polices auto-hébergées ------------------------------------------ */
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url('../fonts/fraunces-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600 800;
    font-display: swap;
    src: url('../fonts/fraunces-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02CC, U+1E00-1EFF;
}

/* -- 2. Variables --------------------------------------------------------- */
:root {
    --noir:           #1C1917;
    --noir-2:         #121010;
    --rouge:          #C8302E;
    --rouge-2:        #A32421;
    --rouge-cl:       #F2A6A4;
    --vert:           #2F7A4D;
    --vert-2:         #1F5A38;
    --creme:          #FBF3E6;
    --creme-profond:  #F3E5CD;
    --texte:          #2A2422;
    --texte-doux:     #7D6F68;
    --ligne:          #E7DDD0;
    --blanc:          #FFFFFF;

    --f-titre:  'Fraunces', Georgia, serif;
    --f-corps:  'Inter', -apple-system, sans-serif;

    --largeur: 1200px;
    --gouttiere: clamp(20px, 5vw, 56px);
    --radius: 10px;
    --ombre: 0 12px 40px rgba(43,27,18,0.16);
}

/* -- 3. Reset minimal ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--f-corps);
    color: var(--texte);
    background: var(--creme);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; vertical-align: -0.15em; flex-shrink: 0; }
h1, h2, h3, h4 {
    font-family: var(--f-titre);
    color: var(--noir);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.5em;
}
p { line-height: 1.7; margin: 0 0 1em; }

/* -- 4. Verrou Design System Elementor (piège elementor-kit-usine-ecrase-theme) - */
body.luigi-pizza .elementor-widget-heading .elementor-heading-title {
    font-family: var(--f-titre);
    color: var(--noir);
}
body.luigi-pizza .elementor-widget-text-editor {
    font-family: var(--f-corps);
    color: var(--texte);
}
body.luigi-pizza .elementor-widget-button .elementor-button {
    background-color: var(--rouge);
    color: var(--blanc);
}

/* -- 5. Header -------------------------------------------------------------- */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251,243,230,0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--ligne);
}
.lp-header-inner {
    max-width: var(--largeur);
    margin: 0 auto;
    padding: 14px var(--gouttiere);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.lp-brand { display: flex; align-items: center; gap: 12px; }
.lp-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--noir);
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.lp-brand-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.lp-footer-mono.lp-brand-logo { width: 56px; height: 56px; }
.lp-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.lp-brand-name {
    font-family: var(--f-titre);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.01em;
    color: var(--noir);
}
.lp-brand-baseline { font-size: 11.5px; color: var(--texte-doux); letter-spacing: 0.02em; }
.lp-nav-list {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}
.lp-nav-list a {
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--texte-doux);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.lp-nav-list a:hover,
.lp-nav-list .current-menu-item a {
    color: var(--rouge-2);
    border-color: var(--rouge);
}
.lp-header-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rouge);
    color: var(--blanc);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: background .2s;
}
.lp-header-call:hover { background: var(--rouge-2); }

@media (max-width: 780px) {
    .lp-nav { display: none; }
    .lp-header-call span { display: none; }
    .lp-header-call { padding: 10px; }
}

/* -- 6. Hero (#hero) --------------------------------------------------------- */
#hero { --display: grid !important; grid-template-columns: 1.08fr .92fr; align-items: stretch; min-height: 600px; }
body.luigi-pizza #hero { background: var(--noir); }

[id^="hero-texte"] { --display: flex !important; flex-direction: column; justify-content: center; gap: 18px; padding: clamp(44px, 8vw, 92px) var(--gouttiere); }
[id^="hero-visuel"] { --display: block !important; position: relative; overflow: hidden; min-height: 300px; }
[id^="hero-visuel"] img { width: 100%; height: 100%; object-fit: cover; }
[id^="hero-visuel"]::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(43,27,18,0.35), rgba(43,27,18,0));
}

#hero .elementor-widget-heading .elementor-heading-title,
#hero h1 { color: var(--creme); font-size: clamp(2.3rem, 4.6vw, 3.6rem); }
#hero .ek-eyebrow { color: var(--rouge-cl); }
#hero .elementor-widget-text-editor,
#hero .elementor-widget-text-editor p { color: rgba(251,243,230,0.82); font-size: 1.12rem; max-width: 46ch; }

[id^="hero-badge"] { --display: inline-flex !important; align-items: center; gap: 8px; background: rgba(200,48,46,0.18); border: 1px solid rgba(200,48,46,0.5); border-radius: 999px; padding: 8px 16px; width: fit-content; margin-bottom: 4px; }
[id^="hero-badge"] .elementor-widget-text-editor p { margin: 0; font-size: 13.5px; font-weight: 600; color: var(--rouge-cl); }
[id^="hero-badge"] svg { color: var(--rouge-cl); }

[id^="hero-ctas"] { --display: flex !important; flex-direction: row; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

@media (max-width: 900px) {
    #hero { --display: flex !important; flex-direction: column; min-height: 0; }
    [id^="hero-visuel"] { min-height: 260px; order: -1; }
}

/* -- 7. Barre de confiance (#confiance) -------------------------------------- */
/* Redesign 2026-09-21 : chaque badge devient sa propre petite carte (au lieu de
   texte à plat), avec une légère animation d'apparition + un hover discret.
   flex-direction:row explicite (piège e-flex-defaut-flex-direction-column —
   sans ça les 3 badges s'empilaient en colonne, défaut Elementor). */
#confiance {
    --display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    padding: 28px var(--gouttiere);
    background: var(--creme-profond);
    border-bottom: 1px solid var(--ligne);
}
[id^="badge-"] {
    --display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    background: var(--blanc);
    border: 1px solid var(--ligne);
    border-radius: 999px;
    padding: 12px 22px;
    box-shadow: 0 4px 14px rgba(43,27,18,0.06);
    opacity: 0;
    transform: translateY(8px);
    animation: lp-badge-in .5s ease forwards;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
[id^="badge-"]:nth-of-type(1) { animation-delay: .05s; }
[id^="badge-"]:nth-of-type(2) { animation-delay: .15s; }
[id^="badge-"]:nth-of-type(3) { animation-delay: .25s; }
[id^="badge-"]:nth-of-type(4) { animation-delay: .35s; }
[id^="badge-"]:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(43,27,18,0.12); border-color: var(--rouge-cl); }
[id^="badge-"] svg { color: var(--rouge); width: 1.2em; height: 1.2em; flex-shrink: 0; }
[id^="badge-"] .elementor-widget-text-editor,
[id^="badge-"] .elementor-widget-text-editor p { font-size: 13.5px; color: var(--texte-doux); margin: 0; letter-spacing: 0.01em; font-weight: 600; }
[id^="badge-"] a { color: var(--rouge-2); font-weight: 700; text-decoration: underline; }

@keyframes lp-badge-in { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
    [id^="badge-"] { animation: none; opacity: 1; transform: none; }
}

/* -- 8. Sections génériques + centrage robuste ------------------------------- */
/* Corrige un piège trouvé le 2026-09-21 : [id^="section-"] ne matchait AUCUN id
   réel du site (toutes les sections sont nommées directement #offre, #menu…), donc
   cette règle de padding vertical était totalement inerte depuis le premier jour —
   chaque section n'avait plus qu'un padding par défaut Elementor de 10px, d'où
   l'impression générale de sections "collées"/"pas modernes"/"trop carrées". */
#offre, #menu, #histoire, #avantages, #zone, #faq, #contact, #cta-final {
    padding: clamp(52px, 8vw, 100px) var(--gouttiere);
}

/* Centrage — pièges elementor-econ-ecrase-marges-selecteur-attribut ET
   e-flex-defaut-flex-direction-column : un container "full width" (notre défaut)
   hérite flex-direction:column + align-items:normal (~stretch) d'Elementor. Un
   enfant capé par max-width s'y retrouve étiré-plaqué au bord de départ (gauche)
   plutôt que centré, même si on alimente --margin-left/--margin-right (l'auto-
   margin l'emporterait en théorie sur align-items, mais on verrouille aussi
   explicitement align-self en litéral !important : c'est la déclaration qui gagne
   à coup sûr, peu importe la chaîne de variables CSS d'Elementor derrière). Double
   verrou : body.luigi-pizza (0,2,0) + variables --margin-left/--margin-right ET
   align-self/margin-left/margin-right littéraux, tous en !important. */
body.luigi-pizza [id$="-inner"],
body.luigi-pizza [id$="-tete"],
body.luigi-pizza [id$="-liste"],
body.luigi-pizza [id^="hero-texte"] {
    --margin-left: auto !important;
    --margin-right: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
}

.ek-eyebrow { display: inline-block; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rouge-2); margin-bottom: 10px; font-weight: 700; }

/* -- 9. Offre de lancement (#offre) ------------------------------------------ */
#offre { background: var(--vert); text-align: center; }
[id^="offre-inner"] { max-width: 720px; margin-left: auto; margin-right: auto; }
#offre .ek-eyebrow { color: var(--creme); }
#offre h2, #offre .elementor-widget-heading .elementor-heading-title { color: var(--creme); font-size: clamp(1.5rem, 3vw, 2.1rem); }
#offre .elementor-widget-text-editor p { color: rgba(251,243,230,0.88); }
#offre .elementor-widget-button .elementor-button { background-color: var(--creme); color: var(--vert-2); }

/* -- 10. Menu / spécialités (#menu) ------------------------------------------ */
#menu { background: var(--creme); }
[id^="menu-tete"] { max-width: 68ch; text-align: center; margin-bottom: 44px; }
#menu h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
#menu .elementor-widget-text-editor p { font-size: 1.05rem; color: var(--texte); }

/* 2 lignes de 3 volontaires (Arancini/Pizzas/Lasagnes puis les 3 autres) plutôt
   qu'une grille auto-fit qui les alignait toutes sur une seule ligne. */
[id^="menu-grille"] { --display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) {
    [id^="menu-grille"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    [id^="menu-grille"] { grid-template-columns: 1fr; }
}
[id^="carte-"] { --display: flex !important; flex-direction: column; gap: 10px; background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius); padding: 28px; box-shadow: var(--ombre); position: relative; }
[id^="carte-"] svg { color: var(--rouge); width: 30px; height: 30px; }
[id^="carte-"] .elementor-widget-heading .elementor-heading-title { font-size: 1.12rem; margin-top: 4px; }
[id^="carte-"] .elementor-widget-text-editor p { font-size: 0.95rem; color: var(--texte-doux); margin: 0; }
[id^="carte-"] .lp-prix { display: block; margin-top: 8px; font-family: var(--f-titre); font-weight: 700; color: var(--rouge-2); font-size: 1.05rem; }

/* Carte vedette (Arancini) — légèrement mise en avant */
#carte-1 { border: 2px solid var(--rouge); background: linear-gradient(180deg, var(--blanc), var(--creme-profond)); }
.lp-badge-vedette {
    display: inline-block;
    background: var(--rouge);
    color: var(--blanc);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 5px 12px;
    position: absolute;
    top: -12px;
    left: 24px;
}

/* Redesign 2026-09-21 : bloc "traiteur" jugé trop carré/plat — passage en carte
   asymétrique (icône à gauche, texte à droite), radius généreux, léger dégradé
   rouge/vert au lieu d'un aplat gris, ombre douce, accent décoratif. */
[id^="menu-traiteur"] {
    --display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, var(--creme-profond) 0%, #EFE0C4 100%);
    border-radius: 24px;
    padding: 36px 40px;
    margin-top: 36px;
    box-shadow: 0 14px 36px rgba(43,27,18,0.1);
    position: relative;
    overflow: hidden;
}
[id^="menu-traiteur"]::before {
    content: '';
    position: absolute;
    inset: auto -40px -60px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,48,46,0.14), transparent 70%);
}
[id^="menu-traiteur"] svg {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: var(--rouge);
    background: var(--blanc);
    border-radius: 50%;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(43,27,18,0.1);
}
[id^="mt-copie"] { --display: flex !important; flex-direction: column; gap: 6px; position: relative; z-index: 1; }
[id^="menu-traiteur"] h3 { font-size: 1.25rem; margin-bottom: 4px; }
[id^="menu-traiteur"] .elementor-widget-text-editor p { color: var(--texte); margin: 0; position: relative; z-index: 1; }
@media (max-width: 620px) {
    [id^="menu-traiteur"] { flex-direction: column !important; text-align: center; padding: 30px 26px; }
}

/* -- 11. Histoire / à propos (#histoire) -------------------------------------- */
#histoire { --display: grid !important; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; background: var(--noir); }
[id^="histoire-visuel"] { --display: block !important; border-radius: var(--radius); overflow: hidden; box-shadow: var(--ombre); }
[id^="histoire-visuel"] img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
[id^="histoire-texte"] { --display: flex !important; flex-direction: column; gap: 14px; }
#histoire .ek-eyebrow { color: var(--rouge-cl); }
#histoire h2, #histoire .elementor-widget-heading .elementor-heading-title { color: var(--creme); font-size: clamp(1.6rem, 3vw, 2.2rem); }
#histoire .elementor-widget-text-editor p { color: rgba(251,243,230,0.82); font-size: 1.02rem; }
#histoire .elementor-widget-text-editor a { color: var(--rouge-cl); text-decoration: underline; }

@media (max-width: 900px) {
    #histoire { --display: flex !important; flex-direction: column; }
}

/* -- 12. Avantages (#avantages) ------------------------------------------------ */
/* Redesign 2026-09-21 : section volontairement contenue (pas edge-to-edge comme
   #confiance/#hero) — grille plafonnée à --largeur et centrée, cards remontées
   d'un cran (radius généreux, plus d'ombre, badge-icône circulaire, hover lift)
   au lieu du style plat bordure+radius 10px d'origine. */
#avantages { background: var(--creme-profond); }
[id^="avantages-tete"] { max-width: 62ch; text-align: center; margin-bottom: 40px; }
body.luigi-pizza [id^="avantages-grille"] {
    --display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    gap: 24px;
    max-width: var(--largeur);
    width: 100%;
    --margin-left: auto !important;
    --margin-right: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
}
[id^="avantage-"] {
    --display: flex !important;
    flex-direction: column;
    gap: 12px;
    background: var(--blanc);
    border-radius: 18px;
    padding: 30px 26px;
    border: none;
    box-shadow: 0 10px 30px rgba(43,27,18,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
[id^="avantage-"]:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(43,27,18,0.14); }
[id^="avantage-"] svg {
    color: var(--vert);
    width: 22px;
    height: 22px;
    background: var(--creme-profond);
    border-radius: 50%;
    padding: 13px;
    box-sizing: content-box;
}
[id^="avantage-"] .elementor-widget-heading .elementor-heading-title { font-size: 1.05rem; }
[id^="avantage-"] .elementor-widget-text-editor p { font-size: 0.94rem; color: var(--texte-doux); margin: 0; }

/* -- 13. Zone d'intervention (#zone) -------------------------------------------- */
#zone { background: var(--creme); text-align: center; }
[id^="zone-inner"] { max-width: 760px; margin-left: auto; margin-right: auto; }
#zone h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
[id^="zone-villes"] { --display: flex !important; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.lp-ville-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--creme-profond); border: 1px solid var(--ligne); border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--texte); }
.lp-ville-pill.lp-ville-principale { background: var(--rouge); border-color: var(--rouge); color: var(--blanc); }
/* Force un retour à la ligne dans la grille flex-wrap des pastilles-villes (un <br>
   seul est ignoré par les items flex) — voir zone_villes_html dans le script d'injection. */
.lp-ville-break { flex-basis: 100%; height: 0; margin: 0; padding: 0; }

/* -- 14. FAQ (#faq) --------------------------------------------------------------- */
#faq { background: var(--creme-profond); }
[id^="faq-tete"] { max-width: 62ch; text-align: center; margin-bottom: 40px; }
[id^="faq-liste"] { --display: flex !important; flex-direction: column; gap: 14px; max-width: 820px; margin-left: auto; margin-right: auto; }
[id^="faqitem-"] { --display: flex !important; flex-direction: column; gap: 8px; background: var(--blanc); border: 1px solid var(--ligne); border-radius: var(--radius); padding: 22px 26px; }
[id^="faqitem-"] .elementor-widget-heading .elementor-heading-title { font-size: 1.02rem; }
[id^="faqitem-"] .elementor-widget-text-editor p { font-size: 0.95rem; color: var(--texte-doux); margin: 0; }

/* -- 15. Contact (#contact) -------------------------------------------------------- */
#contact { background: var(--noir); }
[id^="contact-inner"] { --display: grid !important; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: var(--largeur); margin-left: auto; margin-right: auto; }
#contact .ek-eyebrow { color: var(--rouge-cl); }
#contact h2, #contact .elementor-widget-heading .elementor-heading-title { color: var(--creme); font-size: clamp(1.6rem, 3vw, 2.2rem); }
#contact .elementor-widget-text-editor p { color: rgba(251,243,230,0.82); }
[id^="contact-infos"] { --display: flex !important; flex-direction: column; gap: 14px; }
.lp-contact-ligne { display: flex; align-items: center; gap: 12px; color: var(--creme); font-size: 15px; }
.lp-contact-ligne svg { color: var(--rouge-cl); width: 20px; height: 20px; flex-shrink: 0; }
.lp-contact-ligne a { color: var(--creme); font-weight: 600; }
.lp-contact-ligne a:hover { color: var(--rouge-cl); }

@media (max-width: 860px) {
    [id^="contact-inner"] { --display: flex !important; flex-direction: column; }
}

/* -- 16. CTA final (#cta-final) ------------------------------------------------------ */
#cta-final { background: var(--rouge); text-align: center; }
#cta-final h2, #cta-final .elementor-widget-heading .elementor-heading-title { color: var(--blanc); }
#cta-final .elementor-widget-text-editor p { color: rgba(255,255,255,0.9); }
#cta-final .elementor-widget-button .elementor-button { background-color: var(--noir); color: var(--creme); }
body.luigi-pizza [id^="cta-final-inner"] { max-width: 620px; margin-left: auto; margin-right: auto; }

/* -- 17. Boutons ---------------------------------------------------------------------- */
.ek-btn-primary .elementor-button,
.ek-btn-primary a.elementor-button {
    background-color: var(--rouge);
    color: var(--blanc);
    border-radius: 999px;
    padding: 15px 34px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color .2s, transform .2s;
}
.ek-btn-primary .elementor-button:hover,
.ek-btn-primary a.elementor-button:hover {
    background-color: var(--rouge-2);
    transform: translateY(-1px);
}
.ek-btn-ghost .elementor-button,
.ek-btn-ghost a.elementor-button {
    background-color: transparent;
    color: var(--creme);
    border: 1px solid rgba(251,243,230,0.4);
    border-radius: 999px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
}
.ek-btn-ghost .elementor-button:hover,
.ek-btn-ghost a.elementor-button:hover {
    border-color: var(--rouge-cl);
    color: var(--rouge-cl);
}

/* -- 18. Footer ------------------------------------------------------------------------- */
.lp-footer { background: var(--noir); color: rgba(251,243,230,0.75); padding: 60px var(--gouttiere) 0; }
.lp-footer-inner {
    max-width: var(--largeur);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(251,243,230,0.12);
}
.lp-footer-mono { margin-bottom: 16px; }
.lp-footer-baseline { max-width: 34ch; font-size: 14px; color: rgba(251,243,230,0.6); }
.lp-footer-col h3 { color: var(--rouge-cl); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--f-corps); font-weight: 700; margin-bottom: 16px; }
.lp-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col a { font-size: 14.5px; color: rgba(251,243,230,0.75); transition: color .2s; }
.lp-footer-col a:hover { color: var(--rouge-cl); }
.lp-footer-bottom { max-width: var(--largeur); margin: 0 auto; padding: 20px 0; text-align: center; font-size: 12.5px; color: rgba(251,243,230,0.45); }
.lp-footer-bottom a { color: rgba(242,166,164,0.8); }

@media (max-width: 760px) {
    .lp-footer-inner { grid-template-columns: 1fr; }
}

/* -- 19. Sticky call bar (mobile) --------------------------------------------------------- */
.lp-sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--rouge); box-shadow: 0 -4px 20px rgba(0,0,0,0.25); }
.lp-sticky-call a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; color: var(--blanc); font-weight: 700; font-size: 15px; }
@media (max-width: 760px) {
    .lp-sticky-call { display: block; }
    body { padding-bottom: 60px; }
}

/* -- 20. Page Mentions légales (gabarit statique, pas Elementor) --------------------------- */
.lp-legal { padding: 56px var(--gouttiere) 96px; background: var(--creme); }
.lp-legal-inner { max-width: 760px; margin: 0 auto; }
.lp-legal-back { display: inline-block; margin-bottom: 28px; color: var(--rouge-2); font-weight: 700; font-size: 14px; }
.lp-legal h1 { font-size: 2rem; margin-bottom: 32px; }
.lp-legal h2 { font-size: 1.15rem; margin-top: 36px; color: var(--noir); }
.lp-legal p { color: var(--texte); }
.lp-legal-note { background: var(--creme-profond); border-left: 3px solid var(--rouge); padding: 14px 18px; font-size: 14px; color: var(--texte-doux); border-radius: 0 var(--radius) var(--radius) 0; }

/* -- 21. Fallback (index.php) ------------------------------------------------------------- */
.lp-fallback { max-width: 760px; margin: 0 auto; padding: 64px var(--gouttiere); }
