/* ===================================================================
   Elegance Hospitality — identité visuelle éditoriale
   Base ivoire claire, encre quasi-noire, un seul accent bordeaux feutré
   (aucun doré). Typo : Fraunces (display) + Jost (texte/labels).
   Conçu mobile-first.
   =================================================================== */

:root {
    /* Base blanche, sections d'appoint très légèrement chaudes */
    --paper:   #ffffff;   /* fond blanc */
    --paper-2: #f6f4ef;   /* off-white discret pour alterner */
    --paper-3: #eeeae1;
    --ink:     #16130f;   /* encre quasi noire, chaude */
    --ink-2:   #2f2a23;
    --muted:   #756c5e;   /* texte secondaire */
    --muted-2: #9a9082;
    --line:    #ddd4c4;   /* filets fins */

    /* Accent unique : bordeaux feutré (célébration, vin) — pas de doré */
    --accent:      #7c3b46;
    --accent-deep: #602a34;
    --accent-tint: #ead9d6;

    --dark: #1a1611;      /* surfaces sombres ponctuelles (footer) */

    --radius: 6px;
    --radius-lg: 10px;
    --shadow: 0 30px 70px -40px rgba(22,19,15,0.45);
    --shadow-soft: 0 20px 50px -34px rgba(22,19,15,0.35);

    --container: 1320px;
    --gut: clamp(1.15rem, 4vw, 3rem);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --display: "Fraunces", "Times New Roman", serif;
    --sans: "Jost", system-ui, -apple-system, sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-weight: 400; line-height: 1.04; letter-spacing: -0.015em; font-family: var(--display); }
[hidden] { display: none !important; }

.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; }
.skip-link { position: fixed; left: 1rem; top: -60px; z-index: 300; background: var(--ink); color: var(--paper);
    padding: 0.45rem 0.95rem; border-radius: 100px; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; box-shadow: var(--shadow-soft); transition: top 0.3s var(--ease); }
.skip-link:focus { top: 1rem; outline: 2px solid var(--accent); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }

/* Grain discret, fixe */
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ----------------------------- Icons ----------------------------- */
.icon { width: 1.2em; height: 1.2em; flex: none; vertical-align: middle; }
.icon--sm { width: 1em; height: 1em; }

/* --------------------------- Typographie ------------------------- */
.eyebrow { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1.2rem; }
.eyebrow--light { color: rgba(255,255,255,0.85); }

.section__title { font-size: clamp(2.1rem, 1.2rem + 3.4vw, 4rem); line-height: 1.0; letter-spacing: -0.02em; }
.section__title--sm { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem); }

.prose { color: var(--ink-2); max-width: 62ch; font-weight: 300; }
.prose p { margin-bottom: 1.1rem; }
.prose h2 { font-size: 1.9rem; margin: 2rem 0 0.8rem; }
.prose ul { list-style: none; padding: 0; margin-bottom: 1.1rem; }
.prose li { padding-left: 1.4rem; position: relative; margin-bottom: 0.4rem; }
.prose li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 0.6rem; height: 1px; background: var(--accent); }
.prose a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------------- Buttons --------------------------- */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.95rem 1.7rem; border-radius: var(--radius);
    font-family: var(--sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
    min-height: 48px; white-space: nowrap; }
.btn:active { transform: scale(0.98); }
.btn .icon { width: 1.05em; height: 1.05em; }
/* Primaire = encre (signature haut de gamme, pas de doré) */
.btn--accent { background: var(--ink); color: var(--paper); }
.btn--accent:hover { background: var(--accent); transform: translateY(-2px); }
.btn--outline { border: 1px solid var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--outline-light { border: 1px solid rgba(255,255,255,0.55); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--ghost { color: var(--muted); padding-inline: 0.4rem; min-height: 40px; }
.btn--ghost:hover { color: var(--ink); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 0.84rem; }
.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.74rem; min-height: 42px; }
.btn--block { width: 100%; justify-content: center; }
.btn--danger { color: var(--accent-deep); }

/* Lien fléché éditorial */
.venue-card__link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--ink); font-family: var(--sans);
    font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; padding-bottom: 4px;
    border-bottom: 1px solid var(--ink); transition: color 0.3s, border-color 0.3s; }
.venue-card__link:hover { color: var(--accent); border-color: var(--accent); }
.venue-card__link .icon { transition: transform 0.3s var(--ease); }
.venue-card__link:hover .icon { transform: translateX(4px); }

/* ----------------------------- Header ---------------------------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding-block: 1.4rem;
    transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.4s var(--ease); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand__logo { height: 64px; width: auto; transition: height 0.4s var(--ease); }
.brand__logo--dark { display: none; }

/* Pages avec hero : header transparent, logo blanc */
.has-hero .site-header .brand__logo--light { display: block; }
.has-hero .site-header .brand__logo--dark { display: none; }
.has-hero .site-header .nav__list > li > a,
.has-hero .site-header .nav__toggle { color: #fff; }

/* Pages sans hero OU header scrollé : fond ivoire, logo noir */
.no-hero .site-header,
.site-header.is-scrolled { background: rgba(255,255,255,0.82); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); padding-block: 0.7rem; }
.no-hero .site-header .brand__logo,
.site-header.is-scrolled .brand__logo { height: 52px; }
.no-hero .site-header .brand__logo--light,
.site-header.is-scrolled .brand__logo--light { display: none; }
.no-hero .site-header .brand__logo--dark,
.site-header.is-scrolled .brand__logo--dark { display: block; }
.no-hero .site-header .nav__list > li > a,
.no-hero .site-header .nav__toggle,
.site-header.is-scrolled .nav__list > li > a,
.site-header.is-scrolled .nav__toggle { color: var(--ink); }

.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 2.2rem; }
.nav__list > li > a { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; position: relative; transition: color 0.25s; }
.nav__list > li > a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: currentColor; transition: width 0.35s var(--ease); }
.nav__list > li > a:hover::after { width: 100%; }
.nav__toggle { display: none; }
.nav__toggle-close { display: none; }

/* ------------------------------ Hero ----------------------------- */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Diaporama : glissement rapide + travelling avant (on entre dans le décor) */
.hero__slide { position: absolute; inset: 0; overflow: hidden; opacity: 0; transform: translateX(22%) scale(1.12);
    transition: opacity 0.6s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.hero__slide.is-active { opacity: 1; transform: translateX(0) scale(1); }
.hero__slide.is-prev { opacity: 0; transform: translateX(-16%) scale(1.08); }
.hero__slide-img { width: 100%; height: 100%; object-fit: cover; transform-origin: 50% 48%; }
/* Zoom continu vers l'avant pendant toute la durée d'affichage */
.hero__slide.is-active .hero__slide-img { animation: kenburns-in var(--slide-dur, 4500ms) linear both; }
@keyframes kenburns-in { from { transform: scale(1); } to { transform: scale(1.18); } }
/* Puces de progression — barre verticale sur le bord droit (toujours visible) */
.hero__dots { position: absolute; z-index: 3; right: clamp(0.9rem, 2.2vw, 1.9rem); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 0.7rem; }
.hero__dot { width: 3px; height: 46px; border-radius: 4px; background: rgba(255,255,255,0.3); overflow: hidden; position: relative; transition: background 0.3s; padding: 0; }
.hero__dot:hover { background: rgba(255,255,255,0.55); }
.hero__dot-fill { position: absolute; left: 0; right: 0; top: 0; height: 0; background: #fff; }
.hero__dot.is-active .hero__dot-fill { height: 100%; transition: height var(--slide-dur, 6000ms) linear; }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(175deg, rgba(20,17,13,0.32) 0%, rgba(20,17,13,0.05) 38%, rgba(20,17,13,0.78) 100%); }
.hero__inner { padding-bottom: clamp(3rem, 9vh, 6.5rem); padding-top: 9rem; position: relative; width: 100%; }
.hero__title { font-size: clamp(3rem, 1.2rem + 9vw, 8rem); line-height: 0.95; max-width: 14ch; font-weight: 400; }
.hero__title em { font-style: italic; }
.hero__lead { max-width: 34ch; margin: 1.6rem 0 0.9rem; font-size: clamp(1.4rem, 1.05rem + 1.5vw, 2.25rem); line-height: 1.3; color: #fff; font-weight: 400; letter-spacing: -0.01em; }
.hero__cue { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 2.2rem; font-size: 0.92rem; letter-spacing: 0.02em; color: rgba(255,255,255,0.82); }
.hero__cue::before { content: ""; width: 2rem; height: 1px; background: var(--accent-tint); flex: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------------------------- Sections --------------------------- */
.section { padding-block: clamp(4rem, 9vw, 9rem); position: relative; }
.section--types { background: var(--paper-2); }
.section--values { background: var(--dark); color: var(--paper); }
.section--quote { background: var(--paper-2); }
.section--options { background: var(--paper-2); }
.section__head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: none; flex-wrap: wrap; }
.section__intro { color: var(--muted); margin-top: 1.2rem; font-size: 1.08rem; }

/* ----------------- Cartes "par occasion" (accueil) --------------- */
.types-intro { max-width: 34ch; align-self: flex-end; }
.evt-grid { display: grid; grid-template-columns: repeat(var(--evt-cols, 3), minmax(0, 1fr)); gap: clamp(0.8rem, 1.5vw, 1.4rem); }
.evt-card { position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: var(--evt-ar, 3/4); text-align: left; cursor: pointer; }
.evt-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.evt-card:hover .evt-card__img { transform: scale(1.06); }
.evt-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,15,11,0) 35%, rgba(18,15,11,0.78) 100%); transition: background 0.4s var(--ease); }
.evt-card:hover .evt-card__shade { background: linear-gradient(180deg, rgba(18,15,11,0.15) 25%, rgba(18,15,11,0.85) 100%); }
.evt-card__content { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(1.1rem, 2vw, 1.8rem); color: #fff; display: flex; flex-direction: column; gap: 0.5rem; }
.evt-card__name { font-family: var(--display); font-size: clamp(1.4rem, 1rem + 1.2vw, 2rem); line-height: 1.05; }
.evt-card__cta { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.9);
    opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.evt-card:hover .evt-card__cta, .evt-card:focus-visible .evt-card__cta { opacity: 1; transform: none; }
.evt-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* --------------------- Carrousel des salles (rail) --------------- */
.section--rail { overflow: hidden; }
.rail__nav { display: flex; align-items: center; gap: 0.6rem; }
.rail__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink);
    display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.25s, color 0.25s, background 0.25s; }
.rail__btn:hover { border-color: var(--accent); color: var(--accent); }
.rail__btn:disabled { opacity: 0.3; cursor: default; }
.rail__btn .icon { width: 1.1rem; height: 1.1rem; }

.rail { margin-top: clamp(2rem, 4vw, 3rem); overflow-x: auto; scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-padding-left: var(--gut); }
.rail::-webkit-scrollbar { display: none; }
.rail__track { display: flex; gap: clamp(1rem, 1.8vw, 1.6rem); width: max-content; padding-inline: var(--gut); }

.vcard { flex: 0 0 clamp(270px, 80vw, 360px); scroll-snap-align: start; display: block; color: inherit; }
.vcard__media { position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/5; }
.vcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.vcard:hover .vcard__media img { transform: scale(1.05); }
.vcard__area { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.35rem;
    background: rgba(255,255,255,0.92); color: var(--ink); padding: 0.4rem 0.85rem; border-radius: 100px;
    font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.vcard__body { display: flex; flex-direction: column; gap: 0.3rem; padding-top: 1.1rem; }
.vcard__title { font-family: var(--display); font-size: clamp(1.6rem, 1.2rem + 1vw, 2rem); line-height: 1; }
.vcard__meta { color: var(--muted); font-size: 0.9rem; }
.vcard__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.5rem; color: var(--ink);
    font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
    border-bottom: 1px solid var(--ink); align-self: flex-start; padding-bottom: 3px; transition: color 0.25s, border-color 0.25s; }
.vcard:hover .vcard__link { color: var(--accent); border-color: var(--accent); }
.vcard__link .icon { transition: transform 0.3s var(--ease); }
.vcard:hover .vcard__link .icon { transform: translateX(4px); }

/* --------------------------- Venue cards ------------------------- */
.venues-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: clamp(1.8rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem); }
.venue-card { background: transparent; }
.venue-card__media { position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 1.2rem; }
.venue-card__media img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; transition: transform 1s var(--ease); }
.venue-card:hover .venue-card__media img { transform: scale(1.05); }
.venue-card__area { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.92); color: var(--ink); padding: 0.4rem 0.85rem; border-radius: 100px; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.35rem; }
.venue-card__body { padding: 0; }
.venue-card__title { font-size: 1.9rem; margin-bottom: 0.4rem; }
.venue-card__title a { transition: color 0.25s; }
.venue-card__title a:hover { color: var(--accent); }
.venue-card__tagline { color: var(--muted); font-size: 0.98rem; margin-bottom: 1rem; }
.venue-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-bottom: 1.3rem; font-size: 0.82rem; color: var(--ink-2); }
.venue-card__meta li { display: flex; align-items: center; gap: 0.45rem; }
.venue-card__meta .icon { color: var(--accent); }

/* ----------------------------- Values ---------------------------- */
.values { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.values__lead .eyebrow { color: var(--accent-tint); }
.values__item { padding: 2.2rem 0; border-top: 1px solid rgba(255,255,255,0.14); }
.values__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.values__item dt { font-family: var(--display); font-size: 2rem; color: var(--paper); margin-bottom: 0.6rem; }
.values__item dd { color: rgba(244,240,232,0.72); max-width: 58ch; font-weight: 300; }

/* ----------------------------- News ------------------------------ */
.page-head--news { padding-bottom: clamp(0.25rem, 1vw, 0.75rem); }
.page-head--news .page-head__intro { margin-bottom: 0; }

/* Barre de filtres par catégorie */
.news-filter { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: clamp(2rem, 4vw, 3rem); padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.news-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.58rem 1.1rem; border: 1px solid var(--line); border-radius: 100px; background: var(--paper); color: var(--ink-2); font-family: var(--sans); font-size: 0.9rem; cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.news-chip:hover { border-color: var(--accent); color: var(--accent); }
.news-chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.news-chip__count { display: inline-flex; align-items: center; justify-content: center; min-width: 1.3rem; height: 1.3rem; padding: 0 0.35rem; border-radius: 100px; background: var(--paper-3); color: var(--ink-2); font-size: 0.72rem; font-weight: 500; transition: background 0.2s, color 0.2s; }
.news-chip.is-active .news-chip__count { background: rgba(255,255,255,0.18); color: #fff; }

/* Conteneur résultats (transition AJAX) */
.news-results { transition: opacity 0.25s var(--ease); }
.news-results.is-loading { opacity: 0.35; pointer-events: none; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: clamp(1.8rem, 3vw, 2.8rem); }
.news-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(22,19,15,0.38); border-color: transparent; }
.news-card__media { display: block; position: relative; overflow: hidden; }
.news-card__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.9s var(--ease); }
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__tag { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2; padding: 0.32rem 0.8rem; border-radius: 100px; background: rgba(22,19,15,0.72); color: #fff; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.news-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem clamp(1.2rem, 2vw, 1.6rem) 1.5rem; }
.news-card__date { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.news-card__title { font-size: 1.4rem; line-height: 1.2; margin: 0.55rem 0 0.65rem; }
.news-card__title a:hover { color: var(--accent); }
.news-card__body p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; margin-bottom: 1.1rem; }
.news-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--sans); font-size: 0.84rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink); transition: gap 0.2s, color 0.2s; }
.news-card__link:hover { color: var(--accent); gap: 0.7rem; }

.news-empty { text-align: center; padding: clamp(3rem, 8vw, 5rem) 1rem; color: var(--muted); }
.news-empty__icon { display: inline-flex; color: var(--accent); margin-bottom: 1rem; }
.news-empty__icon .icon { width: 2.4rem; height: 2.4rem; }
.news-empty p { margin-bottom: 1rem; }

@media (prefers-reduced-motion: reduce) {
    .news-card, .news-card__media img, .news-card__link { transition: none; }
}

/* ---------------------------- CTA band (cinématique) ------------- */
/* FAQ fiche salle */
.vfaq__inner { max-width: 820px; }
.vfaq__list { margin-top: 2rem; border-top: 1px solid var(--line); }
.vfaq__item { border-bottom: 1px solid var(--line); }
.vfaq__q { cursor: pointer; list-style: none; padding: 1.15rem 2.2rem 1.15rem 0; position: relative; font-family: var(--display, serif); font-size: 1.12rem; color: var(--ink); font-weight: 500; }
.vfaq__q::-webkit-details-marker { display: none; }
.vfaq__q::after { content: '+'; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent); font-weight: 300; transition: transform 0.2s var(--ease); }
.vfaq__item[open] .vfaq__q::after { content: '−'; }
.vfaq__a { padding: 0 0 1.3rem; color: var(--muted); line-height: 1.65; max-width: 68ch; }
.vfaq__a p { margin: 0; }

.cta-band { position: relative; isolation: isolate; overflow: hidden; color: var(--paper);
    background: var(--dark); padding-block: clamp(5rem, 12vw, 9rem); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -2;
    background: url("/assets/img/venues/gate-club-01.jpg") center/cover no-repeat;
    transform: scale(1.08); animation: ctaZoom 18s ease-in-out infinite alternate; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(20,17,13,0.82) 0%, rgba(20,17,13,0.55) 45%, rgba(20,17,13,0.86) 100%); }
@keyframes ctaZoom { from { transform: scale(1.08); } to { transform: scale(1.2); } }
.cta-band__inner { position: relative; z-index: 1; text-align: center; max-width: 62ch; margin-inline: auto; }
.cta-band .eyebrow { color: var(--accent-tint); }
.cta-band__title { font-size: clamp(2.4rem, 1.4rem + 4vw, 4.4rem); line-height: 1.0; margin-bottom: 1.1rem; }
.cta-band__text { color: rgba(255,255,255,0.86); margin: 0 auto 2.3rem; max-width: 50ch; font-size: 1.1rem; font-weight: 300; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--accent { position: relative; overflow: hidden; background: var(--paper); color: var(--ink); }
.cta-band .btn--accent::after { content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%; z-index: 0; pointer-events: none;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent); transform: skewX(-20deg);
    animation: ctaShine 4.5s ease-in-out infinite; }
