/* ================================================================
   SMT TOITURE — General.css
   CSS complet pour toutes les pages du site
   ================================================================ */

/* --------------------------------
   VARIABLES & RESET
   -------------------------------- */
:root{
  --brand-950:#321021;
  --brand-900:#4D1933;
  --brand-800:#623248;
  --brand-700:#7A5367;
  --brand-600:#936E80;

  --brand-200:#D7CAD1;
  --brand-100:#EEE8EB;
  --brand-050:#F8F4F6;

  --white:#FFFFFF;
  --text:#4D1933;
  --text-soft:#6D4A5B;
  --border:rgba(77,25,51,.14);
  --border-strong:rgba(77,25,51,.24);
  --shadow:0 22px 60px rgba(77,25,51,.14);
  --shadow-soft:0 12px 30px rgba(77,25,51,.10);

  --bg-main:linear-gradient(180deg,#ffffff 0%, #f8f4f6 100%);
  --bg-soft:linear-gradient(135deg,#f8f4f6 0%, #eee8eb 100%);
  --btn-main:#4D1933;
  --btn-main-hover:#623248;
  --btn-ghost-bg:#FFFFFF;
  --btn-ghost-border:rgba(77,25,51,.20);

  /* Alias nécessaires au template */
  --container:1200px;
  --sand:#F5EFE6;
  --ink:#4D1933;
  --navy:#5A163C;
  --navy-3:#7A2E57;
  --gold:#8A5F73;
  --gold-2:#B89AAA;
  --gold-soft:#A77F91;
  --line:rgba(77,25,51,.16);
  --muted:#7A5C6B;
  --radius-xl:34px;
  --radius-lg:28px;
  --radius-md:22px;
}

*,
*::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;
}


/* --------------------------------
   LAYOUT
   -------------------------------- */
.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;
}


/* --------------------------------
   SHARED COMPONENTS
   -------------------------------- */

/* --- Glass cards (shared base) --- */
.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);
}

/* --- Eyebrow --- */
.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;
}

/* --- Typography --- */
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);
}

/* --- Buttons --- */
.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);
}

/* --- Tag --- */
.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;
}

/* --- Check-list --- */
.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);
}

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

/* --- Hero proofs --- */
.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);
}


/* --------------------------------
   HOMEPAGE HERO
   -------------------------------- */
.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);
}

.hero__content {}

.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%;
}

.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;
}

.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);
}


/* --------------------------------
   HOMEPAGE INTRO BAND
   -------------------------------- */
.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);
}

.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);
}


/* --------------------------------
   HOMEPAGE SECTIONS
   -------------------------------- */
.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 (HOMEPAGE)
   -------------------------------- */
.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);
}

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

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


/* --------------------------------
   WOW SECTION (HOMEPAGE)
   -------------------------------- */
.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);
}

.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; }


/* --------------------------------
   GALLERY (HOMEPAGE)
   -------------------------------- */
.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 (HOMEPAGE)
   -------------------------------- */
.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);
}

.process__title {}

.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 (HOMEPAGE)
   -------------------------------- */
.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;
}


/* ================================================================
   BREADCRUMB (all interior pages)
   ================================================================ */
.breadcrumb {
    padding: clamp(18px, 3vw, 28px) 0 0;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: .92rem;
    font-weight: 800;
    color: var(--muted);
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    color: var(--line);
}

.breadcrumb li a {
    color: var(--muted);
    transition: color .2s;
}

.breadcrumb li a:hover {
    color: var(--gold);
}

.breadcrumb li[aria-current="page"] {
    color: var(--navy);
}


/* ================================================================
   SERVICE PAGES (toiture, zinguerie, isolation, charpente, etc.)
   ================================================================ */
.page-service {
    padding: 0 0 clamp(60px, 8vw, 100px);
}

/* --- Service Hero --- */
.service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
    padding: clamp(30px, 5vw, 60px) 0 clamp(38px, 6vw, 70px);
}

.service-hero__content {}

.service-hero__content h1 {
    font-size: clamp(2.2rem, 6vw, 4.6rem);
}

.service-hero__lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.65;
}

.service-hero__lead a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
    transition: text-decoration-color .2s;
}

