:root {
    --navy: #020b34;
    --navy-2: #07184f;
    --navy-3: #0d255f;
    --gold: #a87900;
    --gold-2: #c89518;
    --gold-soft: #f4ead4;
    --ink: #111827;
    --muted: #5f6776;
    --cream: #fbf8f1;
    --sand: #f1eadf;
    --line: #e4d8c5;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(2, 11, 52, .16);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    min-width: 0;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    background: var(--sand);
}

body {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: transparent;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image: url("images/background-site.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: translateZ(0);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(251, 248, 241, .72) 0%, rgba(241, 234, 223, .70) 48%, rgba(241, 234, 223, .84) 100%),
        radial-gradient(circle at top left, rgba(168, 121, 0, .18), transparent 34rem),
        radial-gradient(circle at bottom right, rgba(2, 11, 52, .15), transparent 30rem);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

iframe,
video,
canvas,
table {
    max-width: 100%;
}

header,
nav,
.menu,
.Menu,
#menu,
#Menu,
.Menu2,
#Menu2 {
    max-width: 100%;
}

button,
a,
input,
textarea {
    -webkit-tap-highlight-color: transparent;
}

.page-site {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.logo-card,
.intro-band__grid,
.service-card,
.photo-card,
.timeline article,
.contact-card {
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(228, 216, 197, .95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero {
    position: relative;
    padding: clamp(32px, 6vw, 84px) 0 clamp(44px, 7vw, 96px);
}

.hero::after {
    content: "";
    position: absolute;
    right: max(-20vw, -180px);
    top: 40px;
    width: min(42vw, 520px);
    height: min(42vw, 520px);
    border-radius: 50%;
    background: rgba(168, 121, 0, .14);
    filter: blur(2px);
    z-index: -1;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
}

.logo-card {
    width: min(390px, 100%);
    margin-bottom: 28px;
    padding: 18px 22px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(2, 11, 52, .10);
}

.logo-card__img {
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin: 0 0 14px;
    color: var(--gold);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    margin-right: 10px;
    background: currentColor;
}

.eyebrow--light {
    color: #f4d890;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: .98;
    letter-spacing: -.045em;
}

h1 {
    max-width: 780px;
    color: var(--navy);
    font-size: clamp(2.45rem, 7.2vw, 5.7rem);
}

h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4.6vw, 4.1rem);
}

h3 {
    color: var(--navy);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.hero__lead {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.24rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 900;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    box-shadow: 0 16px 36px rgba(2, 11, 52, .28);
}

.btn--ghost {
    color: var(--navy);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .76);
}

.hero__proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero__proofs span {
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, .82);
    font-size: .92rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero__visual {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.visual-card {
    overflow: hidden;
    border: 10px solid var(--white);
    background: var(--white);
    box-shadow: var(--shadow);
}

.visual-card--main {
    width: min(100%, 500px);
    margin-left: auto;
    border-radius: 38px;
    transform: rotate(2deg);
}

.visual-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.floating-ticket {
    position: absolute;
    left: 0;
    bottom: 34px;
    width: min(350px, calc(100% - 18px));
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .70);
    border-radius: 24px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(2, 11, 52, .98), rgba(13, 37, 95, .96));
    box-shadow: 0 24px 54px rgba(2, 11, 52, .28);
}

.floating-ticket::before {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin-bottom: 12px;
    background: var(--gold-2);
}

.floating-ticket strong,
.floating-ticket span {
    display: block;
}

.floating-ticket strong {
    font-size: 1.18rem;
}

.floating-ticket span {
    margin-top: 4px;
    color: rgba(255, 255, 255, .78);
}

.intro-band {
    padding: 18px 0;
}

.intro-band__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 55px rgba(2, 11, 52, .08);
}

.intro-band article {
    padding: clamp(18px, 3vw, 28px);
    border-radius: 24px;
    background: rgba(251, 248, 241, .88);
}

.number {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--gold);
    font-weight: 950;
    letter-spacing: -.05em;
    font-size: 2rem;
}

.intro-band h2 {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    letter-spacing: -.04em;
}

.intro-band p,
.service-card p,
.section__heading p,
.timeline p,
.contact-card p,
.wow-card p,
.photo-card span {
    color: var(--muted);
}

.section {
    padding: clamp(60px, 9vw, 112px) 0;
}

.section__heading {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(260px, .55fr);
    align-items: end;
    gap: 28px;
    margin-bottom: 28px;
}

.section__heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -10px;
}

.section__heading p {
    margin: 0;
    font-size: 1.06rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    padding: clamp(20px, 3vw, 28px);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 44px rgba(2, 11, 52, .07);
}

.service-card--wide {
    grid-column: span 2;
    min-height: 430px;
    padding: 0;
}

.service-card--wide img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.service-card--wide div {
    padding: clamp(20px, 3vw, 28px);
}