.cta-band .btn--accent:hover { background: var(--accent); color: #fff; }
.cta-band .btn--outline-light { border-color: rgba(255,255,255,0.6); }
@keyframes ctaShine { 0%, 58% { left: -80%; } 100% { left: 135%; } }
@media (prefers-reduced-motion: reduce) {
    .cta-band::before { animation: none; }
    .cta-band .btn--accent::after { display: none; }
}

/* ---------------------------- Page head -------------------------- */
.page-head { padding-top: clamp(8.5rem, 16vh, 12rem); padding-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.page-head__title { font-size: clamp(2rem, 1rem + 5vw, 5.5rem); line-height: 1; overflow-wrap: break-word; }
.page-head__intro { max-width: 58ch; color: var(--muted); margin: 1.4rem 0 2.2rem; font-size: 1.12rem; font-weight: 300; }

/* --------------------------- Venue page -------------------------- */
.venue-hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.venue-hero__media { position: absolute; inset: 0; z-index: -1; }
.venue-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.venue-hero__inner { padding-block: clamp(2.5rem, 6vh, 5rem) clamp(3rem, 8vh, 5.5rem); padding-top: 9rem; }
.crumbs { display: flex; gap: 0.5rem; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.72); margin-bottom: 1.8rem; flex-wrap: wrap; }
.crumbs a:hover { color: #fff; }
.venue-hero__title { font-size: clamp(3rem, 1.6rem + 6vw, 6.5rem); line-height: 0.95; }
.venue-hero__tagline { font-size: 1.25rem; color: rgba(255,255,255,0.88); margin: 1rem 0 2rem; max-width: 44ch; font-weight: 300; }
.venue-hero__inner .btn--accent { background: var(--paper); color: var(--ink); }
.venue-hero__inner .btn--accent:hover { background: var(--accent); color: #fff; }

.venue-specs { background: var(--ink); color: var(--paper); }
.venue-specs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.spec { padding: 2.4rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.spec:last-child { border-right: none; }
.spec__icon { color: var(--accent-tint); }
.spec__icon .icon { width: 1.6rem; height: 1.6rem; }
.spec__value { font-family: var(--display); font-size: 2.1rem; }
.spec__label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }

.venue-intro { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.venue-intro__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; margin-top: 2rem; }
.tag-list__label { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.tag { border: 1px solid var(--line); padding: 0.45rem 1rem; border-radius: 100px; font-size: 0.8rem; }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.pull-quote { max-width: 24ch; margin-inline: auto; text-align: center; font-family: var(--display); font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem); line-height: 1.18; font-style: italic; }
.pull-quote__mark { color: var(--accent); width: 2.5rem; height: 2.5rem; margin-inline: auto; display: block; margin-bottom: 1rem; }
.pull-quote cite { display: block; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-style: normal; color: var(--muted); margin-top: 1.4rem; }

/* ---------------------------- Gallery ---------------------------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.9rem; }
.gallery__item { overflow: hidden; border-radius: var(--radius); aspect-ratio: 3/2; }
.gallery__item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: 3/2.05; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(18,15,11,0.94); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 6px; }
.lightbox__close { position: absolute; top: 1.5rem; right: 1.5rem; color: #fff; }
.lightbox__close .icon { width: 2rem; height: 2rem; }

/* -------------------------- Virtual tour ------------------------- */
.section--tour { background: var(--paper-2); }
.tour-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; }
.tour-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tour-empty { text-align: center; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); background: rgba(255,255,255,0.4); }
.tour-empty__icon { color: var(--accent); display: inline-flex; }
.tour-empty__icon .icon { width: 2.4rem; height: 2.4rem; }
.tour-empty p { color: var(--muted); max-width: 44ch; margin: 1.2rem auto 1.8rem; }

/* ---------------------------- Options ---------------------------- */
.options-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.2rem; }
.option-card { border-top: 2px solid var(--ink); padding: 1.5rem 0 0; }
.option-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.6rem; }
.option-card__name { font-family: var(--display); font-size: 1.4rem; }
.option-card__price { color: var(--accent-deep); font-weight: 500; white-space: nowrap; font-size: 0.95rem; }
.option-card__price small { color: var(--muted); font-weight: 300; }
.option-card__desc { color: var(--muted); font-size: 0.92rem; }

/* ---------------------------- Article ---------------------------- */
.article-head { padding-top: clamp(8.5rem, 16vh, 12rem); padding-bottom: 2.2rem; }
.article-head__date { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.article-head__title { font-size: clamp(2.4rem, 1.5rem + 4vw, 4.5rem); max-width: 20ch; margin: 0.7rem 0; line-height: 1.0; }
.article-head__excerpt { font-size: 1.25rem; color: var(--muted); max-width: 56ch; font-weight: 300; }
.article-cover { margin-block: 2.5rem; }
.article-cover img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-body { padding-bottom: clamp(3.5rem, 7vw, 6rem); }
.prose--article { margin-inline: auto; font-size: 1.15rem; max-width: 68ch; }
.article-author { color: var(--muted); font-style: italic; margin-top: 2.5rem; max-width: 68ch; margin-inline: auto; }

/* ---------------------------- Contact ---------------------------- */
.section--tight { padding-top: clamp(1rem, 2vw, 2rem); }
.page-head--contact { padding-bottom: clamp(1.5rem, 3vw, 3rem); }

.contact2 { display: grid; grid-template-columns: 1.45fr 0.75fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
.contact2__form-wrap { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.2vw, 2.8rem); box-shadow: 0 24px 60px -34px rgba(22,19,15,0.28); }

/* ---- Formulaire ---- */
.cform__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.2rem; }
.cform__reasons { border: 0; padding: 0; margin: 0 0 1.5rem; }
.cform__reasons .field__label { display: block; margin-bottom: 0.85rem; }
.req { color: var(--accent); }
.opt { font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--muted-2); font-size: 0.72rem; margin-left: 0.3rem; }