.service-hero__lead a:hover {
    text-decoration-color: var(--gold);
}

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

.service-hero__photo {
    overflow: hidden;
    border: 10px solid var(--white);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
}

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


/* --- Focus Cards (3 pillars under hero) --- */
.service-focus {
    padding: clamp(28px, 4vw, 50px) 0;
}

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

.focus-card {
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 18px 44px rgba(2, 11, 52, .07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.focus-card strong {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: -.06em;
}

.focus-card h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    letter-spacing: -.04em;
    margin-bottom: 14px;
}

.focus-card p {
    margin: 0;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.65;
}

.focus-card a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
}


/* --- Service Content (text sections) --- */
.service-content {
    padding: clamp(38px, 5vw, 60px) 0;
}

.service-content h2 {
    font-size: clamp(1.7rem, 4vw, 3rem);
    margin-bottom: 18px;
}

.service-content h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.service-content p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.7;
    margin: 0 0 14px;
    max-width: 780px;
}

.service-content a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
    transition: text-decoration-color .2s;
}

.service-content a:hover {
    text-decoration-color: var(--gold);
}

.service-content ul {
    margin: 14px 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.7;
}

.service-content ul li {
    margin-bottom: 6px;
}

/* Check-list inside service-content (dark text context) */
.service-content .check-list li {
    color: var(--ink);
}


/* --- Dark Band (dark section with mini-cards) --- */
.service-dark-band {
    padding: clamp(36px, 5vw, 60px);
    border-radius: var(--radius-xl);
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(7, 24, 79, .96), rgba(2, 11, 52, .99)),
        var(--navy);
    box-shadow: var(--shadow);
    margin: clamp(20px, 3vw, 40px) 0;
}

.service-dark-band h2 {
    color: var(--white);
    font-size: clamp(1.7rem, 4vw, 3rem);
    margin-bottom: 14px;
}

.service-dark-band p {
    color: rgba(255, 255, 255, .76);
    font-size: 1.04rem;
    max-width: 700px;
    margin: 0 0 24px;
}


/* --- Mini Grid & Mini Cards --- */
.mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.mini-card {
    display: grid;
    gap: 6px;
    padding: clamp(16px, 2.5vw, 24px);
    border: 1px solid rgba(244, 216, 144, .22);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .08);
    transition: background .2s, transform .2s;
}

.mini-card:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-2px);
}

.mini-card span {
    color: var(--gold-2);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.mini-card strong {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 900;
}

/* Related services mini-cards (light bg context) */
.related-services .mini-card {
    border-color: rgba(228, 216, 197, .95);
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.related-services .mini-card span {
    color: var(--gold);
}

.related-services .mini-card strong {
    color: var(--navy);
}

.related-services .mini-card:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 14px 36px rgba(2, 11, 52, .10);
}


/* --- FAQ --- */
.section--faq {
    padding: clamp(40px, 6vw, 70px) 0;
}

.section--faq .section__heading {
    grid-template-columns: 1fr;
    margin-bottom: 24px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .90);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 900;
    color: var(--navy);
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-answer {
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0 0 10px;
}

.faq-answer a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
}


/* --- Related Services --- */
.related-services {
    padding: clamp(38px, 5vw, 60px) 0;
}

.related-services h2 {
    font-size: clamp(1.7rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.related-services p {
    color: var(--muted);
    margin: 0 0 20px;
}

.section--services,
.section--why {
    padding: clamp(40px, 6vw, 70px) 0;
}


/* --- Service CTA --- */
.service-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: center;
    gap: 28px;
    padding: clamp(28px, 5vw, 50px);
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin: clamp(20px, 3vw, 40px) 0;
}

.service-cta h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
}

.service-cta p {
    color: var(--muted);
    margin: 0;
    max-width: 600px;
}

.service-cta__actions {
    display: grid;
    gap: 12px;
    min-width: 220px;
}


/* ================================================================
   REALISATIONS PAGE
   ================================================================ */
.page-realisations {
    padding: 0 0 clamp(60px, 8vw, 100px);
}

.page-realisations .section__heading {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}

.page-realisations .section__heading h1 {
    font-size: clamp(2rem, 5.5vw, 4rem);
}

