/* ===================================================================
   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: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: var(--paper); padding: 0.75rem 1.25rem; }
.skip-link:focus { left: 1rem; top: 1rem; }

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

/* --------------------------- Showcase (éditorial alterné) -------- */
.showcase { display: flex; flex-direction: column; gap: clamp(3.5rem, 8vw, 8rem); }
.showcase__item { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 5vw, 5rem); align-items: center; }
.showcase__item--reverse .showcase__media { order: 2; }
.showcase__media { overflow: hidden; border-radius: var(--radius-lg); }
.showcase__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1s var(--ease); }
.showcase__media:hover img { transform: scale(1.05); }
.showcase__area { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
.showcase__title { font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.6rem); margin-bottom: 0.8rem; }
.showcase__tagline { color: var(--ink-2); font-size: 1.15rem; margin-bottom: 1rem; font-weight: 300; }
.showcase__text { color: var(--muted); margin-bottom: 1.6rem; max-width: 46ch; }
.showcase__meta { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-bottom: 1.8rem; color: var(--ink-2); font-size: 0.85rem; }
.showcase__meta li { display: flex; align-items: center; gap: 0.5rem; }
.showcase__meta .icon { color: var(--accent); }

/* --------------------------- 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 ------------------------------ */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: clamp(2rem, 3vw, 3rem); }
.news-card { background: transparent; }
.news-card__media { display: block; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 1.1rem; }
.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.05); }
.news-card__date { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.news-card__title { font-size: 1.6rem; margin: 0.5rem 0 0.6rem; }
.news-card__title a:hover { color: var(--accent); }
.news-card__body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.9rem; }

/* ---------------------------- CTA band --------------------------- */
.cta-band { background: var(--dark); color: var(--paper); padding-block: clamp(4rem, 8vw, 7rem); }
.cta-band__inner { text-align: center; max-width: 54ch; margin-inline: auto; }
.cta-band__title { font-size: clamp(2.2rem, 1.4rem + 3vw, 3.6rem); margin-bottom: 1.2rem; }
.cta-band__text { color: rgba(244,240,232,0.74); margin-bottom: 2.2rem; font-weight: 300; }
.cta-band .btn--accent { background: var(--paper); color: var(--ink); }
.cta-band .btn--accent:hover { background: var(--accent); color: #fff; }

/* ---------------------------- 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(2.6rem, 1.4rem + 5vw, 5.5rem); line-height: 0.98; }
.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 ---------------------------- */
.contact { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(2rem, 5vw, 4.5rem); }
.contact__aside { background: var(--dark); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.8rem, 3vw, 2.8rem); align-self: start; }
.contact__aside-title { font-family: var(--display); font-size: 1.8rem; margin-bottom: 1.4rem; }
.contact__list { display: grid; gap: 1.1rem; margin-bottom: 2.2rem; }
.contact__list li { display: flex; gap: 0.8rem; align-items: flex-start; color: rgba(244,240,232,0.85); font-size: 0.95rem; }
.contact__list .icon { color: var(--accent-tint); }
.contact__cta { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.6rem; }
.contact__cta p { color: rgba(244,240,232,0.7); font-size: 0.92rem; margin-bottom: 1.1rem; }
.contact__cta .btn--outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.contact__cta .btn--outline:hover { background: #fff; color: var(--ink); }

/* ----------------------- 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__help { font-size: 0.82rem; color: var(--muted); }
fieldset.qfield { border: none; padding: 0; }
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%); }

/* É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; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.25); }
.hero__stat { display: flex; flex-direction: column; gap: 0.1rem; }
.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; }
    /* Bandeau de stats du hero : 2 colonnes, dernier seul = pleine largeur */
    .hero__strip { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.6rem; }
    /* Dernière carte/élément seul sur sa ligne → pleine largeur (grilles 2 col.) */
    .evt-grid > .evt-card:last-child:nth-child(odd),
    .evt-pick > .evt-pick__card:last-child:nth-child(odd),
    .venue-specs__grid > .spec:last-child:nth-child(odd),
    .hero__strip > .hero__stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
    /* La carte pleine largeur passe en format paysage (plus lisible) */
    .evt-grid > .evt-card:last-child:nth-child(odd) { 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) {
    .evt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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