.reason-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.reason-chip { position: relative; }
.reason-chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.reason-chip span { display: inline-flex; align-items: center; padding: 0.6rem 1.05rem; border: 1px solid var(--line); border-radius: 100px; font-size: 0.9rem; color: var(--ink-2); background: #faf8f3; transition: border-color 0.2s, background 0.2s, color 0.2s; cursor: pointer; }
.reason-chip span:hover { border-color: var(--accent); }
.reason-chip input:checked + span { background: var(--accent); border-color: var(--accent); color: #fff; }
.reason-chip input:focus-visible + span { box-shadow: 0 0 0 3px var(--accent-tint); }

.field__msg { font-size: 0.82rem; color: var(--accent-deep); min-height: 0; max-height: 0; overflow: hidden; opacity: 0; transition: opacity 0.2s, max-height 0.2s; margin: 0; }
.field__msg.is-shown { max-height: 3em; opacity: 1; margin-top: 0.1rem; }
.input.is-invalid { border-color: var(--accent); background: #fcf4f2; }

.cform__foot { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 0.4rem; }
.cform__foot .btn--lg { align-self: flex-start; }
.cform__legal { font-size: 0.8rem; color: var(--muted-2); margin: 0; }
.cform__alert { margin: 1rem 0 0; padding: 0.85rem 1.1rem; border-radius: var(--radius); background: #fcf0ee; color: var(--accent-deep); font-size: 0.92rem; }

/* ---- Confirmation d'envoi ---- */
.cform-success { text-align: center; padding: clamp(2rem, 5vw, 3.5rem) 1rem; }
.cform-success__icon { display: inline-flex; align-items: center; justify-content: center; width: 4rem; height: 4rem; border-radius: 50%; background: var(--accent); color: #fff; margin-bottom: 1.4rem; }
.cform-success__icon .icon { width: 2rem; height: 2rem; }
.cform-success h2 { font-family: var(--display); font-size: 1.9rem; margin-bottom: 0.6rem; }
.cform-success p { color: var(--muted); margin-bottom: 1.6rem; max-width: 42ch; margin-inline: auto; }

/* ---- Carte coordonnées ---- */
.contact2__aside { display: grid; gap: 1.2rem; position: sticky; top: 6rem; }
.contact-card { background: var(--dark); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.6rem, 2.6vw, 2.2rem); }
.contact-card__title { font-family: var(--display); font-size: 1.6rem; margin-bottom: 1.3rem; }
.contact-card__list { display: grid; gap: 1.1rem; margin-bottom: 1.7rem; }
.contact-card__list li { display: flex; gap: 0.8rem; align-items: flex-start; color: rgba(244,240,232,0.86); font-size: 0.95rem; line-height: 1.5; }
.contact-card__list .icon { color: var(--accent-tint); flex-shrink: 0; margin-top: 0.1rem; }
.contact-card__list a { color: inherit; }
.contact-card__list a:hover { color: #fff; }
.contact-card__link { display: inline-block; margin-top: 0.25rem; font-size: 0.82rem; color: var(--accent-tint); text-decoration: underline; text-underline-offset: 3px; }
.contact-card__hours { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.3rem; font-size: 0.9rem; color: rgba(244,240,232,0.72); }
.contact-card__hours-title { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; color: var(--accent-tint); margin-bottom: 0.4rem; }
.contact-card--cta { background: var(--paper-2); color: var(--ink); border: 1px solid var(--line); }
.contact-card--cta p { font-family: var(--display); font-size: 1.25rem; margin-bottom: 0.4rem; }
.contact-card__cta-sub { font-family: var(--sans) !important; font-size: 0.92rem !important; color: var(--muted); margin-bottom: 1.2rem !important; }
.contact-card--cta .btn--outline { width: 100%; justify-content: center; }

@media (max-width: 860px) {
    .contact2 { grid-template-columns: 1fr; }
    .contact2__aside { position: static; }
}
@media (max-width: 560px) {
    .cform__row { grid-template-columns: 1fr; }
    /* CTA hero salle : texte long → autorise le retour à la ligne et borne la largeur. */
    .venue-hero__inner .btn--lg {
        white-space: normal;
        max-width: 100%;
        padding: 0.9rem 1.4rem;
        font-size: 0.8rem;
        line-height: 1.35;
        text-align: center;
    }
}

/* ----------------------- Steps preview (devis) ------------------- */
.steps-preview { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.steps-preview__item { padding: 2.2rem 1.6rem 2.2rem 0; border-bottom: 1px solid var(--line); }
.steps-preview__num { font-family: var(--display); font-size: 2.6rem; color: var(--accent); }
.steps-preview__item h2 { font-family: var(--display); font-size: 1.45rem; margin: 0.6rem 0; }
.steps-preview__item p { color: var(--muted); font-size: 0.92rem; }

/* -------------------------- Confirmation ------------------------- */
.confirmation { min-height: 76vh; display: flex; align-items: center; padding-top: 7rem; }
.confirmation__inner { text-align: center; max-width: 48ch; margin-inline: auto; }
.confirmation__icon { display: inline-flex; align-items: center; justify-content: center; width: 5rem; height: 5rem; border-radius: 50%; border: 1px solid var(--accent); color: var(--accent); margin-bottom: 1.8rem; }
.confirmation__icon .icon { width: 2.4rem; height: 2.4rem; }
.confirmation__title { font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem); }
.confirmation__text { color: var(--muted); margin: 1.1rem 0; font-size: 1.1rem; }
.confirmation__ref { border: 1px solid var(--line); display: inline-block; padding: 0.7rem 1.3rem; border-radius: 100px; margin-bottom: 2rem; letter-spacing: 0.05em; }
.confirmation__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ------------------------------ Forms ---------------------------- */
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.3rem; }
.field__label { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.field__help { font-size: 0.82rem; color: var(--muted); }
.input { width: 100%; padding: 0.95rem 1.05rem; border: 1px solid var(--line); border-radius: var(--radius); background: #faf8f3; font: inherit; color: var(--ink); min-height: 48px; transition: border-color 0.25s, box-shadow 0.25s; }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
textarea.input { resize: vertical; min-height: 96px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.2rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.alert { padding: 0.95rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.alert--success { background: #e6efe4; color: #305b39; }
.alert--error { background: var(--accent-tint); color: var(--accent-deep); }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.empty-state__icon { display: inline-flex; color: var(--accent); margin-bottom: 1rem; }
.empty-state__icon .icon { width: 2.4rem; height: 2.4rem; }

/* ======================= Quote modal (horizontal) ================ */
.modal { position: fixed; inset: 0; z-index: 400; display: none; place-items: center; padding: 1rem; }
.modal.is-open { display: grid; }
.modal__overlay { position: absolute; inset: 0; background: rgba(18,15,11,0.6); backdrop-filter: blur(5px); animation: fade 0.3s var(--ease); }
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.985); } }
.modal__dialog { position: relative; display: flex;
    width: min(1000px, calc(100vw - 2rem)); max-height: min(700px, calc(100dvh - 2rem));
    background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow);
    overflow: hidden; animation: pop 0.4s var(--ease); }

/* Panneau visuel gauche */
.modal__aside { position: relative; flex: 0 0 340px; background: var(--dark); color: var(--paper); display: flex; overflow: hidden; }
.modal__aside-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.modal__aside::after { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(26,22,17,0.55) 0%, rgba(26,22,17,0.92) 75%); }
.modal__aside-inner { position: relative; z-index: 1; display: flex; flex-direction: column; padding: clamp(1.6rem, 2.4vw, 2.5rem); width: 100%; }
.modal__aside .eyebrow { color: var(--accent-tint); }
.modal__title { font-family: var(--display); font-size: clamp(1.7rem, 1.1rem + 1.4vw, 2.3rem); line-height: 1.04; color: var(--paper); }
.modal__aside-note { margin-top: auto; padding-top: 2rem; font-size: 0.78rem; line-height: 1.6; color: rgba(244,240,232,0.6); }
.stepper { display: flex; gap: 0.4rem; margin-top: 1.6rem; list-style: none; padding: 0; }
.stepper li { height: 3px; flex: 1; background: rgba(255,255,255,0.2); border-radius: 4px; transition: background 0.4s var(--ease); }
.stepper li.is-current, .stepper li.is-done { background: var(--accent-tint); }

/* Contenu droite : entête fixe (close), zone d'étape qui scrolle, pied fixe */
.modal__main { position: relative; flex: 1 1 auto; min-width: 0; padding: 0; overflow: hidden; display: flex; flex-direction: column; min-height: 0; }
.modal__close { position: absolute; top: 0.9rem; right: 0.9rem; z-index: 3; color: var(--muted); width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: color 0.2s, background 0.2s, transform 0.3s; }
.modal__close:hover { color: var(--ink); background: var(--paper-2); transform: rotate(90deg); }
.quote-form { display: flex; flex-direction: column; flex: 1; min-height: 0; }

.step { display: none; animation: fade 0.35s var(--ease); }
.step.is-active { display: block; flex: 1; min-height: 0; overflow-y: auto; padding: clamp(1.7rem, 2.6vw, 2.6rem); padding-right: 3.2rem; }

/* Champs internes à la modale */
.qfield { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.qfield:last-of-type { margin-bottom: 0; }
.qfield__label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.qfield__opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--muted); }
.qfield__help { font-size: 0.82rem; color: var(--muted); }
fieldset.qfield { border: none; padding: 0; margin-bottom: clamp(2.8rem, 6vw, 4rem); }
fieldset.qfield + .qfield { margin-top: clamp(1.8rem, 4.5vw, 2.6rem); }
.qfield[data-options-wrap] { margin-top: clamp(1.8rem, 4.5vw, 2.6rem); }
legend.qfield__label { padding: 0; margin-bottom: 0.7rem; }

/* Étape 1 : cartes visuelles type d'événement */
.evt-pick { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.evt-pick__card { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 16/10; cursor: pointer; border: 1px solid transparent; }
.evt-pick__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.evt-pick__card:hover img { transform: scale(1.05); }
.evt-pick__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,15,11,0.1) 30%, rgba(18,15,11,0.72) 100%); }
.evt-pick__name { position: absolute; left: 0; bottom: 0; padding: 0.7rem 0.9rem; color: #fff; font-family: var(--display); font-size: 1.15rem; line-height: 1.1; }
.evt-pick__card:hover { border-color: var(--accent); }
.evt-pick__card.is-selected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.evt-pick__card.is-selected .evt-pick__shade { background: linear-gradient(180deg, rgba(124,59,70,0.2) 20%, rgba(124,59,70,0.82) 100%); }
/* Nombre impair de types : la dernière carte seule prend toute la largeur (modale 2 col.) */
.evt-pick > .evt-pick__card:last-child:nth-child(odd) { grid-column: 1 / -1; aspect-ratio: 21 / 9; }

/* Étape 2 : cartes format + chips invités */
.opt-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.opt-card { padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; text-align: left; display: flex; flex-direction: column; gap: 0.3rem; min-height: 100px; cursor: pointer; transition: border-color 0.25s, background 0.25s, transform 0.25s; }
.opt-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.opt-card.is-selected { border-color: var(--accent); background: var(--accent-tint); }
.opt-card__title { font-family: var(--display); font-size: 1.4rem; line-height: 1; }
.opt-card__desc { font-size: 0.85rem; color: var(--muted); }
.guest-quick { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.2rem; }
.chip { padding: 0.55rem 1.05rem; border: 1px solid var(--line); border-radius: 100px; font-size: 0.9rem; min-height: 42px; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; font-variant-numeric: tabular-nums; }
.chip:hover { border-color: var(--accent); }
.chip.is-selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Étape 3 : calendrier sur-mesure */
.cal { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; background: #fff; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.cal__label { font-family: var(--display); font-size: 1.25rem; text-transform: capitalize; }
.cal__nav { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); color: var(--ink); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.cal__nav:hover { border-color: var(--accent); color: var(--accent); }
.cal__nav .icon { width: 1rem; height: 1rem; }
.cal__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px; }
.cal__weekdays span { text-align: center; font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); padding: 4px 0; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal__day { aspect-ratio: 1; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 0.9rem; cursor: pointer; transition: background 0.2s, color 0.2s; font-variant-numeric: tabular-nums; }
.cal__day:hover:not(:disabled):not(.is-empty) { background: var(--accent-tint); }
.cal__day.is-selected { background: var(--ink); color: var(--paper); }
.cal__day:disabled { color: var(--line); cursor: default; }
.cal__day.is-empty { visibility: hidden; }

/* Étape 4 : cartes de résultat */
.quote-results { display: grid; gap: 0.7rem; }
.result-card { display: grid; grid-template-columns: 116px minmax(0, 1fr); align-items: stretch; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; cursor: pointer; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.result-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.result-card.is-selected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent); }
.result-card__img { width: 116px; height: 100%; min-height: 96px; object-fit: cover; }
.result-card__body { padding: 0.9rem 1.1rem; display: flex; flex-direction: column; justify-content: center; gap: 0.25rem; }
.result-card__name { font-family: var(--display); font-size: 1.45rem; line-height: 1; }
.result-card__meta { font-size: 0.82rem; color: var(--muted); }
.result-card__cta { margin-top: 0.35rem; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 0.35rem; }
.quote-empty { text-align: center; padding: 1.5rem 1rem; color: var(--muted); }
.quote-empty .btn { margin-top: 1rem; }

/* Étape 6 : récap, options */
.quote-contact__title { font-family: var(--display); font-size: 1.5rem; margin: 0.4rem 0 1.1rem; }
.options-list { display: grid; gap: 0.5rem; }
.opt-check { display: flex; align-items: center; gap: 0.7rem; padding: 0.85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; transition: border-color 0.2s; min-height: 48px; }
.opt-check:hover { border-color: var(--accent); }
.opt-check input { accent-color: var(--accent); width: 1.15rem; height: 1.15rem; }
.opt-check__price { margin-left: auto; color: var(--accent-deep); font-size: 0.88rem; }
.quote-total { margin-top: 0.9rem; text-align: right; color: var(--ink-2); }

.modal__foot { flex: none; display: flex; align-items: center; gap: 1rem; margin: 0; padding: 1.1rem clamp(1.5rem, 2.4vw, 2.4rem); border-top: 1px solid var(--line); flex-wrap: wrap; background: var(--paper); }
.modal__foot [data-step-back] { margin-right: auto; }
.quote-error { color: var(--accent-deep); font-size: 0.9rem; width: 100%; margin: 0; }

/* --------------------------- Footer ------------------------------ */
.site-footer { background: var(--dark); color: var(--paper); padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.site-footer__logo { height: 50px; width: auto; margin-bottom: 1.4rem; }
.site-footer__baseline { font-family: var(--display); font-size: 1.4rem; font-style: italic; color: var(--paper); max-width: 22ch; }
.site-footer__title { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.4rem; font-weight: 500; }
.site-footer__col ul { display: grid; gap: 0.8rem; }
.site-footer__col a, .site-footer__col li { color: rgba(244,240,232,0.74); font-size: 0.92rem; transition: color 0.25s; display: flex; align-items: flex-start; gap: 0.45rem; }
.site-footer__col a:hover { color: #fff; }
.site-footer__col .icon { color: var(--accent-tint); }
.site-footer__legal { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-block: 1.6rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; color: var(--muted-2); }
.site-footer__legal ul { display: flex; gap: 1.6rem; }
.site-footer__legal a:hover { color: #fff; }

/* ---------------------------- Error page ------------------------- */
.error-page { min-height: 100dvh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.error-page__code { font-family: var(--display); font-size: clamp(5rem, 14vw, 10rem); color: var(--accent); line-height: 1; }
.error-page__title { font-family: var(--display); font-size: 2.2rem; margin: 0.5rem 0 1rem; }
.error-page__text { color: var(--muted); margin-bottom: 2rem; }

/* --------------------- Reveal au scroll (léger) ------------------ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
/* Entrée du hero (stagger) */
.has-hero .hero__inner > * { opacity: 0; transform: translateY(28px); }
.has-hero.is-loaded .hero__inner > * { animation: heroIn 0.9s var(--ease) forwards; }
.has-hero.is-loaded .hero__inner > *:nth-child(1) { animation-delay: 0.05s; }
.has-hero.is-loaded .hero__inner > *:nth-child(2) { animation-delay: 0.16s; }
.has-hero.is-loaded .hero__inner > *:nth-child(3) { animation-delay: 0.27s; }
.has-hero.is-loaded .hero__inner > *:nth-child(4) { animation-delay: 0.38s; }
.has-hero.is-loaded .hero__inner > *:nth-child(5) { animation-delay: 0.49s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* Ken burns lent (hero des salles) */
.venue-hero__media img { animation: kenburns 18s ease-out forwards; transform-origin: 55% 50%; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
    .has-hero .hero__inner > * { opacity: 1; transform: none; animation: none; }
    .hero__slide { transition: opacity 0.4s ease; transform: none !important; }
    .hero__slide.is-prev { transform: none !important; }
    .hero__slide-img, .venue-hero__media img { animation: none; }
    .hero__dot.is-active .hero__dot-fill { transition: none; height: 100%; }
}

/* --------------------- Bandeau kinetic (marquee) ----------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.5rem; background: var(--paper); }
.marquee__track { display: inline-flex; gap: 3rem; white-space: nowrap; will-change: transform; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--display); font-size: clamp(1.6rem, 1rem + 2vw, 2.6rem); font-style: italic; color: var(--ink); display: inline-flex; align-items: center; gap: 3rem; }
.marquee__item::after { content: "✦"; font-style: normal; color: var(--accent); font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* --------------------- Bande de réassurance hero ----------------- */
.hero__strip { display: flex; gap: clamp(1rem, 3vw, 2.5rem); margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.25); }
.hero__stat { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 0.1rem; }
.hero__stat + .hero__stat { padding-left: clamp(1rem, 3vw, 2.5rem); border-left: 1px solid rgba(255,255,255,0.2); }
.hero__stat b { font-family: var(--display); font-size: 1.7rem; font-weight: 500; }
.hero__stat span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* ===================================================================
   TUNNEL — étape formule (location sèche / clé en main)
   =================================================================== */
.formula-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
.formula-card { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; text-align: left;
    padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; cursor: pointer;
    transition: border-color 0.25s, transform 0.25s, background 0.25s; height: 100%; }
.formula-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.formula-card.is-selected { border-color: var(--accent); background: var(--accent-tint); }
.formula-card__title { font-family: var(--display); font-size: 1.6rem; line-height: 1; }
.formula-card__desc { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.formula-card__pick { margin-top: auto; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.formula-card.is-selected .formula-card__pick { color: var(--accent-deep); }

.providers-pick { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.providers-pick .field__label, .providers-pick .qfield__label { display: block; margin-bottom: 0.9rem; }
[data-formule-next] { margin-top: 1.5rem; }
.providers-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.provider-chip { position: relative; }
.provider-chip input { position: absolute; opacity: 0; pointer-events: none; }
.provider-chip span { display: inline-flex; align-items: center; min-height: 44px; padding: 0.5rem 1.1rem; border: 1px solid var(--line);
    border-radius: 100px; font-size: 0.88rem; cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.provider-chip span:hover { border-color: var(--accent); }
.provider-chip input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.provider-chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Récapitulatif (étape coordonnées) */
.quote-recap { display: grid; gap: 0.55rem; padding: 1.1rem 1.2rem; margin-bottom: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); }
.quote-recap__row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; }
.quote-recap__k { color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.74rem; align-self: center; }
.quote-recap__v { font-weight: 400; text-align: right; }

/* ===================================================================
   RESPONSIVE — mobile-first soigné
   =================================================================== */
@media (max-width: 1024px) {
    .values, .venue-intro, .contact { grid-template-columns: 1fr; }
    .showcase__item, .showcase__item--reverse { grid-template-columns: 1fr; gap: 1.5rem; }
    .showcase__item--reverse .showcase__media { order: 0; }
    .feature, .feature--reverse { grid-template-columns: 1fr; gap: 1.5rem; }
    .feature--reverse .feature__media { order: 0; }
    .venue-intro__media { max-width: 460px; }
    .contact__aside { order: -1; }
}

@media (max-width: 800px) {
    .nav__toggle { display: inline-flex; z-index: 120; width: 44px; height: 44px; align-items: center; justify-content: center; }
    .nav__list { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 1.6rem;
        background: var(--paper); transform: translateX(100%); transition: transform 0.45s var(--ease); padding: 2rem; }
    .nav.is-open .nav__list { transform: none; }
    .nav__list > li > a { color: var(--ink) !important; font-size: 1.6rem; font-family: var(--display); letter-spacing: 0; text-transform: none; }
    .nav__list .btn { color: var(--paper) !important; font-size: 0.8rem; font-family: var(--sans); }
    .nav.is-open .nav__toggle-open { display: none; }
    .nav.is-open .nav__toggle-close { display: inline-flex; color: var(--ink) !important; }
    .field-grid { grid-template-columns: 1fr; }
    .choice-grid { grid-template-columns: 1fr 1fr; }
    .gallery__item:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 3/2; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .spec { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .venue-specs__grid { grid-template-columns: 1fr 1fr; }
    .result-card { grid-template-columns: 96px 1fr; }
    .formula-grid { grid-template-columns: 1fr; }
    .evt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .types-intro { align-self: flex-start; }
    .rail__btn { display: none; }   /* mobile : on swipe, pas de flèches */
    /* Bandeau de stats du hero : reste 3 colonnes équilibrées, en plus compact */
    .hero__strip { gap: 0.9rem; }
    .hero__stat b { font-size: 1.35rem; }
    .hero__stat span { font-size: 0.66rem; }
    .hero__stat + .hero__stat { padding-left: 0.9rem; }
    /* Dernière carte seule sur sa ligne → pleine largeur (grilles 2 col.) */
    .evt-pick > .evt-pick__card:last-child:nth-child(odd),
    .venue-specs__grid > .spec:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .evt-grid > .evt-card:last-child:nth-child(odd) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
    /* Modale : empilée (panneau visuel compact en haut) */
    .modal__dialog { flex-direction: column; width: min(560px, calc(100vw - 1.5rem)); max-height: calc(100dvh - 1.5rem); }
    .modal__aside { flex: 0 0 auto; max-height: 28vh; }
    .modal__aside-inner { padding: 1.3rem 1.4rem; }
    .modal__title { font-size: clamp(1.4rem, 1.1rem + 2vw, 1.8rem); }
    .modal__aside-note { display: none; }
    .stepper { margin-top: 1rem; }
    .modal__close { color: #fff; }
}
@media (max-width: 1024px) {
    /* "Par occasion" passe en 2 colonnes dès la tablette : la dernière carte
       seule (nombre impair) prend toute la largeur, sur toute cette plage. */
    .evt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .evt-grid > .evt-card:last-child:nth-child(odd) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

@media (max-width: 480px) {
    :root { --gut: 1.15rem; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
    .site-footer__legal { flex-direction: column; align-items: flex-start; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { justify-content: center; }
    .segment { grid-template-columns: 1fr; }
    .choice-grid { grid-template-columns: 1fr; }
    .venue-specs__grid { grid-template-columns: 1fr 1fr; }
    .confirmation__actions { flex-direction: column; }
    .types-grid { grid-template-columns: 1fr; }
    .type-tile { padding-right: 0; }
}

/* ===================================================================
   PRESTATAIRES — annuaire, fiche, portail, messagerie
   =================================================================== */
.link-accent { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.alert--info { background: var(--accent-tint); color: var(--accent-deep); }
.muted-note { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.crumbs--dark { color: var(--muted); }
.crumbs--dark a:hover { color: var(--ink); }


/* Fiche prestataire */
.pshow-hero { background: var(--paper-2); padding-top: clamp(8rem, 14vh, 11rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.pshow-hero__grid { display: grid; grid-template-columns: 200px 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; margin-top: 1.4rem; }
.pshow-hero__media { aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.pshow-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.pshow-hero__ph { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--muted-2); }
.pshow-hero__title { font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem); line-height: 1; margin: 0.3rem 0 0.6rem; }
.pshow-hero__loc { color: var(--muted); margin-bottom: 1.4rem; display: flex; align-items: center; gap: 0.4rem; }
.pshow-grid { display: grid; grid-template-columns: 1.5fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.pshow-info, .pshow-quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.4rem; }
.pshow-info__title { font-family: var(--display); font-size: 1.4rem; margin-bottom: 1rem; }
.pshow-info ul { display: grid; gap: 0.7rem; }
.pshow-info li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ink-2); font-size: 0.92rem; }
.pshow-info .icon { color: var(--accent); flex: none; }

/* Formulaires prestataire */
.prov-form .btn { margin-top: 0.5rem; }
.days-pick { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.day-chip input { position: absolute; opacity: 0; pointer-events: none; }
.day-chip span { display: inline-flex; align-items: center; justify-content: center; min-width: 52px; min-height: 42px; padding: 0.4rem 0.6rem; border: 1px solid var(--line); border-radius: 8px; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
.day-chip span:hover { border-color: var(--accent); }
.day-chip input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Messagerie (fil) */
.thread { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.6rem; }
.msg { max-width: 78%; }
.msg--me { align-self: flex-end; text-align: right; }
.msg--them { align-self: flex-start; }
.msg__bubble { display: inline-block; text-align: left; padding: 0.8rem 1.1rem; border-radius: 14px; font-size: 0.95rem; line-height: 1.5; }
.msg--me .msg__bubble { background: var(--ink); color: var(--paper); border-bottom-right-radius: 4px; }
.msg--them .msg__bubble { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.msg__meta { font-size: 0.72rem; color: var(--muted-2); margin-top: 0.3rem; }
.thread-reply { display: flex; flex-direction: column; gap: 0.8rem; background: var(--paper-2); padding: 1.1rem; border-radius: var(--radius-lg); }
.thread-reply__bar { display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.req-summary { background: var(--paper-2); border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 1.4rem; display: grid; gap: 0.4rem; font-size: 0.92rem; }

/* Portail prestataire */
.portal-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.portal-head__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.status-badge { display: inline-block; margin-top: 0.6rem; padding: 0.3rem 0.85rem; border-radius: 100px; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.status-badge.is-pending { background: #f6efdc; color: #84671f; }
.status-badge.is-active { background: #e3f0e4; color: #2f5d3a; }
.status-badge.is-disabled { background: var(--accent-tint); color: var(--accent-deep); }
.portal-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(1.5rem, 3vw, 2.4rem); align-items: start; }
.panel-light { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; }
.count-pill { display: inline-block; background: var(--accent); color: #fff; font-size: 0.7rem; padding: 0.15rem 0.6rem; border-radius: 100px; vertical-align: middle; margin-left: 0.4rem; letter-spacing: 0; text-transform: none; }
.req-list { display: grid; gap: 0.6rem; }
.req-item a { display: grid; gap: 0.2rem; padding: 0.9rem 1rem; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 0.2s; }
.req-item a:hover { border-color: var(--accent); }
.req-item__name { font-weight: 500; }
.req-item__meta { font-size: 0.8rem; color: var(--muted); }
.req-item__excerpt { font-size: 0.88rem; color: var(--ink-2); }
.portfolio-admin { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.7rem; margin-bottom: 1rem; }
.portfolio-admin__item img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; }
.portfolio-admin__item form { text-align: center; margin-top: 0.3rem; }
.upload-inline { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; border-top: 1px solid var(--line); padding-top: 1rem; }
.upload-inline .input { flex: 1; min-width: 140px; }

@media (max-width: 900px) {
    .pshow-grid, .portal-grid { grid-template-columns: 1fr; }
    .pshow-hero__grid { grid-template-columns: 130px 1fr; }
}

/* ============== Inscription / espace prestataire (refonte) ========= */
/* Mise en page deux colonnes (formulaire + aide) */
.auth2 { display: grid; grid-template-columns: 1.5fr 0.85fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: start; }
.auth2__main { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.2vw, 2.6rem); box-shadow: 0 24px 60px -34px rgba(22,19,15,0.28); }

.auth2__aside { background: var(--dark); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.6rem, 2.6vw, 2.2rem); position: sticky; top: 6rem; }
.auth-steps__title { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; color: var(--accent-tint); margin-bottom: 1.3rem; }
.auth-steps { display: grid; gap: 1.3rem; counter-reset: step; }
.auth-step { display: flex; gap: 0.9rem; align-items: flex-start; }
.auth-step__num { flex-shrink: 0; width: 1.9rem; height: 1.9rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: #fff; font-size: 0.85rem; font-weight: 600; }
.auth-step__body { display: flex; flex-direction: column; gap: 0.15rem; }
.auth-step__body strong { font-size: 0.98rem; }
.auth-step__body span { color: rgba(244,240,232,0.72); font-size: 0.88rem; line-height: 1.5; }

/* Mot de passe : champ + bascule afficher/masquer */
.pw-field { position: relative; }
.pw-field .input { padding-right: 3rem; }
.pw-toggle { position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%); width: 2.3rem; height: 2.3rem; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); border-radius: 6px; }
.pw-toggle:hover { color: var(--accent); }
.pw-toggle.is-on { color: var(--accent); }

.resend-box { margin-top: 1.2rem; padding: 1rem 1.2rem; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.resend-box p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.7rem; }
.auth-done { padding-top: clamp(5rem, 12vh, 8rem); }
.auth-done__hint { font-size: 0.9rem; }

/* Bloc de validation 48h */
.validation-notice { display: flex; gap: 1rem; align-items: flex-start; background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 1.1rem 1.3rem; margin-bottom: 1.8rem; font-size: 0.95rem; line-height: 1.55; color: var(--ink-2); }
.validation-notice__icon { flex-shrink: 0; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.validation-notice__icon .icon { width: 1.2rem; height: 1.2rem; }

/* Sections de formulaire */
.form-block { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.3rem, 2.6vw, 1.9rem); margin-bottom: 1.4rem; }
.form-block__title { font-family: var(--display); font-size: 1.25rem; padding: 0 0.4rem; margin-bottom: 1.1rem; }
.prov-form2 .field { margin-bottom: 1.1rem; }
.prov-form2 .field:last-child { margin-bottom: 0; }

/* Uploader de fichier moderne */
.file-up { position: relative; }
.file-up__input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-up__zone { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem; text-align: center; padding: 1.6rem 1.2rem; border: 1.5px dashed var(--line); border-radius: var(--radius); background: #faf8f3; transition: border-color 0.2s, background 0.2s; cursor: pointer; }
.file-up:hover .file-up__zone, .file-up.is-drag .file-up__zone { border-color: var(--accent); background: #fcf4f2; }
.file-up.is-filled .file-up__zone { border-style: solid; border-color: var(--accent); background: #fff; }
.file-up__icon { display: inline-flex; color: var(--accent); }
.file-up__icon .icon { width: 1.6rem; height: 1.6rem; }
.file-up__text { font-size: 0.95rem; color: var(--ink-2); }
.file-up__text strong { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.file-up__hint { font-size: 0.78rem; color: var(--muted-2); }
.file-up__preview { margin-top: 0.8rem; max-width: 180px; border-radius: 8px; display: block; }

.current-file { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.8rem; font-size: 0.88rem; color: var(--muted); }
.current-file img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.current-file--doc { align-items: flex-start; }
.current-file--doc .icon { color: var(--accent); flex-shrink: 0; width: 1.2rem; height: 1.2rem; }

@media (max-width: 860px) {
    .auth2 { grid-template-columns: 1fr; }
    .auth2__aside { position: static; order: -1; }
}

/* ===================================================================
   PRESTATAIRES — étoiles, hub (annuaire), fiche
   =================================================================== */

/* Étoiles de notation */
.stars { position: relative; display: inline-block; font-size: 0.95em; line-height: 1; letter-spacing: 0.08em; white-space: nowrap; font-family: Arial, sans-serif; }
.stars__bg { color: var(--line); }
.stars__fg { position: absolute; inset: 0; width: var(--r, 0%); overflow: hidden; color: #d99a26; }

/* ---------- Hub : en-tête ---------- */
.phub-head { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem); }
.phub-head__title { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 4.2rem); line-height: 1.02; max-width: 16ch; margin-bottom: 1.2rem; }
.phub-head__title em { font-style: italic; color: var(--accent); }
.phub-head__intro { max-width: 60ch; color: var(--ink-2); font-weight: 300; margin-bottom: 1.8rem; }
.phub-head__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.section--tight { padding-top: clamp(2.5rem, 5vw, 3.5rem); padding-bottom: 0.5rem; }

/* ---------- Rail « coups de cœur » ---------- */
.pfeat-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; margin: 0 calc(-1 * var(--gut)); padding-left: var(--gut); padding-right: var(--gut); scrollbar-width: thin; }
.pfeat { scroll-snap-align: start; display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.pfeat:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pfeat__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pfeat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pfeat:hover .pfeat__media img { transform: scale(1.05); }
.pfeat__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,19,15,0) 55%, rgba(22,19,15,0.35)); }
.pfeat__cat { position: absolute; top: 0.9rem; left: 0.9rem; background: rgba(255,255,255,0.92); color: var(--ink); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 100px; }
.pfeat__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.35rem; }
.pfeat__name { font-family: var(--display); font-size: 1.4rem; line-height: 1.05; }
.pfeat__tag { color: var(--muted); font-size: 0.86rem; }
.pfeat__meta { display: flex; align-items: center; gap: 1rem; margin-top: 0.3rem; font-size: 0.8rem; color: var(--ink-2); }
.pfeat__meta .icon { color: var(--accent); }
.pfeat__rate { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 500; }
.pfeat__rate .icon { color: #d99a26; }
@media (min-width: 680px) { .pfeat-rail { grid-auto-columns: 42%; } }
@media (min-width: 1024px) { .pfeat-rail { grid-auto-columns: 30%; } }

/* ---------- Barre d'outils (filtres) ---------- */
.ptoolbar { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0.7rem 0.8rem; box-shadow: var(--shadow-soft); }
.ptoolbar__search { flex: 1 1 240px; display: flex; align-items: center; gap: 0.6rem; padding: 0.3rem 0.8rem; border-radius: var(--radius); background: var(--paper-2); }
.ptoolbar__search .icon { color: var(--muted); flex: none; }
.ptoolbar__search input { flex: 1; border: none; background: none; outline: none; font: inherit; color: var(--ink); padding: 0.55rem 0; min-width: 0; }
.ptoolbar__selects { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.pselect select { appearance: none; font: inherit; color: var(--ink); background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.7rem 2.2rem 0.7rem 0.9rem; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%237c3b46' stroke-width='2'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; }
.pselect select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Chips catégories */
.pchips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.4rem 0 0.4rem; }
.pchip { padding: 0.5rem 1rem; border: 1px solid var(--line); border-radius: 100px; background: var(--paper); color: var(--ink-2); font-family: var(--sans); font-size: 0.86rem; cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.pchip:hover { border-color: var(--accent); color: var(--accent); }
.pchip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.pcount { margin: 1rem 0 1.4rem; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted); }

[data-provider-results] { transition: opacity 0.25s; }
[data-provider-results].is-loading { opacity: 0.45; pointer-events: none; }

/* ---------- Grille de cartes ---------- */
.pgrid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 560px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .pgrid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.pcard { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.pcard__media { position: relative; display: block; aspect-ratio: 16/11; overflow: hidden; background: var(--paper-3); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted-2); }
.pcard__ph .icon { width: 34px; height: 34px; }
.pcard__cat { position: absolute; bottom: 0.8rem; left: 0.8rem; background: rgba(255,255,255,0.94); color: var(--ink); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.35rem 0.75rem; border-radius: 100px; }
.pcard__badge { position: absolute; top: 0.8rem; left: 0.8rem; background: var(--accent); color: #fff; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 100px; }
.pcard__rate { position: absolute; top: 0.8rem; right: 0.8rem; display: inline-flex; align-items: center; gap: 0.25rem; background: rgba(22,19,15,0.82); color: #fff; padding: 0.32rem 0.6rem; border-radius: 100px; font-size: 0.72rem; }
.pcard__rate .icon { color: #f0c14b; width: 0.85em; height: 0.85em; }
.pcard__rate span { opacity: 0.7; }
.pcard__body { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.1rem 1.2rem 1.3rem; flex: 1; }
.pcard__name { font-family: var(--display); font-size: 1.4rem; line-height: 1.05; }
.pcard__name a:hover { color: var(--accent); }
.pcard__tag { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.pcard__meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; font-size: 0.8rem; color: var(--ink-2); }
.pcard__meta .icon { color: var(--accent); }
.pcard__foot { margin-top: auto; padding-top: 0.6rem; }
.pcard__cta { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--sans); font-size: 0.84rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px; transition: color 0.25s, gap 0.25s, border-color 0.25s; }
.pcard__cta:hover { color: var(--accent); border-color: var(--accent); gap: 0.7rem; }

.empty-state__hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }

/* Sélecteur de départements (portail prestataire) */
.form-block__hint { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.9rem; }
.dept-pick { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.35rem; max-height: 240px; overflow-y: auto; padding: 0.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.dept-chip { display: flex; align-items: center; gap: 0.45rem; font-size: 0.8rem; color: var(--ink-2); padding: 0.25rem 0.35rem; border-radius: var(--radius); cursor: pointer; }
.dept-chip:hover { background: var(--paper-2); }
.dept-chip input { accent-color: var(--accent); }
.dept-chip span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===================================================================
   INSCRIPTION PRESTATAIRE — split-screen moderne
   =================================================================== */
.preg { display: grid; grid-template-columns: 1fr; min-height: 100vh; }
@media (min-width: 920px) { .preg { grid-template-columns: 1.02fr 1fr; } }

/* Panneau immersif */
.preg__aside { position: relative; overflow: hidden; color: var(--paper); display: flex; align-items: center; padding: clamp(6.5rem, 12vh, 9rem) var(--gut) clamp(2.5rem, 5vw, 4rem); background: var(--dark); }
.preg__aside-bg { position: absolute; inset: 0; z-index: 0; }
.preg__aside-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.preg__aside-veil { position: absolute; inset: 0; background:
    radial-gradient(120% 90% at 0% 0%, rgba(124,59,70,0.42), transparent 55%),
    linear-gradient(180deg, rgba(18,15,11,0.55), rgba(18,15,11,0.88)); }
.preg__aside-inner { position: relative; z-index: 1; max-width: 30rem; margin-left: auto; }
.preg__title { font-family: var(--display); font-weight: 400; font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.4rem); line-height: 1.03; margin: 0.6rem 0 1rem; }
.preg__title em { font-style: italic; color: var(--accent-tint); }
.preg__lead { color: rgba(244,240,232,0.78); font-weight: 300; margin-bottom: 1.8rem; max-width: 40ch; }

.preg__benefits { display: grid; gap: 0.9rem; margin-bottom: 1.8rem; }
.preg__benefits li { display: flex; gap: 0.75rem; align-items: flex-start; }
.preg__benefit-ic { flex: none; width: 1.7rem; height: 1.7rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(234,217,214,0.16); color: var(--accent-tint); }
.preg__benefit-ic .icon { width: 0.9rem; height: 0.9rem; }
.preg__benefits strong { display: block; font-size: 0.98rem; font-weight: 500; }
.preg__benefits em { font-style: normal; color: rgba(244,240,232,0.66); font-size: 0.86rem; line-height: 1.5; }

.preg__steps { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(244,240,232,0.16); }
.preg__step { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; color: rgba(244,240,232,0.75); background: rgba(255,255,255,0.06); border: 1px solid rgba(244,240,232,0.12); padding: 0.4rem 0.7rem 0.4rem 0.4rem; border-radius: 100px; }
.preg__step b { display: inline-flex; align-items: center; justify-content: center; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--accent); color: #fff; font-size: 0.68rem; }
.preg__reassure { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.6rem; font-size: 0.82rem; color: var(--accent-tint); }
.preg__reassure .icon { width: 0.9rem; height: 0.9rem; }

/* Colonne formulaire */
.preg__main { display: flex; align-items: center; justify-content: center; padding: clamp(2.5rem, 6vh, 5rem) var(--gut) clamp(3rem, 6vw, 5rem); background: var(--paper); }
@media (min-width: 920px) { .preg__main { padding-top: clamp(7rem, 12vh, 9rem); } }
.preg__form { width: 100%; max-width: 27rem; }
.preg__form-head { margin-bottom: 1.6rem; }
.preg__form-title { font-family: var(--display); font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem); line-height: 1.05; }
.preg__form-sub { color: var(--muted); margin-top: 0.4rem; }
.preg__form .field { margin-bottom: 1.15rem; }
.preg__form .cform__legal { margin-top: 1rem; text-align: center; }
.btn--block { width: 100%; justify-content: center; }

@media (max-width: 919px) {
    .preg { min-height: 0; }
    .preg__aside { order: -1; padding-top: clamp(6.5rem, 14vh, 8.5rem); }
    .preg__aside-inner { margin: 0; max-width: 34rem; }
    .preg__steps { display: none; }
}

/* ===================================================================
   FICHE PRESTATAIRE — version moderne
   =================================================================== */
.pfiche-hero { position: relative; overflow: hidden; color: var(--paper); background: var(--dark);
    padding-top: clamp(7.5rem, 13vh, 10.5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.pfiche-hero__bg { position: absolute; inset: 0; z-index: 0; }
.pfiche-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transform: scale(1.03); }
.pfiche-hero__veil { position: absolute; inset: 0; background:
    radial-gradient(110% 90% at 8% 0%, rgba(124,59,70,0.4), transparent 55%),
    linear-gradient(180deg, rgba(18,15,11,0.5) 0%, rgba(18,15,11,0.6) 45%, rgba(18,15,11,0.9) 100%); }
.pfiche-hero__grain { position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.pfiche-hero__inner { position: relative; z-index: 1; }
.pfiche-hero__grid { display: flex; align-items: flex-end; gap: clamp(1.1rem, 3vw, 2rem); margin-top: 1.8rem; flex-wrap: wrap; }
.pfiche-hero__avatar { flex: none; width: clamp(84px, 11vw, 124px); height: clamp(84px, 11vw, 124px); border-radius: 22px;
    overflow: hidden; border: 3px solid rgba(255,255,255,0.9); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.7); }
.pfiche-hero__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pfiche-hero__chip { display: inline-block; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
    background: rgba(255,255,255,0.14); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.18);
    color: var(--paper); padding: 0.4rem 0.85rem; border-radius: 100px; margin-bottom: 0.9rem; }
.pfiche-hero__title { font-family: var(--display); font-weight: 400; font-size: clamp(2.3rem, 1.4rem + 3.6vw, 4.4rem); line-height: 0.98; letter-spacing: -0.01em; }
.pfiche-hero__tag { color: rgba(247,241,232,0.82); font-weight: 300; max-width: 54ch; margin-top: 0.7rem; font-size: 1.05rem; }
.pfiche-facts { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(247,241,232,0.15); }
.pfact { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: rgba(247,241,232,0.85);
    background: rgba(255,255,255,0.07); border: 1px solid rgba(247,241,232,0.14); padding: 0.5rem 0.9rem; border-radius: 100px; }
.pfact .icon { color: var(--accent-tint); width: 0.9em; height: 0.9em; }
.pfact--rate { background: rgba(217,154,38,0.16); border-color: rgba(217,154,38,0.35); }
.pfact--rate .icon { color: #f0c14b; }
.pfact--rate b { font-weight: 600; }
.pfact--rate span { opacity: 0.72; }

/* Corps */
.pfiche-body { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem);
    padding-top: clamp(2.6rem, 5vw, 4rem); padding-bottom: clamp(3rem, 6vw, 5rem); align-items: start; }
@media (min-width: 980px) { .pfiche-body { grid-template-columns: 1.6fr 0.92fr; } }

.pfiche-block { margin-bottom: clamp(2.4rem, 4.5vw, 3.6rem); }
.pfiche-block:last-child { margin-bottom: 0; }
.pfiche-block__title { font-family: var(--display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); display: flex; align-items: baseline; gap: 0.7rem;
    margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--line); }
.pfiche-block__k { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); }
.prose--lg { font-size: 1.06rem; line-height: 1.85; color: var(--ink-2); max-width: 66ch; }

.ptags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ptag { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.55rem 1rem; background: var(--paper-2);
    border: 1px solid var(--line); border-radius: 100px; font-size: 0.9rem; color: var(--ink-2); transition: border-color 0.2s, transform 0.2s; }
.ptag:hover { border-color: var(--accent); transform: translateY(-1px); }
.ptag .icon { color: var(--accent); width: 0.9em; height: 0.9em; }

.pzone { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pzone li { padding: 0.45rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius); font-size: 0.82rem; color: var(--ink-2); background: var(--paper); }

/* Zone d'intervention — regroupée par région (accordéon lisible) */
.pzone-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pzone-head__count { font-size: 0.85rem; color: var(--muted); }
.pzone2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.7rem; margin-top: 1.1rem; }
.pzone2__region { border: 1px solid var(--line); border-radius: 12px; background: var(--paper); overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.pzone2__region[open] { border-color: var(--accent-tint); box-shadow: var(--shadow-soft); }
.pzone2__sum { display: flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1rem; cursor: pointer; list-style: none; user-select: none; }
.pzone2__sum::-webkit-details-marker { display: none; }
.pzone2__name { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.pzone2__name .icon { color: var(--accent); }
.pzone2__badge { margin-left: auto; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em; padding: 0.2rem 0.6rem; border-radius: 100px; background: var(--paper-2); color: var(--muted); border: 1px solid var(--line); white-space: nowrap; }
.pzone2__badge--full { background: var(--accent); border-color: var(--accent); color: #fff; }
.pzone2__chev { color: var(--muted-2); transition: transform 0.3s var(--ease); flex: 0 0 auto; }
.pzone2__region[open] .pzone2__chev { transform: rotate(90deg); }
.pzone2__depts { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 1rem; }
.pzone2__dept { font-size: 0.78rem; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); border-radius: 100px; padding: 0.3rem 0.7rem; }
.pzone2__dept b { color: var(--accent-deep); font-weight: 600; }
@media (max-width: 640px) { .pzone2 { grid-template-columns: 1fr; } }

/* Portfolio bento */
.pbento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.pbento__item { position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: zoom-in; background: var(--paper-3); aspect-ratio: 4/3; }
.pbento__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pbento__item:hover img { transform: scale(1.07); }
.pbento__zoom { position: absolute; top: 0.7rem; right: 0.7rem; width: 2rem; height: 2rem; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,0.9); color: var(--ink); opacity: 0; transform: scale(0.8); transition: opacity 0.3s, transform 0.3s; }
.pbento__item:hover .pbento__zoom { opacity: 1; transform: scale(1); }
.pbento__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 0.9rem 0.7rem; font-size: 0.76rem; color: #fff;
    background: linear-gradient(transparent, rgba(18,15,11,0.75)); opacity: 0; transition: opacity 0.3s; text-align: left; }
.pbento__item:hover .pbento__cap { opacity: 1; }
@media (min-width: 640px) {
    .pbento { grid-template-columns: repeat(4, 1fr); }
    .pbento__item { aspect-ratio: 1; }
    .pbento__item:first-child { grid-column: span 2; grid-row: span 2; }
}

/* Avis */
.reviews-summary { display: grid; gap: 1.5rem; grid-template-columns: 1fr; background: var(--paper-2); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 1.5rem 1.7rem; margin-bottom: 2rem; }
@media (min-width: 560px) { .reviews-summary { grid-template-columns: auto 1fr; align-items: center; gap: 2.4rem; } }
.reviews-summary__score { text-align: center; }
.reviews-summary__num { display: block; font-family: var(--display); font-size: 3.4rem; line-height: 1; }
.reviews-summary__score .stars { font-size: 1.15rem; margin: 0.4rem 0; }
.reviews-summary__count { display: block; font-size: 0.78rem; color: var(--muted); }
.reviews-summary__bars { display: grid; gap: 0.45rem; }
.rbar { display: grid; grid-template-columns: 2rem 1fr 1.6rem; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--muted); }
.rbar__t { height: 8px; background: var(--paper-3); border-radius: 100px; overflow: hidden; }
.rbar__t span { display: block; height: 100%; background: linear-gradient(90deg, #e0a93a, #d99a26); border-radius: 100px; }
.rbar__n { text-align: right; }

.review-list { display: grid; gap: 1.1rem; margin-bottom: 1.8rem; }
.review { display: flex; gap: 1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; background: var(--paper); transition: box-shadow 0.3s; }
.review:hover { box-shadow: var(--shadow-soft); }
.review__avatar { flex: none; width: 2.6rem; height: 2.6rem; border-radius: 50%; display: grid; place-items: center;
    background: var(--accent-tint); color: var(--accent-deep); font-family: var(--display); font-size: 0.95rem; font-weight: 500; }
.review__content { flex: 1; min-width: 0; }
.review__head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.8rem; margin-bottom: 0.45rem; }
.review__author { font-weight: 600; }
.review__head .stars { font-size: 0.82rem; }
.review__date { font-size: 0.74rem; color: var(--muted); margin-left: auto; }
.review__title { font-family: var(--display); font-size: 1.12rem; margin-bottom: 0.3rem; }
.review__body { color: var(--ink-2); font-size: 0.94rem; }

.review-form-wrap { margin-top: 0.5rem; }
.review-form-wrap > summary { display: inline-flex; cursor: pointer; list-style: none; }
.review-form-wrap > summary::-webkit-details-marker { display: none; }
.review-form { margin-top: 1.3rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-2); }
.rating-input { display: inline-flex; flex-direction: row-reverse; gap: 0.2rem; margin-bottom: 1rem; }
.rating-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.rating-input label { font-size: 2rem; line-height: 1; color: var(--line); cursor: pointer; transition: color 0.15s, transform 0.15s; }
.rating-input label:hover { transform: scale(1.15); }
.rating-input input:checked ~ label,
.rating-input label:hover, .rating-input label:hover ~ label { color: #d99a26; }
.rating-input input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

/* Carte contact — élevée */
.pfiche-aside { position: relative; }
@media (min-width: 980px) { .pfiche-aside { position: sticky; top: 88px; align-self: start; } }
.contact-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 3vw, 1.9rem); box-shadow: 0 40px 80px -44px rgba(22,19,15,0.5); overflow: hidden; }
.contact-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); }
.contact-card__head { margin-bottom: 1.2rem; }
.contact-card__title { font-family: var(--display); font-size: 1.55rem; line-height: 1.1; }
.contact-card__sub { font-size: 0.82rem; color: var(--muted); margin-top: 0.35rem; }
.contact-card .field { margin-bottom: 0.9rem; }
.contact-card__trust { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line); display: grid; gap: 0.55rem; }
.contact-card__trust li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); }
.contact-card__trust .icon { color: var(--accent); }
.contact-card__links { margin-top: 0.9rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.1rem; }
.contact-card__links a, .contact-card__links span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--ink-2); }
.contact-card__links a { color: var(--accent-deep); }
.contact-card__links a:hover { text-decoration: underline; text-underline-offset: 2px; }
.contact-card__links .icon { color: var(--accent); }

.section--similar { background: var(--paper-2); border-top: 1px solid var(--line); padding-top: clamp(3rem, 5vw, 4rem); padding-bottom: clamp(3rem, 5vw, 4.5rem); }

/* ===================================================================
   FICHE — révélation au scroll, barre d'ancres, lightbox galerie
   =================================================================== */
/* Révélation (activée seulement si JS) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* Barre d'ancres sticky (scrollspy) */
.pfiche-nav { position: sticky; top: 64px; z-index: 90; background: rgba(255,255,255,0.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.pfiche-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; min-height: 54px; }
.pfiche-nav__links { display: flex; gap: 1.5rem; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.pfiche-nav__links::-webkit-scrollbar { display: none; }
.pfiche-nav__links a { white-space: nowrap; font-family: var(--sans); font-size: 0.86rem; color: var(--muted); padding: 0.9rem 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.pfiche-nav__links a:hover { color: var(--ink); }
.pfiche-nav__links a.is-active { color: var(--ink); border-color: var(--accent); }
.pfiche-nav__cta { flex: none; display: inline-flex; align-items: center; gap: 0.4rem; background: var(--ink); color: var(--paper); font-size: 0.82rem; padding: 0.55rem 1.1rem; border-radius: 100px; transition: background 0.3s, transform 0.3s; }
.pfiche-nav__cta:hover { background: var(--accent); transform: translateY(-1px); }
.pfiche-nav__cta .icon { width: 0.9em; height: 0.9em; }
@media (max-width: 560px) { .pfiche-nav__links { gap: 1.1rem; } .pfiche-nav__cta { padding: 0.5rem 0.9rem; } }

/* Décalage d'ancre (header fixe + barre) */
.pfiche-block, .contact-card, #realisations, #apropos, #prestations, #avis { scroll-margin-top: 128px; }

/* Lightbox — navigation galerie */
.lightbox__figure { margin: 0; display: flex; align-items: center; justify-content: center; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: clamp(42px, 9vw, 52px); height: clamp(42px, 9vw, 52px); border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff; display: grid; place-items: center; transition: background 0.2s, transform 0.2s; }
.lightbox__nav:hover { background: rgba(255,255,255,0.26); }
.lightbox__nav:active { transform: translateY(-50%) scale(0.94); }
.lightbox__nav .icon { width: 1.4rem; height: 1.4rem; }
.lightbox__nav--prev { left: clamp(0.5rem, 3vw, 2rem); }
.lightbox__nav--next { right: clamp(0.5rem, 3vw, 2rem); }
.lightbox__count { position: absolute; bottom: clamp(1rem, 3vw, 1.6rem); left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.82); font-size: 0.85rem; letter-spacing: 0.12em; font-variant-numeric: tabular-nums; }

/* ===================================================================
   PAGE CONTACT — ultra moderne
   =================================================================== */
.ctc-hero { position: relative; overflow: hidden; color: var(--paper); background: var(--dark);
    padding-top: clamp(7.5rem, 13vh, 10.5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.ctc-hero__bg { position: absolute; inset: 0; z-index: 0; }
.ctc-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.ctc-hero__veil { position: absolute; inset: 0; background:
    radial-gradient(115% 90% at 12% 0%, rgba(124,59,70,0.42), transparent 55%),
    linear-gradient(180deg, rgba(18,15,11,0.5), rgba(18,15,11,0.9)); }
.ctc-hero__grain { position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.ctc-hero__inner { position: relative; z-index: 1; }
.ctc-hero__title { font-family: var(--display); font-weight: 400; font-size: clamp(2.4rem, 1.4rem + 4vw, 5rem); line-height: 0.98; letter-spacing: -0.015em; margin-bottom: 1rem; }
.ctc-hero__title em { font-style: italic; color: var(--accent-tint); }
.ctc-hero__lead { color: rgba(247,241,232,0.82); font-weight: 300; max-width: 54ch; font-size: 1.08rem; }
.ctc-hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.ctc-quick { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; color: var(--paper);
    background: rgba(255,255,255,0.08); border: 1px solid rgba(247,241,232,0.16); padding: 0.7rem 1.2rem; border-radius: 100px;
    transition: background 0.25s, transform 0.25s, border-color 0.25s; }
.ctc-quick:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.ctc-quick .icon { color: var(--accent-tint); }
.ctc-quick--accent { background: var(--accent); border-color: var(--accent); }
.ctc-quick--accent .icon { color: #fff; }
.ctc-quick--accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* Corps */
.ctc-body { padding-top: clamp(2.5rem, 5vw, 4rem); }
.ctc-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 3.5vw, 2.6rem); align-items: start; }
@media (min-width: 940px) { .ctc-grid { grid-template-columns: 1.4fr 0.85fr; } }

/* Carte formulaire élevée */
.ctc-form { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3.5vw, 2.6rem); box-shadow: 0 40px 90px -50px rgba(22,19,15,0.5); overflow: hidden; }
.ctc-form::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-deep)); }
.ctc-form__head { margin-bottom: 1.6rem; }
.ctc-form__title { font-family: var(--display); font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); line-height: 1.05; }
.ctc-form__sub { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.5rem; font-size: 0.86rem; color: var(--muted); }
.ctc-form__sub .icon { color: var(--accent); }

/* Colonne latérale */
.ctc-side { display: grid; gap: 1.2rem; }
@media (min-width: 940px) { .ctc-side { position: sticky; top: 88px; } }
.ctc-info { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.3rem, 3vw, 1.8rem); }
.ctc-info__title { font-family: var(--display); font-size: 1.4rem; margin-bottom: 1.1rem; }
.ctc-info__list { display: grid; gap: 1rem; }
.ctc-info__list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--ink-2); font-size: 0.92rem; line-height: 1.5; }
.ctc-info__ic { flex: none; width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); color: var(--accent); }
.ctc-info__list a { color: var(--ink); transition: color 0.2s; }
.ctc-info__list a:hover { color: var(--accent); }
.ctc-info__link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--accent-deep) !important; font-size: 0.84rem; margin-top: 0.2rem; }
.ctc-info__link .icon { width: 0.85em; height: 0.85em; }

