/* =========================================================
   L'Ange Alpin Blanchisserie — mobile first
   Palette : bleu nuit alpin, or, blanc neige
   ========================================================= */

:root {
    --navy-950: #081426;
    --navy-900: #0c1d38;
    --navy-800: #12294d;
    --navy-700: #1b3a68;
    --gold-500: #c9a227;
    --gold-400: #dcb94a;
    --gold-300: #e8cf7e;
    --snow: #faf8f2;
    --white: #ffffff;
    --ink: #1d2b3d;
    --muted: #5c6b7e;
    --line: #e4dfd2;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(8, 20, 38, 0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Jost', system-ui, sans-serif;
    --header-h: 72px;
}

::selection { background: var(--gold-500); color: var(--navy-950); }

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--snow);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy-900);
    margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }

a { color: var(--navy-700); }
a:hover { color: var(--gold-500); }

.container {
    width: min(100% - 2.5rem, 1120px);
    margin-inline: auto;
}

/* ---------- Animations de révélation ---------- */

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-reveal='left'] { transform: translateX(-30px); }
[data-reveal='right'] { transform: translateX(30px); }
[data-reveal='left'].is-visible,
[data-reveal='right'].is-visible { transform: none; }

/* Apparition en cascade dans les grilles */
.cards > :nth-child(2), .audience > :nth-child(2), .notice-grid > :nth-child(2), .packs > :nth-child(2) { transition-delay: 0.1s; }
.cards > :nth-child(3), .audience > :nth-child(3), .notice-grid > :nth-child(3), .packs > :nth-child(3) { transition-delay: 0.2s; }
.cards > :nth-child(4), .audience > :nth-child(4) { transition-delay: 0.3s; }
.cards > :nth-child(5) { transition-delay: 0.4s; }
.cards > :nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    * { animation-duration: 0.001s !important; }
}

/* ---------- En-tête ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 29, 56, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}

.brand__logo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-500);
    background: var(--white);
}

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }

.brand__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.brand__sub {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.42em;
    color: var(--gold-400);
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.25rem 1.25rem;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.is-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
}

.site-nav__link {
    padding: 0.8rem 0.25rem;
    color: var(--snow);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active { color: var(--gold-400); }

.site-nav__link--cta {
    margin-top: 0.9rem;
    border: 1px solid var(--gold-500);
    border-radius: 999px;
    text-align: center;
    padding: 0.7rem 1.4rem;
    color: var(--gold-300);
}

@media (min-width: 900px) {
    .nav-toggle { display: none; }

    .site-nav {
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 1.6rem;
        padding: 0;
        background: none;
        border: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .site-nav__link { border-bottom: 0; padding: 0.4rem 0; position: relative; }

    .site-nav__link:not(.site-nav__link--cta)::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background: var(--gold-400);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .site-nav__link:hover::after,
    .site-nav__link.is-active::after { transform: scaleX(1); }

    .site-nav__link--cta { margin-top: 0; padding: 0.55rem 1.5rem; }
    .site-nav__link--cta:hover { background: var(--gold-500); color: var(--navy-900); }
}

/* ---------- Boutons ---------- */

