/* Les Secrets d'Amandine — style (v2 expérience) */
:root {
  --dark: #17131a;
  --dark-2: #221c27;
  --gold: #d4a96a;
  --gold-light: #e8c896;
  --blush: #f6ece8;
  --rose: #b9536f;
  --ink: #2b2430;
  --gold-ink: #a87b3f;
  --muted: #675d70;
  --white: #fffdfb;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.65; font-weight: 300; overflow-x: hidden; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); margin: .35em 0 .6em; }
h3 { font-size: 1.3rem; margin-bottom: .35em; }
em { font-style: italic; }
a { color: var(--rose); }
.muted { color: var(--muted); font-size: .95rem; }
.wrap { max-width: 1150px; margin: 0 auto; padding: 0 24px; }
.kicker { text-transform: uppercase; letter-spacing: .3em; font-size: .78rem; color: var(--rose); font-weight: 500; }
.section-dark .kicker { color: var(--gold); }

/* ===== Animations de révélation ===== */
.reveal, .reveal-up { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); transition-delay: var(--d, 0s); }
.reveal.in, .reveal-up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ===== Nav ===== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 14px 28px; transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: rgba(23,19,26,.92); box-shadow: 0 2px 20px rgba(0,0,0,.35); backdrop-filter: blur(8px); }
.nav-logo { font-family: var(--serif); font-size: 1.25rem; color: var(--white); text-decoration: none; }
.nav-logo em { color: var(--gold); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-size: .95rem; letter-spacing: .04em; position: relative; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { border: 1px solid var(--gold); padding: 7px 20px; border-radius: 999px; color: var(--gold-light) !important; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--gold); color: var(--dark) !important; }
.nav-burger { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.8s ease; transform: scale(1); }
.hero-slides img.active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,19,26,.55), rgba(23,19,26,.3) 50%, rgba(23,19,26,.8)); }
.hero-petals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.petal { position: absolute; top: -4vh; border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%; background: radial-gradient(circle at 35% 35%, rgba(233,150,170,.85), rgba(185,83,111,.55)); animation: fall linear infinite; filter: blur(.4px); }
@keyframes fall {
  0% { transform: translate3d(0,-6vh,0) rotate(0deg); opacity: 0; }
  8% { opacity: .85; }
  100% { transform: translate3d(var(--drift, 40px), 108vh, 0) rotate(var(--spin, 300deg)); opacity: .15; }
}
.hero-content { position: relative; color: var(--white); padding: 100px 24px 60px; max-width: 860px; will-change: transform; }
.hero-kicker { text-transform: uppercase; letter-spacing: .35em; font-size: .8rem; color: var(--gold-light); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.6rem, 7vw, 4.8rem); font-weight: 700; }
.hero h1 span, .hero h1 em { display: inline-block; }
.hero h1 em { color: var(--gold); }
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.4rem); margin: 18px auto 26px; max-width: 560px; color: #f2ebe4; font-style: italic; font-family: var(--serif); }
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.badge { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 6px 18px; font-size: .9rem; background: rgba(23,19,26,.35); backdrop-filter: blur(4px); }
.badge small { opacity: .7; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .reveal-up { animation: heroIn 1s cubic-bezier(.22,1,.36,1) both; animation-delay: var(--d, 0s); opacity: 0; transform: none; transition: none; }
@keyframes heroIn { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.55); border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: var(--gold-light); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(14px); opacity: 0; } }