/* Carte (map) */
.ctc-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--paper-3); filter: grayscale(0.25); transition: filter 0.4s; }
.ctc-map:hover { filter: grayscale(0); }
.ctc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* CTA devis (sombre) */
.ctc-cta { background: var(--dark); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.3rem, 3vw, 1.7rem); }
.ctc-cta__title { font-family: var(--display); font-size: 1.2rem; line-height: 1.2; }
.ctc-cta__sub { color: rgba(247,241,232,0.7); font-size: 0.88rem; margin: 0.5rem 0 1.1rem; }

/* -------- Contact : carte "contact direct" + coordonnées modernes -------- */
.ctc-person { position: relative; overflow: hidden; background: var(--dark); color: var(--paper);
    border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 1.9rem); isolation: isolate; }
.ctc-person::after { content: ""; position: absolute; right: -25%; top: -55%; width: 70%; height: 200%;
    background: radial-gradient(circle, rgba(124,59,70,0.55), transparent 62%); z-index: -1; }
.ctc-person__head { display: flex; align-items: center; gap: 0.95rem; }
.ctc-person__avatar { flex: none; width: 3.3rem; height: 3.3rem; border-radius: 50%; display: grid; place-items: center;
    background: linear-gradient(150deg, var(--accent), var(--accent-deep)); color: #fff;
    font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.02em;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.06); }
