/* ============================================================
   LE PAVILLON D'OR — Montpellier · thème clair (ivoire / or)
   ============================================================ */

:root {
  --bg:      #ffffff;
  --bg-2:    #faf7f0;
  --bg-3:    #f3ece0;
  --ink:     #211c14;
  --ink-soft:#4a4234;
  --gold:    #b8902a;
  --gold-2:  #caa53e;
  --gold-deep:#9a7620;
  --muted:   #97907f;
  --line:    rgba(184,144,42,0.22);
  --line-2:  rgba(33,28,20,0.10);
  --shadow:  0 30px 70px -30px rgba(120,90,20,0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-weight: 300; line-height: 1.6;
  overflow-x: hidden; cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
::selection { background: var(--gold); color: #fff; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); }

.gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-2), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===================== PRELOADER ===================== */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: grid; place-items: center; transition: opacity .8s var(--ease), visibility .8s; }
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; width: min(420px, 80vw); }
.preloader__mark { width: 70px; height: 70px; margin-bottom: 26px; }
.pl-line { fill: none; stroke: var(--gold); stroke-width: 2; stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 1.6s var(--ease) forwards; }
.pl-line:nth-child(2) { animation-delay: .35s; stroke: var(--gold-2); }
@keyframes draw { to { stroke-dashoffset: 0; } }
.preloader__word { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .35em; color: var(--ink); margin-bottom: 14px; }
.preloader__word span { display: inline-block; opacity: 0; transform: translateY(14px); animation: plLetter .6s var(--ease) forwards; }
.preloader__word span:nth-child(n) { animation-delay: calc(.4s + var(--i, 0) * .04s); }
@keyframes plLetter { to { opacity: 1; transform: none; } }
.preloader__count { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-deep); margin-bottom: 16px; }
.preloader__count i { font-style: normal; font-size: 1rem; color: var(--muted); }
.preloader__bar { width: 100%; height: 1px; background: var(--line); overflow: hidden; }
.preloader__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-2)); }

/* ===================== CURSOR ===================== */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9000; border-radius: 50%; }
.cursor { width: 38px; height: 38px; border: 1px solid var(--gold); transform: translate(-50%, -50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s, border-color .3s; display: grid; place-items: center; }
.cursor-dot { width: 5px; height: 5px; background: var(--gold); transform: translate(-50%, -50%); }
.cursor.is-hover { width: 64px; height: 64px; background: rgba(184,144,42,0.10); }
.cursor.is-view { width: 86px; height: 86px; background: var(--gold); border-color: var(--gold); }
.cursor.is-view::after { content: "Voir"; color: #fff; font-family: var(--sans); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ===================== SCROLL PROGRESS ===================== */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 2px; z-index: 8000; }
.scroll-progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-2)); }

/* ===================== NAV ===================== */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 7000; display: flex; align-items: center; justify-content: space-between; padding: 26px clamp(20px, 5vw, 60px); transition: padding .5s var(--ease), background .5s var(--ease), box-shadow .5s, backdrop-filter .5s; }
.nav.scrolled { padding: 14px clamp(20px, 5vw, 60px); background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line), 0 14px 40px -28px rgba(120,90,20,0.4); }
.nav__brand { font-family: var(--serif); font-size: 1.35rem; letter-spacing: .04em; display: flex; align-items: center; gap: 11px; color: var(--ink); }
.nav__logo { width: 26px; height: 26px; flex: 0 0 auto; transition: transform .5s var(--ease); }
.nav__brand:hover .nav__logo { transform: rotate(180deg); }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; position: relative; color: var(--ink-soft); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { font-size: .8rem; letter-spacing: .08em; border: 1px solid var(--gold); padding: 10px 18px; border-radius: 40px; color: var(--gold-deep); transition: background .4s, color .4s; }
.nav__cta:hover { background: var(--gold); color: #fff; }
.nav__burger { display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; }
.nav__burger span { width: 26px; height: 2px; background: var(--ink); transition: .4s var(--ease); }

/* ===================== HERO ===================== */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; display: grid; place-items: center; background: var(--bg); }
.hero__bg {
  position: absolute; inset: -12%;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(202,165,62,0.22), transparent 55%),
    radial-gradient(70% 70% at 85% 100%, rgba(184,144,42,0.16), transparent 60%),
    radial-gradient(60% 60% at 10% 90%, rgba(202,165,62,0.12), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--bg-2));
}
.hero__bg::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(115deg, transparent 0 46px, rgba(184,144,42,0.05) 46px 47px); mask-image: radial-gradient(120% 80% at 50% 40%, #000 25%, transparent 72%); }
.hero__orbs { position: absolute; inset: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; background: radial-gradient(circle at 35% 30%, rgba(202,165,62,0.55), rgba(184,144,42,0.05) 70%); }
.o1 { width: 240px; height: 240px; top: 16%; left: 12%; }
.o2 { width: 140px; height: 140px; top: 62%; left: 22%; }
.o3 { width: 320px; height: 320px; top: 24%; right: 8%; }
.o4 { width: 110px; height: 110px; bottom: 18%; right: 26%; }
.hero__veil { position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 120%, rgba(255,255,255,0.9), transparent 55%); }