.service-card--facade {
    grid-column: span 2;
}

.service-card--dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, .14);
    background:
        linear-gradient(145deg, rgba(7, 24, 79, .95), rgba(2, 11, 52, .99)),
        var(--navy);
}

.service-card--dark h3,
.wow-card h2 {
    color: var(--white);
}

.service-card--dark p {
    color: rgba(255, 255, 255, .78);
}

.tag {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--gold);
    background: rgba(168, 121, 0, .12);
    font-size: .74rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-card--dark .tag {
    color: var(--gold-soft);
    background: rgba(255, 255, 255, .14);
}

.service-card p {
    margin: 18px 0 0;
}

.wow-section {
    padding: clamp(30px, 6vw, 70px) 0;
}

.wow-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    min-height: 520px;
    padding: clamp(28px, 6vw, 72px);
    border-radius: clamp(28px, 4vw, 48px);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(2, 11, 52, .99), rgba(13, 37, 95, .96)),
        var(--navy);
    box-shadow: 0 32px 90px rgba(2, 11, 52, .30);
}

.wow-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(244, 216, 144, .28);
    border-radius: calc(clamp(28px, 4vw, 48px) - 10px);
    pointer-events: none;
}

.wow-card::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(168, 121, 0, .16);
}

.wow-card__content {
    position: relative;
    z-index: 1;
}

.wow-card__content p {
    max-width: 720px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .76);
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, .88);
    font-weight: 800;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .35em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold-2);
    box-shadow: 0 0 0 6px rgba(200, 149, 24, .16);
}

.shield {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: min(360px, 100%);
    aspect-ratio: 1;
    margin-inline: auto;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.shield__roof {
    position: absolute;
    top: 17%;
    width: 44%;
    height: 44%;
    border-top: 10px solid var(--gold-2);
    border-left: 10px solid var(--gold-2);
    transform: rotate(45deg);
    opacity: .95;
}

.shield__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(244, 216, 144, .30);
}

.shield__ring--one {
    inset: 12%;
}

.shield__ring--two {
    inset: 25%;
    border-style: dashed;
}

.shield__core {
    display: grid;
    place-items: center;
    width: 44%;
    aspect-ratio: 1;
    border-radius: 32% 32% 44% 44%;
    color: var(--navy);
    background: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -.06em;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .22);
}

.shield__label {
    position: absolute;
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid rgba(244, 216, 144, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: var(--white);
    font-weight: 900;
    font-size: .88rem;
}

.shield__label--top { top: 5%; }
.shield__label--right { right: 0; }
.shield__label--bottom { bottom: 5%; }
.shield__label--left { left: 0; }

.section--gallery {
    padding-top: clamp(60px, 9vw, 110px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.photo-card {
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(2, 11, 52, .09);
}

.photo-card--lift {
    transform: translateY(-26px);
}

.photo-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.photo-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
}

.photo-card strong {
    color: var(--navy);
    font-size: 1.25rem;
}

.process {
    padding: clamp(52px, 8vw, 96px) 0;
    background: linear-gradient(180deg, transparent, rgba(228, 216, 197, .48));
}

.process__grid {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.2fr);
    gap: clamp(28px, 5vw, 70px);
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 18px;
    align-items: start;
    padding: clamp(18px, 3vw, 26px);
    border-radius: var(--radius-md);
}

.timeline span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: var(--gold);
    font-weight: 950;
}

.timeline h3,
.timeline p {
    grid-column: 2;
}

.timeline p {
    margin: 0;
}

.contact-section {
    padding: clamp(50px, 8vw, 92px) 0 clamp(70px, 10vw, 120px);
}

.contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 370px);
    align-items: center;
    gap: 24px;
    padding: clamp(24px, 5vw, 56px);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(251, 248, 241, .88));
    box-shadow: var(--shadow);
}

.contact-card p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.contact-details {
    margin-top: 18px;
    font-weight: 700;
}

.contact-actions {
    display: grid;
    gap: 12px;
}

.phone-card,
.mail-card {
    display: grid;
    width: 100%;
    border-radius: 26px;
    font-weight: 900;
}

.phone-card {
    gap: 4px;
    padding: 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-3));
    box-shadow: 0 18px 44px rgba(2, 11, 52, .25);
}

.phone-card span {
    color: rgba(255, 255, 255, .74);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
}

.phone-card strong {
    display: block;
    max-width: 100%;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    overflow-wrap: anywhere;
}

.mail-card {
    justify-content: center;
    padding: 18px 20px;
    color: var(--navy);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .82);
    text-align: center;
    overflow-wrap: anywhere;
}

@media (max-width: 980px) {
    .hero__grid,
    .section__heading,
    .wow-card,
    .process__grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: auto;
    }

    .visual-card--main {
        margin-inline: auto;
        transform: none;
    }

    .floating-ticket {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -34px auto 0;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card--wide,
    .service-card--facade {
        grid-column: span 2;
    }

    .photo-card--lift {
        transform: none;
    }
}