.page-realisations .section__heading p {
    max-width: 720px;
    font-size: 1.04rem;
    line-height: 1.65;
}

.page-realisations .section__heading p a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
}

.realisations-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: clamp(28px, 4vw, 50px);
}

.realisation-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(2, 11, 52, .08);
    transition: transform .2s, box-shadow .2s;
}

.realisation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(2, 11, 52, .14);
}

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


/* ================================================================
   ZONE D'INTERVENTION PAGE
   ================================================================ */
.page-zone {
    padding: 0 0 clamp(60px, 8vw, 100px);
}

.page-zone .section__heading {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
    padding-top: clamp(20px, 3vw, 40px);
}

.page-zone .section__heading h1 {
    font-size: clamp(2rem, 5.5vw, 4rem);
}

.page-zone .section__heading p {
    max-width: 720px;
    font-size: 1.04rem;
    line-height: 1.65;
}

.page-zone .section__heading p a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
}

.zone-map-wrapper {
    margin: 0 0 clamp(20px, 3vw, 40px);
    overflow: hidden;
    border: 8px solid var(--white);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(2, 11, 52, .14);
}

.zone-map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 400px;
    border: 0;
}

.zone-communes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 28px;
}

.zone-communes-grid span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, .82);
    font-size: .9rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.zone-communes-grid span em {
    margin-left: 4px;
    color: var(--gold);
    font-style: normal;
    font-weight: 950;
    font-size: .78rem;
}


/* ================================================================
   LEGAL PAGES (mentions, politique-confidentialite)
   ================================================================ */
.page-legal {
    padding: 0 0 clamp(60px, 8vw, 100px);
}

.page-legal .section__heading {
    grid-template-columns: 1fr;
    margin-bottom: 14px;
    padding-top: clamp(20px, 3vw, 40px);
}

.page-legal .section__heading h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.page-legal .section__heading p {
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.65;
}

.legal-content {
    padding: clamp(20px, 3vw, 40px) 0;
}

.legal-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    letter-spacing: -.03em;
    margin-top: 32px;
    margin-bottom: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.legal-content h3 {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    margin-top: 22px;
    margin-bottom: 8px;
}

.legal-content p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 12px;
    max-width: 780px;
}

.legal-content ul {
    margin: 10px 0 18px;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.7;
}

.legal-content ul li {
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
    transition: text-decoration-color .2s;
}

.legal-content a:hover {
    text-decoration-color: var(--gold);
}


/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-page {
    padding: clamp(38px, 7vw, 86px) 0 clamp(70px, 10vw, 120px);
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
    align-items: stretch;
    gap: clamp(24px, 5vw, 62px);
}

.contact-hero__content,
.contact-hero__panel,
.contact-card-form,
.contact-side-card {
    border: 1px solid rgba(228, 216, 197, .95);
    background: rgba(255, 255, 255, .90);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.contact-hero__content {
    padding: clamp(24px, 5vw, 54px);
    border-radius: var(--radius-xl);
}

.contact-hero__content h1 {
    color: var(--navy);
    font-size: clamp(2rem, 5.5vw, 4rem);
}

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

.contact-hero__lead a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
}

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

.contact-hero__panel {
    display: grid;
    align-content: space-between;
    gap: 22px;
    padding: clamp(22px, 4vw, 34px);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(2, 11, 52, .98), rgba(13, 37, 95, .94)),
        var(--navy);
    color: var(--white);
}

.contact-hero__panel h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
}

.contact-hero__panel p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .76);
}

.contact-info-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(244, 216, 144, .22);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .92);
    font-weight: 800;
}

.contact-info-list i {
    margin-top: 4px;
    color: #f4d890;
}

.contact-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(28px, 5vw, 50px);
}

