@font-face {
    font-family: "Coolvetica";
    src: url("../fonts/Coolvetica.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins.ttf") format("truetype");
    font-weight: 600;
    font-display: swap;
}

:root {
    --green: #2D8A4E;
    --green-light: #4ade80;
    --green-dark: #1e6b3a;
    --green-soft: rgba(45, 138, 78, 0.12);
    --black: #141414;
    --grey-dark: #2c2c2c;
    --grey: #6b6b6b;
    --grey-light: #e8e8e8;
    --white: #ffffff;
    --bg: #f4f6f4;
    --font-heading: "Coolvetica", "Poppins", Arial, sans-serif;
    --font-body: "Poppins", Arial, sans-serif;
    --radius: 1rem;
    --shadow: 0 20px 50px rgba(20, 20, 20, 0.08);
    --top-header-height: 4.5rem;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--grey-dark);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

.wrap {
    width: min(1140px, 92vw);
    margin: 0 auto;
}

.text-accent { color: var(--green-light); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation horizontale en haut */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.top-header__inner {
    max-width: 1320px;
    width: min(1320px, 98vw);
    margin: 0 auto;
    padding: 0 clamp(1.15rem, 2.5vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    min-height: 72px;
}

.top-header__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    flex-shrink: 0;
    margin-right: auto;
}

.top-header__brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.top-header__name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.top-header__name em {
    font-style: normal;
    color: var(--green-light);
}

.top-header__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 0.35rem;
    min-width: 0;
}

.top-header__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    font-size: 0.93rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: color 0.25s, background 0.25s, transform 0.25s;
    white-space: nowrap;
}

.top-header__link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.top-header__link:hover,
.top-header__link:focus-visible {
    color: var(--green-light);
    background: rgba(45, 138, 78, 0.2);
    transform: translateY(-2px);
}

.top-header__link.is-active {
    color: var(--green-light);
}

.top-header__socials {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: 0.5rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.top-header__socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-soft);
    transition: background 0.25s, transform 0.25s;
}

.top-header__socials a:hover {
    background: rgba(45, 138, 78, 0.35);
    transform: translateY(-2px);
}

.top-header__socials img {
    filter: brightness(0) invert(1);
    width: 18px;
    height: 18px;
}

.top-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-shrink: 0;
    z-index: 10001;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.top-header__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.top-header__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.top-header__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.top-header__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

body.menu-open {
    overflow: hidden;
}

/* Hero centré — tient dans l'écran, bande stats visible sans scroll */
.hero-center {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    padding: var(--top-header-height) 0 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-center__bg {
    position: absolute;
    inset: 0;
    background: url("../images/background.jpg") center / cover no-repeat;
    z-index: 0;
}

.hero-center__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.hero-center__inner {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: clamp(0.35rem, 1.2vh, 1rem) 0 clamp(0.35rem, 1vh, 0.75rem);
}

.hero-center__badge {
    display: inline-block;
    padding: clamp(0.4rem, 0.9vh, 0.55rem) clamp(0.85rem, 2vw, 1.35rem);
    background: var(--green);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-size: clamp(0.65rem, 1.5vh, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.hero-center__title {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 7vw + 1.25vh, 5.75rem);
    margin: 0 0 clamp(0.5rem, 1.5vh, 1rem);
    line-height: 1.02;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
    max-width: 96vw;
    text-wrap: balance;
}

.hero-center__lead {
    display: flex;
    flex-direction: column;
    gap: clamp(0.35rem, 1vh, 0.65rem);
    width: min(42rem, 94vw);
    max-width: 94vw;
    margin: 0 auto clamp(0.6rem, 1.5vh, 1.25rem);
    padding: 0 clamp(0.25rem, 2.5vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    text-wrap: pretty;
}

.hero-center__lead-main {
    font-size: clamp(0.88rem, 1.05vw + 1.35vh, 1.12rem);
    line-height: 1.55;
}

.hero-center__lead-zone {
    font-size: clamp(0.82rem, 0.9vw + 1.15vh, 1rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
}

.hero-center__actions {
    display: flex;
    gap: clamp(0.5rem, 1.2vh, 0.85rem);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-center__actions .btn {
    padding: clamp(0.65rem, 1.4vh, 0.85rem) clamp(1rem, 2.5vw, 1.35rem);
    font-size: clamp(0.82rem, 1.6vh, 0.95rem);
}

.stats-strip {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 100%;
    margin-top: 0;
    background: var(--white);
    color: var(--grey-dark);
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.06);
}

.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.35rem, 1vh, 0.85rem);
    padding: clamp(0.65rem, 1.4vh, 1.15rem) 0;
}

.stat {
    text-align: center;
    padding: clamp(0.2rem, 0.5vh, 0.4rem) 0.15rem;
}

.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.4vh, 1.35rem);
    line-height: 1.15;
    color: var(--green);
}