.hero__content { position: relative; z-index: 3; text-align: center; padding: 0 20px; }
.hero__eyebrow { font-size: .82rem; letter-spacing: .4em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 28px; opacity: 0; }
.hero__title { font-size: clamp(3.2rem, 12vw, 10rem); line-height: .92; margin-bottom: 30px; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .word { display: inline-block; transform: translateY(110%); }
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 540px; margin: 0 auto 40px; opacity: 0; }
.hero__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; opacity: 0; }
.hero__scroll { position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.hero__scroll i { width: 1px; height: 50px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--gold); animation: scrollDot 2s var(--ease) infinite; }
@keyframes scrollDot { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }
.hero__marquee { position: absolute; bottom: 0; left: 0; width: 100%; padding: 16px 0; border-top: 1px solid var(--line); overflow: hidden; z-index: 3; background: rgba(255,255,255,0.55); }
.marquee__track { display: flex; align-items: center; gap: 30px; white-space: nowrap; will-change: transform; }
.marquee__track span { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }
.marquee__track b { color: var(--gold); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================== BUTTONS ===================== */
.btn { position: relative; display: inline-flex; align-items: center; padding: 16px 34px; border-radius: 40px; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; overflow: hidden; transition: color .4s var(--ease); }
.btn span { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 9px; }
.btn .ico { width: 17px; height: 17px; flex: 0 0 auto; }
.btn--lg { padding: 22px 50px; font-size: .9rem; }
.btn--ink { background: var(--ink); color: #fff; box-shadow: 0 18px 40px -20px rgba(0,0,0,0.5); }
.btn--ink::before { content: ""; position: absolute; inset: 0; background: #fff; transform: translateY(101%); transition: transform .5s var(--ease); }
.btn--ink:hover { color: var(--ink); }
.btn--ink:hover::before { transform: translateY(0); }
.btn--gold { background: linear-gradient(120deg, var(--gold-deep), var(--gold-2)); color: #fff; font-weight: 500; box-shadow: 0 18px 40px -18px rgba(184,144,42,0.7); }
.btn--gold::before { content: ""; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .5s var(--ease); }
.btn--gold:hover { color: #fff; }
.btn--gold:hover::before { transform: translateY(0); }
.btn--ghost { border: 1px solid var(--gold); color: var(--gold-deep); }
.btn--ghost::before { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateY(101%); transition: transform .5s var(--ease); z-index: 1; }
.btn--ghost:hover { color: #fff; }
.btn--ghost:hover::before { transform: translateY(0); }

/* ===================== SHARED ===================== */
.section-tag { font-size: .78rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 28px; }

/* texte qui se remplit au scroll */
.fill-text { font-size: clamp(2rem, 5vw, 4.4rem); }
.fill-text .w { display: inline-block; color: rgba(33,28,20,0.14); transition: color .1s linear; }

/* ===================== ABOUT ===================== */
.about { position: relative; padding: clamp(100px, 16vh, 200px) clamp(20px, 6vw, 100px); background: var(--bg); }
.about__inner { max-width: 1100px; margin: 0 auto; }
.about__head { line-height: 1.08; max-width: 16ch; margin-bottom: 60px; }
.about__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-width: 900px; margin-left: auto; }
.about__cols p { font-size: 1.05rem; color: var(--ink-soft); }
.about__cols strong { color: var(--gold-deep); font-weight: 500; }
.about__line { height: 1px; background: var(--line); margin: 90px auto 0; max-width: 1100px; transform: scaleX(0); transform-origin: left; }

/* ===================== STATS ===================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 clamp(20px, 6vw, 100px) clamp(80px, 12vh, 140px); max-width: 1300px; margin: 0 auto; background: var(--bg); }
.stat { text-align: center; padding: 30px 10px; border-top: 1px solid var(--line); }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--gold-deep); display: inline-block; }
.stat__suffix { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--gold); }
.stat__label { display: block; margin-top: 12px; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ===================== ÉVÉNEMENTS — horizontal ===================== */
.hscroll { background: var(--bg-2); position: relative; }
.hscroll__pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hscroll__head { padding: 0 clamp(20px, 6vw, 100px); display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hscroll__head h2 { font-size: clamp(2rem, 5vw, 4.4rem); }
.hscroll__hint { font-size: .78rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-deep); }
.hscroll__track { display: flex; gap: 28px; padding: 10px clamp(20px, 6vw, 100px); will-change: transform; }
.hcard { flex: 0 0 min(72vw, 380px); background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: clamp(30px, 3vw, 46px); min-height: 50vh; display: flex; flex-direction: column; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hcard::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(184,144,42,0.10), transparent 55%); opacity: 0; transition: opacity .5s var(--ease); }
.hcard:hover::before { opacity: 1; }
.hcard__no { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); }
.hcard h3 { font-size: clamp(1.8rem, 2.6vw, 2.8rem); margin: auto 0 14px; }
.hcard p { color: var(--ink-soft); font-size: 1rem; }
.hcard__tag { margin-top: 22px; align-self: flex-start; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line); border-radius: 30px; padding: 7px 14px; }
.hcard--cta { background: linear-gradient(160deg, var(--bg-3), #fff); align-items: flex-start; justify-content: center; gap: 26px; }
.hcard--cta h3 { margin: 0; }

/* ===================== PARCOURS — tracé SVG ===================== */
.parcours { padding: clamp(80px, 12vh, 160px) clamp(20px, 6vw, 100px); background: var(--bg); overflow: hidden; }
.parcours__head { max-width: 1100px; margin: 0 auto 70px; text-align: center; }
.parcours__head .section-tag { display: inline-block; }
.parcours__body { position: relative; max-width: 960px; margin: 0 auto; }
.parcours__svg { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: min(300px, 60vw); height: 100%; pointer-events: none; }
#parcoursPath { stroke-dasharray: 1; stroke-dashoffset: 1; }
.parcours__dot { opacity: 0; filter: drop-shadow(0 0 10px rgba(184,144,42,0.8)); }
.parcours__steps { list-style: none; display: grid; gap: clamp(60px, 12vh, 140px); position: relative; z-index: 2; }
.pstep { width: min(42%, 380px); background: var(--bg); }
.pstep:nth-child(odd) { justify-self: start; text-align: left; }
.pstep:nth-child(even) { justify-self: end; text-align: right; }
.pstep__n { font-family: var(--serif); font-size: 3rem; color: var(--gold); display: block; line-height: 1; }
.pstep h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); margin: 10px 0 12px; }
.pstep p { color: var(--ink-soft); font-size: 1rem; }

/* ===================== CLÉ EN MAIN ===================== */
.clecnmain { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 80px); padding: clamp(80px, 12vh, 160px) clamp(20px, 6vw, 100px); max-width: 1400px; margin: 0 auto; align-items: start; background: var(--bg-2); }
.cem__sticky { position: sticky; top: 120px; }
.cem__title { font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1; }
.cem__title em { display: block; font-style: italic; color: var(--gold-deep); }
.cem__lead { margin-top: 26px; color: var(--ink-soft); max-width: 32ch; font-size: 1.02rem; }
.cem__progress { margin-top: 34px; width: 70%; height: 2px; background: var(--line); }
.cem__progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold-2)); }
.cem__list { list-style: none; display: grid; gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cem__list li { background: var(--bg-2); padding: 30px 24px; display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: baseline; transition: background .4s var(--ease), padding-left .4s var(--ease); cursor: none; }
.cem__list li.active, .cem__list li:hover { background: #fff; padding-left: 36px; }
.cem__idx { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); transition: color .4s; }
.cem__list li.active .cem__idx { color: var(--gold-deep); }
.cem__list h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); }
.cem__list p { color: var(--ink-soft); font-size: .95rem; margin-top: 4px; }