.btn {
    display: inline-block;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--gold {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
    color: var(--navy-950);
    border: 0;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

/* Reflet lumineux qui balaye le bouton doré */
.btn--gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    animation: shine 4.5s ease-in-out infinite;
}

@keyframes shine {
    0%, 55% { left: -80%; }
    100% { left: 130%; }
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(201, 162, 39, 0.45);
    color: var(--navy-950);
}

.btn--ghost {
    background: transparent;
    color: var(--snow);
    border: 1px solid rgba(250, 248, 242, 0.55);
}

.btn--ghost:hover {
    border-color: var(--gold-400);
    color: var(--gold-300);
    transform: translateY(-2px);
}

.btn--navy {
    background: var(--navy-800);
    color: var(--snow);
    border: 0;
}

.btn--navy:hover { background: var(--navy-700); color: var(--white); transform: translateY(-2px); }

/* ---------- Héros ---------- */

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    background:
        radial-gradient(1200px 500px at 80% -10%, rgba(201, 162, 39, 0.18), transparent 60%),
        linear-gradient(175deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
    color: var(--snow);
    text-align: center;
    padding: 3rem 0;
}

/* Halo lumineux mouvant dans le héros */
.hero::before {
    content: '';
    position: absolute;
    inset: -22%;
    background:
        radial-gradient(620px 340px at 70% 28%, rgba(201, 162, 39, 0.16), transparent 65%),
        radial-gradient(520px 320px at 22% 72%, rgba(84, 130, 196, 0.2), transparent 60%);
    animation: aurora 16s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes aurora {
    from { transform: translate3d(-3%, -2%, 0) rotate(-2deg) scale(1); }
    to { transform: translate3d(3%, 3%, 0) rotate(2deg) scale(1.08); }
}

.hero__content { position: relative; }

/* Le contenu du héros s'estompe et recule au défilement (navigateurs récents) */
@supports (animation-timeline: scroll()) {
    .hero__content {
        animation: hero-out linear both;
        animation-timeline: scroll();
        animation-range: 0 85vh;
    }

    .hero__watermark {
        animation: watermark-in 1.6s ease 0.5s forwards, drift 9s ease-in-out 2.1s infinite,
            wm-out linear both;
        animation-timeline: auto, auto, scroll();
        animation-range: normal, normal, 0 85vh;
    }
}

@keyframes hero-out {
    to { opacity: 0.1; transform: translateY(-70px) scale(0.95); }
}

@keyframes wm-out {
    to { translate: 0 90px; }
}

/* Logo en filigrane, intégré au fond du héros.
   Mobile : plein écran, centré et placé haut. PC : grand, décalé vers la gauche. */
.hero__watermark {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    filter: invert(1) hue-rotate(180deg);
    mix-blend-mode: screen;
    animation: watermark-in 1.6s ease 0.5s forwards, drift 9s ease-in-out 2.1s infinite;
}

.hero__watermark img {
    width: min(125vw, 640px);
    max-width: none;
    margin-top: -3rem;
}

@media (min-width: 900px) {
    .hero__watermark { align-items: center; justify-content: flex-end; }
    .hero__watermark img { height: 92%; width: auto; margin: 0 7vw 0 0; }
}

@keyframes watermark-in {
    to { opacity: 0.12; }
}

@keyframes drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Entrée en cascade du contenu du héros */
.hero__content > * {
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__content > :nth-child(2) { animation-delay: 0.12s; }
.hero__content > :nth-child(3) { animation-delay: 0.24s; }
.hero__content > :nth-child(4) { animation-delay: 0.36s; }
.hero__content > :nth-child(5) { animation-delay: 0.5s; }

@keyframes rise {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: none; }
}

.hero__script {
    font-family: var(--font-script);
    font-size: clamp(1.9rem, 6vw, 3rem);
    color: var(--gold-300);
    display: block;
    margin-bottom: 0.2rem;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.1rem, 7vw, 3.8rem);
    letter-spacing: 0.04em;
    margin-bottom: 0.4em;
}

.hero h1 small {
    display: block;
    font-size: 0.34em;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-top: 0.5em;
    font-family: var(--font-body);
    font-weight: 400;
}

.hero__lead {
    max-width: 620px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: rgba(250, 248, 242, 0.88);
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.6rem;
    margin-top: 2.4rem;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-300);
}

.hero__badges span::before {
    content: '❄';
    margin-right: 0.5rem;
    color: rgba(250, 248, 242, 0.7);
}

/* Neige : chute + oscillation latérale */
.snow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.snow i {
    position: absolute;
    top: 0;
    color: rgba(255, 255, 255, 0.75);
    font-style: normal;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.35);
    animation: snow-fall linear infinite;
}

@keyframes snow-fall {
    0%   { transform: translate3d(0, -12vh, 0) rotate(0deg); }
    25%  { transform: translate3d(20px, 22vh, 0) rotate(90deg); }
    50%  { transform: translate3d(-16px, 50vh, 0) rotate(180deg); }
    75%  { transform: translate3d(18px, 78vh, 0) rotate(270deg); }
    100% { transform: translate3d(-10px, 112vh, 0) rotate(360deg); }
}

@media (min-width: 640px) {
    .hero__actions { flex-direction: row; justify-content: center; }
}

/* ---------- Sections ---------- */

.section,
.cta-band,
.site-footer {
    position: relative;
    scroll-margin-top: var(--header-h);
}