.stat span {
    display: block;
    font-size: clamp(0.68rem, 1.5vh, 0.82rem);
    line-height: 1.25;
    color: var(--grey);
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn--primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: 0 12px 28px rgba(45, 138, 78, 0.35);
}

.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(45, 138, 78, 0.4); }

.btn--primary .btn__icon {
    filter: brightness(0) invert(1);
}

.btn--appel-urgence {
    background: var(--white);
    color: #0f1a2e;
    border: 2px solid var(--white);
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 0.92rem;
    padding: 1.05rem 1.85rem;
    gap: 0.75rem;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.45),
        0 0 0 4px rgba(255, 255, 255, 0.2);
}

.btn--appel-urgence:hover {
    background: #f0f4f8;
    color: #0f1a2e;
    transform: translateY(-3px);
    box-shadow:
        0 10px 36px rgba(0, 0, 0, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.35);
}

.btn--appel-urgence .btn__icon {
    filter: none;
    flex-shrink: 0;
    color: #0f1a2e;
}

@media (min-width: 769px) {
    .hero-center__actions .btn--appel-urgence {
        padding: clamp(0.9rem, 1.8vh, 1.15rem) clamp(1.2rem, 3vw, 2rem);
        font-size: clamp(0.84rem, 1.7vh, 0.98rem);
    }
}

.hero-center__note {
    display: inline-block;
    margin: clamp(0.75rem, 1.5vh, 1rem) 0 0;
    padding: 0.6rem 1.15rem;
    font-size: clamp(0.88rem, 1.6vh, 1rem);
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.03em;
    background: rgba(15, 26, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-center__note strong {
    color: var(--green-light);
    font-weight: 700;
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline:hover { border-color: var(--green-light); color: var(--green-light); }

.section--about .btn--outline,
.contact-layout .btn--outline {
    color: var(--green-dark);
    border-color: var(--green);
}

.section--about .btn--outline:hover,
.contact-layout .btn--outline:hover {
    background: var(--green-soft);
    color: var(--green-dark);
    border-color: var(--green-dark);
}

.btn--light {
    background: var(--white);
    color: var(--green-dark);
}

.btn--block { width: 100%; }

.btn--with-icon {
    gap: 0.6rem;
}

.btn__icon {
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.btn__icon--dark {
    filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(800%) hue-rotate(115deg);
}

.btn--light .btn__icon--dark {
    filter: brightness(0) saturate(100%) invert(28%) sepia(60%) saturate(800%) hue-rotate(115deg);
}

/* Sections */
.section { padding: clamp(4rem, 8vw, 6rem) 0; }

.section-head { margin-bottom: 2.5rem; }

.section-head--center { text-align: center; }

.section-head--center .eyebrow {
    justify-content: center;
}

.section-head h2,
.about-split__content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0.4rem 0 0.75rem;
    line-height: 1.15;
}

.section-head p { color: var(--grey); max-width: 640px; margin: 0 auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

/* Domaines */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.domain-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 2px solid var(--grey-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.domain-card:hover {
    transform: translateY(-6px);
    border-color: var(--green);
    box-shadow: 0 16px 40px rgba(45, 138, 78, 0.18);
}

.domain-card__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.domain-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--green-soft);
    display: grid;
    place-items: center;
    color: var(--green);
}

.domain-card__icon svg { width: 26px; height: 26px; }

.domain-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

.domain-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.domain-card__list li {
    padding-left: 1.35rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--grey);
}

.domain-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.section-cta { text-align: center; margin-top: 2.5rem; }

/* À propos */
.section--about { background: var(--white); }

.about-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.about-split__frame {
    aspect-ratio: 1;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 2rem;
    background: linear-gradient(145deg, var(--green-soft), #e8f0ea);
    display: grid;
    place-items: center;
    padding: 2rem;
    border: 2px solid rgba(45, 138, 78, 0.2);
    overflow: hidden;
}

.about-split__silhouette {
    width: 55%;
    max-width: 200px;
    height: auto;
    color: var(--green-dark);
    opacity: 0.85;
}

.about-points {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.about-points li {
    padding-left: 1.5rem;
    position: relative;
}

.about-points li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--green);
}

/* Galerie split */
.section--gallery {
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}

.gallery-intro {
    max-width: 520px;
    margin: 0.5rem auto 0;
    color: var(--grey);
    font-size: 1.05rem;
}

.gallery-split {
    display: grid;
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    min-height: 520px;
    margin-top: 2rem;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 1.25rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.gallery-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem;
    background: linear-gradient(180deg, #f8faf8 0%, #f0f4f0 100%);
    border-right: 1px solid var(--grey-light);
}

.gallery-nav__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    padding: 0.9rem 1rem;
    text-align: left;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    color: var(--grey-dark);
    transition: background 0.2s, border-color 0.2s;
}

.gallery-nav__item:hover {
    background: var(--white);
    border-color: var(--grey-light);
}

.gallery-nav__item.is-active {
    background: var(--white);
    border-color: var(--green);
    box-shadow: 0 4px 14px rgba(45, 138, 78, 0.12);
}

.gallery-nav__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-soft);
    display: grid;
    place-items: center;
    color: var(--green);
    flex-shrink: 0;
}

