/* =========================================================
   MS Serrurerie | Feuille de style principale
   Design : élégant, "Sécurité & Artisanat"
   Palette : noir + rouge + blanc
   ========================================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Couleurs */
    --c-bg: #ffffff;
    --c-surface: #ffffff;
    --c-surface-alt: #f5f5f5;
    --c-ink: #111111;
    --c-ink-2: #2a2a2a;
    --c-muted: #666666;
    --c-line: #e0e0e0;
    --c-gold: #c41e2a;
    --c-gold-dark: #9a1620;
    --c-gold-light: #fde8ea;
    --c-urgence: #d94a3a;
    --c-success: #2e8b57;

    /* Typo */
    --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --f-display: "Playfair Display", Georgia, serif;

    /* Espacements */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);

    /* Container */
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--f-sans);
    color: var(--c-ink);
    background: var(--c-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: var(--c-ink);
    text-decoration: none;
    transition: color .2s ease;
}

a:hover {
    color: var(--c-gold-dark);
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typo helpers ---------- */
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--c-gold-dark);
    margin-bottom: 14px;
}

.eyebrow-light {
    color: var(--c-gold-light);
}

.accent {
    color: var(--c-gold-dark);
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 700;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--c-ink);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    font-family: var(--f-display);
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ---------- Boutons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 100px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(196, 30, 42, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(196, 30, 42, 0.42);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--c-ink);
    border: 1.5px solid var(--c-line);
}

.btn-secondary:hover {
    background: var(--c-ink);
    color: #fff;
    border-color: var(--c-ink);
}

.btn-block {
    width: 100%;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    margin-top: 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 24px;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-1px);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color .2s ease, background-color .2s ease;
}

.site-header.scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background: rgba(17, 17, 17, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.logo:hover { color: #fff; }

.logo-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--c-ink);
    color: var(--c-gold);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.logo-mark-img {
    background: #fff;
    padding: 0;
}

.logo-mark-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-mark svg {
    width: 26px;
    height: 26px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.logo-text small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
    letter-spacing: 0.4px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    transition: background-color .2s ease, color .2s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-cta {
    background: var(--c-gold) !important;
    color: #fff !important;
    padding: 10px 18px !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--c-gold-dark) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(196, 30, 42, 0.08), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(17, 17, 17, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.badge-urgence {
    background: rgba(46, 139, 87, 0.1);
    color: var(--c-success);
    border: 1px solid rgba(46, 139, 87, 0.2);
}

.badge-urgence .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-success);
    box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 139, 87, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(46, 139, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 139, 87, 0); }
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 22px;
    color: var(--c-ink);
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--c-ink-2);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--c-line);
}

.hero-trust li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-trust strong {
    font-family: var(--f-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--c-ink);
    line-height: 1;
}

.hero-trust strong span {
    font-size: 1rem;
    color: inherit;
}

.hero-trust span:not(strong span) {
    font-size: 13px;
    color: var(--c-gold-dark);
    font-weight: 500;
}

/* Portrait Simon */
.hero-portrait {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 28px 28px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-line);
}

.hero-portrait::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, transparent 40%, rgba(196, 30, 42, 0.2));
    z-index: -1;
}

.portrait-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--c-surface-alt);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portrait-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--c-ink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 100px;
    box-shadow: var(--shadow-md);
}

.portrait-badge::before {
    content: "★ ";
    color: var(--c-gold);
}

.portrait-caption {
    text-align: center;
    line-height: 1.4;
}

.portrait-caption strong {
    display: block;
    font-family: var(--f-display);
    font-size: 1.4rem;
    color: var(--c-ink);
}

.portrait-caption span {
    display: block;
    font-size: 13px;
    color: var(--c-muted);
    margin-top: 4px;
}

.portrait-insta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-muted);
    padding: 8px 14px;
    border-radius: 100px;
    background: var(--c-surface-alt);
    transition: color .2s ease, background-color .2s ease;
}