.section {
    padding: 4.5rem 0;
    background: var(--snow);
}

.section > .container,
.cta-band > .container,
.site-footer > .container { position: relative; z-index: 1; }

/* Vagues de neige entre les sections : une crête pleine + une crête
   translucide en retrait qui dérive lentement, comme des congères. */
:root { --wave-h: clamp(44px, 7vw, 96px); }

.wave {
    position: absolute;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
    z-index: 2;
}

.wave svg { display: block; width: 100%; height: var(--wave-h); }

.wave--bottom { bottom: -1px; }
.wave--top { top: -1px; transform: scaleY(-1); }

.wave__front { fill: var(--snow); }

.wave__back {
    fill: rgba(250, 248, 242, 0.22);
    animation: wave-drift 12s ease-in-out infinite alternate;
}

@keyframes wave-drift {
    to { transform: translateX(-70px); }
}

/* Espace supplémentaire quand une section porte une vague */
.hero:has(> .wave--bottom) { padding-bottom: calc(3rem + var(--wave-h)); }
.page-hero:has(> .wave--bottom) { padding-bottom: calc(3.8rem + var(--wave-h)); }
.section:has(> .wave--top) { padding-top: calc(4.5rem + var(--wave-h)); }
.section:has(> .wave--bottom) { padding-bottom: calc(4.5rem + var(--wave-h)); }
.cta-band:has(> .wave--top) { padding-top: calc(5rem + var(--wave-h)); }
.site-footer:has(> .wave--top) .site-footer__grid { padding-top: calc(2.8rem + var(--wave-h)); }

.section--navy {
    background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
    color: var(--snow);
}
.section--navy h2, .section--navy h3 { color: var(--white); }

.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.6rem; }

.section__script {
    font-family: var(--font-script);
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    color: var(--gold-500);
    display: block;
}

.section--navy .section__script { color: var(--gold-300); }

.section__head h2 { font-size: clamp(1.8rem, 5.5vw, 2.6rem); }

.section__head .rule {
    width: 70px;
    height: 2px;
    margin: 0.9rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    border: 0;
    transform: scaleX(0);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.section__head.is-visible .rule { transform: scaleX(1); }

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

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

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold-400);
}

.card__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, var(--navy-700), var(--navy-900));
    color: var(--gold-300);
    font-size: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.4);
}

.card:hover .card__icon { animation: bob 1.4s ease-in-out infinite; }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* Cartes avec photo : image plein cadre en tête, zoom doux au survol */
.card--photo {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(8, 20, 38, 0.18));
    pointer-events: none;
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.card--photo:hover .card__media img { transform: scale(1.07); }

.card__body {
    padding: 1.4rem 1.4rem 1.7rem;
    position: relative;
}

/* Trait doré qui s'élargit au survol */
.card__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    transition: width 0.4s ease;
}

.card--photo:hover .card__body::before { width: 90px; }

.card h3 { font-size: 1.3rem; margin-bottom: 0.4em; }
.card p { color: var(--muted); font-size: 0.97rem; margin: 0; }

@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Sections photo + texte ---------- */

.media-split {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.media-figure {
    position: relative;
    margin: 0 auto;
    max-width: 440px;
    width: 100%;
}

/* Cadre doré décalé derrière la photo */
.media-figure::before {
    content: '';
    position: absolute;
    inset: 16px -16px -16px 16px;
    border: 2px solid var(--gold-500);
    border-radius: var(--radius);
    opacity: 0.55;
}

.media-figure__main {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.media-figure__main--portrait { aspect-ratio: 1 / 1; max-width: 380px; margin-inline: auto; }

/* Petite photo d'accent façon polaroïd */
.media-figure__accent {
    position: absolute;
    width: 44%;
    right: -0.9rem;
    bottom: -1.8rem;
    border: 5px solid var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transform: rotate(4deg);
    transition: transform 0.35s ease;
}

.media-figure:hover .media-figure__accent { transform: rotate(1deg) translateY(-4px); }

.media-figure:has(.media-figure__accent) { margin-bottom: 2rem; }

.media-copy h2 { font-size: clamp(1.7rem, 5vw, 2.3rem); }

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 0;
}

.check-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.9rem;
    border-bottom: 1px dashed var(--line);
}