.contact-step {
    padding: clamp(18px, 3vw, 26px);
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 18px 44px rgba(2, 11, 52, .07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.contact-step strong {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.06em;
}

.contact-step p {
    margin: 0;
    color: var(--muted);
    font-weight: 750;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 20px;
    margin-top: clamp(38px, 6vw, 70px);
}

.contact-card-form,
.contact-side-card {
    padding: clamp(22px, 4vw, 34px);
    border-radius: var(--radius-xl);
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: .92rem;
    font-weight: 800;
}

.contact-breadcrumb strong {
    color: var(--navy);
}

.contact-section-title span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-section-title h2 {
    font-size: clamp(1.8rem, 4vw, 3.3rem);
}

.contact-section-title p {
    margin: 14px 0 0;
    color: var(--muted);
}

.contact-section-title p a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field.wide,
.contact-consent,
.contact-form-actions,
.contact-help,
.contact-recaptcha {
    grid-column: 1 / -1;
}

.contact-field span {
    color: var(--navy);
    font-size: .95rem;
    font-weight: 900;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: 18px;
    outline: none;
    color: var(--ink);
    background: rgba(255, 255, 255, .82);
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(168, 121, 0, .60);
    box-shadow: 0 0 0 4px rgba(168, 121, 0, .12);
    background: var(--white);
}

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-consent {
    padding: 16px 18px;
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: 18px;
    background: rgba(251, 248, 241, .88);
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.6;
}

.contact-consent a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-help {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.contact-help a {
    color: var(--gold);
    text-decoration: underline;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-side-list,
.contact-services-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.contact-side-list li,
.contact-services-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: 18px;
    background: rgba(251, 248, 241, .80);
    color: var(--navy);
    font-weight: 850;
}

.contact-services-list li a {
    color: var(--navy);
    transition: color .2s;
}

.contact-services-list li a:hover {
    color: var(--gold);
}

.contact-side-list i,
.contact-services-list i {
    margin-top: 4px;
    color: var(--gold);
}

.contact-side-title {
    margin: 26px 0 0;
    color: var(--navy);
    font-size: 1.35rem;
    letter-spacing: -.04em;
}

.contact-side-card p a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
}

.contact-map {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    margin-top: 22px;
    border: 7px solid var(--white);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(2, 11, 52, .15);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

/* --- Contact FAQ --- */
.contact-faq {
    margin-top: clamp(38px, 6vw, 70px);
}

.contact-faq details {
    border: 1px solid rgba(228, 216, 197, .95);
    border-radius: 18px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, .90);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.contact-faq summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 900;
    color: var(--navy);
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

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

.contact-faq summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-faq details[open] summary::after { content: '−'; }

.contact-faq .faq-body {
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.7;
}

.contact-faq .faq-body p {
    margin: 0 0 10px;
}

.contact-faq .faq-body a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(168, 121, 0, .3);
    text-underline-offset: 3px;
}

.contact-faq .faq-body ul {
    margin: 10px 0;
    padding-left: 20px;
}

.contact-faq .faq-body ul li {
    margin-bottom: 6px;
    color: var(--muted);
}


/* ================================================================
   ZONE D'INTERVENTION — GOOGLE MAP CARD
   ================================================================ */
.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 (≤ 1080px)
   ================================================================ */
@media (max-width: 1080px) {
    .contact-hero,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-steps {
        grid-template-columns: 1fr;
    }
}

@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;
    }

    /* Service pages */
    .service-hero {
        grid-template-columns: 1fr;
    }

    .service-focus__grid {
        grid-template-columns: 1fr;
    }

    .service-cta {
        grid-template-columns: 1fr;
    }

    /* Realisations */
    .realisations-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Zone intervention */
    .intervention-card {
        grid-template-columns: 1fr;
    }
}


/* ================================================================
   RESPONSIVE — SMARTPHONE (≤ 760px)
   ================================================================ */
@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;
    }

    /* Contact page mobile */
    .contact-page {
        padding-top: 28px;
    }

    .contact-hero__content,
    .contact-hero__panel,
    .contact-card-form,
    .contact-side-card {
        border-radius: 26px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-hero__actions,
    .contact-form-actions {
        display: grid;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 300px;
        height: 300px;
    }

    /* Service pages mobile */
    .service-hero__content h1 {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .service-hero__actions {
        display: grid;
    }

    .service-hero__photo {
        border-width: 6px;
        border-radius: 22px;
    }

    .service-dark-band {
        padding: clamp(22px, 4vw, 36px);
        border-radius: 26px;
    }

    .mini-grid {
        grid-template-columns: 1fr;
    }

    .service-cta {
        border-radius: 26px;
        padding: 22px;
    }

    /* Realisations mobile */
    .realisations-gallery {
        grid-template-columns: 1fr;
    }

    /* Zone mobile */
    .zone-map-wrapper {
        border-width: 5px;
        border-radius: 18px;
    }

    .zone-map-wrapper iframe {
        min-height: 300px;
    }

    /* Intervention section mobile */
    .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;
    }
}


