/* ============================================================
   Maçonnerie Pro Solutions — feuille de style principale
   Complète Bootstrap 5 : identité visuelle, sections, mobile.
   ============================================================ */

:root {
    --mps-noir: #0d0d0f;
    --mps-noir-2: #0a0a0b;
    --mps-panneau: #161618;
    --mps-panneau-2: #1f1f22;
    --mps-jaune: #f5ce00;
    --mps-texte: #f4f4f1;
    --mps-texte-2: #c4c4c1;
    --mps-texte-3: #a9a9a6;
    --mps-bordure: rgba(255, 255, 255, .08);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--mps-noir);
    color: var(--mps-texte);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ------------------------------------------------------------
   Structure générale
   ------------------------------------------------------------ */

.conteneur-site {
    max-width: 1820px;
    margin: 0 auto;
    overflow: clip;
    background: var(--mps-noir);
}

.section-px {
    padding-left: clamp(20px, 4vw, 44px);
    padding-right: clamp(20px, 4vw, 44px);
}

.texte-jaune {
    color: var(--mps-jaune);
}

.largeur-lecture {
    max-width: 1000px;
}

.largeur-paragraphe {
    max-width: 760px;
}

.largeur-faq {
    max-width: 900px;
}

/* ------------------------------------------------------------
   Typographie
   ------------------------------------------------------------ */

.titre-hero {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.08;
    letter-spacing: .005em;
    text-transform: uppercase;
    margin: 0 0 22px;
}

.titre-section {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0 0 32px;
}

.titre-sous-section {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.08;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.kicker {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mps-jaune);
    margin-bottom: 12px;
}

.kicker-bordure {
    display: inline-block;
    align-self: flex-start;
    border-left: 3px solid var(--mps-jaune);
    padding-left: 12px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mps-jaune);
    margin-bottom: 22px;
}

.paragraphe {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.65;
    color: var(--mps-texte-2);
    margin: 0 0 16px;
}

.paragraphe strong {
    color: #fff;
}

/* ------------------------------------------------------------
   Boutons & pastilles
   ------------------------------------------------------------ */

.btn-jaune {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--mps-jaune);
    color: #111;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .04em;
    padding: 11px 20px;
    border: 0;
    white-space: nowrap;
}

.btn-jaune:hover,
.btn-jaune:focus {
    background: #ffdb1a;
    color: #111;
}

.btn-jaune-lg {
    font-size: 18px;
    letter-spacing: .03em;
    padding: 16px 28px;
}

.btn-noir {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #111;
    color: var(--mps-jaune);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .03em;
    padding: 18px 30px;
}

.btn-noir:hover,
.btn-noir:focus {
    background: #000;
    color: var(--mps-jaune);
}

.chip {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #e9e9e6;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 7px 14px;
}

.pastille {
    font-size: 13px;
    color: #d6d6d3;
    background: var(--mps-panneau-2);
    border: 1px solid var(--mps-bordure);
    padding: 5px 10px;
}

.pastille-lien {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    background: var(--mps-jaune);
    border: 1px solid var(--mps-jaune);
    padding: 5px 10px;
}

.pastille-lien:hover,
.pastille-lien:focus {
    background: #ffdb1a;
    color: #111;
}

/* ------------------------------------------------------------
   En-tête & navigation
   ------------------------------------------------------------ */

.navbar-mps {
    background: var(--mps-noir-2);
    border-bottom: 1px solid var(--mps-bordure);
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-mps .navbar-brand img {
    height: 56px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
}

.navbar-mps .nav-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c9c9c6;
}

.navbar-mps .nav-link:hover,
.navbar-mps .nav-link:focus {
    color: var(--mps-jaune);
}

.navbar-mps .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 0;
    padding: 8px 10px;
}

.navbar-mps .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(245, 206, 0, .5);
}