.gallery-nav__icon svg {
    width: 22px;
    height: 22px;
}

.gallery-nav__item.is-active .gallery-nav__icon {
    background: var(--green);
    color: var(--white);
}

.gallery-nav__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.gallery-nav__label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.gallery-nav__count {
    font-size: 0.78rem;
    color: var(--grey);
}

.gallery-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 1.25rem 1.5rem 1.5rem;
    background: var(--white);
}

.gallery-stage__placeholder,
.gallery-stage__loading,
.gallery-stage__empty {
    margin: auto;
    text-align: center;
    color: var(--grey);
    font-size: 1rem;
    padding: 2rem;
}

.gallery-stage__panel {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    gap: 0.85rem;
}

.gallery-stage__panel[hidden] {
    display: none;
}

.gallery-stage__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
}

.gallery-stage__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--green-dark);
}

.gallery-stage__counter {
    font-size: 0.85rem;
    color: var(--grey);
    font-weight: 500;
}

.gallery-stage__viewer {
    position: relative;
    flex: 1;
    min-height: 280px;
    max-height: min(58vh, 420px);
    display: flex;
    align-items: stretch;
}

.gallery-stage__main {
    flex: 1;
    min-height: 0;
    height: 100%;
    border: none;
    padding: 0;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--grey-light);
    cursor: zoom-in;
    display: block;
    width: 100%;
}

.gallery-stage__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1a1a1a;
}

.gallery-stage__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--grey-light);
    background: rgba(255, 255, 255, 0.95);
    color: var(--green-dark);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.gallery-stage__arrow span {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: -2px;
}

.gallery-stage__arrow:hover:not(:disabled) {
    background: var(--white);
    border-color: var(--green);
}

.gallery-stage__arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.gallery-stage__arrow--prev { left: 0.65rem; }
.gallery-stage__arrow--next { right: 0.65rem; }

.gallery-stage__thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    flex-shrink: 0;
    scrollbar-width: thin;
}

.gallery-stage__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 54px;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: var(--grey-light);
    transition: border-color 0.2s;
}

.gallery-stage__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-stage__thumb:hover {
    border-color: var(--green-light);
}

.gallery-stage__thumb.is-active {
    border-color: var(--green);
    box-shadow: 0 0 0 2px var(--green-soft);
}

/* Select personnalisé */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    border: 2px solid var(--grey-light);
    border-radius: 0.75rem;
    background: #fafafa;
    font: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: var(--grey-dark);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.custom-select__trigger:hover,
.custom-select.is-open .custom-select__trigger {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--green-soft);
}

.custom-select__value.is-placeholder {
    color: var(--grey);
    font-weight: 400;
}

.custom-select__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--green);
    transition: transform 0.25s;
}

.custom-select.is-open .custom-select__arrow {
    transform: rotate(180deg);
}

.custom-select__list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.5rem;
    list-style: none;
    background: var(--white);
    border: 2px solid var(--grey-light);
    border-radius: 0.75rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    z-index: 50;
    max-height: 240px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.custom-select.is-open .custom-select__list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select__option {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--grey-dark);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.custom-select__option:hover,