/* ===================== GALERIE ===================== */
.galerie { padding: clamp(80px, 12vh, 160px) clamp(20px, 6vw, 100px); background: var(--bg); }
.galerie__head { max-width: 1300px; margin: 0 auto 60px; }
.galerie__grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 16px; }
.g-item { position: relative; overflow: hidden; border-radius: 10px; box-shadow: 0 20px 50px -34px rgba(120,90,20,0.5); will-change: transform; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-img { position: absolute; inset: -4%; transform: scale(1.04); transition: transform 1s var(--ease); background-size: cover; background-position: center; background-repeat: no-repeat; }
.g-item:hover .g-img { transform: scale(1.12); }
.g-item figcaption { position: absolute; left: 18px; bottom: 16px; z-index: 2; font-family: var(--serif); font-size: 1.25rem; color: #fff; opacity: 0; transform: translateY(12px); transition: .5s var(--ease); text-shadow: 0 2px 14px rgba(0,0,0,0.4); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(60,42,8,0.6)); opacity: 0; transition: opacity .5s var(--ease); z-index: 1; }
.g-item:hover figcaption { opacity: 1; transform: none; }
.g-item:hover::after { opacity: 1; }
.g1 { background-image: url("assets/photos/salle-honneur.jpg"); }
.g2 { background-image: url("assets/photos/tables-dressees.jpg"); }
.g3 { background-image: url("assets/photos/cuisine-orientale.jpg"); }
.g4 { background-image: url("assets/photos/buffet-traiteur.jpg"); }
.g5 { background-image: url("assets/photos/piece-montee.jpg"); }
.g6 { background-image: url("assets/photos/ambiance-soiree.jpg"); }
.galerie__note { text-align: center; margin-top: 30px; color: var(--muted); font-size: .85rem; }
.galerie__note code { color: var(--gold-deep); }

/* ===================== QUOTE ===================== */
.quote { padding: clamp(100px, 18vh, 220px) clamp(20px, 8vw, 160px); text-align: center; background: var(--bg-2); }
.quote__text { font-family: var(--serif); font-size: clamp(1.8rem, 4.5vw, 4rem); font-style: italic; line-height: 1.2; max-width: 18ch; margin: 0 auto; color: var(--ink); }
.quote__text .w { display: inline-block; opacity: .14; transition: opacity .4s; }

/* ===================== TÉMOIGNAGES ===================== */
.temoins { padding: clamp(80px, 12vh, 160px) clamp(20px, 6vw, 100px); background: var(--bg); }
.temoins__head { max-width: 1300px; margin: 0 auto 60px; }
.temoins__grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; perspective: 1000px; }
.temoin { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 20px; box-shadow: var(--shadow); transition: box-shadow .5s; transform-style: preserve-3d; }
.temoin:hover { box-shadow: 0 40px 80px -34px rgba(120,90,20,0.45); }
.temoin__stars { color: var(--gold); letter-spacing: .25em; font-size: .9rem; }
.temoin blockquote { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.6rem); font-style: italic; line-height: 1.35; color: var(--ink); }
.temoin figcaption { color: var(--muted); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-top: auto; }
.temoins__note { text-align: center; margin-top: 30px; color: var(--muted); font-size: .85rem; }