.portrait-insta:hover {
    color: var(--c-gold-dark);
    background: var(--c-gold-light);
}

.portrait-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #25d366;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(37, 211, 102, 0.08);
    transition: color .2s ease, background-color .2s ease;
}

.portrait-whatsapp:hover {
    color: #fff;
    background: #25d366;
}

/* ---------- PROMO BANNER ---------- */
.promo-banner {
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--c-gold);
    border-bottom: 4px solid var(--c-gold);
    isolation: isolate;
}

.promo-bg-blur {
    position: absolute;
    inset: -40px;
    background-image: var(--promo-bg);
    background-size: cover;
    background-position: center;
    filter: blur(28px) saturate(1.2);
    transform: scale(1.1);
    z-index: -2;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(10, 22, 40, .25) 0%, rgba(10, 22, 40, .55) 100%),
        linear-gradient(135deg, rgba(20, 40, 80, .3) 0%, rgba(10, 22, 40, .45) 100%);
    z-index: -1;
}

.promo-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
    padding: 56px 20px;
}

.promo-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .5),
        0 0 0 1px rgba(255, 255, 255, .08),
        0 0 80px rgba(212, 175, 55, .2);
    transform: rotate(-1deg);
    transition: transform .4s ease;
}

.promo-img:hover {
    transform: rotate(0) scale(1.02);
}

.promo-img img {
    display: block;
    width: 100%;
    height: auto;
}

.promo-cta-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #fff;
}

.promo-badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    background: var(--c-gold);
    color: var(--c-ink);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: 0 6px 20px rgba(212, 175, 55, .4);
    animation: promo-pulse 2.5s ease-in-out infinite;
}

@keyframes promo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.promo-title {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    line-height: 1.15;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.promo-title span {
    color: var(--c-gold);
    display: inline-block;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, .9),
        0 0 12px rgba(0, 0, 0, .7),
        0 0 24px rgba(0, 0, 0, .5);
}

.promo-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    margin: 4px 0;
    width: fit-content;
}

.promo-price-label {
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.promo-price-amount {
    font-family: var(--f-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1;
    text-shadow: 0 4px 30px rgba(212, 175, 55, .4);
}

.promo-price-amount small {
    font-size: .35em;
    color: #fff;
    margin-left: 6px;
    letter-spacing: .04em;
}

.promo-price-foot {
    font-size: .85rem;
    color: rgba(255, 255, 255, .8);
    margin-top: 4px;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.promo-features li {
    color: rgba(255, 255, 255, .9);
    font-size: .95rem;
    font-weight: 500;
}

.promo-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.promo-buttons .btn {
    padding: 14px 26px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
}

.promo-buttons .btn-ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35);
    backdrop-filter: blur(8px);
}

.promo-buttons .btn-ghost:hover {
    background: rgba(255, 255, 255, .2);
    border-color: #fff;
}

@media (max-width: 860px) {
    .promo-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 16px;
    }

    .promo-img {
        transform: none;
        max-width: 420px;
        margin: 0 auto;
    }

    .promo-cta-panel {
        text-align: center;
        align-items: center;
    }

    .promo-badge,
    .promo-price {
        align-self: center;
    }

    .promo-features {
        justify-content: center;
    }

    .promo-buttons {
        justify-content: center;
        width: 100%;
    }

    .promo-buttons .btn {
        flex: 1 1 auto;
        min-width: 200px;
    }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: var(--c-ink);
    color: #fff;
    padding: 28px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.trust-item svg {
    color: var(--c-gold);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.trust-item span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--c-surface-alt);
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-head h2 {
    margin-bottom: 16px;
}

.section-head p {
    color: var(--c-muted);
    font-size: 1.05rem;
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-gold);
}