.navbar-mps .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(244, 244, 241, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.fil-ariane {
    padding-top: 14px;
    padding-bottom: 14px;
    background: var(--mps-noir-2);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 13px;
    color: #8a8a88;
}

.fil-ariane a {
    color: #8a8a88;
}

.fil-ariane a:hover {
    color: var(--mps-jaune);
}

.fil-ariane .separateur {
    color: #5a5a58;
}

.fil-ariane .actif {
    color: var(--mps-jaune);
}

@media (min-width: 992px) {
    .navbar-mps .navbar-brand img {
        height: 84px;
    }
}

/* ------------------------------------------------------------
   Héro
   ------------------------------------------------------------ */

.hero-contenu {
    padding-top: clamp(44px, 6vw, 70px);
    padding-bottom: clamp(40px, 6vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-texte {
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.55;
    color: #cfcfcc;
    max-width: 560px;
    margin: 0 0 30px;
}

.hero-tel {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    letter-spacing: .03em;
}

.hero-media {
    position: relative;
    min-height: 260px;
    background: #161619 url('../img/hero-brique.jpg') center/cover no-repeat;
    border-left: 0;
    border-top: 4px solid var(--mps-jaune);
}

@media (min-width: 992px) {
    .hero-media {
        min-height: 560px;
        border-top: 0;
        border-left: 4px solid var(--mps-jaune);
    }
}

/* ------------------------------------------------------------
   Bandeau stats
   ------------------------------------------------------------ */

.bande-stats {
    background: var(--mps-jaune);
    color: #111;
}

.bande-stats .stat {
    padding: 22px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.bande-stats .stat:last-child {
    border-bottom: 0;
}

.bande-stats .stat-valeur {
    font-family: 'Anton', sans-serif;
    font-size: clamp(24px, 2.4vw, 30px);
}

.bande-stats .stat-libelle {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .bande-stats .stat {
        border-bottom: 0;
        border-right: 1px solid rgba(0, 0, 0, .15);
    }

    .bande-stats .stat:last-child {
        border-right: 0;
    }
}

/* ------------------------------------------------------------
   Cartes services
   ------------------------------------------------------------ */

.carte-service {
    background: var(--mps-panneau);
    border: 1px solid var(--mps-bordure);
    border-top: 3px solid var(--mps-jaune);
    height: 100%;
}

.carte-service .photo {
    height: 160px;
    background: repeating-linear-gradient(45deg, #1c1c1f, #1c1c1f 12px, #222226 12px, #222226 24px);
    overflow: hidden;
}

.carte-service .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carte-service .corps {
    padding: 26px 24px 30px;
}

.carte-service h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.carte-service p {
    font-size: 15px;
    line-height: 1.6;
    color: #b8b8b5;
    margin: 0;
}

/* ------------------------------------------------------------
   Bloc secteurs / zones desservies
   ------------------------------------------------------------ */

.bloc-panneau {
    background: var(--mps-panneau);
    border: 1px solid var(--mps-bordure);
    padding: clamp(28px, 4vw, 54px) clamp(20px, 3.5vw, 44px);
}

.carte-zone {
    background: var(--mps-panneau);
    border: 1px solid var(--mps-bordure);
    border-top: 3px solid var(--mps-jaune);
    padding: 26px 24px;
    height: 100%;
}

.carte-zone h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.titre-region {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--mps-jaune);
    margin: 0 0 12px;
}

.texte-region {
    font-size: 15px;
    line-height: 1.65;
    color: #b8b8b5;
    margin: 0;
}

/* ------------------------------------------------------------
   Pourquoi nous
   ------------------------------------------------------------ */

.atout .numero {
    font-family: 'Anton', sans-serif;
    font-size: 30px;
    color: var(--mps-jaune);
    margin-bottom: 8px;
}

.atout h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.atout p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--mps-texte-3);
    margin: 0;
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */

.faq details {
    background: var(--mps-panneau);
    border: 1px solid var(--mps-bordure);
    padding: 20px 24px;
}

.faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 1.4vw, 18px);
    text-transform: uppercase;
    list-style: none;
    cursor: pointer;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary .signe {
    color: var(--mps-jaune);
    font-size: 24px;
    flex-shrink: 0;
    transition: transform .2s ease;
}

.faq details[open] summary .signe {
    transform: rotate(45deg);
}

.faq details p {
    font-size: 15px;
    line-height: 1.6;
    color: #b6b6b3;
    margin: 14px 0 0;
}

/* ------------------------------------------------------------
   Bande CTA & pied de page
   ------------------------------------------------------------ */

.bande-cta {
    background: var(--mps-jaune);
    color: #111;
    padding-top: 50px;
    padding-bottom: 50px;
}

.bande-cta .titre-section {
    margin-bottom: 8px;
}

.bande-cta p {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .02em;
    margin: 0;
}

.pied-page {
    background: var(--mps-noir-2);
    border-top: 1px solid var(--mps-bordure);
    padding-top: 44px;
    padding-bottom: 44px;
}

.pied-page .logo img {
    height: 76px;
    width: auto;
    mix-blend-mode: screen;
}

.pied-page .tel {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--mps-jaune);
    letter-spacing: .03em;
}

.pied-page .sous-titre {
    font-size: 14px;
    color: #9a9a98;
    margin-top: 6px;
}

.pied-page .lien-retour {
    font-size: 13px;
    color: #c9c9c6;
}

.pied-page .lien-retour:hover {
    color: var(--mps-jaune);
}

.pied-page .copyright {
    font-size: 13px;
    color: #5e5e5c;
    margin-top: 24px;
}

/* ------------------------------------------------------------
   Barre d'appel mobile (fixe en bas d'écran)
   ------------------------------------------------------------ */

.barre-appel-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--mps-jaune);
    color: #111;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: .04em;
    padding: 14px 20px;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, .45);
}

.barre-appel-mobile:hover,
.barre-appel-mobile:focus {
    color: #111;
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 54px;
    }
}