/* ===== Boutons ===== */
.btn { display: inline-block; padding: 13px 32px; border-radius: 999px; text-decoration: none; font-family: var(--sans); font-size: 1rem; font-weight: 500; letter-spacing: .03em; cursor: pointer; border: none; transition: transform .15s, box-shadow .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #c2924e); color: var(--dark); box-shadow: 0 6px 24px rgba(212,169,106,.35); position: relative; overflow: hidden; }
.btn-gold::after { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); animation: shine 4.2s ease-in-out infinite; }
@keyframes shine { 0%, 70% { left: -80%; } 100% { left: 130%; } }
.btn-ghost { border: 1px solid rgba(255,255,255,.6); color: var(--white); background: transparent; }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-outline { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-block { width: 100%; }

/* ===== Marquee bandeau ===== */
.marquee { background: var(--dark); color: var(--gold-light); overflow: hidden; padding: 13px 0; border-top: 1px solid rgba(212,169,106,.25); border-bottom: 1px solid rgba(212,169,106,.25); }
.marquee-track { display: flex; gap: 3.2em; width: max-content; white-space: nowrap; animation: marquee 28s linear infinite; font-size: .95rem; letter-spacing: .12em; text-transform: uppercase; }
.marquee-track span { display: inline-block; }
.marquee-track em { color: var(--rose); font-style: normal; margin-right: 3.2em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-dark { background: var(--dark); color: #efe9e2; position: relative; overflow: hidden; }
.section-dark > * { position: relative; z-index: 1; }
.section-dark::before, .section-dark::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(90px); opacity: .16; z-index: 0; pointer-events: none; }
.section-dark::before { background: var(--rose); top: -140px; left: -120px; animation: drift1 18s ease-in-out infinite alternate; }
.section-dark::after { background: var(--gold); bottom: -180px; right: -140px; animation: drift2 22s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(140px, 90px) scale(1.15); } }
@keyframes drift2 { from { transform: translate(0, 0) scale(1.1); } to { transform: translate(-160px, -70px) scale(.95); } }
.section-dark h2 { color: var(--white); }
.section-dark .muted { color: #b5aabf; }
.section-dark a { color: var(--gold-light); }
.section-blush { background: var(--blush); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lead { font-size: 1.15rem; }

/* ===== Manifesto ===== */
.manifesto { text-align: center; padding: 110px 0 80px; }
.manifesto-lines { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.8rem); line-height: 1.35; display: grid; gap: .2em; }
.mline { display: block; opacity: .3; transform: translateY(12px); transition: opacity 1s ease, transform 1s ease; }
.mline.in { opacity: 1; transform: none; }
.mline em { color: var(--rose); }
.rotator { display: inline-block; }
.rotator span { display: inline-block; transition: opacity .35s ease, transform .35s ease; }
.rotator span.out { opacity: 0; transform: translateY(14px) rotateX(50deg); }
.counters { display: flex; justify-content: center; gap: clamp(30px, 7vw, 90px); margin-top: 60px; flex-wrap: wrap; }
.counter strong { font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--gold-ink); display: block; font-weight: 700; }
.counter span { font-size: .95rem; color: var(--ink); max-width: 190px; display: block; }

/* ===== Planning de la soirée ===== */
.timeline-section { padding: 90px 0; background: linear-gradient(180deg, var(--white), var(--blush) 30%, var(--blush) 70%, var(--white)); }
.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 36px; align-items: start; }
.tl-steps { position: relative; display: grid; gap: 26px; padding: 10px 0; }
.tl-steps::before { content: ""; position: absolute; left: 46px; top: 24px; bottom: 24px; width: 2px; background: linear-gradient(180deg, #ecd3da, #decfc6); }
.tl-step { display: grid; grid-template-columns: 92px 1fr; gap: 18px; align-items: center; opacity: .55; transition: opacity .45s, transform .45s; }
.tl-step.active { opacity: 1; }
.tl-time { position: relative; z-index: 1; justify-self: stretch; text-align: center; font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--rose); background: var(--white); border: 1.5px solid #e4cdd4; border-radius: 999px; padding: 7px 0; transition: all .35s; }
.tl-step.active .tl-time { background: var(--rose); color: #fff; border-color: var(--rose); box-shadow: 0 6px 18px rgba(185,83,111,.35); }
.tl-card { background: var(--white); border: 1px solid #eedfd6; border-radius: 16px; padding: 22px 26px; box-shadow: 0 4px 16px rgba(43,36,48,.05); transition: box-shadow .35s, border-color .35s, transform .35s; }
.tl-step.active .tl-card { border-color: rgba(185,83,111,.45); box-shadow: 0 14px 34px rgba(43,36,48,.12); transform: translateX(4px); }
.tl-step h3 { font-size: 1.28rem; margin: 0 0 .35em; }
.tl-card p { font-size: .96rem; }
.tl-visual { position: sticky; top: 90px; height: min(74vh, 640px); }
.tl-images { position: relative; width: 100%; height: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px rgba(43,36,48,.25); }
.tl-images img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.06); transition: opacity .9s ease, transform 1.4s ease; }
.tl-images img.active { opacity: 1; transform: scale(1); }
.tl-caption { position: absolute; bottom: 18px; left: 18px; background: rgba(23,19,26,.72); color: var(--gold-light); padding: 8px 18px; border-radius: 999px; font-size: .9rem; backdrop-filter: blur(4px); }

/* ===== Visite immersive ===== */
.visite { padding-bottom: 60px; }
.visite-hint { color: #c3b8cd; max-width: 520px; }
.plan { margin: 30px auto 22px; display: grid; gap: 14px;
  grid-template-columns: 1.7fr 1.25fr 64px 1.15fr;
  grid-template-rows: auto minmax(150px, 1fr) minmax(150px, 1fr); }
.plan-label { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--gold-light); align-self: end; padding-bottom: 2px; }
.plan-label-rdc { grid-column: 1 / 3; grid-row: 1; }
.plan-label-etage { grid-column: 4; grid-row: 1; }

.proom { position: relative; overflow: hidden; border-radius: 15px; border: 1px solid rgba(212,169,106,.22);
  cursor: pointer; outline: none; isolation: isolate; display: flex; align-items: flex-end;
  transition: border-color .3s, box-shadow .35s, transform .35s; min-height: 0; }
.proom::before { content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--img); background-size: cover; background-position: center;
  filter: brightness(.72) saturate(1) contrast(1.05); transition: filter .5s, transform .7s; }
.proom::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(23,19,26,0) 42%, rgba(23,19,26,.8)); transition: opacity .4s; }
.proom:hover::before, .proom:focus-visible::before { filter: brightness(.88) saturate(1.08); transform: scale(1.06); }
.proom.active { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold), 0 18px 44px rgba(212,169,106,.3); }
.proom.active::before { filter: brightness(1) saturate(1.12); }
.proom.active::after { opacity: .85; }
.proom-in { padding: 18px 20px; position: relative; z-index: 1; }
.proom-name { display: block; font-family: var(--serif); font-size: 1.4rem; color: #fff; line-height: 1.1; text-shadow: 0 2px 12px rgba(0,0,0,.55); }
.proom-count { display: block; margin-top: 3px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.proom-tag { position: absolute; top: 14px; right: 14px; z-index: 2; background: var(--gold); color: var(--dark);
  font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
  opacity: 0; transform: translateY(-6px); transition: opacity .3s, transform .3s; }
.proom.active > .proom-tag { opacity: 1; transform: none; }

.proom-salon { grid-column: 1; grid-row: 2 / 4; }
.proom-cuisine { grid-column: 2; grid-row: 2; }
.proom-sdb { grid-column: 2; grid-row: 3; }
.proom-chambre { grid-column: 4; grid-row: 2 / 4; }
.proom-salon .proom-name { font-size: 1.65rem; }

.proom-jacuzzi { position: absolute; right: 16px; bottom: 16px; width: 47%; height: 44%;
  border-radius: 12px; border-color: rgba(255,255,255,.3); align-items: flex-end; }
.proom-jacuzzi .proom-name { font-size: 1.1rem; }
.proom-jacuzzi .proom-in { padding: 12px 14px; }

.plan-stairs { grid-column: 3; grid-row: 2 / 4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #6b6076; }
.plan-stairs-arrow { color: var(--gold); font-size: .8rem; }
.plan-stairs-steps { width: 34px; height: 108px; border-radius: 4px;
  background: repeating-linear-gradient(180deg, transparent 0 16px, #4d4356 16px 18px); border: 1px solid #3c3446; }
.plan-stairs-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.visite-stage-wrap { max-width: 968px; }
.visite-quick { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.visite-quick button { background: rgba(255,255,255,.05); border: 1px solid #4d4356; color: #cfc6d8; padding: 7px 18px; border-radius: 999px; cursor: pointer; font-family: var(--sans); font-size: .88rem; transition: all .2s; }
.visite-quick button.active, .visite-quick button:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.visite-stage { position: relative; height: min(66vh, 600px); border-radius: 18px; overflow: hidden; cursor: crosshair; background: #0d0a10; user-select: none; touch-action: pan-y; }
.visite-stage img { position: absolute; top: 50%; left: 50%; width: 106%; height: 106%; max-width: none; object-fit: cover; transform: translate(-50%, -50%); will-change: transform; transition: opacity .35s; }
.visite-stage img.switching { opacity: 0; }
.visite-vignette { position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 140px rgba(13,10,16,.75); }
.visite-pan-hint { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); background: rgba(23,19,26,.65); color: var(--gold-light); padding: 8px 20px; border-radius: 999px; font-size: .88rem; letter-spacing: .06em; backdrop-filter: blur(4px); transition: opacity .6s; pointer-events: none; }
.visite-pan-hint.hidden { opacity: 0; }
.visite-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(23,19,26,.55); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 1.6rem; line-height: 1; cursor: pointer; transition: background .2s; z-index: 5; }
.visite-arrow:hover { background: var(--gold); color: var(--dark); }
.visite-arrow.prev { left: 16px; }
.visite-arrow.next { right: 16px; }
.visite-meta { position: absolute; bottom: 16px; left: 20px; display: flex; gap: 16px; align-items: baseline; color: #efe9e2; background: rgba(23,19,26,.6); padding: 8px 18px; border-radius: 999px; font-size: .9rem; backdrop-filter: blur(4px); z-index: 5; }
.visite-meta #visiteCount { color: var(--gold-light); font-size: .8rem; letter-spacing: .1em; }
.visite-full { position: absolute; bottom: 16px; right: 16px; background: rgba(23,19,26,.6); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; z-index: 5; }
.visite-full:hover { background: var(--gold); color: var(--dark); }
.visite-thumbs { display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.visite-thumbs img { width: 92px; height: 62px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: .45; transition: opacity .2s, outline .2s; outline: 2px solid transparent; flex-shrink: 0; }
.visite-thumbs img.active { opacity: 1; outline-color: var(--gold); }
.visite-thumbs img:hover { opacity: .85; }

/* ===== Signatures ===== */
.signature { padding-bottom: 70px; }
.sig-wrap { position: relative; }
.sig-scroll { display: flex; gap: 22px; overflow-x: auto; padding: 30px max(24px, calc((100vw - 1150px) / 2 + 24px)) 10px; scroll-padding-left: max(24px, calc((100vw - 1150px) / 2 + 24px)); scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.sig-scroll::-webkit-scrollbar { display: none; }
.sig-scroll.dragging { cursor: grabbing; scroll-snap-type: none; }
.sig-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 6px; padding: 0 max(24px, calc((100vw - 1150px) / 2 + 24px)); }
.sig-arrow { background: var(--white); border: 1px solid #e4d7cd; width: 46px; height: 46px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; color: var(--ink); transition: all .2s; }
.sig-arrow:hover { background: var(--dark); color: var(--white); }
.sig-card { scroll-snap-align: start; flex: 0 0 330px; min-height: 420px; border-radius: 18px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; color: #fff; isolation: isolate; transition: transform .35s ease; }
.sig-card:hover { transform: translateY(-8px); }
.sig-card::before { content: ""; position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; z-index: -2; transition: transform .6s ease; }
.sig-card:hover::before { transform: scale(1.07); }
.sig-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,19,26,.05) 30%, rgba(23,19,26,.88)); z-index: -1; }
.sig-num { font-family: var(--serif); font-style: italic; color: var(--gold-light); font-size: 1.1rem; margin-bottom: 6px; }
.sig-card h3 { color: #fff; font-size: 1.45rem; }
.sig-card p { font-size: .93rem; color: #e7dfe9; }
.equip-details { margin-top: 30px; border: 1px solid #e8dcd2; border-radius: 14px; background: #fbf7f3; }
.equip-details summary { padding: 18px 26px; cursor: pointer; font-weight: 500; font-size: 1.02rem; color: var(--rose); list-style: none; }
.equip-details summary::before { content: "+"; margin-right: 12px; font-family: var(--serif); font-size: 1.3rem; }
.equip-details[open] summary::before { content: "–"; }
.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 6px 40px; padding: 0 26px 26px; }
.amenities li { list-style: none; padding: 4px 0; font-size: .95rem; display: flex; gap: 9px; }
.amenities li::before { content: "✓"; color: var(--gold); font-weight: 600; }
.amenities h4 { font-family: var(--sans); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin: 14px 0 4px; grid-column: 1 / -1; }

/* ===== Avis ===== */
.reviews-summary { display: grid; grid-template-columns: auto 1fr 1fr; gap: 40px; align-items: center; background: var(--white); border-radius: 18px; padding: 34px 40px; margin: 30px 0 40px; box-shadow: 0 8px 30px rgba(43,36,48,.07); }
.score-card { text-align: center; }
.score-big { font-family: var(--serif); font-size: 3.6rem; font-weight: 700; color: var(--ink); line-height: 1; }
.score-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 3px; margin: 6px 0; }
.score-count { color: var(--muted); font-size: .9rem; }
.score-bars { display: grid; gap: 9px; }
.bar-row { display: grid; grid-template-columns: 110px 1fr 38px; gap: 12px; align-items: center; font-size: .88rem; }
.bar-track { height: 6px; background: #eee4de; border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--rose), var(--gold)); border-radius: 3px; width: 0; transition: width 1.2s cubic-bezier(.22,1,.36,1); transition-delay: .2s; }

.quotes-marquee { overflow: hidden; padding: 12px 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.quotes-track { display: flex; gap: 18px; width: max-content; animation: marquee 150s linear infinite; }
.quotes-marquee.reverse .quotes-track { animation-direction: reverse; animation-duration: 170s; }
.quotes-marquee:hover .quotes-track { animation-play-state: paused; }
.quote-chip { background: var(--white); border-radius: 999px; padding: 12px 26px; font-size: 1.02rem; color: var(--ink); box-shadow: 0 3px 12px rgba(43,36,48,.09); white-space: nowrap; display: flex; gap: 12px; align-items: center; }
.quote-chip .st { color: var(--gold-ink); letter-spacing: 1px; font-size: .85rem; }
.quote-chip strong { font-weight: 500; color: var(--muted); }

.featured { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; margin: 46px 0 26px; }
.feat-quote { text-align: center; max-width: 760px; margin: 0 auto; min-height: 220px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.feat-quote p { font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.55rem); font-style: italic; line-height: 1.5; transition: opacity .4s, transform .4s; }
.feat-quote p::before { content: "« "; color: var(--rose); }
.feat-quote p::after { content: " »"; color: var(--rose); }
.feat-quote.switching p, .feat-quote.switching footer { opacity: 0; transform: translateY(10px); }
.feat-quote footer { display: flex; gap: 14px; align-items: center; justify-content: center; text-align: left; transition: opacity .4s, transform .4s; }
.feat-quote footer small { color: var(--muted); display: block; }
.feat-arrow { background: var(--white); border: 1px solid #e4d7cd; width: 48px; height: 48px; border-radius: 50%; font-size: 1.5rem; cursor: pointer; color: var(--ink); transition: all .2s; }
.feat-arrow:hover { background: var(--dark); color: var(--white); }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--gold)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.1rem; flex-shrink: 0; }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: .85rem; }
.avis-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }

/* ===== Hôte ===== */
.host-grid { grid-template-columns: 2fr 3fr; }
.host-card { display: flex; gap: 22px; align-items: center; background: var(--blush); border-radius: 18px; padding: 30px; }
.host-photo { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.host-badge { display: inline-block; margin-top: 8px; background: var(--dark); color: var(--gold-light); font-size: .8rem; padding: 4px 14px; border-radius: 999px; letter-spacing: .06em; }

/* ===== Réservation ===== */
.direct-perks { background: rgba(212,169,106,.08); border: 1px solid rgba(212,169,106,.35); border-radius: 14px; padding: 22px 26px; margin: 20px 0; }
.direct-perks ul { list-style: none; display: grid; gap: 10px; }
.direct-perks strong { color: var(--gold-light); }
.stay-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; margin: 24px 0; }
.stay-info div { display: grid; }
.stay-info strong { color: var(--gold-light); }
.stay-info span { font-size: .92rem; }
.map-card { border-radius: 16px; overflow: hidden; border: 1px solid rgba(212,169,106,.3); margin-top: 26px; background: var(--dark-2); }
.map-card iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(.5) contrast(1.05); transition: filter .4s; }
.map-card:hover iframe { filter: none; }
.map-card p { padding: 13px 18px; font-size: .93rem; color: #d8cfe0; }
.booking-card { background: linear-gradient(180deg, #fffdfb, #faf4ee); color: var(--ink); border-radius: 20px; padding: 36px 38px; box-shadow: 0 20px 60px rgba(0,0,0,.4); border: 1px solid rgba(212,169,106,.35); }
.booking-card form { display: grid; gap: 6px; }
.booking-price { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid #eee0d5; }
.booking-price small { font-family: var(--sans); font-size: .85rem; color: var(--muted); display: block; margin-top: 2px; }
.bk-step { display: grid; gap: 14px; overflow: hidden; max-height: 0; opacity: 0; transform: translateY(10px); transition: max-height .6s cubic-bezier(.22,1,.36,1), opacity .45s, transform .45s, margin .45s; margin: 0; }
.bk-step.show { max-height: 640px; opacity: 1; transform: none; margin-bottom: 20px; }
.bk-legend { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.08rem; color: var(--ink); }
.bk-legend span { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #c2924e); color: var(--dark); font-family: var(--sans); font-size: .85rem; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bk-hint { font-size: .86rem; color: var(--muted); text-align: center; transition: opacity .3s; }
.bk-hint.done { display: none; }

/* ===== Formulaires ===== */
input, textarea, select { width: 100%; padding: 12px 15px; border: 1.5px solid #e6dad0; border-radius: 12px; font-family: var(--sans); font-size: .98rem; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
input:hover, textarea:hover, select:hover { border-color: #d0c0b2; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,169,106,.22); }
label { display: grid; gap: 6px; font-size: .8rem; font-weight: 500; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: end; }
.form-note { font-size: .84rem; color: var(--muted); text-align: center; }
.star-input { font-size: 1.7rem; color: #d9cfc7; cursor: pointer; user-select: none; white-space: nowrap; }
.star-input .on { color: var(--gold); }

/* ===== Footer / CTA flottant ===== */
.footer { background: #0f0c12; color: #cfc6d8; text-align: center; padding: 44px 24px; }
.footer .muted { color: #8b8194; }
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 60; background: linear-gradient(135deg, var(--gold), #c2924e); color: var(--dark); text-decoration: none; font-weight: 600; padding: 14px 26px; border-radius: 999px; box-shadow: 0 10px 34px rgba(212,169,106,.5); display: flex; gap: 8px; align-items: center; opacity: 0; transform: translateY(80px); transition: opacity .4s, transform .4s; }
.floating-cta span { font-weight: 400; font-size: .85rem; opacity: .8; }
.floating-cta.show { opacity: 1; transform: none; }
.floating-cta:hover { transform: translateY(-3px); }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; background: rgba(15,12,18,.96); z-index: 100; display: none; align-items: center; justify-content: center; flex-direction: column; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 80vh; border-radius: 8px; }
.lb-caption { color: #cfc6d8; margin-top: 14px; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; opacity: .8; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: 20px; right: 28px; }
.lb-prev { left: 22px; top: 50%; font-size: 3rem; }
.lb-next { right: 22px; top: 50%; font-size: 3rem; }

/* ===== Modales ===== */
.modal { position: fixed; inset: 0; background: rgba(15,12,18,.7); z-index: 90; display: none; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.modal.open { display: flex; }
.modal-box { background: var(--white); border-radius: 18px; width: min(860px, 100%); max-height: 88vh; display: flex; flex-direction: column; padding: 34px 36px; position: relative; animation: modalIn .35s cubic-bezier(.22,1,.36,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(26px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-narrow { width: min(560px, 100%); }
.modal-narrow form { display: grid; gap: 14px; margin-top: 18px; }
.modal-close { position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--muted); }
.modal-close:hover { color: var(--ink); }
.modal-filters { display: grid; gap: 12px; margin: 16px 0; }
.star-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.star-filters button { background: #f4ece6; border: 1px solid transparent; padding: 6px 16px; border-radius: 999px; cursor: pointer; font-family: var(--sans); font-size: .88rem; }
.star-filters button.active { background: var(--dark); color: var(--gold-light); }
.modal-list { overflow-y: auto; display: grid; gap: 14px; padding-right: 6px; }
.review-card { background: #faf5f0; border-radius: 14px; padding: 18px 22px; display: flex; flex-direction: column; gap: 8px; }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-head strong { display: block; line-height: 1.2; }
.review-head small { color: var(--muted); }
.review-card p { font-size: .95rem; }
.review-card .rv-new { color: var(--rose); font-size: .8rem; font-weight: 500; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid-2, .host-grid { grid-template-columns: 1fr; gap: 36px; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .tl-visual { position: sticky; top: 66px; height: 40vh; z-index: 2; order: -1; }
  .tl-steps::before { left: 40px; }
  .tl-step { grid-template-columns: 80px 1fr; gap: 12px; }
  .tl-card { padding: 18px 20px; }
  .reviews-summary { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .featured { grid-template-columns: 1fr; }
  .feat-arrow { display: none; }
  .nav-links { position: fixed; top: 60px; right: 0; background: rgba(23,19,26,.97); flex-direction: column; padding: 26px 40px; gap: 18px; transform: translateX(110%); transition: transform .25s; border-radius: 0 0 0 16px; }
  .nav-links.open { transform: none; }
  .nav-burger { display: block; }
  .nav { background: rgba(23,19,26,.94); }
  .section { padding: 60px 0; }
  .visite-stage { height: 58vh; }
  .sig-card { flex-basis: 280px; min-height: 380px; }
  .plan { grid-template-columns: 1fr 1fr; grid-template-rows: auto 118px 118px auto 118px; gap: 10px; }
  .plan-label-rdc { grid-column: 1 / 3; grid-row: 1; }
  .plan-label-etage { grid-column: 1 / 3; grid-row: 4; margin-top: 8px; }
  .proom-salon { grid-column: 1; grid-row: 2 / 4; }
  .proom-cuisine { grid-column: 2; grid-row: 2; }
  .proom-sdb { grid-column: 2; grid-row: 3; }
  .proom-chambre { grid-column: 1 / 3; grid-row: 5; }
  .plan-stairs { display: none; }
  .proom-salon { align-items: flex-start; }
  .proom-tag { display: none; }
  .proom-jacuzzi { left: 10px; right: 10px; bottom: 10px; width: auto; height: 40%; align-items: flex-end; }
  .proom-jacuzzi .proom-in { display: flex; gap: 8px; align-items: baseline; }
  .proom-salon .proom-name, .proom-name { font-size: 1.2rem; }
  .proom-jacuzzi .proom-name { font-size: .95rem; }
  .proom-jacuzzi .proom-count { margin-top: 0; }
}
@media (max-width: 560px) {
  .form-row, .stay-info { grid-template-columns: 1fr; }
  .booking-card, .modal-box { padding: 26px 22px; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; }}