.service-card.highlight {
    background: linear-gradient(165deg, #fff5f5 0%, var(--c-gold-light) 100%);
    color: var(--c-ink);
    border-color: var(--c-gold);
    box-shadow: 0 14px 34px rgba(196, 30, 42, 0.15);
}

.service-card.highlight::before {
    content: "★ Le plus demandé";
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    box-shadow: 0 6px 14px rgba(196, 30, 42, 0.3);
}

.service-card.highlight h3,
.service-card.highlight .service-price {
    color: var(--c-ink);
}

.service-card.highlight p {
    color: var(--c-ink-2);
}

.service-card.highlight .service-icon {
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(196, 30, 42, 0.25);
}

/* Rythme visuel : alterne les teintes d'icônes sans casser l'harmonie rouge/noir */
.service-card:nth-child(2) .service-icon {
    background: rgba(17, 17, 17, 0.07);
    color: var(--c-ink);
}
.service-card:nth-child(4) .service-icon {
    background: rgba(17, 17, 17, 0.07);
    color: var(--c-ink);
}
.service-card:nth-child(5) .service-icon {
    background: rgba(196, 30, 42, 0.1);
    color: var(--c-gold);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--c-gold-light);
    color: var(--c-gold-dark);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--c-muted);
    font-size: 14.5px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-gold-dark);
    letter-spacing: 0.3px;
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 820px;
    margin: 0 auto;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--c-ink-2);
    margin-bottom: 18px;
}

.about-content p {
    color: var(--c-muted);
    margin-bottom: 16px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.about-points li {
    display: flex;
    gap: 14px;
}

.about-points span {
    width: 32px;
    height: 32px;
    background: var(--c-gold-light);
    color: var(--c-gold-dark);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-weight: 700;
    flex-shrink: 0;
}

.about-points strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.about-points p {
    margin: 0;
    font-size: 13.5px;
    color: var(--c-muted);
}

.about-content > .btn {
    display: flex;
    margin: 32px auto 0;
    width: fit-content;
}

/* ---------- TARIFS ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.price-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.price-card.featured {
    background: linear-gradient(165deg, #fff 0%, var(--c-gold-light) 100%);
    border-color: var(--c-gold);
    transform: scale(1.02);
}

.price-card header {
    margin-bottom: 22px;
}

.price-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--c-surface-alt);
    color: var(--c-muted);
    margin-bottom: 12px;
}

.price-tag-gold {
    background: var(--c-gold);
    color: #fff;
}

.price-tag-night {
    background: var(--c-ink);
    color: #fff;
}

.price-card h3 {
    font-size: 1.25rem;
}

.price-amount {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--c-line);
}

.price-amount strong {
    display: block;
    font-family: var(--f-display);
    font-size: 2.4rem;
    color: var(--c-ink);
    line-height: 1;
}

.price-amount small {
    display: block;
    font-size: 12px;
    color: var(--c-muted);
    margin-top: 6px;
}

.price-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-card li {
    font-size: 14px;
    color: var(--c-ink-2);
    padding-left: 22px;
    position: relative;
}

.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--c-gold-dark);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    color: var(--c-muted);
    font-size: 15px;
}

.pricing-note a {
    color: var(--c-gold-dark);
    text-decoration: underline;
    font-weight: 600;
}

/* ---------- ZONE ---------- */
.zone-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.zone-content h2 {
    margin-bottom: 18px;
}

.zone-content > p {
    color: var(--c-muted);
    margin-bottom: 24px;
}

.zone-cities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    margin-bottom: 24px;
}

.zone-cities li {
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    color: var(--c-ink-2);
    border-left: 3px solid var(--c-gold);
}

.zone-note {
    font-size: 14px;
    color: var(--c-muted);
    font-style: italic;
}

.zone-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--c-line);
    background: #fff;
}

.zone-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---------- AVIS ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 26px;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--c-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.star-empty {
    color: var(--c-line);
}

.review-card p {
    color: var(--c-ink-2);
    font-size: 14.5px;
    font-style: italic;
    margin-bottom: 18px;
    flex-grow: 1;
}

.review-card footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--c-line);
}

.review-card footer strong {
    font-size: 14px;
    font-weight: 600;
}

.review-card footer span {
    font-size: 12px;
    color: var(--c-muted);
}