@media (max-width: 760px) {
    body::before {
        background-image: url("images/background-site-portrait.jpg");
        background-size: cover;
        background-position: center top;
    }

    body::after {
        background:
            linear-gradient(180deg, rgba(251, 248, 241, .76) 0%, rgba(241, 234, 223, .76) 48%, rgba(241, 234, 223, .90) 100%),
            radial-gradient(circle at top left, rgba(168, 121, 0, .14), transparent 24rem),
            radial-gradient(circle at bottom right, rgba(2, 11, 52, .14), transparent 24rem);
    }

    body * {
        max-width: 100%;
    }

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .hero {
        padding-top: 24px;
    }

    .hero::after {
        right: -120px;
        top: 12px;
        width: 260px;
        height: 260px;
    }

    .logo-card {
        width: min(330px, 100%);
        padding: 14px 16px;
        border-radius: 20px;
    }

    h1 {
        font-size: clamp(2.15rem, 13.5vw, 4rem);
        letter-spacing: -.055em;
    }

    h2 {
        font-size: clamp(1.9rem, 10vw, 3.2rem);
    }

    .hero__actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .intro-band__grid,
    .service-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card--wide,
    .service-card--facade {
        grid-column: auto;
        min-height: auto;
    }

    .service-card--wide img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .wow-card {
        min-height: auto;
    }

    .shield {
        width: min(280px, 100%);
    }

    .shield__label {
        font-size: .76rem;
        padding: 7px 9px;
    }

    .timeline article {
        grid-template-columns: 1fr;
    }

    .timeline h3,
    .timeline p {
        grid-column: auto;
    }

    .phone-card {
        padding: 20px;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .hero__proofs span {
        width: 100%;
        justify-content: center;
    }

    .intro-band__grid {
        padding: 10px;
        border-radius: 26px;
    }

    .wow-card,
    .contact-card {
        padding: 22px;
        border-radius: 26px;
    }

    .wow-card::before {
        inset: 10px;
        border-radius: 20px;
    }

    .shield__label--right { right: -4px; }
    .shield__label--left { left: -4px; }

    .photo-card figcaption {
        padding: 16px;
    }
}


/* ================================
   Zone d'intervention - Google Map
   À ajouter en bas de General.css
================================ */

.intervention-section {
    position: relative;
    padding: clamp(50px, 8vw, 96px) 0;
}

.intervention-section::before {
    content: "";
    position: absolute;
    left: max(-16vw, -160px);
    top: 10%;
    width: min(34vw, 420px);
    height: min(34vw, 420px);
    border-radius: 50%;
    background: rgba(168, 121, 0, .15);
    filter: blur(2px);
    z-index: -1;
    pointer-events: none;
}

.intervention-card {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    padding: clamp(24px, 5vw, 58px);
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .90);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.intervention-content p {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.intervention-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.intervention-list span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border: 1px solid rgba(168, 121, 0, .28);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, .76);
    font-size: .9rem;
    font-weight: 850;
}

.intervention-list span:last-child {
    color: var(--white);
    border-color: rgba(200, 149, 24, .55);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.google-map-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border: 10px solid rgba(255, 255, 255, .92);
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 26px 60px rgba(2, 11, 52, .24);
}

.google-map-card iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.map-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    display: grid;
    gap: 2px;
    min-width: 118px;
    padding: 14px 16px;
    border: 1px solid rgba(244, 216, 144, .42);
    border-radius: 20px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(2, 11, 52, .97), rgba(13, 37, 95, .94));
    box-shadow: 0 14px 34px rgba(2, 11, 52, .28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-badge strong {
    color: #f4d890;
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: -.04em;
}

.map-badge span {
    color: rgba(255, 255, 255, .78);
    font-size: .78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Responsive tablette */
@media (max-width: 980px) {
    .intervention-card {
        grid-template-columns: 1fr;
    }
}

/* Responsive smartphone */
@media (max-width: 760px) {
    .intervention-section {
        padding: 42px 0 56px;
    }

    .intervention-card {
        padding: 22px;
        border-radius: 26px;
    }

    .intervention-list span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .google-map-card {
        min-height: 340px;
        border-width: 6px;
        border-radius: 24px;
    }

    .google-map-card iframe {
        height: 340px;
    }

    .map-badge {
        right: 12px;
        top: 12px;
        min-width: 104px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .map-badge strong {
        font-size: 1.45rem;
    }

    .map-badge span {
        font-size: .7rem;
    }
}

/* Très petits écrans */
@media (max-width: 430px) {
    .intervention-card {
        padding: 20px;
        border-radius: 24px;
    }

    .google-map-card {
        min-height: 310px;
    }

    .google-map-card iframe {
        height: 310px;
    }

    .map-badge {
        position: static;
        margin: 10px;
    }
}