/* ================================================================
   RESPONSIVE — TRÈS PETITS ÉCRANS (≤ 430px)
   ================================================================ */
@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;
    }

    .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;
    }
}


/* ================================================================
   CORRECTION ESPACEMENT — MOBILE & PAYSAGE
   ================================================================ */

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

    .logo-card {
        padding: 16px 18px;
    }

    h1 {
        font-size: clamp(2rem, 11.2vw, 3.5rem);
    }

    .smt-site-header .smt-menu-shell {
        width: min(var(--container, 1120px), calc(100% - 34px));
    }

    .smt-site-header .smt-menu {
        min-height: 68px;
        padding: 8px 12px;
        border-radius: 26px;
    }
}

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

    .logo-card {
        padding: 16px 18px;
    }

    h1 {
        font-size: clamp(1.9rem, 10.2vw, 3rem);
    }

    .smt-site-header .smt-menu-shell {
        width: min(var(--container, 1120px), calc(100% - 30px));
    }

    .smt-site-header .smt-menu {
        min-height: 62px;
        padding: 8px 10px;
        border-radius: 24px;
    }
}

@media (max-width: 980px) and (orientation: landscape) {
    .container {
        width: min(var(--container), calc(100% - 56px));
    }

    .hero,
    .contact-page {
        padding-top: 24px;
    }

    .hero__grid,
    .service-hero,
    .section__heading,
    .process__grid,
    .contact-card,
    .contact-hero {
        gap: 22px;
    }

    .logo-card {
        width: min(320px, 100%);
        padding: 16px 18px;
        border-radius: 22px;
    }

    h1 {
        font-size: clamp(1.9rem, 5.2vw, 3.4rem);
    }

    h2 {
        font-size: clamp(1.7rem, 4vw, 2.8rem);
    }

    .visual-card--main,
    .service-hero__photo,
    .google-map-card,
    .zone-map-wrapper {
        border-radius: 24px;
    }

    .smt-site-header {
        padding: 8px 0;
    }

    .smt-site-header .smt-menu-shell {
        width: min(var(--container, 1120px), calc(100% - 56px));
    }

    .smt-site-header .smt-menu {
        min-height: 64px;
        padding: 8px 14px;
        border-radius: 28px;
    }
}

@media (max-width: 760px) and (orientation: landscape) {
    .container {
        width: min(var(--container), calc(100% - 48px));
    }

    .hero {
        padding-top: 20px;
    }

    .hero__proofs {
        gap: 8px;
    }

    .hero__proofs span {
        width: auto;
    }

    .smt-site-header .smt-menu-shell {
        width: min(var(--container, 1120px), calc(100% - 44px));
    }

    .smt-site-header .smt-menu {
        min-height: 60px;
        padding: 7px 12px;
    }
}


/* ================================================================
   PATCH FINAL — ESPACE LATÉRAL GARANTI
   ================================================================ */
.container,
.smt-site-header .smt-menu-shell,
.hero .container,
.section .container,
.contact-page .container,
.footer__container {
    width: min(var(--container, 1200px), calc(100% - 64px));
    margin-inline: auto;
}

@media (max-width: 980px) {
    .container,
    .smt-site-header .smt-menu-shell,
    .hero .container,
    .section .container,
    .contact-page .container,
    .footer__container {
        width: min(var(--container, 1200px), calc(100% - 40px));
    }
}

@media (max-width: 760px) {
    .container,
    .smt-site-header .smt-menu-shell,
    .hero .container,
    .section .container,
    .contact-page .container,
    .footer__container {
        width: min(var(--container, 1200px), calc(100% - 32px));
    }
}

@media (max-width: 980px) and (orientation: landscape) {
    .container,
    .smt-site-header .smt-menu-shell,
    .hero .container,
    .section .container,
    .contact-page .container,
    .footer__container {
        width: min(var(--container, 1200px), calc(100% - 56px));
    }
}