.custom-select__option.is-selected {
    background: var(--green-soft);
    color: var(--green-dark);
}

.custom-select__option.is-selected {
    font-weight: 600;
}

.form__group select.native-select-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 20, 20, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-modal[hidden] { display: none !important; }

.gallery-modal:not([hidden]) { display: flex; }

.gallery-modal__img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.gallery-modal__close,
.gallery-modal__nav {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.gallery-modal__close { top: 1.5rem; right: 1.5rem; }

.gallery-modal__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }

.gallery-modal__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }

.gallery-modal__counter {
    position: absolute;
    bottom: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* Avis Google */
.section--reviews {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%),
        radial-gradient(ellipse 900px 600px at 80% 10%, rgba(45, 138, 78, 0.06) 0%, transparent 55%);
    background-size: 100% 100%, 100% 100%;
    background-repeat: no-repeat;
}

.section--reviews::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 0, 0, 0.02) 50px, rgba(0, 0, 0, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 0, 0, 0.02) 50px, rgba(0, 0, 0, 0.02) 51px);
    pointer-events: none;
    z-index: 0;
}

.section--reviews .wrap {
    position: relative;
    z-index: 1;
}

.section--reviews .section-head {
    margin-bottom: 1.5rem;
}

.reviews-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin-top: 0.75rem;
}

.reviews-rating__stars {
    color: #fbbc04;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
}

.reviews-rating__score {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--black);
}

.reviews-rating__count {
    font-size: 0.95rem;
    color: var(--grey);
}

.reviews-rating__logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.reviews-rating__verified {
    font-size: 0.85rem;
    color: var(--grey);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.reviews-rating__verified::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
}

.reviews {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0;
}

.reviews__viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    width: 100%;
}

.reviews__control {
    flex-shrink: 0;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.google-review {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    box-sizing: border-box;
}

.google-review__card {
    background: var(--white);
    border-radius: 1.2rem;
    border: 1px solid var(--grey-light);
    padding: clamp(1.25rem, 2.5vw, 1.6rem);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.85rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.google-review__top {
    display: contents;
}

.google-review__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.google-review__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.google-review__avatar--orange { background: #fbbc04; }
.google-review__avatar--green { background: #34a853; }
.google-review__avatar--amber { background: #ea4335; }
.google-review__avatar--teal { background: #1a73e8; }

.google-review__name {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
}

.google-review__meta {
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
    color: var(--grey);
}

.google-review__logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    justify-self: end;
}

.google-review__rating {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.5rem;
    font-size: 0.98rem;
    color: var(--grey-dark);
    line-height: 1.55;
}

.google-review__stars {
    color: #fbbc04;
    letter-spacing: 0.15em;
    font-size: 1.1rem;
}

.google-review__visit {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.88rem;
    color: var(--grey);
}

.reviews__control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--grey-light);
    background: var(--white);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.reviews__control:hover,
.reviews__control:focus-visible {
    border-color: var(--green);
    background: rgba(45, 138, 78, 0.08);
}

.reviews__control:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Contact */
.section--contact {
    background: linear-gradient(180deg, var(--bg), var(--white));
    padding-top: clamp(2.25rem, 4vw, 3.25rem);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.contact-layout__info {
    margin-top: -0.75rem;
}

.contact-layout__info h2 {
    margin: 0.25rem 0 0.45rem;
}

.contact-layout__info > p {
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.1rem;
}

.contact-details__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: var(--white);
    border-radius: 0.85rem;
    border: 1px solid var(--grey-light);
}

.contact-card > img {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-card strong {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey);
    margin-bottom: 0.2rem;
}

.contact-card span,
.contact-card a {
    display: block;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-card a {
    color: var(--green);
    font-weight: 600;
}

.contact-hours {
    padding: 1rem 1.1rem;
    background: var(--white);
    border-radius: 0.85rem;
    border: 1px solid var(--grey-light);
}

.contact-hours__head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--grey-light);
}

.contact-hours__head > img {
    flex-shrink: 0;
}

.contact-hours__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    flex: 1;
}

.contact-hours__title-row strong {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey);
}

.contact-hours__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
    font-size: 0.88rem;
}

.contact-hours__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.contact__hours-day {
    font-weight: 600;
    color: var(--grey-dark);
}