/* ===================== CTA ===================== */
.cta { padding: clamp(100px, 16vh, 200px) clamp(20px, 6vw, 100px); text-align: center; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%); }
.cta__eyebrow { font-size: .8rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px; }
.cta__title { font-size: clamp(2.4rem, 6vw, 5.5rem); margin-bottom: 44px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== PROMO BOUTIQUE (MT Luxury) ===================== */
.promo { padding: clamp(60px, 10vh, 120px) clamp(20px, 6vw, 100px); background: var(--bg); }
.promo__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(30px, 5vw, 64px); align-items: center; background: linear-gradient(135deg, var(--bg-3), #fff 70%); border: 1px solid var(--line); border-radius: 26px; padding: clamp(34px, 5vw, 70px); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.promo__inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 100% 0%, rgba(202,165,62,0.16), transparent 60%); pointer-events: none; }
.promo__txt { position: relative; }
.promo__txt h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1.05; }
.promo__txt h2 em { font-style: italic; color: var(--gold-deep); }
.promo__lead { margin: 22px 0 32px; color: var(--ink-soft); max-width: 40ch; }
.promo__lead strong { color: var(--gold-deep); font-weight: 500; }
.promo__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.promo__visual { display: grid; place-items: center; position: relative; }
.promo__visual span { font-size: clamp(5rem, 13vw, 11rem); line-height: 1; background: linear-gradient(160deg, var(--gold-2), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 22px 44px rgba(184,144,42,0.4)); animation: floaty 3s ease-in-out infinite; }
@keyframes floaty { 50% { transform: translateY(-12px); } }
@media (max-width: 760px) { .promo__inner { grid-template-columns: 1fr; } .promo__visual { display: none; } }

/* ===================== BANDEAU APPEL ===================== */
.callband { background: linear-gradient(120deg, var(--gold-deep) 0%, var(--gold-2) 55%, var(--gold) 100%); color: #fff; text-align: center; padding: clamp(64px, 11vh, 120px) clamp(20px, 6vw, 100px); position: relative; overflow: hidden; }
.callband::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(115deg, transparent 0 40px, rgba(255,255,255,0.05) 40px 41px); }
.callband__inner { position: relative; max-width: 880px; margin: 0 auto; display: grid; gap: 26px; justify-items: center; }
.callband__eyebrow { font-size: .8rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.callband__title { color: #fff; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; }

/* ===================== CONTACT ===================== */
.contact { padding: clamp(80px, 12vh, 160px) clamp(20px, 6vw, 100px); background: var(--bg-3); }
.contact__inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); }
.contact__title { font-size: clamp(2.4rem, 5vw, 5rem); }
.contact__lead { margin: 26px 0 44px; color: var(--ink-soft); max-width: 34ch; }
.contact__info { display: grid; gap: 2px; }
.contact__row { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid var(--line); transition: padding-left .4s var(--ease); }
.contact__row:hover { padding-left: 10px; }
.contact__k { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.contact__v { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.6rem); color: var(--gold-deep); }
.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-self: start; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-2); padding: 16px 0 10px; color: var(--ink); font-family: var(--sans); font-size: 1rem; resize: none; transition: border-color .4s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field label { position: absolute; left: 0; top: 16px; color: var(--muted); pointer-events: none; transition: .3s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: -10px; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-deep); }
.form__actions { grid-column: 1 / -1; display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.form__actions .btn { flex: 1 1 180px; justify-content: center; }

/* ===================== BOOKING WIZARD ===================== */
.booking { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 3vw, 42px); box-shadow: var(--shadow); align-self: start; }
.booking__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.booking__label { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.booking__count { font-family: var(--serif); color: var(--muted); font-size: 1rem; }
.booking__count b { color: var(--gold-deep); font-size: 1.25rem; }
.booking__bar { height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; margin-bottom: 28px; }
.booking__bar i { display: block; height: 100%; width: 20%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-2)); border-radius: 3px; transition: width .55s var(--ease); }
.booking__viewport { position: relative; }