.ctc-person__id { display: flex; flex-direction: column; gap: 0.15rem; }
.ctc-person__role { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--sans);
    font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-tint); }
.ctc-person__role .icon { width: 13px; height: 13px; }
.ctc-person__name { font-family: var(--display); font-weight: 500; font-size: 1.5rem; line-height: 1.05; color: #fff; }
.ctc-person__pitch { color: rgba(247,241,232,0.72); font-size: 0.9rem; line-height: 1.6; margin: 1rem 0 1.2rem; }
.ctc-person__call { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius);
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease); }
.ctc-person__call:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.ctc-person__callic { flex: none; width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,0.12); color: #fff; }
.ctc-person__callnum { display: flex; flex-direction: column; line-height: 1.15; }
.ctc-person__callnum small { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,241,232,0.6); }
.ctc-person__callnum b { font-family: var(--sans); font-size: 1.18rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; }
.ctc-person__callgo { margin-left: auto; color: var(--accent-tint); transition: transform 0.3s var(--ease), color 0.25s var(--ease); }
.ctc-person__call:hover .ctc-person__callgo { color: #fff; transform: translateX(4px); }

.ctc-coords { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: clamp(1.3rem, 3vw, 1.7rem); }
.ctc-coords__title { font-family: var(--display); font-size: 1.4rem; margin-bottom: 1.2rem; }
.ctc-coords__list { display: grid; gap: 0.7rem; }
.ctc-coord { display: flex; gap: 0.85rem; align-items: flex-start; padding: 0.85rem; background: var(--paper);
    border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 0.25s var(--ease), transform 0.25s var(--ease); }
.ctc-coord:hover { border-color: var(--accent-tint); transform: translateX(2px); }
.ctc-coord__ic { flex: none; width: 2.4rem; height: 2.4rem; border-radius: 10px; display: grid; place-items: center;
    background: var(--accent-tint); color: var(--accent-deep); }
.ctc-coord__body { display: flex; flex-direction: column; gap: 0.15rem; font-size: 0.95rem; color: var(--ink-2); line-height: 1.5; }
.ctc-coord__body small { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.ctc-coord__body a { color: var(--ink); transition: color 0.2s; }
.ctc-coord__body a:hover { color: var(--accent); }
.ctc-coord__link { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.25rem;
    color: var(--accent-deep) !important; font-size: 0.82rem; font-weight: 500; }
.ctc-coord__link .icon { width: 0.85em; height: 0.85em; transition: transform 0.3s var(--ease); }
.ctc-coord__link:hover .icon { transform: translateX(3px); }

/* -------- Contact : badges de confiance + formulaire soigné -------- */
.cform-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin: 1rem 0 0; padding: 0; }
.cform-trust li { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--sans);
    font-size: 0.8rem; color: var(--muted); }
.cform-trust .icon { width: 15px; height: 15px; color: var(--accent); }

.cform .input { transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease); }
.cform .input:hover { border-color: var(--muted-2); }
.cform .input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); outline: none; }