.contact__hours-time {
    color: var(--grey);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.contact__hours-time.is-closed {
    color: #b75e5e;
    font-weight: 600;
}

.contact__hours-status {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.contact__hours-status--open {
    background: rgba(45, 138, 78, 0.12);
    color: #1e6b3a;
    border: 1px solid rgba(45, 138, 78, 0.3);
}

.contact__hours-status--closed {
    background: rgba(198, 40, 40, 0.1);
    color: #b71c1c;
    border: 1px solid rgba(198, 40, 40, 0.25);
}

.contact__hours-status-text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.contact__hours-status-text::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.contact__hours-status--open .contact__hours-status-text::before {
    background: #2d8a4e;
}

.contact__hours-status--closed .contact__hours-status-text::before {
    background: #c62828;
}

.form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form__group { margin-bottom: 1.1rem; }

.form__group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; }

.form__group input,
.form__group textarea,
.form__group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--grey-light);
    border-radius: 0.65rem;
    font: inherit;
    background: #fafafa;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-soft);
}

.form__honeypot { position: absolute; left: -9999px; opacity: 0; }

.form__recaptcha-notice {
    margin: 0.85rem 0 0;
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--grey);
    text-align: center;
}

.form__recaptcha-notice a {
    color: var(--grey);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form__recaptcha-notice a:hover {
    color: var(--green-dark);
}

.grecaptcha-badge {
    visibility: hidden !important;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.alert--success { background: var(--green-soft); border: 1px solid rgba(45,138,78,0.3); }

.alert--error { background: rgba(220, 60, 60, 0.08); border: 1px solid rgba(220,60,60,0.25); color: #a33; }

.alert--error ul { margin: 0.5rem 0 0; padding-left: 1.2rem; }

/* Footer */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.85);
    padding: 2.5rem 0;
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-footer__brand strong { display: block; font-family: var(--font-heading); font-size: 1.25rem; }

.site-footer__brand span { font-size: 0.85rem; opacity: 0.75; }

.site-footer__copy,
.site-footer__credit { margin: 0; font-size: 0.85rem; opacity: 0.6; }

.site-footer__credit a { color: rgba(255,255,255,0.5); }

/* Mobile bar */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    grid-template-columns: repeat(3, 1fr);
    background: var(--black);
    padding: 0.65rem 0 calc(0.65rem + env(safe-area-inset-bottom));
}

.mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
}

.mobile-bar img { width: 22px; filter: brightness(0) invert(1); }