.check-list li:last-child { border-bottom: 0; }

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0.2rem;
    color: var(--gold-500);
    font-weight: 600;
}

@media (min-width: 900px) {
    .media-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* ---------- Bandeau audience ---------- */

.audience {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}

.audience__item {
    padding: 1.4rem 0.8rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.3s ease, transform 0.3s ease;
}

.audience__item:hover { background: rgba(201, 162, 39, 0.12); transform: translateY(-4px); }

.audience__item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-300);
    margin-top: 0.3rem;
}

.audience__item span { font-size: 1.4rem; }

@media (min-width: 900px) { .audience { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Délais / urgence ---------- */

.notice-grid { display: grid; gap: 1.2rem; }

.notice {
    background: var(--white);
    border-left: 4px solid var(--gold-500);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow);
    padding: 1.4rem 1.5rem;
}

.notice h3 { font-size: 1.2rem; margin-bottom: 0.3em; }
.notice p { margin: 0; color: var(--muted); }
.notice strong { color: var(--navy-800); }

@media (min-width: 900px) { .notice-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Zone d'intervention : défilé infini des communes ---------- */

.marquee {
    overflow: hidden;
    padding: 0.5rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee__track {
    display: inline-flex;
    width: max-content;
    white-space: nowrap;
    animation: marquee 36s linear infinite;
}

.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 42s; }

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__track span {
    margin: 0 0.35rem;
    padding: 0.42rem 1.05rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 162, 39, 0.35);
    font-size: 0.9rem;
    color: var(--snow);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.marquee__track span:hover { background: rgba(201, 162, 39, 0.18); border-color: var(--gold-400); }

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee__track { animation: none; white-space: normal; flex-wrap: wrap; justify-content: center; width: auto; }
    .marquee__track span[aria-hidden] { display: none; }
    .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ---------- Bande CTA ---------- */

.cta-band {
    position: relative;
    text-align: center;
    padding: 5rem 0 4.5rem;
    background:
        radial-gradient(800px 300px at 50% 0%, rgba(201, 162, 39, 0.2), transparent 70%),
        linear-gradient(150deg, var(--navy-950), var(--navy-800));
    color: var(--snow);
}

.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 5vw, 2.4rem); }
.cta-band .btn { margin-top: 1rem; }

.cta-band__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.9rem;
    margin-top: 0.4rem;
}

.cta-band__links .btn { margin-top: 0.6rem; }

/* ---------- Tableaux de tarifs ---------- */

.price-section { margin-bottom: 2.8rem; }

.price-section h3 {
    font-size: 1.45rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.price-section h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-500), transparent);
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
    border: 1px solid var(--line);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.97rem;
    min-width: 340px;
}

.price-table th {
    background: var(--navy-800);
    color: var(--gold-300);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    text-align: left;
    padding: 0.85rem 1.1rem;
}

.price-table th:not(:first-child),
.price-table td:not(:first-child) { text-align: right; white-space: nowrap; }

.price-table td {
    padding: 0.75rem 1.1rem;
    border-top: 1px solid var(--line);
    color: var(--ink);
}

.price-table tbody tr { transition: background 0.2s ease; }
.price-table tbody tr:hover { background: rgba(201, 162, 39, 0.07); }

.price-table td:last-child { font-weight: 500; color: var(--navy-800); }

.price-note {
    font-size: 0.88rem;
    color: var(--muted);
    margin-top: 0.7rem;
}

.extra-service { text-align: center; margin-top: 2.2rem; }
.extra-service p { margin-top: 0.2rem; font-size: 1.05rem; font-weight: 500; }

/* ---------- Onglets Particuliers / Professionnels ---------- */

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto 2.6rem;
}

.tabs__btn {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy-800);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tabs__btn:hover { border-color: var(--gold-400); color: var(--gold-500); }

.tabs__btn.is-active {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--gold-300);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.tabs__btn:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }

.tab-panel[hidden] { display: none; }

.tab-panel__intro {
    max-width: 720px;
    margin: -1rem auto 2.4rem;
    text-align: center;
    color: var(--muted);
}

/* ---------- Grille tarifaire professionnelle ---------- */

.pro-includes {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.6rem 1.6rem 1.4rem;
    margin-bottom: 2.4rem;
}