.reviews-source {
    text-align: center;
    font-size: 13px;
    color: var(--c-muted);
}

.reviews-source a {
    color: var(--c-gold-dark);
    text-decoration: underline;
    font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-wrapper {
    max-width: 820px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 0 24px;
    transition: border-color .2s ease;
}

.faq-list details[open] {
    border-color: var(--c-gold);
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-weight: 600;
    font-size: 15.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--c-gold-dark);
    transition: transform .25s ease;
    line-height: 1;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list details p {
    color: var(--c-muted);
    padding-bottom: 22px;
    font-size: 14.5px;
}

/* ---------- CONTACT ---------- */
.section-contact {
    background: linear-gradient(165deg, #111111 0%, #2a2a2a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-contact::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 30, 42, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-intro h2 {
    color: #fff;
    margin-bottom: 18px;
}

.contact-intro > p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 36px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-channels li {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-channels svg {
    color: var(--c-gold);
    flex-shrink: 0;
}

.contact-channels strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2px;
}

.contact-channels a,
.contact-channels div {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.contact-channels a:hover {
    color: var(--c-gold);
}

/* Formulaire */
.quote-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--c-ink);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-ink-2);
}

.form-field label span {
    color: var(--c-urgence);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--c-line);
    border-radius: 10px;
    font: inherit;
    font-size: 14.5px;
    color: var(--c-ink);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 4px rgba(196, 30, 42, 0.12);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field input:invalid:not(:placeholder-shown),
.form-field select:invalid:not(:placeholder-shown) {
    border-color: var(--c-urgence);
}

.radio-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.radio-pill {
    cursor: pointer;
    padding: 8px 16px;
    border: 1.5px solid var(--c-line);
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-ink-2);
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.radio-pill input {
    display: none;
}

.radio-pill:has(input:checked) {
    background: var(--c-ink);
    color: #fff;
    border-color: var(--c-ink);
}

.form-consent .checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    color: var(--c-muted);
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--c-gold-dark);
    flex-shrink: 0;
}

.form-consent a {
    color: var(--c-gold-dark);
    text-decoration: underline;
}

/* Honeypot anti-spam, masqué */
.hp {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-status {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    display: none;
}

.form-status.show { display: block; }

.form-status.success {
    background: rgba(46, 139, 87, 0.1);
    color: var(--c-success);
    border: 1px solid rgba(46, 139, 87, 0.3);
}

.form-status.error {
    background: rgba(217, 74, 58, 0.1);
    color: var(--c-urgence);
    border: 1px solid rgba(217, 74, 58, 0.3);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--c-muted);
    text-align: center;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--c-ink);
    color: rgba(255, 255, 255, 0.72);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
}