.mobile-bar__appel {
    font-weight: 800;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    margin: -0.35rem 0.15rem;
    padding: 0.35rem 0.25rem;
    border-radius: 8px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* Responsive */
@media (min-width: 520px) {
    .contact-hours__list {
        grid-template-columns: 1fr 1fr;
        column-gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .gallery-split {
        grid-template-columns: minmax(170px, 200px) minmax(0, 1fr);
        min-height: 460px;
    }
}

@media (max-width: 1024px) {
    .top-header {
        z-index: 9999;
    }

    .top-header__inner {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .top-header__brand {
        margin-right: 0;
        flex: 1;
        min-width: 0;
        z-index: 10002;
        position: relative;
    }

    .top-header__toggle {
        display: flex;
    }

    .top-header__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        height: 100dvh;
        flex: none;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.35rem;
        padding: 5rem 2rem 2rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
        background: rgba(20, 20, 20, 0.98);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        backdrop-filter: blur(20px) saturate(180%);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 10000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .top-header__menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .top-header__link {
        width: 100%;
        max-width: none;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 48px;
        justify-content: flex-start;
        white-space: normal;
    }

    .top-header__link svg {
        width: 20px;
        height: 20px;
    }

    .top-header__link:hover,
    .top-header__link:focus-visible {
        transform: none;
    }

    .top-header__socials {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 1.5rem;
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
    }

    .top-header__socials a {
        width: 44px;
        height: 44px;
    }

    .domain-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (min-width: 901px) and (max-width: 1140px) {
    .top-header__link {
        padding: 0.5rem 0.9rem;
        font-size: 0.88rem;
    }
}

@media (min-width: 900px) and (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .section--gallery .wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .section--gallery .section-head {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .gallery-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        min-height: 0;
        margin-top: 1.5rem;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .gallery-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--grey-light);
        padding: 0.75rem 0.9rem;
        box-sizing: border-box;
        align-items: stretch;
    }

    .gallery-nav::-webkit-scrollbar {
        display: none;
    }

    .gallery-nav__item {
        flex: initial;
        scroll-snap-align: unset;
        padding: 0.75rem 0.7rem;
        touch-action: manipulation;
        min-height: 56px;
        width: 100%;
        justify-content: center;
        text-align: center;
        gap: 0.6rem;
    }

    .gallery-nav__text {
        white-space: normal;
    }

    .gallery-nav__icon {
        width: 34px;
        height: 34px;
    }

    .gallery-stage {
        min-height: 0;
        height: auto;
        padding: 0.85rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .gallery-stage__panel {
        width: 100%;
        min-width: 0;
    }

    .gallery-stage__viewer {
        min-height: 0;
        max-height: none;
        width: 100%;
        aspect-ratio: 16 / 10;
    }

    .gallery-stage__main {
        min-height: 100%;
    }

    .gallery-stage__arrow {
        width: 32px;
        height: 32px;
    }

    .gallery-stage__arrow span {
        font-size: 1.25rem;
    }

    .gallery-stage__thumbs {
        width: 100%;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.15rem;
    }

    .gallery-stage__head {
        justify-content: center;
        align-items: center;
        gap: 0.6rem;
        text-align: center;
        flex-wrap: wrap;
    }

    .gallery-stage__thumbs {
        gap: 0.4rem;
    }
}

@media (max-width: 768px) {
    .mobile-bar { display: grid; }

    .stats-strip {
        display: none;
    }

    body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }

    .wrap {
        width: min(1140px, 92vw);
    }

    .section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .section-head {
        margin-bottom: 1.75rem;
        text-align: center;
    }

    .section-head .eyebrow {
        justify-content: center;
    }

    .section-head p {
        margin-left: auto;
        margin-right: auto;
    }

    .section-head h2,
    .about-split__content h2,
    .contact-layout__info h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .hero-center__inner {
        text-align: center;
    }

    .hero-center__title {
        width: 100%;
    }

    .hero-center__lead {
        padding: 0;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-center__actions {
        flex-direction: column;
        align-items: stretch;
        width: min(100%, 17.5rem);
        margin-left: auto;
        margin-right: auto;
        gap: 0.6rem;
    }

    .hero-center__actions .btn {
        flex: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.82rem;
        border-radius: 12px;
        white-space: nowrap;
    }

    .hero-center__actions .btn--appel-urgence {
        font-size: 0.78rem;
        letter-spacing: 0.05em;
        padding: 0.85rem 1rem;
    }

    .hero-center__actions .btn--outline {
        border-radius: 12px;
    }

    .stat strong {
        font-size: 1.2rem;
    }

    .domain-grid {
        width: 100%;
    }

    .domain-card {
        padding: 1.35rem;
        text-align: center;
    }

    .domain-card__head {
        justify-content: center;
    }

    .domain-card__list {
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
    }

    .section-cta {
        display: flex;
        justify-content: center;
    }

    .about-split {
        text-align: center;
        width: 100%;
    }

    .about-split .eyebrow {
        justify-content: center;
    }

    .about-split__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-split__content .btn {
        align-self: center;
    }

    .about-points {
        width: 100%;
        max-width: 300px;
        text-align: left;
    }

    .about-split__frame {
        min-height: 220px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-intro {
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-stage__head {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .gallery-split {
        width: 100%;
    }

    .gallery-intro {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .reviews-rating {
        justify-content: center;
    }

    .reviews {
        width: 100%;
        padding: 0 2.75rem;
    }

    .reviews__control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    }

    .reviews__control--prev {
        left: 0;
    }

    .reviews__control--next {
        right: 0;
    }

    .reviews__viewport {
        padding: 0;
    }

    .google-review {
        padding: 0.25rem 0;
        justify-content: center;
    }

    .google-review__card {
        max-width: none;
        margin: 0 auto;
        padding: 1.1rem;
    }

    .contact-layout {
        width: 100%;
    }

    .contact-layout__info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .contact-layout__info .eyebrow {
        justify-content: center;
    }

    .contact-layout__info > p {
        max-width: 360px;
    }

    .contact-details {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details__cards,
    .contact-hours {
        width: 100%;
    }

    .contact-card {
        text-align: left;
    }

    .contact-hours__head {
        justify-content: flex-start;
    }

    .contact-hours__title-row {
        flex: 1;
        justify-content: space-between;
    }

    .contact-layout__form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.85rem;
    }

    .contact-layout__form .alert {
        width: 100%;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .form {
        padding: 1rem 0.9rem;
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .form__row { grid-template-columns: 1fr; gap: 0.65rem; }

    .form__group {
        margin-bottom: 0.75rem;
    }

    .form__group label {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .form__group input,
    .form__group textarea,
    .custom-select__trigger {
        padding: 0.7rem 0.85rem;
        font-size: 0.9rem;
    }

    .form__group textarea {
        min-height: 96px;
    }

    .form .btn--block {
        display: flex;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.88rem;
        margin-top: 0.25rem;
    }

    .site-footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .site-footer__brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gallery-modal {
        padding: 1rem;
    }

    .gallery-modal__nav--prev { left: 0.35rem; }
    .gallery-modal__nav--next { right: 0.35rem; }
}

@media (max-width: 480px) {
    .hero-center__title {
        max-width: 100%;
        font-size: clamp(2rem, 11vw, 2.85rem);
    }

    .hero-center__lead {
        width: 100%;
    }

    .hero-center__lead-main,
    .hero-center__lead-zone {
        font-size: clamp(0.84rem, 3.6vw, 0.98rem);
    }

    .top-header__name {
        font-size: 0.88rem;
        line-height: 1.15;
    }

    .top-header__brand img {
        width: 38px;
        height: 38px;
    }

    .gallery-nav__item {
        padding: 0.55rem 0.7rem;
        gap: 0.5rem;
    }

    .gallery-nav__icon {
        width: 32px;
        height: 32px;
    }

    .gallery-nav__label {
        font-size: 0.85rem;
    }

    .gallery-nav__count {
        font-size: 0.68rem;
    }

    .gallery-stage {
        padding: 0.65rem;
    }

    .gallery-stage__viewer {
        aspect-ratio: 1 / 1;
    }

    .gallery-stage__title {
        font-size: 1.1rem;
    }

    .gallery-stage__thumb {
        flex: 0 0 56px;
        width: 56px;
        height: 42px;
    }

    .gallery-stage__arrow {
        width: 30px;
        height: 30px;
    }

    .gallery-stage__arrow--prev { left: 0.25rem; }
    .gallery-stage__arrow--next { right: 0.25rem; }

    .form {
        padding: 0.85rem 0.75rem;
        max-width: 420px;
    }

    .form__group input,
    .form__group textarea,
    .custom-select__trigger {
        padding: 0.65rem 0.75rem;
        font-size: 0.88rem;
    }

    .reviews__viewport {
        padding: 0;
    }

    .reviews__control {
        width: 34px;
        height: 34px;
        font-size: 1.35rem;
    }

    .reviews {
        padding: 0 2.35rem;
    }

    .btn {
        padding: 0.8rem 1.35rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .top-header__name {
        font-size: 0.8rem;
    }

    .hero-center__badge {
        font-size: 0.68rem;
        padding: 0.45rem 1rem;
    }

    .gallery-nav__count {
        display: none;
    }
}

/* Hero : hauteur d'écran limitée */
@media (max-height: 820px) {
    .hero-center__title {
        font-size: clamp(2rem, 6vw + 1vh, 4.5rem);
    }

    .hero-center__lead {
        width: min(36rem, 94vw);
    }
}

@media (max-height: 700px) {
    .hero-center__title {
        font-size: clamp(1.85rem, 5.5vh + 1.5vw, 3.25rem);
    }

    .hero-center__lead-main {
        line-height: 1.45;
    }
}

@media (max-height: 580px) {
    .hero-center__badge {
        margin-bottom: 0.35rem;
    }

    .hero-center__title {
        font-size: clamp(1.65rem, 5vh + 1.5vw, 2.5rem);
        margin-bottom: 0.4rem;
    }

    .hero-center__lead {
        gap: 0.3rem;
        margin-bottom: 0.45rem;
    }

    .hero-center__lead-main {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

}

@media (max-width: 768px) and (max-height: 640px) {
    .hero-center__actions {
        width: min(100%, 16rem);
        gap: 0.5rem;
    }

    .hero-center__actions .btn {
        font-size: 0.74rem;
        padding: 0.7rem 0.75rem;
    }

    .hero-center__actions .btn--appel-urgence {
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, .reveal { transition: none !important; animation: none !important; }
}