.bstep { border: 0; padding: 0; margin: 0; min-inline-size: 0; display: none; }
.bstep.is-active { display: block; animation: bIn .55s var(--ease); }
@keyframes bIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
.bstep__q { font-size: clamp(1.4rem, 2.5vw, 2.1rem); margin-bottom: 24px; }
.bstep__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 32px; }
.blink { background: none; border: 0; color: var(--muted); cursor: none; font-family: var(--sans); font-size: .9rem; letter-spacing: .04em; transition: color .3s; }
.blink:hover { color: var(--gold-deep); }

.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 16px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 13px; cursor: none; color: var(--ink); font-family: var(--sans); font-size: 1rem; text-align: left; transition: transform .35s var(--ease), background .35s, border-color .35s, box-shadow .35s; }
.choice:hover { background: #fff; border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 16px 36px -24px rgba(120,90,20,.6); }
.choice.is-sel { background: linear-gradient(160deg, #fff, var(--bg-3)); border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; }
.choice__i { width: 26px; height: 26px; color: var(--gold-deep); }

.guests { text-align: center; padding: 8px 0; }
.guests__out { font-family: var(--serif); font-size: clamp(3rem, 9vw, 5rem); color: var(--gold-deep); display: block; line-height: 1; }
.guests input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: var(--line); margin: 24px 0 10px; outline: none; }
.guests input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(140deg, var(--gold-2), var(--gold-deep)); border: 3px solid #fff; box-shadow: 0 4px 12px rgba(120,90,20,.5); cursor: none; }
.guests input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border: 3px solid #fff; border-radius: 50%; background: var(--gold); }
.guests__scale { display: flex; justify-content: space-between; color: var(--muted); font-size: .78rem; }
.guests__chips { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.guests__chips button { padding: 9px 17px; border-radius: 30px; border: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: none; font-family: var(--sans); font-size: .9rem; transition: .3s; }
.guests__chips button:hover, .guests__chips button.is-sel { background: var(--gold); color: #fff; border-color: var(--gold); }

.bdate { display: grid; gap: 18px; }
.bdate input[type=date] { width: 100%; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2); color: var(--ink); font-family: var(--sans); font-size: 1rem; }
.bdate input[type=date]:focus { outline: none; border-color: var(--gold); }
.bcheck { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); cursor: none; font-size: .95rem; }
.bcheck input { width: 18px; height: 18px; accent-color: var(--gold); cursor: none; }

.field.invalid input { border-color: #c0392b; animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

.brecap { list-style: none; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-bottom: 22px; }
.brecap li { background: #fff; display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; gap: 16px; }
.brecap .k { color: var(--muted); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.brecap .v { font-family: var(--serif); font-size: 1.18rem; color: var(--ink); text-align: right; }
.booking__hint { color: var(--muted); font-size: .85rem; margin-bottom: 14px; text-align: center; }
.booking__hint.ok { color: var(--gold-deep); }
.bsend { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.bsend .btn { flex: 1 1 120px; justify-content: center; padding: 16px 14px; }
.bstep[data-step="5"] .blink { display: block; margin: 0 auto; }
.contact__hint { grid-column: 1/-1; text-align: center; color: var(--muted); font-size: .82rem; }
.contact__hint.ok { color: var(--gold-deep); }
.contact__map { grid-column: 1 / -1; max-width: 1300px; margin: 70px auto 0; width: 100%; position: relative; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.contact__map iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(0.4) contrast(0.98); }
.contact__map-note { position: absolute; left: 18px; bottom: 16px; background: rgba(255,255,255,0.92); border: 1px solid var(--line); color: var(--ink); padding: 8px 14px; border-radius: 30px; font-size: .8rem; }

/* ===================== FOOTER ===================== */
.footer { padding: clamp(60px, 10vh, 120px) clamp(20px, 6vw, 100px) 40px; border-top: 1px solid var(--line); overflow: hidden; background: var(--bg-2); }
.footer__logo { display: block; width: min(440px, 84%); height: auto; margin: 0 auto 10px; }
.footer__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 40px; font-size: .82rem; letter-spacing: .08em; color: var(--muted); }
.footer__row a:hover { color: var(--gold-deep); }

/* ===================== REVEAL STATES ===================== */
.reveal-up { opacity: 0; transform: translateY(40px); }
.reveal-up.in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-card { opacity: 0; transform: translateY(60px) scale(.97); }
.reveal-card.in { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.pstep { opacity: 0; transform: translateY(40px); }
.pstep.in { opacity: 1; transform: none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.open .nav__links { display: flex; position: fixed; inset: 0; background: var(--bg); flex-direction: column; align-items: center; justify-content: center; gap: 30px; }
  .nav.open .nav__links a { font-size: 1.5rem; font-family: var(--serif); text-transform: none; }
  .nav.open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav.open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .about__cols { grid-template-columns: 1fr; gap: 28px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .clecnmain { grid-template-columns: 1fr; }
  .cem__sticky { position: relative; top: 0; }
  .galerie__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .temoins__grid { grid-template-columns: 1fr; }
  .contact__map iframe { height: 320px; }
  .pstep { width: 70%; }
  .parcours__svg { width: 120px; }
}
@media (max-width: 560px) {
  .galerie__grid { grid-template-columns: 1fr; }
  .g-wide, .g-tall { grid-column: auto; grid-row: auto; }
  .pstep { width: 100%; text-align: left !important; justify-self: stretch !important; }
  .parcours__svg { display: none; }
  .choices { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal-up, .reveal-card, .pstep { opacity: 1; transform: none; }
}

/* ===================== CONCIERGE IA ===================== */
.concierge { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 9500; }
.concierge__fab { width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: none; background: linear-gradient(140deg, var(--gold-2), var(--gold-deep)); color: #fff; box-shadow: 0 14px 34px -10px rgba(120,90,20,0.7); display: grid; place-items: center; position: relative; transition: transform .4s var(--ease); }
.concierge__fab:hover { transform: scale(1.06) rotate(4deg); }
.concierge__fab svg { width: 26px; height: 26px; }
.concierge__fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(184,144,42,0.5); animation: cgPulse 2.4s infinite; }
.cg-open .concierge__fab::after { animation: none; }
@keyframes cgPulse { to { box-shadow: 0 0 0 16px rgba(184,144,42,0); } }
.cg-ico-close { display: none; }
.cg-open .cg-ico-chat { display: none; }
.cg-open .cg-ico-close { display: block; }
.concierge__badge { position: absolute; top: -2px; right: -2px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 20px; background: var(--ink); color: #fff; font-family: var(--sans); font-size: .7rem; display: grid; place-items: center; }

.concierge__panel { position: absolute; bottom: 78px; right: 0; width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 130px)); background: var(--bg); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 40px 90px -30px rgba(60,42,8,0.5); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(20px) scale(.96); transform-origin: bottom right; pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.cg-open .concierge__panel { opacity: 1; transform: none; pointer-events: auto; }

.cg__head { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; background: linear-gradient(120deg, var(--gold-deep), var(--gold-2)); color: #fff; }
.cg__id { display: flex; align-items: center; gap: 12px; }
.cg__avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.22); display: grid; place-items: center; font-family: var(--serif); font-size: 1.3rem; }
.cg__id strong { display: block; font-family: var(--serif); font-size: 1.18rem; font-weight: 500; }
.cg__id small { font-size: .72rem; opacity: .85; }
.cg__x { background: none; border: 0; color: #fff; font-size: 1.05rem; cursor: none; opacity: .85; }
.cg__x:hover { opacity: 1; }

.cg__log { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-2); }
.cg__msg { max-width: 84%; padding: 11px 14px; border-radius: 14px; font-size: .92rem; line-height: 1.45; white-space: pre-wrap; }
.cg__msg--bot { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--ink); }
.cg__msg--me { align-self: flex-end; background: linear-gradient(140deg, var(--gold-2), var(--gold-deep)); color: #fff; border-bottom-right-radius: 4px; }
.cg__typing { display: flex; gap: 4px; align-items: center; }
.cg__typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: cgDot 1s infinite; }
.cg__typing span:nth-child(2) { animation-delay: .15s; }
.cg__typing span:nth-child(3) { animation-delay: .3s; }
@keyframes cgDot { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

.cg__quick { display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 14px 4px; background: var(--bg-2); }
.cg__quick.cg-hide { display: none; }
.cg__quick button { font-family: var(--sans); font-size: .78rem; padding: 7px 12px; border-radius: 30px; border: 1px solid var(--gold); background: transparent; color: var(--gold-deep); cursor: none; transition: .3s; }
.cg__quick button:hover { background: var(--gold); color: #fff; }

.cg__bar { display: flex; gap: 8px; padding: 12px 14px; background: var(--bg); border-top: 1px solid var(--line); }
.cg__bar input { flex: 1; border: 1px solid var(--line); border-radius: 30px; padding: 11px 16px; font-family: var(--sans); font-size: .92rem; color: var(--ink); background: var(--bg-2); }
.cg__bar input:focus { outline: none; border-color: var(--gold); }
.cg__bar button { width: 42px; height: 42px; flex: 0 0 auto; border: 0; border-radius: 50%; background: linear-gradient(140deg, var(--gold-2), var(--gold-deep)); color: #fff; cursor: none; display: grid; place-items: center; }
.cg__bar button svg { width: 18px; height: 18px; }
.cg__foot { display: block; text-align: center; font-size: .72rem; color: var(--muted); padding: 0 14px 12px; background: var(--bg); }
.cg__foot:hover { color: var(--gold-deep); }