.pro-includes h3 { font-size: 1.2rem; margin-bottom: 0.2em; }
.pro-includes > p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.pro-includes .check-list { margin-top: 1rem; }
.pro-includes .check-list li { border-bottom: 0; padding-top: 0.25rem; padding-bottom: 0.25rem; }

@media (min-width: 720px) {
    .pro-includes .check-list { columns: 2; column-gap: 2.4rem; }
    .pro-includes .check-list li { break-inside: avoid; }
}

.price-section--spaced { margin-top: 2.8rem; }
.pro-includes--spaced { margin-top: 2.4rem; }

.price-table tbody tr.is-best { background: rgba(201, 162, 39, 0.12); }
.price-table tbody tr.is-best td { font-weight: 500; }

.pro-grid { display: grid; gap: 1.4rem; margin-top: 2.4rem; }

.pro-grid .notice p + p { margin-top: 0.6em; }
.pro-grid .notice ul { margin: 0.6em 0 0; padding-left: 1.1rem; color: var(--muted); }
.pro-grid .notice li { padding: 0.15rem 0; }

@media (min-width: 900px) { .pro-grid { grid-template-columns: 1fr 1fr; } }

.pro-footnote {
    margin-top: 2.4rem;
    padding: 1.1rem 1.4rem;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
}

.pro-footnote strong { color: var(--navy-800); }

/* ---------- Packs location ---------- */

.packs { display: grid; gap: 1.4rem; }

.pack {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.6rem 1.8rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pack:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-400); }

.pack--featured { border: 2px solid var(--gold-500); }

.pack__tag {
    position: absolute;
    top: -0.85rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-500);
    color: var(--navy-950);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    animation: tag-pulse 2.6s ease-in-out infinite;
}

@keyframes tag-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.45); }
    50% { box-shadow: 0 0 0 9px rgba(201, 162, 39, 0); }
}

.pack h3 { font-size: 1.5rem; }

.pack__price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1;
}

.pack__price small { font-size: 0.9rem; font-family: var(--font-body); font-weight: 400; color: var(--muted); }

.pack__price2 { color: var(--muted); font-size: 0.92rem; margin: 0.4rem 0 1.2rem; }

.pack ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    text-align: left;
}

.pack ul li {
    padding: 0.45rem 0 0.45rem 1.7rem;
    position: relative;
    border-bottom: 1px dashed var(--line);
    font-size: 0.95rem;
}

.pack ul li:last-child { border-bottom: 0; }

.pack ul li::before {
    content: '✓';
    position: absolute;
    left: 0.2rem;
    color: var(--gold-500);
    font-weight: 600;
}

@media (min-width: 900px) { .packs { grid-template-columns: repeat(3, 1fr); align-items: start; } }

/* ---------- Page d'en-tête interne ---------- */

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 300px at 70% -20%, rgba(201, 162, 39, 0.16), transparent 65%),
        linear-gradient(165deg, var(--navy-950), var(--navy-800));
    color: var(--snow);
    text-align: center;
    padding: 3.4rem 0 3.8rem;
}

.page-hero h1 { color: var(--white); font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 0.2em; }
.page-hero p { color: rgba(250, 248, 242, 0.85); max-width: 560px; margin: 0 auto; }

/* ---------- Formulaire contact ---------- */

.contact-grid { display: grid; gap: 2.5rem; }

@media (min-width: 960px) {
    .contact-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.8rem 1.4rem;
}

@media (min-width: 640px) { .form-card { padding: 2.4rem 2.2rem; } }

.form-row { display: grid; gap: 1.1rem; margin-bottom: 1.1rem; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.form-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-800);
    margin-bottom: 0.35rem;
}

.form-field input[type='text'],
.form-field input[type='email'],
.form-field input[type='tel'],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--snow);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.form-field textarea { min-height: 150px; resize: vertical; }

.form-consent {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
}

.form-consent input { margin-top: 0.3rem; accent-color: var(--gold-500); }

.form-errors { color: #a4262c; font-size: 0.85rem; margin: 0.3rem 0 0; list-style: none; padding: 0; }

/* Widget anti-robot ALTCHA aux couleurs du site */
.form-altcha { margin-bottom: 1.3rem; }

.form-altcha altcha-widget {
    --altcha-border-width: 1px;
    --altcha-color-border: var(--line);
    --altcha-border-radius: 10px;
    --altcha-color-base: var(--snow);
    --altcha-color-text: var(--ink);
    --altcha-color-border-focus: var(--gold-500);
    --altcha-max-width: 100%;
}

/* Pot de miel : hors écran pour les humains, visible pour les robots */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-aside h2 { font-size: 1.5rem; }

.contact-aside__photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 62%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 1.6rem;
}