/* -------- Bloc consentement RGPD -------- */
.cform-consent { display: flex; gap: 1rem; margin: 1.4rem 0 1.2rem; padding: 1.1rem 1.2rem;
    background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.cform-consent__ic { flex: none; width: 2.6rem; height: 2.6rem; border-radius: 12px; display: grid; place-items: center;
    background: #fff; border: 1px solid var(--line); color: var(--accent); }
.cform-consent__ic .icon { width: 22px; height: 22px; stroke-width: 1.5; }
.cform-consent__body { flex: 1; min-width: 0; }

.ccheck { display: flex; gap: 0.7rem; align-items: flex-start; cursor: pointer; font-size: 0.9rem;
    line-height: 1.5; color: var(--ink-2); }
.ccheck + .ccheck { margin-top: 0.7rem; padding-top: 0.7rem; border-top: 1px dashed var(--line); }
.ccheck input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.ccheck__box { flex: none; width: 1.35rem; height: 1.35rem; margin-top: 0.05rem; border: 1.5px solid var(--muted-2);
    border-radius: 6px; background: #fff; display: grid; place-items: center; color: #fff;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease); }
.ccheck__box .icon { width: 13px; height: 13px; opacity: 0; transform: scale(0.5); transition: opacity 0.18s var(--ease), transform 0.18s var(--ease); }
.ccheck input:checked + .ccheck__box { background: var(--accent); border-color: var(--accent); }
.ccheck input:checked + .ccheck__box .icon { opacity: 1; transform: none; }
.ccheck input:focus-visible + .ccheck__box { box-shadow: 0 0 0 3px var(--accent-tint); border-color: var(--accent); }
.ccheck input.is-invalid + .ccheck__box { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.12); }
.ccheck a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.ccheck--soft { color: var(--muted); font-size: 0.86rem; }
.ccheck--soft .ccheck__box { border-radius: 6px; }
.ccheck .opt { font-size: 0.72rem; color: var(--muted-2); font-style: italic; }

.cform-consent__rights { display: flex; align-items: flex-start; gap: 0.4rem; margin: 0.9rem 0 0;
    font-size: 0.78rem; line-height: 1.5; color: var(--muted-2); }
.cform-consent__rights .icon { flex: none; width: 13px; height: 13px; margin-top: 0.15rem; color: var(--muted-2); }
.cform-consent__rights a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }

/* Message d'erreur consentement bien visible */
[data-msg-for="consent"].is-shown { margin: 0.5rem 0 0; }

/* Option incluse (offerte) dans le tunnel de devis */
.opt-check--included .opt-check__price { color: #2f7d51; font-weight: 600; }
.opt-check--included { border-color: #bfe0cb; background: #f2faf5; }

/* Sélection de prestations (espace prestataire) */
.presta-pick { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .4rem;
    max-height: 340px; overflow-y: auto; padding: .5rem; border: 1px solid var(--line); border-radius: 10px; background: #fff; margin-top: .5rem; }
.presta-chip { display: flex; align-items: center; gap: .5rem; padding: .5rem .65rem; border-radius: 8px; font-size: .9rem; color: var(--ink-2); cursor: pointer; }
.presta-chip:hover { background: var(--paper-2); }
.presta-chip input { accent-color: var(--accent); width: 1.05rem; height: 1.05rem; }
.presta-chip:has(input:checked) { background: #fdf6f4; color: var(--accent-deep); font-weight: 500; }
/* -------- Sélecteur de prestations (recherche + groupes) -------- */
.presta-picker { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; margin-top: .5rem; }
.presta-picker__search { display: flex; align-items: center; gap: .5rem; padding: .55rem .9rem; border-bottom: 1px solid var(--line); background: #faf8f3; position: sticky; top: 0; z-index: 1; }
.presta-picker__search .icon { color: #9a9082; flex: none; }
.presta-picker__search input { flex: 1; border: 0; outline: none; background: transparent; font: inherit; padding: .35rem 0; color: #1b1a18; }
.presta-picker__count { font-size: .74rem; color: #7c3b46; white-space: nowrap; font-weight: 600; }
.presta-picker__list { max-height: 340px; overflow-y: auto; padding: .5rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: .2rem; }
.presta-picker__cat { grid-column: 1 / -1; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #9a9082; font-weight: 700; padding: .7rem .4rem .25rem; }
.presta-picker__cat.is-hidden, .presta-picker .presta-chip.is-hidden { display: none; }
.presta-picker__empty { grid-column: 1 / -1; color: #9a9082; font-style: italic; padding: .5rem .4rem; font-size: .88rem; }

/* ============ Espace prestataire : sélection live ============ */
/* Prestation : indicateur de sauvegarde */
.presta-chip { position: relative; transition: background .16s, box-shadow .16s; }
.presta-chip.is-saving { box-shadow: inset 0 0 0 1px var(--accent-tint); }
.presta-chip.is-saved { animation: prestaSaved .9s ease; }
@keyframes prestaSaved { 0% { background: #e9f6ec; } 100% { background: transparent; } }
.presta-chip:has(input:checked).is-saved { animation: prestaSavedOn .9s ease; }
@keyframes prestaSavedOn { 0% { background: #d9f0df; } 100% { background: #fdf6f4; } }
.presta-chip.is-custom:has(input:checked) { background: #fdf6f4; }
.presta-chip__badge { margin-left: auto; font-size: .62rem; font-style: normal; text-transform: uppercase;
    letter-spacing: .04em; font-weight: 700; color: #a5621a; background: #fdeccd; padding: .1rem .4rem; border-radius: 100px; white-space: nowrap; }

/* Ajout d'une prestation libre */
.presta-add { margin-top: 1rem; padding: 1rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; }
.presta-add__title { font-weight: 600; color: var(--ink); }
.presta-add__row { display: grid; grid-template-columns: 1fr 190px; gap: .6rem; }
.presta-add__new { margin-top: .6rem; }
.presta-add .btn { margin-top: .7rem; }
@media (max-width: 560px) { .presta-add__row { grid-template-columns: 1fr; } }

/* ============ Zone d'intervention : régions dépliables ============ */
.zone-picker { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .6rem; }
.zone-region { border: 1px solid var(--line); border-radius: 12px; background: #fff; overflow: hidden; transition: box-shadow .16s; }
.zone-region[open] { box-shadow: 0 10px 30px -20px rgba(22,19,15,.5); }
.zone-region.is-saving { box-shadow: 0 0 0 2px var(--accent-tint); }
.zone-region__head { display: flex; align-items: center; gap: .5rem; padding: .8rem .9rem; cursor: pointer; list-style: none; user-select: none; }
.zone-region__head::-webkit-details-marker { display: none; }
.zone-region__name { font-weight: 600; color: var(--ink); font-size: .92rem; flex: 1; }
.zone-region__count { font-size: .74rem; font-weight: 700; color: var(--muted-2); background: var(--paper-3); padding: .12rem .5rem; border-radius: 100px; }
.zone-region__count.is-on { color: #fff; background: var(--accent); }
.zone-region__chev { color: var(--muted-2); display: inline-flex; transition: transform .2s; }
.zone-region__chev .icon { transform: rotate(90deg); width: 16px; height: 16px; }
.zone-region[open] .zone-region__chev { transform: rotate(90deg); }
.zone-region__body { padding: 0 .9rem .9rem; }
.zone-all { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: var(--accent);
    cursor: pointer; padding: .4rem 0 .6rem; border-bottom: 1px dashed var(--line); margin-bottom: .5rem; width: 100%; }
.zone-all input { accent-color: var(--accent); width: 1.05rem; height: 1.05rem; }
.zone-depts { display: flex; flex-direction: column; gap: .1rem; max-height: 240px; overflow-y: auto; }
.zone-dept { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--ink-2); padding: .3rem .35rem; border-radius: 8px; cursor: pointer; }
.zone-dept:hover { background: var(--paper-2); }
.zone-dept input { accent-color: var(--accent); width: 1rem; height: 1rem; flex: none; }
.zone-dept b { color: var(--muted); font-weight: 600; margin-right: .1rem; }
.zone-dept:has(input:checked) { color: var(--accent-deep); font-weight: 500; }

/* ============ Fiche prestataire : assistant multi-étapes ============ */
.pwiz-head__lead { max-width: 44rem; margin: .6rem 0 0; color: var(--muted); line-height: 1.55; }
.pwiz-head__back { display: inline-block; margin-top: 1.1rem; }

/* Timeline de validation */
.pval { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 1.4rem 0 .2rem; max-width: 720px; }
.pval__step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 .3rem; }
.pval__step::before { content: ""; position: absolute; top: 15px; left: -50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.pval__step:first-child::before { display: none; }
.pval__step.is-done::before { background: var(--accent); }
.pval__dot { position: relative; z-index: 1; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
    background: var(--paper); border: 2px solid var(--line); color: var(--muted-2); font-weight: 700; font-size: .82rem; margin-bottom: .5rem; }
.pval__step.is-done .pval__dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.pval__step.is-current .pval__dot { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
.pval__step.is-off .pval__dot { border-color: #c98; color: #b06; }
.pval__txt { display: flex; flex-direction: column; gap: .1rem; }
.pval__txt strong { font-size: .82rem; color: var(--ink); }
.pval__txt em { font-size: .72rem; color: var(--muted-2); font-style: normal; line-height: 1.3; }
@media (max-width: 620px) {
    .pval { grid-template-columns: 1fr; gap: .1rem; max-width: none; }
    .pval__step { flex-direction: row; align-items: center; text-align: left; gap: .7rem; padding: .25rem 0; }
    .pval__step::before { top: -50%; left: 15px; width: 2px; height: 100%; }
    .pval__dot { margin-bottom: 0; flex: none; }
}

/* Assistant */
.pwiz { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 60px -44px rgba(22,19,15,.5); }
.pwiz__nav { display: flex; gap: .2rem; padding: .5rem; background: var(--paper-2); border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.pwiz__nav::-webkit-scrollbar { display: none; }
.pwiz__navitem { flex: 1 1 auto; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    padding: .6rem .7rem; border: 0; background: transparent; border-radius: 12px; cursor: pointer; color: var(--muted);
    font: inherit; font-size: .84rem; white-space: nowrap; transition: all .16s; }
.pwiz__navitem:hover { background: rgba(0,0,0,.03); color: var(--ink); }
.pwiz__navnum { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--paper-3);
    color: var(--muted-2); font-size: .72rem; font-weight: 700; flex: none; }
.pwiz__navlbl { display: inline-flex; align-items: center; gap: .35rem; }
.pwiz__navlbl .icon { width: 15px; height: 15px; }
.pwiz__navitem.is-done .pwiz__navnum { background: color-mix(in srgb, var(--accent) 15%, #fff); color: var(--accent); }
.pwiz__navitem.is-active { background: var(--paper); color: var(--ink); font-weight: 600; box-shadow: 0 4px 12px -7px rgba(22,19,15,.4); }
.pwiz__navitem.is-active .pwiz__navnum { background: var(--accent); color: #fff; }
@media (max-width: 720px) { .pwiz__navitem { flex: 0 0 auto; } .pwiz__navlbl { display: none; } .pwiz__navitem.is-active .pwiz__navlbl { display: inline-flex; } }

.pwiz__form { padding: 1.8rem; }
.pwiz__step { display: none; animation: pwizFade .3s ease; }
.pwiz__step.is-active { display: block; }
@keyframes pwizFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.pwiz__title { font-family: var(--display); font-weight: 500; font-size: 1.5rem; color: var(--ink); margin: 0 0 1.2rem; }
.pwiz__title .opt { font-size: .8rem; }

.pwiz__foot { display: flex; align-items: center; gap: .8rem; padding: 1.2rem 1.8rem; border-top: 1px solid var(--line); background: var(--paper-2); }
.pwiz__save { font-size: .84rem; color: var(--muted-2); margin: 0 auto; transition: color .2s; min-height: 1.2em; }
.pwiz__save.is-saving { color: var(--muted); }
.pwiz__save.is-saved { color: #2f7d51; font-weight: 600; }
.pwiz__save.is-err { color: #b0453f; font-weight: 600; }
.pwiz__foot [data-pwiz-prev] { margin-right: auto; }
.pwiz__foot [data-pwiz-next], .pwiz__foot [data-pwiz-submit] { margin-left: auto; }

.pwiz-done { display: flex; align-items: center; gap: .9rem; margin-top: 1.2rem; padding: 1.1rem 1.2rem;
    background: #eefaf1; border: 1px solid #cdead6; border-radius: 14px; }
.pwiz-done__ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #2f7d51; color: #fff; flex: none; }
.pwiz-done p { margin: 0; color: #1b4a30; line-height: 1.5; }

/* ============ Tarifs de cession des salles (prestataire) ============ */
.vprice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.4rem; }
.vprice { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
    box-shadow: 0 20px 50px -40px rgba(22,19,15,.5); transition: transform .18s, box-shadow .18s; }
.vprice:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -34px rgba(22,19,15,.5); }
.vprice__media { position: relative; aspect-ratio: 16/9; background: var(--paper-3); }
.vprice__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vprice__ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted-2); }
.vprice__ph .icon { width: 34px; height: 34px; }
.vprice__from { position: absolute; left: .8rem; bottom: .8rem; background: rgba(22,19,15,.82); color: #fff;
    font-size: .82rem; font-weight: 600; padding: .3rem .7rem; border-radius: 100px; backdrop-filter: blur(3px); }
.vprice__body { padding: 1.2rem; }
.vprice__name { font-family: var(--display); font-weight: 500; font-size: 1.25rem; color: var(--ink); margin: 0 0 .3rem; }
.vprice__loc, .vprice__cap { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .84rem; color: var(--muted); margin: .2rem 0; }
.vprice__loc .icon, .vprice__cap .icon { color: var(--accent); width: 14px; height: 14px; }
.vprice__cap span { display: inline-flex; align-items: center; gap: .3rem; }
.vprice__days { margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.vprice__days-lbl { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); font-weight: 700; margin-bottom: .5rem; }
.vprice__days ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: .4rem; }
.vprice__days li { display: flex; flex-direction: column; gap: .1rem; padding: .5rem; background: var(--paper-2); border-radius: 10px; text-align: center; }
.vprice__day { font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted-2); font-weight: 700; }
.vprice__amt { font-weight: 600; color: var(--accent-deep); font-size: .92rem; }
.vprice__quote { font-size: .88rem; color: var(--muted); font-style: italic; margin: 1rem 0 0; }
.vprice-note { display: flex; align-items: center; gap: .5rem; margin-top: 1.6rem; font-size: .84rem; color: var(--muted-2); }
.vprice-note .icon { color: var(--accent); }

/* ============ Affaires du prestataire ============ */
.pdeal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.2rem; }
.pdeal-card { display: flex; flex-direction: column; gap: .7rem; padding: 1.3rem; background: var(--paper);
    border: 1px solid var(--line); border-radius: 16px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.pdeal-card:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -28px rgba(22,19,15,.45); border-color: var(--accent-tint); }
.pdeal-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .6rem; }
.pdeal-card__title { font-family: var(--display); font-size: 1.1rem; color: var(--ink); line-height: 1.2; }
.pdeal-badge { --sc: #64748b; display: inline-flex; align-items: center; font-size: .74rem; font-weight: 600; white-space: nowrap;
    padding: .22rem .7rem; border-radius: 100px; color: var(--sc);
    background: color-mix(in srgb, var(--sc) 13%, #fff); border: 1px solid color-mix(in srgb, var(--sc) 30%, #fff); }
.pdeal-card__client { display: flex; align-items: center; gap: .4rem; font-size: .9rem; color: var(--ink-2); margin: 0; }
.pdeal-card__client .icon, .pdeal-card__meta .icon { color: var(--accent); width: 14px; height: 14px; }
.pdeal-card__meta { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .3rem .9rem; }
.pdeal-card__meta li { display: inline-flex; align-items: center; gap: .35rem; font-size: .84rem; color: var(--muted); }
.pdeal-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .7rem; border-top: 1px solid var(--line); }
.pdeal-card__amount { font-weight: 600; color: var(--accent-deep); }
.pdeal-card__cta { display: inline-flex; align-items: center; gap: .3rem; font-size: .84rem; font-weight: 600; color: var(--accent); }
.pdeal-card__cta .icon { width: 14px; height: 14px; }

.pdeal-progress { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.6rem; }
.pdeal-progress__step { --sc: #64748b; display: inline-flex; align-items: center; gap: .45rem; padding: .4rem .85rem;
    border-radius: 100px; border: 1px solid var(--line); background: var(--paper); font-size: .82rem; color: var(--muted); }
.pdeal-progress__dot { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--paper-3); color: var(--muted-2); font-size: .7rem; font-weight: 700; }
.pdeal-progress__dot .icon { width: 12px; height: 12px; }
.pdeal-progress__step.is-done { border-color: color-mix(in srgb, var(--sc) 35%, #fff); color: var(--ink-2); }
.pdeal-progress__step.is-done .pdeal-progress__dot { background: var(--sc); color: #fff; }
.pdeal-progress__step.is-current { border-color: var(--sc); background: var(--sc); color: #fff; font-weight: 600; }
.pdeal-progress__step.is-current .pdeal-progress__dot { background: rgba(255,255,255,.3); color: #fff; }

.pdeal-recap { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem; margin-bottom: 1.3rem; }
.pdeal-recap__title { font-family: var(--display); font-weight: 500; font-size: 1.2rem; color: var(--ink); margin: 0 0 1rem; }
.pdeal-recap__list { margin: 0; }
.pdeal-recap__list > div { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--paper-3); }
.pdeal-recap__list > div:last-child { border-bottom: 0; }
.pdeal-recap__list dt { color: var(--muted-2); font-size: .86rem; }
.pdeal-recap__list dd { margin: 0; color: var(--ink-2); font-weight: 500; text-align: right; }
.pdeal-recap__msg { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.pdeal-recap__msg span { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted-2); margin-bottom: .4rem; }
.pdeal-recap__msg p { margin: 0; color: var(--muted); line-height: 1.5; font-style: italic; }
.pdeal-help { background: var(--ink); color: #f4f1ea; border-radius: 18px; padding: 1.3rem; }
.pdeal-help p { margin: 0 0 .5rem; line-height: 1.55; color: rgba(244,241,234,.85); }
.pdeal-help p:last-child { margin: 0; }
.pdeal-help strong { color: #fff; }

/* ============================================================
   Fiche prestataire — refonte premium centrée (v2)
   ============================================================ */
.pfiche { position: relative; overflow: hidden; padding: 3.4rem 1.2rem 5rem;
    background: linear-gradient(180deg, #f6efe6 0%, #fbf8f3 42%, #ffffff 100%); }
.pfiche__glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 960px; max-width: 120vw; height: 520px; pointer-events: none;
    background: radial-gradient(circle at 50% 40%, rgba(124,59,70,.12), transparent 62%); }
.pfiche__inner { position: relative; max-width: 940px; margin: 0 auto; }

.pfiche__back { display: inline-flex; align-items: center; gap: .4rem; font-size: .86rem; color: var(--muted); margin-bottom: 1.4rem; }
.pfiche__back:hover { color: var(--accent); }
.pfiche__back .icon { width: 15px; height: 15px; }

.pfiche__head { text-align: center; max-width: 40rem; margin: 0 auto 2rem; }
.pfiche__eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: var(--accent); font-weight: 700; margin: 0 0 .7rem; }
.pfiche__title { font-family: var(--display); font-weight: 500; font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1.08; color: var(--ink); margin: 0 0 .85rem; letter-spacing: -.01em; }
.pfiche__lead { color: var(--muted); font-size: 1.03rem; line-height: 1.6; margin: 0; }
.pfiche__lead strong { color: var(--ink-2); }

/* Timeline de validation — carte centrée */
.pfiche__timeline { margin: 0 auto 2.2rem; max-width: 760px; }
.pfiche__timeline .pval { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 1.3rem 1.5rem; box-shadow: 0 18px 46px -34px rgba(22,19,15,.5); }

/* Carte assistant */
.pwiz { max-width: 820px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 22px;
    overflow: hidden; box-shadow: 0 34px 80px -50px rgba(22,19,15,.55); }

/* Barre d'étapes */
.pwiz__nav { display: flex; gap: .25rem; padding: .55rem; background: linear-gradient(180deg, #faf6f0, #fff);
    border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.pwiz__nav::-webkit-scrollbar { display: none; }
.pwiz__navitem { flex: 1 1 0; display: inline-flex; flex-direction: column; align-items: center; gap: .3rem;
    padding: .65rem .4rem; border: 0; background: transparent; border-radius: 14px; cursor: pointer;
    color: var(--muted-2); font: inherit; font-size: .74rem; white-space: nowrap; transition: all .18s; min-width: 76px; }
.pwiz__navitem:hover { background: rgba(124,59,70,.05); color: var(--ink); }
.pwiz__navnum { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
    background: #f1ebe3; color: var(--muted-2); font-size: .8rem; font-weight: 700; transition: all .18s; }
.pwiz__navlbl { display: inline-flex; align-items: center; gap: .3rem; font-weight: 500; }
.pwiz__navlbl .icon { display: none; }
.pwiz__navitem.is-done .pwiz__navnum { background: #e4f1ea; color: #2f7d51; }
.pwiz__navitem.is-active { color: var(--ink); }
.pwiz__navitem.is-active .pwiz__navnum { background: var(--accent); color: #fff; box-shadow: 0 8px 18px -8px rgba(124,59,70,.6); transform: scale(1.06); }
.pwiz__navitem.is-active .pwiz__navlbl { font-weight: 700; color: var(--accent); }
@media (max-width: 680px) { .pwiz__navitem { min-width: 58px; font-size: 0; } .pwiz__navitem.is-active { font-size: .74rem; } }

/* Contenu d'étape */
.pwiz__form { padding: 2.2rem 2.2rem 0; }
.pwiz__step { display: none; animation: pwizFade .32s ease; }
.pwiz__step.is-active { display: block; }
@keyframes pwizFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.pwiz__title { font-family: var(--display); font-weight: 500; font-size: 1.55rem; color: var(--ink); margin: 0 0 .3rem; }
.pwiz__form .form-block__hint { margin-top: .1rem; }
.pwiz__step > .field, .pwiz__step > .cform__row { margin-top: 1.15rem; }
.pwiz__step > .pwiz__title + .form-block__hint,
.pwiz__step > .pwiz__title + p { margin-top: .1rem; }

/* Pied */
.pwiz__foot { display: flex; align-items: center; gap: .8rem; margin-top: 1.6rem; padding: 1.2rem 2.2rem; border-top: 1px solid var(--line); background: #faf7f2; }
.pwiz__save { font-size: .84rem; color: var(--muted-2); margin: 0 auto; min-height: 1.2em; transition: color .2s; }
.pwiz__save.is-saving { color: var(--muted); }
.pwiz__save.is-saved { color: #2f7d51; font-weight: 600; }
.pwiz__save.is-err { color: #b0453f; font-weight: 600; }
.pwiz__foot [data-pwiz-prev] { margin-right: auto; }
.pwiz__foot [data-pwiz-next], .pwiz__foot [data-pwiz-finalize] { margin-left: auto; }

@media (max-width: 560px) { .pwiz__form { padding: 1.5rem 1.3rem 0; } .pwiz__foot { padding: 1.1rem 1.3rem; } }

/* ============================================================
   Fiche prestataire v3 — assistant horizontal + footer + types
   ============================================================ */
.pfiche__inner { max-width: 1060px; }

/* Assistant en 2 colonnes : nav latérale + panneau */
.pwiz.pwiz--h { max-width: 1060px; display: grid; grid-template-columns: 256px 1fr; align-items: stretch; padding: 0; }
.pwiz__side { background: linear-gradient(180deg, #faf5ef, #fdfbf8); border-right: 1px solid var(--line); padding: 1.5rem 1.1rem; }
.pwiz--h .pwiz__nav { display: flex; flex-direction: column; gap: .2rem; padding: 0; background: none; border: 0; overflow: visible; }
.pwiz--h .pwiz__navitem { flex: none; flex-direction: row; justify-content: flex-start; align-items: center; gap: .75rem;
    width: 100%; min-width: 0; padding: .7rem .8rem; border-radius: 12px; text-align: left; font-size: .9rem; position: relative; }
.pwiz--h .pwiz__navitem:hover { background: rgba(124,59,70,.05); }
.pwiz--h .pwiz__navnum { width: 30px; height: 30px; font-size: .82rem; }
.pwiz--h .pwiz__navlbl { font-size: .9rem; }
.pwiz--h .pwiz__navlbl .icon { display: inline; width: 15px; height: 15px; color: var(--muted-2); }
.pwiz--h .pwiz__navitem.is-active { background: #fff; box-shadow: 0 8px 20px -12px rgba(22,19,15,.4); }
.pwiz--h .pwiz__navitem.is-active .pwiz__navlbl .icon { color: var(--accent); }
/* trait de liaison vertical entre étapes */
.pwiz--h .pwiz__navitem::before { content: ""; position: absolute; left: 24px; top: -.2rem; width: 2px; height: .4rem; background: var(--line); }
.pwiz--h .pwiz__navitem:first-child::before { display: none; }
.pwiz--h .pwiz__navitem.is-done::before, .pwiz--h .pwiz__navitem.is-active::before { background: color-mix(in srgb, var(--accent) 35%, #fff); }

.pwiz__panel { min-width: 0; display: flex; flex-direction: column; }
.pwiz--h .pwiz__form { flex: 1 1 auto; padding: 2.2rem 2.4rem 0; }

/* Champs plus horizontaux dans le panneau large */
.pwiz--h .cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

/* Pied moderne */
.pwiz--h .pwiz__foot { margin-top: 2rem; padding: 1.1rem 2.4rem; border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #faf7f2); display: flex; align-items: center; gap: 1rem; }
.pwiz__prev { display: inline-flex; align-items: center; gap: .4rem; background: none; border: 0; cursor: pointer;
    font: inherit; font-size: .9rem; font-weight: 600; color: var(--muted); padding: .5rem .2rem; transition: color .16s; margin-right: auto; }
.pwiz__prev:hover { color: var(--accent); }
.pwiz__prev .icon { width: 15px; height: 15px; }
.pwiz__save { font-size: .84rem; margin: 0; min-height: 1.2em; color: var(--muted-2); transition: color .2s; }
.pwiz__save.is-saving { color: var(--muted); }
.pwiz__save.is-saved { color: #2f7d51; font-weight: 600; }
.pwiz__save.is-err { color: #b0453f; font-weight: 600; }
.pwiz__next, .pwiz__finalize { margin-left: 0; }
.pwiz__foot [data-pwiz-prev] + .pwiz__save { margin-left: 0; }

@media (max-width: 780px) {
    .pwiz.pwiz--h { grid-template-columns: 1fr; }
    .pwiz__side { border-right: 0; border-bottom: 1px solid var(--line); padding: .6rem; }
    .pwiz--h .pwiz__nav { flex-direction: row; overflow-x: auto; scrollbar-width: none; gap: .3rem; }
    .pwiz--h .pwiz__nav::-webkit-scrollbar { display: none; }
    .pwiz--h .pwiz__navitem { flex: 0 0 auto; flex-direction: column; text-align: center; gap: .3rem; }
    .pwiz--h .pwiz__navitem::before { display: none; }
    .pwiz--h .pwiz__navlbl { font-size: 0; }
    .pwiz--h .pwiz__navlbl .icon { display: none; }
    .pwiz--h .pwiz__navitem.is-active .pwiz__navlbl { font-size: .72rem; }
    .pwiz--h .pwiz__form { padding: 1.5rem 1.3rem 0; }
    .pwiz--h .pwiz__foot { padding: 1.1rem 1.3rem; }
    .pwiz--h .cform__row { grid-template-columns: 1fr; }
}

/* ---- Barre « Type de prestation » modernisée ---- */
.presta-types { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; padding: 1rem 1.1rem;
    background: linear-gradient(180deg, #fbf7f2, #fff); border-bottom: 1px solid var(--line); }
.presta-types__label { display: inline-flex; align-items: center; font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--muted-2); margin-right: .3rem; }
.presta-type { font: inherit; font-size: .84rem; font-weight: 500; display: inline-flex; align-items: center; gap: .4rem;
    padding: .42rem .9rem; border-radius: 100px; border: 1px solid var(--line); background: #fff; color: var(--ink-2);
    cursor: pointer; transition: all .16s; }
.presta-type:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.presta-type.is-active { background: var(--accent); border-color: var(--accent); color: #fff;
    box-shadow: 0 8px 18px -9px rgba(124,59,70,.6); }
.presta-type__n { display: inline-grid; place-items: center; min-width: 1.2rem; height: 1.2rem; padding: 0 .3rem;
    font-size: .68rem; font-weight: 700; border-radius: 100px; background: rgba(124,59,70,.12); color: var(--accent); }
.presta-type.is-active .presta-type__n { background: rgba(255,255,255,.28); color: #fff; }
.presta-type .presta-type__n:empty { display: none; }

/* ============================================================
   Fiche prestataire v4 — nav en haut, largeur élargie conservée
   ============================================================ */
.pwiz.pwiz--wide { max-width: 1060px; margin: 0 auto; display: block; padding: 0; }

/* Barre d'étapes en haut, pleine largeur */
.pwiz--wide .pwiz__nav { display: flex; gap: .3rem; padding: .6rem; background: linear-gradient(180deg, #faf6f0, #fff);
    border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.pwiz--wide .pwiz__nav::-webkit-scrollbar { display: none; }
.pwiz--wide .pwiz__navitem { flex: 1 1 0; display: inline-flex; flex-direction: column; align-items: center; gap: .35rem;
    min-width: 92px; padding: .7rem .4rem; border: 0; background: transparent; border-radius: 14px; cursor: pointer;
    color: var(--muted-2); font: inherit; font-size: .78rem; white-space: nowrap; transition: all .18s; }
.pwiz--wide .pwiz__navitem:hover { background: rgba(124,59,70,.05); color: var(--ink); }
.pwiz--wide .pwiz__navnum { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
    background: #f1ebe3; color: var(--muted-2); font-size: .82rem; font-weight: 700; transition: all .18s; }
.pwiz--wide .pwiz__navlbl { display: inline-flex; align-items: center; gap: .3rem; font-weight: 500; }
.pwiz--wide .pwiz__navlbl .icon { display: none; }
.pwiz--wide .pwiz__navitem.is-done .pwiz__navnum { background: #e4f1ea; color: #2f7d51; }
.pwiz--wide .pwiz__navitem.is-active { color: var(--ink); }
.pwiz--wide .pwiz__navitem.is-active .pwiz__navnum { background: var(--accent); color: #fff; box-shadow: 0 8px 18px -8px rgba(124,59,70,.6); transform: scale(1.06); }
.pwiz--wide .pwiz__navitem.is-active .pwiz__navlbl { font-weight: 700; color: var(--accent); }

/* Formulaire pleine largeur, champs sur 2 colonnes */
.pwiz--wide .pwiz__form { padding: 2.2rem 2.4rem 0; }
.pwiz--wide .cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

/* Footer propre */
.pwiz--wide .pwiz__foot { display: flex; align-items: center; gap: 1rem; justify-content: flex-end; margin-top: 2rem;
    padding: 1.15rem 2.4rem; border-top: 1px solid var(--line); background: linear-gradient(180deg, #fff, #faf7f2); }
.pwiz--wide .pwiz__foot [data-pwiz-prev] { margin-right: auto; margin-left: 0; }
.pwiz--wide .pwiz__foot .pwiz__save { margin: 0; }
.pwiz--wide .pwiz__foot [data-pwiz-next], .pwiz--wide .pwiz__foot [data-pwiz-finalize] { margin-left: 0; }

@media (max-width: 680px) {
    .pwiz--wide .pwiz__navitem { min-width: 60px; font-size: 0; }
    .pwiz--wide .pwiz__navitem.is-active { font-size: .74rem; }
    .pwiz--wide .pwiz__form { padding: 1.5rem 1.3rem 0; }
    .pwiz--wide .pwiz__foot { padding: 1.1rem 1.3rem; }
    .pwiz--wide .cform__row { grid-template-columns: 1fr; }
}

/* ============================================================
   Fiche prestataire — footer moderne (progression + save + nav)
   ============================================================ */
.pwiz--wide .pwiz__foot { display: block; margin-top: 2rem; padding: 0; border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #faf7f2); }

/* Barre de progression fine en haut du footer */
.pwiz__bar { height: 4px; background: var(--paper-3); position: relative; overflow: hidden; }
.pwiz__bar-fill { position: absolute; inset: 0 auto 0 0; width: 16.6%; border-radius: 0 4px 4px 0;
    background: linear-gradient(90deg, var(--accent), #a34f5c); transition: width .45s cubic-bezier(.4,0,.2,1); }
.pwiz__bar-fill::after { content: ""; position: absolute; right: 0; top: 50%; transform: translate(50%,-50%);
    width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(124,59,70,.18); }

.pwiz__foot-inner { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 2.4rem; }

/* Précédent — bouton texte discret */
.pwiz__prev { display: inline-flex; align-items: center; gap: .4rem; background: none; border: 0; cursor: pointer;
    font: inherit; font-size: .9rem; font-weight: 600; color: var(--muted); padding: .55rem .2rem; transition: color .16s; }
.pwiz__prev:hover { color: var(--accent); }
.pwiz__prev .icon { width: 15px; height: 15px; transition: transform .2s; }
.pwiz__prev:hover .icon { transform: translateX(-3px); }

/* Bloc central : compteur + badge d'enregistrement */
.pwiz__meta { display: flex; flex-direction: column; align-items: center; gap: .2rem; margin: 0 auto; text-align: center; }
.pwiz__count { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }
.pwiz__save { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600;
    padding: .18rem .7rem; border-radius: 100px; transition: all .2s; }
.pwiz__save[hidden] { display: none; }
.pwiz__save-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pwiz__save.is-saving { color: #9a8f7e; background: #f1ece3; }
.pwiz__save.is-saving .pwiz__save-dot { animation: pwizPulse 1s infinite; }
.pwiz__save.is-saved { color: #2f7d51; background: #e4f1ea; }
.pwiz__save.is-err { color: #b0453f; background: #f8e6e4; }
@keyframes pwizPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.7); } }

/* Boutons d'action — pilules premium */
.pwiz__next, .pwiz__finalize { display: inline-flex; align-items: center; gap: .5rem; border: 0; cursor: pointer;
    font: inherit; font-size: .92rem; font-weight: 600; color: #fff; padding: .72rem 1.5rem; border-radius: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 12px 24px -12px rgba(124,59,70,.75); transition: transform .16s, box-shadow .16s, filter .16s; }
.pwiz__next:hover, .pwiz__finalize:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(124,59,70,.8); filter: brightness(1.04); }
.pwiz__next:active, .pwiz__finalize:active { transform: translateY(0); }
.pwiz__next .icon, .pwiz__finalize .icon { width: 16px; height: 16px; transition: transform .2s; }
.pwiz__next:hover .icon { transform: translateX(4px); }
.pwiz__finalize { background: linear-gradient(135deg, #2f7d51, #256b43); box-shadow: 0 12px 24px -12px rgba(47,125,81,.7); }
.pwiz__finalize:hover { box-shadow: 0 16px 30px -12px rgba(47,125,81,.75); }

@media (max-width: 680px) {
    .pwiz__foot-inner { padding: 1rem 1.2rem; gap: .6rem; }
    .pwiz__prev span, .pwiz__prev { font-size: .84rem; }
    .pwiz__next, .pwiz__finalize { padding: .65rem 1.1rem; font-size: .86rem; }
    .pwiz__meta { display: none; }
}

/* Puce de statut dans l'en-tête de la fiche */
.pfiche__chip { display: inline-flex; align-items: center; gap: .45rem; font-size: .76rem; font-weight: 600;
    padding: .35rem .85rem; border-radius: 100px; margin-bottom: 1rem; letter-spacing: .01em; }
.pfiche__chip-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 22%, transparent); }
.pfiche__chip--is-pending { color: #a5621a; background: #fdeccd; }
.pfiche__chip--is-online { color: #2f7d51; background: #dcf1e4; }
.pfiche__chip--is-off { color: #8a8078; background: #ece7df; }

/* ============================================================
   Connexion prestataire — auth ultra moderne (split)
   ============================================================ */
.pauth { position: relative; overflow: hidden; min-height: 86vh; display: grid; place-items: center;
    padding: clamp(6rem, 12vh, 9rem) 1.2rem 4rem; background: linear-gradient(180deg, #f6efe6 0%, #fbf8f3 45%, #fff 100%); }
.pauth__glow { position: absolute; top: -180px; left: 18%; width: 720px; max-width: 100vw; height: 520px;
    background: radial-gradient(circle, rgba(124,59,70,.12), transparent 62%); pointer-events: none; }
.pauth__grid { position: relative; width: 100%; max-width: 960px; display: grid; grid-template-columns: 1fr 1fr;
    background: #fff; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; box-shadow: 0 44px 100px -55px rgba(22,19,15,.6); }

/* Panneau valeur (gauche) */
.pauth__aside { position: relative; background: linear-gradient(155deg, #7c3b46 0%, #572530 55%, #3f1a22 100%);
    color: #f6ece9; padding: clamp(2rem, 4vw, 3rem); display: flex; align-items: center; overflow: hidden; }
.pauth__aside-grain { position: absolute; inset: 0; background: radial-gradient(circle at 82% 8%, rgba(255,255,255,.12), transparent 42%); }
.pauth__aside-in { position: relative; }
.pauth__eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .7rem; font-weight: 700; color: var(--accent-tint); margin: 0 0 1rem; }
.pauth__aside-title { font-family: var(--display); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.12; margin: 0 0 1rem; color: #fff; }
.pauth__aside-lead { color: rgba(246,236,233,.82); line-height: 1.6; margin: 0 0 1.7rem; font-size: .96rem; }
.pauth__benefits { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.pauth__benefits li { display: flex; align-items: center; gap: .65rem; font-size: .92rem; color: rgba(246,236,233,.94); }
.pauth__benefits li span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff; flex: none; }
.pauth__benefits li span .icon { width: 14px; height: 14px; }

/* Carte de connexion (droite) */
.pauth__main { padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.pauth__badge { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px;
    background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); margin-bottom: 1.1rem; }
.pauth__badge .icon { width: 26px; height: 26px; }
.pauth__title { font-family: var(--display); font-weight: 500; font-size: 1.9rem; color: var(--ink); margin: 0 0 .3rem; }
.pauth__sub { color: var(--muted); margin: 0 0 1.5rem; }
.pauth__form .field { margin-bottom: 1rem; }
.pauth__form .btn { margin-top: .5rem; }
.pauth__resend { margin-top: 1.2rem; padding: 1rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; text-align: center; }
.pauth__resend p { margin: 0 0 .6rem; font-size: .88rem; color: var(--muted); }
.pauth__alt { margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); text-align: center; }
.pauth__alt > span { display: block; font-size: .88rem; color: var(--muted); margin-bottom: .7rem; }
.pauth__create { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--accent);
    border: 1px solid var(--accent-tint); border-radius: 100px; padding: .55rem 1.2rem; transition: all .16s; }
.pauth__create:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px); }
.pauth__create .icon { width: 15px; height: 15px; }
.pauth__home { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.2rem; font-size: .86rem; color: var(--muted); align-self: center; }
.pauth__home:hover { color: var(--accent); }
.pauth__home .icon { width: 14px; height: 14px; }

@media (max-width: 760px) {
    .pauth__grid { grid-template-columns: 1fr; max-width: 460px; }
    .pauth__aside { display: none; }
}

/* Accès prestataire dans le hero de l'annuaire */
.phero__provider { display: inline-flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-top: 1.8rem;
    padding: .5rem .5rem .5rem 1.1rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    border-radius: 100px; backdrop-filter: blur(6px); }
.phero__provider-txt { font-size: .92rem; color: rgba(255,255,255,.9); font-weight: 500; }
.phero__provider-btn { display: inline-flex; align-items: center; gap: .4rem; font-size: .88rem; font-weight: 600;
    padding: .5rem 1rem; border-radius: 100px; color: #fff; border: 1px solid rgba(255,255,255,.28); transition: all .16s; white-space: nowrap; }
.phero__provider-btn .icon { width: 15px; height: 15px; }
.phero__provider-btn:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }
.phero__provider-btn--primary { background: #fff; color: var(--accent-deep); border-color: #fff; }
.phero__provider-btn--primary:hover { background: var(--accent-tint); border-color: var(--accent-tint); color: var(--accent-deep); }
@media (max-width: 560px) { .phero__provider { border-radius: 18px; flex-direction: column; align-items: stretch; text-align: center; } .phero__provider-btn { justify-content: center; } }

/* ===================================================================
   Page salle — refonte des sections (à propos, documents, galerie,
   options, CTA mobile collant, navigation de la lightbox)
   =================================================================== */

/* --- À propos (composition éditoriale) --- */
.vabout { position: relative; overflow: hidden; }
.vabout__watermark { position: absolute; top: 0.5rem; right: -0.5rem; z-index: 0; font-family: var(--display); font-weight: 600; font-size: clamp(4.5rem, 13vw, 11rem); line-height: 1; letter-spacing: 0.02em; text-transform: uppercase; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px var(--paper-3); pointer-events: none; user-select: none; }
.vabout__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.4rem, 6vw, 6rem); align-items: center; }
.vabout__eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; }
.vabout__eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--accent); }
.vabout__title { font-family: var(--display); font-weight: 500; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.04; margin: 0.9rem 0 1.3rem; }
.vabout__title em { color: var(--accent); font-style: italic; }
.vabout__lead { font-family: var(--display); font-size: clamp(1.1rem, 1.9vw, 1.35rem); line-height: 1.5; color: var(--ink-2); margin-bottom: 1.1rem; }
.vabout__prose { color: var(--muted); }
.vabout__uses { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem 1.4rem; margin: 1.5rem 0 0; padding: 1.1rem 0 0; border-top: 1px solid var(--line); }
.vabout__uses li { position: relative; padding-left: 1rem; font-size: 0.92rem; color: var(--ink-2); }
.vabout__uses li::before { content: ""; position: absolute; left: 0; top: 0.52em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.vabout__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: 1.8rem; }
.vabout__link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 0.15rem; transition: color 0.25s, border-color 0.25s; }
.vabout__link:hover { color: var(--accent); border-color: var(--accent); }
.vabout__link .icon { transition: transform 0.3s var(--ease); }
.vabout__link:hover .icon { transform: translateX(4px); }

.vabout__media { position: relative; padding: 0 0 3.2rem 2.6rem; }
.vabout__media::before { content: ""; position: absolute; top: -1.1rem; right: -1.1rem; width: 62%; height: 62%; border: 1px solid var(--accent-tint); border-radius: var(--radius-lg); z-index: 0; }
.vabout__main { position: relative; z-index: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.vabout__main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; transition: transform 1.2s var(--ease); }
.vabout__media:hover .vabout__main img { transform: scale(1.045); }
.vabout__second { position: absolute; left: 0; bottom: 0; width: min(52%, 260px); z-index: 2; border: 6px solid var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.vabout__second img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.vabout__chip { position: absolute; top: 1.4rem; right: 1.1rem; z-index: 3; background: var(--dark); color: var(--paper); border-radius: var(--radius-lg); padding: 0.7rem 1.05rem; box-shadow: var(--shadow-soft); line-height: 1.15; text-align: left; }
.vabout__chip-n { display: block; font-family: var(--display); font-size: 1.5rem; }
.vabout__chip-l { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }

@media (max-width: 900px) {
    .vabout__watermark { font-size: 4.2rem; top: 0.2rem; opacity: 0.8; }
    .vabout__grid { grid-template-columns: 1fr; }
    .vabout__media { order: -1; padding: 0 0 2.6rem 1.4rem; margin-top: 0.4rem; }
    .vabout__second { width: 46%; }
    .vabout__chip { top: 1rem; right: 0.8rem; padding: 0.55rem 0.85rem; }
    .vabout__chip-n { font-size: 1.25rem; }
}

/* --- Atouts : cartes photo immersives sur fond sombre --- */
.vfeats { background: var(--dark); color: var(--paper); padding: clamp(3.4rem, 8vw, 6.5rem) 0; }
.vfeats__head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.vfeats__head .section__title { color: var(--paper); }
.vfeats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 2vw, 1.4rem); }
.vfeat { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 3/4; background: linear-gradient(200deg, #241e17, var(--dark)); isolation: isolate; }
.vfeat__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 1.1s var(--ease); }
.vfeat:hover .vfeat__img { transform: scale(1.06); }
.vfeat__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(12,9,6,0.92) 0%, rgba(12,9,6,0.45) 45%, rgba(12,9,6,0.08) 75%); transition: background 0.5s; }
.vfeat__num { position: absolute; top: 0.6rem; right: 1rem; z-index: 2; font-family: var(--display); font-style: italic; font-size: clamp(3.4rem, 6vw, 5rem); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.42); pointer-events: none; }
.vfeat__content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(1.2rem, 2.4vw, 1.7rem); }
.vfeat__title { font-family: var(--display); font-weight: 500; font-size: clamp(1.25rem, 1.7vw, 1.55rem); line-height: 1.2; margin-bottom: 0.55rem; }
.vfeat__title::after { content: ""; display: block; width: 2.2rem; height: 2px; margin-top: 0.55rem; background: var(--accent); transition: width 0.45s var(--ease); }
.vfeat:hover .vfeat__title::after { width: 3.6rem; }
.vfeat__text { color: rgba(245,241,234,0.82); font-size: 0.92rem; line-height: 1.6; }
@media (hover: hover) and (min-width: 761px) {
    .vfeat__text { max-height: 0; opacity: 0; transform: translateY(8px); overflow: hidden; transition: max-height 0.55s var(--ease), opacity 0.45s, transform 0.55s var(--ease); }
    .vfeat:hover .vfeat__text, .vfeat:focus-within .vfeat__text { max-height: 220px; opacity: 1; transform: none; }
    .vfeat:hover .vfeat__veil { background: linear-gradient(to top, rgba(12,9,6,0.96) 0%, rgba(12,9,6,0.6) 55%, rgba(12,9,6,0.12) 80%); }
}
@media (max-width: 760px) {
    .vfeats__grid { grid-template-columns: 1fr; }
    .vfeat { aspect-ratio: 4/3.4; }
}
/* Enchaînement avec la bande Documents, elle aussi sombre */
.vfeats + .vdocs { border-top: 1px solid rgba(255,255,255,0.09); }

/* --- Documents téléchargeables --- */
.vdocs { background: var(--dark); color: var(--paper); padding: clamp(3.4rem, 8vw, 6.5rem) 0; }
.vdocs__head { max-width: 640px; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.vdocs__head .section__title { color: var(--paper); }
.vdocs__sub { color: var(--muted-2); margin-top: 0.7rem; }
.vdocs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.vdoc { position: relative; display: flex; align-items: flex-start; gap: 1.1rem; padding: 1.5rem 1.4rem; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg); background: rgba(255,255,255,0.04); text-decoration: none; color: inherit; overflow: hidden; transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease); }
.vdoc::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-tint)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.vdoc:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); transform: translateY(-3px); }
.vdoc:hover::after { transform: scaleX(1); }
.vdoc__icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: var(--accent-tint); }
.vdoc__icon .icon { width: 1.15rem; height: 1.15rem; }
.vdoc__body { display: flex; flex-direction: column; gap: 0.25rem; }
.vdoc__name { font-family: var(--display); font-size: 1.15rem; font-weight: 500; line-height: 1.25; }
.vdoc__meta { font-size: 0.85rem; color: var(--muted-2); }
.vdoc__file { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-tint); margin-top: 0.35rem; }
.vdoc__arrow { margin-left: auto; align-self: center; color: var(--paper); opacity: 0.55; transition: opacity 0.3s, transform 0.3s var(--ease); }
.vdoc:hover .vdoc__arrow { opacity: 1; transform: translateY(3px); }

/* --- Galerie bento --- */
.vgal__count { color: var(--muted); margin-top: 0.5rem; }
.vgal { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; grid-auto-flow: dense; gap: 0.8rem; }
.vgal__item { position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: zoom-in; padding: 0; border: 0; background: var(--paper-3); }
.vgal__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease), filter 0.8s var(--ease); }
.vgal__item:hover img { transform: scale(1.06); }
.vgal__item:nth-child(8n+1) { grid-column: span 2; grid-row: span 2; }
.vgal__item:nth-child(8n+6) { grid-column: span 2; }
.vgal__more { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(22,19,15,0.62); color: #fff; font-family: var(--display); font-size: clamp(1.1rem, 2.2vw, 1.5rem); letter-spacing: 0.02em; backdrop-filter: blur(2px); transition: background 0.3s; }
.vgal__item:hover .vgal__more { background: rgba(96,42,52,0.72); }
@media (max-width: 820px) {
    .vgal { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .vgal__item:nth-child(8n+1) { grid-column: span 2; grid-row: span 2; }
    .vgal__item:nth-child(8n+6) { grid-column: span 1; }
}

/* --- Options & prestations --- */
/* Deux sections claires se suivent : on évite le double padding vertical. */
.vopts { padding-top: clamp(1.2rem, 3vw, 2.5rem); }
.vopts__sub { color: var(--muted); margin-top: 0.55rem; max-width: 560px; }
.vopts__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }
.vopt { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.3rem 1.3rem; background: var(--paper); transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.vopt:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--accent-tint); }
.vopt--req { background: linear-gradient(160deg, #fdfbf8, var(--accent-tint) 190%); border-color: var(--accent-tint); }
.vopt__badge { display: inline-block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 100px; border: 1px solid var(--line); color: var(--muted); margin-bottom: 0.8rem; }
.vopt--req .vopt__badge { background: var(--accent); border-color: var(--accent); color: #fff; }
.vopt--inc { background: linear-gradient(160deg, #fdfbf5, #f0e3c2 230%); border-color: #e2d3a8; }
.vopt--inc .vopt__badge { background: #a8853b; border-color: #a8853b; color: #fff; }
.vopt__name { font-family: var(--display); font-size: 1.25rem; font-weight: 500; line-height: 1.25; }
.vopt__desc { margin-top: 0.45rem; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.vopts__cta { margin-top: clamp(1.8rem, 4vw, 2.6rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 1.3rem 1.5rem; background: var(--paper-2); }
.vopts__cta p { font-family: var(--display); font-size: 1.15rem; }
.vopts__cta .btn { max-width: 100%; white-space: normal; text-align: center; }
@media (max-width: 640px) {
    .vopts__cta { flex-direction: column; align-items: stretch; text-align: center; padding: 1.2rem 1rem; }
    .vopts__cta .btn { width: 100%; justify-content: center; }
}

/* --- CTA mobile collant --- */
.vsticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 0.7rem calc(0.9rem + env(safe-area-inset-left)) calc(0.7rem + env(safe-area-inset-bottom)); background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-top: 1px solid var(--line); transform: translateY(110%); transition: transform 0.4s var(--ease); }
.vsticky.is-visible { transform: translateY(0); }
.vsticky[hidden] { display: none !important; }
@media (min-width: 821px) { .vsticky { display: none !important; } }

/* --- Lightbox : navigation + compteur --- */
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.22); cursor: pointer; transition: background 0.25s; }
.lightbox__nav:hover { background: var(--accent); }
.lightbox__nav--prev { left: max(1rem, env(safe-area-inset-left)); }
.lightbox__nav--next { right: max(1rem, env(safe-area-inset-right)); }
.lightbox__nav .icon { width: 1.3rem; height: 1.3rem; }
.lightbox__count { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.85); font-size: 0.9rem; letter-spacing: 0.08em; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) { .lightbox__nav { width: 42px; height: 42px; } }

/* ===================================================================
   Actualités — sections après la liste des articles
   =================================================================== */
.nv-teaser { background: var(--paper-2); }
/* La bande crème respirait trop peu après le contenu (article et liste). */
.nv-teaser { margin-top: clamp(2rem, 5vw, 3.5rem); }
.nv-teaser__sub { color: var(--muted); margin-top: 0.55rem; max-width: 520px; }
.nv-teaser__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 2vw, 1.4rem); }
.nv-card { position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/3; isolation: isolate; }
.nv-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease); }
.nv-card:hover img { transform: scale(1.05); }
.nv-card__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,9,6,0.82), rgba(12,9,6,0.05) 60%); }
.nv-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.2rem; color: var(--paper); display: flex; flex-direction: column; gap: 0.2rem; }
.nv-card__name { font-family: var(--display); font-size: 1.3rem; font-weight: 500; }
.nv-card__meta { font-size: 0.85rem; color: rgba(245,241,234,0.8); }
.nv-teaser__more { margin-top: clamp(1.4rem, 3vw, 2rem); text-align: center; }
@media (max-width: 820px) { .nv-teaser__grid { grid-template-columns: 1fr; } .nv-card { aspect-ratio: 16/9; } }

.news-providers { background: var(--dark); color: var(--paper); padding: clamp(2.6rem, 6vw, 4.5rem) 0; }
.news-providers__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.4rem, 4vw, 3rem); flex-wrap: wrap; }
.news-providers__title { font-family: var(--display); font-weight: 500; font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.25; max-width: 560px; margin: 0.5rem 0; }
.news-providers__text { color: var(--muted-2); max-width: 560px; }
@media (max-width: 700px) { .news-providers__inner { flex-direction: column; align-items: flex-start; } }

/* ===================================================================
   Page article — mise en page moderne : méta, sommaire collant, FAQ
   =================================================================== */
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; margin-top: 1rem; font-size: 0.9rem; color: var(--muted); }
.article-meta__author { color: var(--ink-2); font-weight: 500; }
.article-cover__credit { margin-top: 0.5rem; font-size: 0.75rem; color: var(--muted-2); text-align: right; }

.article-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(1.8rem, 4vw, 4rem); align-items: start; padding-top: clamp(1.6rem, 4vw, 3rem); padding-bottom: clamp(2.4rem, 6vw, 4.5rem); }
.article-main { min-width: 0; max-width: 760px; }

.article-toc { position: sticky; top: 96px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); overflow: hidden; }
.article-toc__trigger { display: flex; align-items: center; gap: 0.6rem; width: 100%; padding: 0.9rem 1.1rem; background: var(--paper-2); border: 0; cursor: default; text-align: left; pointer-events: none; }
.article-toc__label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.article-toc__count { margin-left: auto; font-size: 0.75rem; color: var(--muted); }
.article-toc__chev { display: none; transition: transform 0.3s var(--ease); }
.article-toc__body { padding: 0.9rem 1.1rem 1.1rem; }
.article-toc__body ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.article-toc__body li + li { border-top: 1px solid var(--paper-2); }
.article-toc__body a { display: block; padding: 0.5rem 0 0.5rem 0.85rem; font-size: 0.88rem; color: var(--muted); text-decoration: none; border-left: 2px solid transparent; transition: color 0.2s, border-color 0.2s; line-height: 1.4; }
.article-toc__body a:hover { color: var(--ink); }
.article-toc__body a.is-active { color: var(--accent); border-left-color: var(--accent); font-weight: 500; }
.article-toc__cta { width: 100%; justify-content: center; margin-top: 0.9rem; }

@media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-toc { position: static; }
    .article-toc__trigger { cursor: pointer; pointer-events: auto; }
    .article-toc__chev { display: block; transform: rotate(90deg); }
    .article-toc.is-open .article-toc__chev { transform: rotate(-90deg); }
    .article-toc__body { display: none; }
    .article-toc.is-open .article-toc__body { display: block; }
}

.prose--article h2 { scroll-margin-top: 110px; }
.prose--article ul li::marker { color: var(--accent); }

.article-faq { margin-top: clamp(2.2rem, 5vw, 3.4rem); }
.article-faq h2 { font-family: var(--display); font-weight: 500; font-size: 1.6rem; margin-bottom: 1rem; }
.article-faq__item { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); margin-bottom: 0.6rem; overflow: hidden; }
.article-faq__item summary { padding: 0.95rem 1.15rem; cursor: pointer; font-weight: 500; color: var(--ink-2); list-style: none; position: relative; padding-right: 2.4rem; }
.article-faq__item summary::-webkit-details-marker { display: none; }
.article-faq__item summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: var(--accent); transition: transform 0.25s var(--ease); }
.article-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.article-faq__item[open] summary { background: var(--paper-2); }
.article-faq__item p { padding: 0.9rem 1.15rem 1.05rem; color: var(--muted); line-height: 1.65; font-size: 0.95rem; }

.article-related { margin-top: clamp(2.2rem, 5vw, 3.4rem); padding-top: 1.6rem; border-top: 1px solid var(--line); }
.article-related__title { font-family: var(--display); font-weight: 500; font-size: 1.4rem; margin-bottom: 1rem; }
.article-related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.article-related__card { display: flex; flex-direction: column; gap: 0.5rem; text-decoration: none; color: inherit; }
.article-related__card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); transition: transform 0.5s var(--ease); }
.article-related__card:hover img { transform: scale(1.03); }
.article-related__name { font-weight: 500; line-height: 1.35; font-size: 0.95rem; }
.article-related__card:hover .article-related__name { color: var(--accent); }
.article-related__cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); }

/* ===== Portfolio prestataire (révélation par masque) ===== */
.pfolio-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pfolio-head__count { font-size: 0.85rem; color: var(--muted); }

/* Galerie éditoriale à révélation par masque (inspiration Tao Tajima) */
.pfolio { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; margin-top: 1.4rem; align-items: start; }
.pfolio__item { position: relative; display: block; border-radius: 14px; overflow: hidden; isolation: isolate; background: var(--paper-2); }
.pfolio__item:nth-child(7n+1) { grid-column: 1 / -1; }
.pfolio__frame { display: block; overflow: hidden; }
.pfolio__item img { width: 100%; display: block; will-change: transform; transform: scale(1.28) translateY(4%); transition: transform 0.7s var(--ease, cubic-bezier(0.22,1,0.36,1)); }
/* Masque qui « se lève » de bas en haut au moment de la révélation */
.pfolio__mask { position: absolute; inset: 0; z-index: 3; background: var(--paper); transform-origin: bottom; transform: scaleY(1); }
.pfolio__item.is-in .pfolio__mask { transform: scaleY(0); transition: transform 0.9s var(--ease, cubic-bezier(0.76,0,0.24,1)); }
.pfolio__item.is-in img { transform: scale(1) translateY(0); transition: transform 1.15s var(--ease, cubic-bezier(0.22,1,0.36,1)); }
.pfolio__item:hover img { transform: scale(1.06); }
.pfolio__veil { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; background: linear-gradient(to top, rgba(18,15,11,0.74), rgba(18,15,11,0) 55%); opacity: 0; transition: opacity 0.35s; }
.pfolio__item:hover .pfolio__veil, .pfolio__item:focus-visible .pfolio__veil { opacity: 1; }
.pfolio__zoom { position: absolute; top: 0.85rem; right: 0.85rem; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.16); backdrop-filter: blur(4px); color: #fff; transform: scale(0.6); transition: transform 0.4s var(--ease, ease); }
.pfolio__item:hover .pfolio__zoom { transform: scale(1); }
.pfolio__cap { color: #fff; font-size: 0.86rem; line-height: 1.35; text-shadow: 0 1px 8px rgba(0,0,0,0.5); transform: translateY(6px); opacity: 0; transition: transform 0.4s var(--ease, ease), opacity 0.4s; }
.pfolio__item:hover .pfolio__cap { transform: none; opacity: 1; }
@media (max-width: 620px) { .pfolio { grid-template-columns: 1fr; gap: 0.7rem; } .pfolio__item, .pfolio__item:nth-child(7n+1) { grid-column: auto; border-radius: 10px; } }
@media (prefers-reduced-motion: reduce) {
    .pfolio__mask { display: none; }
    .pfolio__item img { transform: none; transition: none; }
}

/* Visionneuse : touche charte (fond chaud, flèches arrondies) */
.glightbox-clean .gslide-description { background: #16130f; }
.glightbox-clean .gslide-title { color: #f5f1ea; font-family: "Jost", sans-serif; font-size: 0.95rem; }
.glightbox-clean .gnext, .glightbox-clean .gprev { border-radius: 50%; background: rgba(255,255,255,0.08); }