.logo-footer { color: #fff; }
.logo-footer:hover { color: #fff; }
.logo-footer .logo-mark { background: var(--c-gold); color: #fff; }
.logo-footer .logo-text small { color: rgba(255, 255, 255, 0.5); }

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a,
.footer-col li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: color .2s ease;
}

.footer-col a:hover {
    color: var(--c-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

.footer-bottom p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

/* ---------- FAB CALL (mobile) ---------- */
.fab-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 40;
    box-shadow: 0 10px 28px rgba(196, 30, 42, 0.4);
    transition: transform .2s ease;
}

.fab-call:hover {
    transform: scale(1.05);
    color: #fff;
}

/* ---------- LEGAL PAGES ---------- */
.legal-hero {
    background: linear-gradient(165deg, #111111 0%, #2a2a2a 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.legal-hero h1 {
    font-family: var(--f-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
    color: #fff;
}

.legal-hero p {
    color: rgba(255, 255, 255, 0.75);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 100px;
}

.legal-content h2 {
    font-family: var(--f-display);
    font-size: 1.5rem;
    margin: 36px 0 14px;
    color: var(--c-ink);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
    font-size: 1.05rem;
    margin: 22px 0 10px;
    color: var(--c-ink-2);
}

.legal-content p,
.legal-content li {
    color: var(--c-ink-2);
    font-size: 15px;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li,
.legal-content ol li {
    list-style: disc;
    margin-bottom: 6px;
}

.legal-content ol li { list-style: decimal; }

.legal-content a {
    color: var(--c-gold-dark);
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--c-muted);
    font-weight: 500;
}

.back-link:hover { color: var(--c-gold-dark); }

/* ---------- GALLERY (Réalisations) : Carousel ---------- */
.gallery-carousel {
    position: relative;
    margin-top: 40px;
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform .4s cubic-bezier(.25, .8, .25, 1);
    cursor: grab;
}

.carousel-track.dragging {
    transition: none;
    cursor: grabbing;
}

.gallery-item {
    flex: 0 0 340px;
    height: 260px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-line);
    background: var(--c-surface-alt);
    padding: 0;
    cursor: zoom-in;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:focus-visible {
    outline: 3px solid var(--c-gold);
    outline-offset: 2px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--c-ink);
    border: 1px solid var(--c-line);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: background-color .2s ease, transform .2s ease, opacity .2s ease;
}

.carousel-arrow:hover {
    background: var(--c-gold);
    color: #fff;
    border-color: var(--c-gold);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev { left: -24px; }
.carousel-next { right: -24px; }

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 280px;
        height: 220px;
    }
    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 85vw;
        height: 200px;
    }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: lb-fade .2s ease;
}

.lightbox[hidden] { display: none; }

@keyframes lb-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    transform: scale(1.05);
}

.lightbox-close {
    top: 24px;
    right: 24px;
    font-size: 28px;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 768px) {
    .lightbox { padding: 16px; }
    .lightbox-close { top: 12px; right: 12px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ---------- URGENCE (CTA mid-page) ---------- */
.section-urgence {
    background:
        radial-gradient(circle at 80% 20%, rgba(196, 30, 42, 0.12), transparent 55%),
        linear-gradient(135deg, var(--c-ink) 0%, #1c1c1c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-urgence::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.urgence-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.urgence-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--c-gold);
    margin-bottom: 14px;
}

.urgence-intro h2 {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.urgence-intro p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 540px;
}

.urgence-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 26px;
    background: var(--c-gold);
    color: #fff !important;
    border-radius: var(--radius-md);
    transition: background-color .2s ease, transform .2s ease;
    box-shadow: 0 8px 24px rgba(196, 30, 42, 0.35);
}

.urgence-phone:hover {
    background: var(--c-gold-dark);
    transform: translateY(-2px);
}

.urgence-phone svg {
    color: #fff;
    flex-shrink: 0;
}

.urgence-phone span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 1.2rem;
    font-weight: 700;
}

.urgence-phone small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3px;
}

.urgence-insta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 18px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    transition: color .2s ease;
    vertical-align: middle;
}

.urgence-insta:hover { color: #fff; }

.urgence-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.urgence-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.urgence-list span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    background: var(--c-gold);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-portrait { max-width: 380px; margin: 0 auto; }
    .services-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid,
    .zone-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .urgence-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .hero { padding: 50px 0 70px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: #111111;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform .3s ease;
        max-height: calc(100vh - 78px);
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-menu a {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
    }

    .hero-trust {
        gap: 24px;
    }
    .hero-trust strong { font-size: 1.5rem; }

    .services-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured { transform: none; }

    .about-points {
        grid-template-columns: 1fr;
    }

    .zone-cities {
        grid-template-columns: 1fr;
    }

    .urgence-phone {
        padding: 14px 20px;
        font-size: 1rem;
    }
    .urgence-insta {
        display: flex;
        margin-left: 0;
        margin-top: 14px;
    }
    .urgence-list { padding: 24px; }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form { padding: 24px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fab-call { display: flex; }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-cta .btn { width: 100%; }
    .hero-portrait { padding: 20px 20px 18px; }
}

/* ---------- A11Y ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
    border-radius: 4px;
}