.contact-aside__block {
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-aside__block:first-of-type { padding-top: 0; }

.contact-aside__label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-aside__block a { text-decoration: none; font-weight: 400; }

/* ---------- Bouton d'appel flottant (mobile) ---------- */

.call-fab {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-950);
    box-shadow: 0 10px 26px rgba(8, 20, 38, 0.35);
    animation: fab-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1s both, fab-pulse 3s ease-in-out 2s infinite;
}

.call-fab:hover { color: var(--navy-950); }

@keyframes fab-in {
    from { opacity: 0; transform: translateY(20px) scale(0.6); }
    to { opacity: 1; transform: none; }
}

@keyframes fab-pulse {
    0%, 100% { box-shadow: 0 10px 26px rgba(8, 20, 38, 0.35), 0 0 0 0 rgba(201, 162, 39, 0.5); }
    50% { box-shadow: 0 10px 26px rgba(8, 20, 38, 0.35), 0 0 0 14px rgba(201, 162, 39, 0); }
}

@media (min-width: 900px) {
    .call-fab { display: none; }
}

/* ---------- Bannière cookies ---------- */

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 100;
    max-width: 560px;
    margin-inline: auto;
    padding: 1.2rem 1.4rem;
    background: rgba(12, 29, 56, 0.97);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(8, 20, 38, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--snow);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible { opacity: 1; transform: none; }

.cookie-banner__text { font-size: 0.92rem; margin: 0 0 1rem; }
.cookie-banner__text a { color: var(--gold-300); }

.cookie-banner__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.7rem;
}

.btn--sm { padding: 0.55rem 1.4rem; font-size: 0.8rem; margin: 0 !important; }

@media (min-width: 640px) {
    .cookie-banner { left: 1.5rem; right: auto; }
}

.link-btn {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: rgba(250, 248, 242, 0.85);
    cursor: pointer;
}

.link-btn:hover { color: var(--gold-300); }

/* ---------- Flash ---------- */

.flash {
    margin: 1.2rem auto;
    padding: 1rem 1.3rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.flash--success { background: #eaf5ec; border: 1px solid #bfe3c6; color: #1e5c2e; }
.flash--error { background: #fdeceb; border: 1px solid #f3c2bf; color: #8c2321; }

/* ---------- CGV ---------- */

.legal { max-width: 780px; margin-inline: auto; }
.legal h2 { font-size: 1.4rem; margin-top: 2.2em; }
.legal h3 { font-size: 1.15rem; margin-top: 1.6em; }
.legal ul { padding-left: 1.2rem; }
.legal .legal__intro { color: var(--muted); }

/* ---------- Pied de page ---------- */

.site-footer {
    background: var(--navy-950);
    color: rgba(250, 248, 242, 0.8);
    font-size: 0.95rem;
}

.site-footer__grid {
    display: grid;
    gap: 2rem;
    padding: 2.8rem 0 2rem;
}

.site-footer__brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.site-footer__brand span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.site-footer__tagline {
    font-family: var(--font-script);
    font-size: 1.35rem;
    color: var(--gold-300);
    margin: 0.6rem 0;
}

.site-footer__text { font-size: 0.9rem; }

.site-footer__title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 1rem;
}

.site-footer__list { list-style: none; padding: 0; margin: 0; }
.site-footer__list li { padding: 0.3rem 0; }
.site-footer__list a { color: rgba(250, 248, 242, 0.85); text-decoration: none; }
.site-footer__list a:hover { color: var(--gold-300); }

.site-footer__legal {
    border-top: 1px solid rgba(250, 248, 242, 0.12);
    padding-top: 1.2rem;
    padding-bottom: 1.6rem;
    font-size: 0.8rem;
    color: rgba(250, 248, 242, 0.55);
    text-align: center;
}

@media (min-width: 800px) {
    .site-footer__grid { grid-template-columns: 1.3fr 1fr 0.8fr; gap: 3rem; }
}
