/* ============================================================
   Nuits Singulières — feuille de style
   Couleurs et polices modifiables ici :
   ============================================================ */
:root {
  --night: #0f1a17;
  --night-2: #16241f;
  --cream: #f4efe6;
  --paper: #fbf8f2;
  --ink: #16201c;
  --ink-soft: #46514b;
  --muted: #7d857f;
  --forest: #24392f;
  --forest-dark: #172720;
  --terracotta: #c2643c;
  --terracotta-dark: #a4502c;
  --gold: #c29a5b;
  --sand: #efd9b4;
  --line: #e4ddd0;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 12px 32px -14px rgba(15, 26, 23, .28);
  --shadow-lg: 0 34px 70px -24px rgba(15, 26, 23, .45);
  --ease: cubic-bezier(.2, .75, .15, 1);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font: 16px/1.6 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; margin: 0; letter-spacing: -.015em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
em { font-style: italic; }
[hidden] { display: none !important; }
::selection { background: var(--sand); }

.container { width: min(1280px, 100% - 32px); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.container { padding-inline: 0; }
section[id] { scroll-margin-top: 72px; }
.section-tint { background: var(--paper); }
.section-dark { background: var(--night); color: var(--cream); }
.section-head { margin-bottom: 40px; }
.section-head.row { display: flex; justify-content: space-between; align-items: end; gap: 16px; flex-wrap: wrap; }
.eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 600; margin: 0 0 14px; color: var(--sand); }
.eyebrow.dark { color: var(--terracotta); }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.link-arrow { color: var(--forest); font-weight: 600; white-space: nowrap; }
.link-arrow:hover { color: var(--terracotta); }

/* Apparition au défilement */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Boutons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 999px; border: 1px solid transparent; font-weight: 600; cursor: pointer; transition: transform .2s var(--ease), background .2s, box-shadow .2s, border-color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 10px 24px -10px rgba(194, 100, 60, .8); }
.btn-primary:hover { background: var(--terracotta-dark); box-shadow: 0 14px 30px -10px rgba(194, 100, 60, .9); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: var(--cream); color: var(--forest-dark); }
.btn-glass { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,.26); }
.btn-block { width: 100%; white-space: normal; text-align: center; }
.btn-text { background: none; border: 0; color: var(--terracotta); font-weight: 600; cursor: pointer; padding: 8px; }
.btn-round { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.14); color: #fff; font-size: 1.2rem; cursor: pointer; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: background .2s; }
.btn-round:hover { background: rgba(255,255,255,.28); }
.chip-glass { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.32); color: #fff; padding: 11px 20px; border-radius: 999px; cursor: pointer; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); font-weight: 500; transition: background .2s, transform .2s var(--ease); }
.chip-glass:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }

/* ---------- En-tête ---------- */
.site-header { position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px max(16px, calc((100% - 1280px) / 2)); background: rgba(244, 239, 230, .9); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); border-bottom: 1px solid var(--line); transition: background .35s, color .35s, border-color .35s, padding .35s; }
.site-header.on-dark { position: fixed; left: 0; right: 0; background: linear-gradient(180deg, rgba(10,16,14,.45), transparent); border-color: transparent; color: #fff; padding-top: 20px; padding-bottom: 20px; }
.site-header.on-dark.scrolled { background: rgba(244, 239, 230, .92); border-color: var(--line); color: var(--ink); padding-top: 12px; padding-bottom: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.4rem; letter-spacing: -.01em; white-space: nowrap; }
.brand-mark { color: var(--gold); display: inline-block; transition: transform .6s var(--ease); }
.brand:hover .brand-mark { transform: rotate(180deg); }
.nav { display: flex; gap: 22px; align-items: center; font-size: .94rem; font-weight: 500; }
.nav > a:not(.nav-cta) { position: relative; }
.nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 9px 18px; border: 1px solid currentColor; border-radius: 999px; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.nav-icon { position: relative; width: 40px; height: 40px; border-radius: 50%; border: 0; background: transparent; cursor: pointer; font-size: 1.15rem; transition: background .2s, transform .2s var(--ease); }
.nav-icon:hover { background: rgba(127,127,127,.15); transform: scale(1.08); }
.fav-count { position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--terracotta); color: #fff; font: 600 .68rem/18px var(--sans); }

/* ============================================================
   ACCUEIL
   ============================================================ */
.hero { position: relative; z-index: 2; min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; color: #fff; background: var(--night); }
.hero-slides { position: absolute; inset: 0; overflow: hidden; }
.hero-veil { pointer-events: none; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.14); transition: opacity 1.6s ease, transform 8s linear; }
.hero-slide.on { opacity: 1; transform: scale(1.02); }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,14,12,.55) 0%, rgba(8,14,12,.15) 38%, rgba(8,14,12,.35) 70%, rgba(8,14,12,.85) 100%), radial-gradient(ellipse at 20% 60%, rgba(8,14,12,.45), transparent 60%); }
.hero-inner { position: relative; width: min(1280px, 100% - 32px); margin: 0 auto; padding: 130px 0 170px; }
.hero .eyebrow { color: var(--sand); }
.hero-title { font-size: clamp(2.5rem, min(7.4vw, 10.5vh), 6.4rem); font-weight: 300; max-width: 13ch; margin-bottom: 38px; text-shadow: 0 2px 40px rgba(0,0,0,.25); }
.hero-title em { color: var(--sand); font-weight: 300; }
.hero-search { position: relative; display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 1fr) auto; gap: 6px; max-width: 940px; background: rgba(251, 248, 242, .96); color: var(--ink); padding: 8px; border-radius: 24px; box-shadow: var(--shadow-lg); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.field { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 10px 18px; border-radius: 16px; transition: background .2s; }
.field:hover, .field:focus-within { background: var(--cream); }
.field > span { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.field input, .field select { border: 0; background: transparent; padding: 4px 0 0; outline: none; font-size: 1rem; width: 100%; cursor: pointer; }
.field input { cursor: text; }
.hero-search .btn { padding-inline: 34px; border-radius: 18px; font-size: 1.02rem; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.hero-caption { position: absolute; right: max(16px, calc((100% - 1280px) / 2)); bottom: 64px; display: grid; gap: 2px; max-width: 360px; padding: 16px 20px; border-left: 2px solid var(--sand); background: linear-gradient(90deg, rgba(8,14,12,.45), transparent); color: #fff; transition: background .3s; }
.hero-caption:hover { background: linear-gradient(90deg, rgba(8,14,12,.7), transparent); }
.hero-caption span { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--sand); }
.hero-caption strong { font: 400 1.4rem/1.2 var(--serif); }
.hero-caption em { font-style: normal; font-size: .88rem; opacity: .85; }
.hero-caption.swap { animation: fadeUp .8s var(--ease); }
.hero-progress { position: absolute; left: max(16px, calc((100% - 1280px) / 2)); bottom: 36px; display: flex; gap: 8px; }
.hero-progress button { width: 44px; height: 14px; padding: 6px 0; border: 0; background: none; cursor: pointer; }
.hero-progress i { display: block; height: 2px; background: rgba(255,255,255,.35); position: relative; overflow: hidden; border-radius: 2px; }
.hero-progress i::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.hero-progress .done i::after { transform: scaleX(1); }
.hero-progress .on i::after { animation: progress 6.5s linear forwards; }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; animation: bob 2.4s ease-in-out infinite; }
@keyframes progress { to { transform: scaleX(1); } }
@keyframes bob { 50% { transform: translate(-50%, 6px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Suggestions (recherche, adresse) */
.suggestions { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 60; margin: 0; padding: 6px; list-style: none; background: #fff; color: var(--ink); border-radius: 16px; box-shadow: var(--shadow-lg); display: none; min-width: 280px; text-transform: none; letter-spacing: 0; }
.suggestions.open { display: block; animation: fadeUp .25s var(--ease); }
.suggestions li { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 10px; cursor: pointer; font-size: .93rem; font-weight: 400; color: var(--ink); }
.suggestions li:hover, .suggestions li.active { background: var(--cream); }
.suggestions li.none { color: var(--muted); cursor: default; }
.suggestions img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex: none; }
.suggestions strong { display: block; font-weight: 600; }
.suggestions small { color: var(--muted); }
.sg-icon { width: 48px; height: 48px; display: grid; place-items: center; background: var(--cream); border-radius: 10px; font-size: 1.3rem; flex: none; }

/* Bandeau défilant */
.marquee { overflow: hidden; background: var(--night); color: var(--sand); border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.marquee-track { display: flex; width: max-content; gap: 28px; align-items: center; animation: marquee 48s linear infinite; font: 300 1.5rem var(--serif); white-space: nowrap; }
.marquee-track i { font-style: normal; color: var(--gold); font-size: .9rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Ambiances : accordéon */
.env-accordion { display: flex; gap: 14px; height: min(78vh, 620px); }
.env-panel { position: relative; flex: 1; min-width: 0; border-radius: var(--radius); overflow: hidden; color: #fff; transition: flex 1s var(--ease); box-shadow: var(--shadow); }
.env-panel.active { flex: 3.2; }
.env-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), filter .6s; filter: saturate(.9); }
.env-panel.active img { transform: scale(1.04); filter: saturate(1.05); }
.env-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,14,12,.1) 30%, rgba(8,14,12,.82)); }
.env-panel-text { position: absolute; z-index: 1; left: 26px; right: 26px; bottom: 26px; }
.env-panel h3 { font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 300; }
.env-panel:not(.active) h3 { writing-mode: vertical-rl; transform: rotate(180deg); position: absolute; bottom: 0; left: 0; }
.env-panel p, .env-go { opacity: 0; transform: translateY(10px); transition: opacity .5s .2s, transform .5s .2s var(--ease); max-width: 36ch; }
.env-panel.active p, .env-panel.active .env-go { opacity: 1; transform: none; }
.env-panel p { margin: 8px 0 14px; font-size: 1.02rem; opacity: 0; }
.env-panel.active p { opacity: .9; }
.env-go { display: inline-block; font-weight: 600; border-bottom: 1px solid var(--sand); padding-bottom: 2px; }
.env-count { position: absolute; top: -52px; left: 0; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; background: rgba(255,255,255,.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.env-panel:not(.active) .env-count { display: none; }

/* Rails horizontaux (expériences, suggestions) */
.rail { --gutter: max(16px, calc((100vw - 1280px) / 2)); display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--gutter) 24px; scroll-padding-inline: var(--gutter); scrollbar-width: none; }
.rail::after { content: ""; flex: 0 0 1px; }
.rail::-webkit-scrollbar { display: none; }
.rail-nav { display: flex; gap: 8px; }
.rail-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid currentColor; background: none; color: inherit; cursor: pointer; font-size: 1.1rem; opacity: .75; transition: opacity .2s, background .2s, color .2s; }
.rail-btn:hover { opacity: 1; background: var(--cream); color: var(--ink); }
.type-card { position: relative; flex: 0 0 min(300px, 76vw); aspect-ratio: 3 / 4.2; border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; color: #fff; }
.type-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.type-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,14,12,.85)); transition: background .4s; }
.type-card:hover img { transform: scale(1.08); }
.type-card:hover::after { background: linear-gradient(180deg, rgba(194,100,60,.1) 20%, rgba(8,14,12,.9)); }
.type-card-text { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 22px; }
.type-card-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 14px; border-radius: 50%; background: rgba(255,255,255,.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); font-size: 1.4rem; transition: transform .5s var(--ease); }
.type-card:hover .type-card-icon { transform: rotate(-12deg) scale(1.1); }
.type-card h3 { font-size: 1.65rem; font-weight: 300; }
.type-card p { margin: 6px 0 0; font-size: .85rem; opacity: .8; }

/* Coups de cœur : projecteur */
.spotlight { display: grid; grid-template-columns: 1.35fr 1fr; gap: 0; background: var(--paper); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); min-height: 600px; }
.spot-media { position: relative; overflow: hidden; background: var(--night); }
.spot-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity 1.1s ease, transform 6s var(--ease); }
.spot-media img.on { opacity: 1; transform: scale(1); }
.spot-body { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; padding: clamp(28px, 4vw, 52px); }
.spot-text.swap > * { animation: fadeUp .7s var(--ease) both; }
.spot-text.swap > :nth-child(2) { animation-delay: .06s; }
.spot-text.swap > :nth-child(3) { animation-delay: .12s; }
.spot-text.swap > :nth-child(4) { animation-delay: .18s; }
.spot-text.swap > :nth-child(5) { animation-delay: .24s; }
.spot-text.swap > :nth-child(6) { animation-delay: .3s; }
.spot-text h3 { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 300; margin: 6px 0 10px; }
.spot-place { color: var(--muted); margin: 0 0 16px; }
.spot-desc { color: var(--ink-soft); font-size: 1.04rem; margin: 0 0 16px; }
.spot-hl { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; }
.spot-hl li { padding-left: 22px; position: relative; font-weight: 500; }
.spot-hl li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.spot-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.spot-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.spot-thumbs button { position: relative; padding: 0; border: 0; border-radius: 10px; overflow: hidden; aspect-ratio: 1; cursor: pointer; opacity: .55; transition: opacity .3s, transform .3s var(--ease); background: var(--line); }
.spot-thumbs button:hover { opacity: .9; transform: translateY(-3px); }
.spot-thumbs button.on { opacity: 1; }
.spot-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.spot-thumbs i { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--terracotta); transform: scaleX(0); transform-origin: left; }
.spot-thumbs .on i { animation: progress 8s linear forwards; }
.spotlight.paused .spot-thumbs .on i { animation-play-state: paused; }

/* ---------- Exploration ---------- */
.near-box { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 22px 26px; background: var(--forest); color: #fff; border-radius: var(--radius); margin-bottom: 14px; }
.near-box .muted { color: rgba(255,255,255,.75); display: block; font-size: .92rem; }
.near-box.active { background: linear-gradient(120deg, var(--forest-dark), var(--forest)); }
.near-text strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.near-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; flex: 1 1 520px; justify-content: flex-end; }
.near-form input, .near-form select { padding: 12px 16px; border-radius: 999px; border: 0; background: #fff; color: var(--ink); outline: none; }
.near-form select:disabled { opacity: .55; }
.near-form .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); padding: 11px 18px; }
.near-form .btn-ghost:hover { border-color: #fff; }
.near-form .btn-text { color: var(--sand); }
.autocomplete { position: relative; flex: 1 1 280px; }
.autocomplete input { width: 100%; }

.filters { position: sticky; top: 64px; z-index: 50; display: grid; gap: 12px; padding: 14px; background: rgba(251, 248, 242, .94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px -24px rgba(0,0,0,.5); }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filters > *, .filter-row > * { min-width: 0; }
.filter-row > input[type="search"], .filter-row > select { padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; outline: none; }
.filter-row > input[type="search"] { flex: 1 1 220px; }
.filter-row > input:focus, .filter-row > select:focus { border-color: var(--forest); }
.pills { display: flex; gap: 3px; background: var(--cream); padding: 4px; border-radius: 999px; }
.pills button { border: 0; background: none; padding: 7px 14px; border-radius: 999px; cursor: pointer; font-size: .9rem; font-weight: 500; color: var(--ink-soft); transition: background .25s, color .25s; white-space: nowrap; }
.pills button:hover { color: var(--ink); }
.pills button.active { background: var(--forest); color: #fff; }
.type-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 24px 2px 0; -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 40px), transparent); mask-image: linear-gradient(90deg, #000 calc(100% - 40px), transparent); }
.type-chips::-webkit-scrollbar { display: none; }
.type-chips button { flex: none; border: 1px solid var(--line); background: #fff; padding: 7px 14px; border-radius: 999px; cursor: pointer; font-size: .88rem; transition: border-color .2s, background .2s, color .2s, transform .2s var(--ease); }
.type-chips button:hover { border-color: var(--ink); transform: translateY(-1px); }
.type-chips button.active { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

.results-bar { display: flex; justify-content: space-between; align-items: center; margin: 26px 0 18px; }
.results-bar p { margin: 0; color: var(--ink-soft); }
.view-toggle { display: flex; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.view-toggle button { border: 0; background: none; padding: 8px 18px; border-radius: 999px; cursor: pointer; font-weight: 500; transition: background .25s, color .25s; }
.view-toggle button.active { background: var(--ink); color: #fff; }

/* ---------- Cartes hôtel ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 34px 24px; }
.grid.refresh .card { animation: fadeUp .6s var(--ease) both; }
.grid.refresh .card:nth-child(2) { animation-delay: .05s; }
.grid.refresh .card:nth-child(3) { animation-delay: .1s; }
.grid.refresh .card:nth-child(4) { animation-delay: .15s; }
.grid.refresh .card:nth-child(5) { animation-delay: .2s; }
.grid.refresh .card:nth-child(6) { animation-delay: .25s; }
.grid.refresh .card:nth-child(n+7) { animation-delay: .3s; }
.card { display: flex; flex-direction: column; min-width: 0; }
.card-media { position: relative; aspect-ratio: 4 / 3.2; border-radius: var(--radius); overflow: hidden; background: var(--line); box-shadow: var(--shadow); transform: translateZ(0); }
.card-slides { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.card-slides::-webkit-scrollbar { display: none; }
.card-slides img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: start; transition: transform 1.2s var(--ease); }
.card:hover .card-slides img { transform: scale(1.04); }
.card-nav { position: absolute; top: 50%; width: 36px; height: 36px; margin-top: -18px; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); font-size: 1.3rem; line-height: 1; cursor: pointer; opacity: 0; transition: opacity .25s, transform .25s var(--ease); box-shadow: 0 4px 14px rgba(0,0,0,.2); }
.card-nav.prev { left: 12px; transform: translateX(-6px); }
.card-nav.next { right: 12px; transform: translateX(6px); }
.card-media:hover .card-nav { opacity: 1; transform: none; }
.card-dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: 5px; pointer-events: none; }
.card-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); transition: background .3s, transform .3s; }
.card-dots span.on { background: #fff; transform: scale(1.3); }
.badge { position: absolute; top: 14px; left: 14px; background: rgba(251, 248, 242, .92); color: var(--ink); padding: 5px 12px; border-radius: 999px; font-size: .76rem; font-weight: 600; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.card-dist { position: absolute; bottom: 12px; left: 14px; background: var(--forest); color: #fff; padding: 5px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600; }
.card-body { display: flex; flex-direction: column; flex: 1; padding: 16px 4px 0; }
.card-type { margin: 0 0 6px; font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--terracotta); }
.card-type.light { color: var(--sand); }
.card h3 { font-size: 1.5rem; font-weight: 400; transition: color .2s; }
.card-body:hover h3 { color: var(--terracotta); }
.card-place { margin: 4px 0 8px; color: var(--muted); font-size: .9rem; }
.card-tagline { margin: 0 0 12px; color: var(--ink-soft); font-size: .96rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-foot { display: flex; justify-content: space-between; align-items: center; margin: auto 0 0; padding-top: 12px; border-top: 1px solid var(--line); }
.card-more { font-size: .88rem; font-weight: 600; color: var(--forest); transition: transform .3s var(--ease); }
.card-body:hover .card-more { transform: translateX(4px); }
.budget { font-weight: 600; letter-spacing: .06em; color: var(--ink); }
.budget-off { color: var(--line); }
.section-dark .budget-off, .d-hero .budget-off { color: rgba(255,255,255,.25); }

/* Bouton favori */
.fav { position: absolute; top: 10px; right: 10px; z-index: 2; width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(15,26,23,.28); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); cursor: pointer; transition: transform .2s var(--ease), background .2s; }
.fav svg { width: 20px; height: 20px; fill: transparent; stroke: #fff; stroke-width: 2; transition: fill .2s, stroke .2s; }
.fav:hover { transform: scale(1.1); background: rgba(15,26,23,.45); }
.fav.on svg { fill: #ff5a5f; stroke: #ff5a5f; }
.fav.pop { animation: pop .45s var(--ease); }
@keyframes pop { 40% { transform: scale(1.35); } }
.card-media .badge-partner { position: absolute; top: 58px; right: 10px; z-index: 2; }
.fav-lg { position: static; width: 50px; height: 50px; background: var(--cream); }
.fav-lg svg { stroke: var(--ink); width: 22px; height: 22px; }
.fav-lg:hover { background: var(--line); }
.fav-glass { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35); }
.fav-glass svg { stroke: #fff; }
.fav-glass:hover { background: rgba(255,255,255,.28); }
.fav-mini { position: static; width: 36px; height: 36px; background: var(--cream); }
.fav-mini svg { stroke: var(--ink); width: 18px; height: 18px; }

.empty { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ---------- Vue carte : liste + carte ---------- */
.split { display: grid; grid-template-columns: 380px 1fr; gap: 0; height: min(78vh, 760px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--paper); }
.split-list { overflow-y: auto; padding: 10px; display: grid; gap: 6px; align-content: start; }
.split-item { display: flex; gap: 12px; align-items: center; padding: 8px; border-radius: 14px; transition: background .2s; }
.split-item:hover, .split-item.hot { background: var(--cream); }
.split-item img { width: 76px; height: 76px; border-radius: 12px; object-fit: cover; flex: none; }
.split-item small { display: block; color: var(--terracotta); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.split-item strong { display: block; font: 400 1.1rem/1.2 var(--serif); }
.split-item em { font-style: normal; color: var(--muted); font-size: .84rem; }
.split-map, #map { height: 100%; }
.mini-map { height: 360px; border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; z-index: 0; }
.photo-pin span { display: block; width: 46px; height: 46px; border-radius: 50%; border: 3px solid #fff; background-size: cover; background-position: center; box-shadow: 0 6px 16px rgba(0,0,0,.35); transition: transform .25s var(--ease), border-color .25s; }
.photo-pin.big span { width: 64px; height: 64px; }
.photo-pin:hover span, .photo-pin.hot span { transform: scale(1.3); border-color: var(--terracotta); }
.photo-pin.hot { z-index: 1000 !important; }
.home-pin span { display: inline-block; transform: translate(-50%, -50%); white-space: nowrap; padding: 5px 10px; border-radius: 999px; font: 600 .8rem var(--sans); box-shadow: 0 4px 12px rgba(0,0,0,.25); background: var(--terracotta); color: #fff; }
.leaflet-div-icon.photo-pin, .leaflet-div-icon.home-pin { background: none; border: 0; }
.leaflet-popup-content { margin: 0; }
.leaflet-popup-content-wrapper { padding: 0; overflow: hidden; border-radius: 16px; }
.map-pop { display: block; width: 230px; font-family: var(--sans); }
.map-pop img { width: 100%; height: 130px; object-fit: cover; }
.map-pop strong { display: block; padding: 10px 12px 0; font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--ink); }
.map-pop span { display: block; padding: 2px 12px 12px; color: var(--muted); }

/* ---------- « Surprenez-moi » ---------- */
.surprise { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 16px; background: rgba(8,14,12,.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; transition: opacity .25s; }
.surprise.open { opacity: 1; }
.surprise-card { position: relative; width: min(820px, 100%); display: grid; grid-template-columns: 1.1fr 1fr; background: var(--paper); border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.97); transition: transform .45s var(--ease); }
.surprise.open .surprise-card { transform: none; }
.surprise-media { position: relative; min-height: 380px; background: var(--night); }
.surprise-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.surprise-card.rolling .surprise-media img { filter: blur(2px) saturate(1.3); }
.surprise-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; transition: opacity .3s; }
.surprise-card.rolling .surprise-body { opacity: .15; }
.surprise-body h3 { font-size: 2rem; font-weight: 400; margin-bottom: 4px; }
.surprise-tagline { color: var(--ink-soft); font-family: var(--serif); font-style: italic; font-size: 1.1rem; }
.surprise-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.surprise-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); font-size: 1.5rem; cursor: pointer; }

/* ---------- Tiroir des favoris ---------- */
.drawer { position: fixed; inset: 0; z-index: 2500; background: rgba(8,14,12,.45); opacity: 0; transition: opacity .3s; }
.drawer.open { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 100%); background: var(--paper); color: var(--ink); padding: 24px; overflow-y: auto; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); }
.drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.drawer-head h3 { font-size: 1.7rem; }
.drawer-close { width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--cream); font-size: 1.5rem; cursor: pointer; }
.fav-list { display: grid; gap: 10px; }
.fav-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 12px; align-items: center; padding: 8px; border-radius: 14px; background: var(--cream); animation: fadeUp .35s var(--ease); }
.fav-item img { width: 76px; height: 76px; object-fit: cover; border-radius: 10px; }
.fav-item strong { display: block; font: 400 1.1rem/1.2 var(--serif); }
.fav-item span { font-size: .84rem; color: var(--muted); }
.fav-empty { padding: 20px 0; }


/* ---------- Pied de page ---------- */
.site-footer { background: var(--night); color: #d9d5cc; padding: 72px max(16px, calc((100% - 1280px) / 2)) 32px; }
.site-footer .brand { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; margin: 6px 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a:hover { color: #fff; }
.site-footer .muted { color: #9aa29c; }
.disclosure { margin: 44px 0 10px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: #9aa29c; }

/* ============================================================
   FICHE HÔTEL
   ============================================================ */
.d-hero { position: relative; z-index: 1; min-height: 92svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--night); }
.d-hero-bg { position: absolute; top: -40px; left: 0; width: 100%; height: calc(100% + 40px); object-fit: cover; transform: scale(1.05); animation: heroIn 1.6s var(--ease); will-change: transform; }
@keyframes heroIn { from { opacity: 0; transform: scale(1.15); } }
.d-hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,14,12,.5) 0%, rgba(8,14,12,.05) 35%, rgba(8,14,12,.85) 100%); }
.d-hero-inner { position: relative; padding: 140px 0 56px; }
.d-hero-inner > * { animation: fadeUp .9s var(--ease) both; }
.d-hero-inner > :nth-child(2) { animation-delay: .1s; }
.d-hero-inner > :nth-child(3) { animation-delay: .18s; }
.d-hero-inner > :nth-child(4) { animation-delay: .26s; }
.d-hero-inner > :nth-child(5) { animation-delay: .34s; }
.d-hero-inner > :nth-child(6) { animation-delay: .42s; }
.crumbs { font-size: .84rem; opacity: .8; margin-bottom: 20px; }
.crumbs a:hover { color: var(--sand); }
.d-hero h1 { font-size: clamp(2.6rem, 7vw, 6rem); font-weight: 300; max-width: 16ch; margin: 6px 0 12px; }
.d-tagline { font: italic 300 clamp(1.15rem, 2.2vw, 1.6rem) var(--serif); margin: 0 0 18px; max-width: 46ch; opacity: .95; }
.d-meta { display: flex; gap: 12px 20px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; opacity: .95; }
.d-budget small { opacity: .75; margin-left: 4px; }
.d-hero .budget { color: #fff; }
.dist-chip { background: var(--terracotta); color: #fff; font-size: .8rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.d-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.d-tabs { position: sticky; top: 0; z-index: 900; background: rgba(244,239,230,.94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: top .3s; }
.d-tabs.stuck { top: 64px; }
.d-tabs-inner { display: flex; gap: 6px; align-items: center; overflow-x: auto; scrollbar-width: none; padding: 10px 0; }
.d-tabs-inner::-webkit-scrollbar { display: none; }
.d-tabs-inner a { flex: none; padding: 9px 16px; border-radius: 999px; font-weight: 500; font-size: .94rem; color: var(--ink-soft); transition: background .2s, color .2s; }
.d-tabs-inner a:hover { color: var(--ink); }
.d-tabs-inner a.on { background: var(--ink); color: #fff; }
.d-tabs-inner .d-tabs-book { margin-left: auto; color: #fff; padding: 9px 20px; }

.detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; margin-top: 56px; align-items: start; }
.detail-content section { scroll-margin-top: 140px; }
.detail-content h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 300; margin: 56px 0 20px; }
.detail-content .lead { font-size: 1.2rem; line-height: 1.7; color: var(--ink); }
.dropcap::first-letter { float: left; font: 400 4.2rem/.8 var(--serif); color: var(--terracotta); margin: 8px 12px 0 0; }
.body { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.highlights { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.highlights li { display: flex; flex-direction: column; gap: 10px; padding: 18px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); font-weight: 500; transition: transform .3s var(--ease), box-shadow .3s; }
.highlights li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.highlights li span { color: var(--gold); font-size: 1.3rem; }
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 10px; }
.m-item { padding: 0; border: 0; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in; background: var(--line); }
.m-item:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; }
.m-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .3s; }
.m-item:hover img { transform: scale(1.06); filter: brightness(.92); }
.amenities { list-style: none; padding: 0; margin: 0 0 20px; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px 20px; }
.amenities li::before { content: "✓"; color: var(--forest); font-weight: 700; margin-right: 10px; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin: 0; }
.facts div { background: var(--paper); border-radius: var(--radius-sm); padding: 14px 18px; border: 1px solid var(--line); }
.facts dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.facts dd { margin: 4px 0 0; }

.book-card { position: sticky; top: 140px; background: var(--paper); border-radius: 24px; padding: 28px; box-shadow: var(--shadow-lg); border: 1px solid var(--line); display: grid; gap: 12px; }
.book-price { margin: 0; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.book-price .budget { font: 400 2.2rem var(--serif); }
.book-price > span:last-child { color: var(--muted); font-size: .92rem; }
.book-card .small { margin: 0 0 6px; }
.book-perks { list-style: none; padding: 14px 0 0; margin: 4px 0 0; border-top: 1px solid var(--line); display: grid; gap: 6px; font-size: .88rem; color: var(--ink-soft); }

.similar { margin-top: 80px; }
.similar .section-head { margin-bottom: 28px; }
.rail-cards .card { flex: 0 0 min(320px, 80vw); scroll-snap-align: start; }
.section-dark .card-place, .section-dark .card-tagline { color: rgba(244,239,230,.7); }
.section-dark .card-foot { border-color: rgba(255,255,255,.12); }
.section-dark .budget { color: var(--cream); }
.section-dark .card-more { color: var(--sand); }
.section-dark .card-type { color: var(--sand); }
.mobile-book { display: none; }
.not-found { text-align: center; padding: 180px 0 120px; }
.not-found h1 { font-size: 3rem; margin-bottom: 12px; }

/* Visionneuse de photos */
.lightbox { position: fixed; inset: 0; z-index: 4000; background: rgba(8, 12, 10, .96); display: grid; place-items: center; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; object-fit: contain; }
.lightbox img.in { animation: lbIn .5s var(--ease); }
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } }
.lightbox button { position: absolute; background: rgba(255,255,255,.1); color: #fff; border: 0; width: 54px; height: 54px; border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer; transition: background .2s; }
.lightbox button:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 20px; color: #fff; opacity: .7; margin: 0; }

/* Page texte (mentions légales) */
.prose { max-width: 760px; padding: 48px 0 96px; }
.prose h1 { font-size: 2.6rem; margin-bottom: 24px; }
.prose h2 { font-size: 1.5rem; margin: 32px 0 10px; }

/* ============================================================
   NEWSLETTER & INSTAGRAM
   ============================================================ */
.nl-form { display: flex; flex-wrap: wrap; gap: 10px; }
.nl-form input[type="email"] { flex: 1 1 240px; padding: 14px 20px; border-radius: 999px; border: 1px solid var(--line); background: #fff; outline: none; }
.nl-form input[type="email"]:focus { border-color: var(--forest); }
.nl-msg { flex-basis: 100%; margin: 0; font-weight: 600; color: var(--forest); min-height: 0; }
.nl-msg:empty { display: none; }
.nl-legal { flex-basis: 100%; margin: 0; font-size: .78rem; color: var(--muted); }
.nl-hp { position: absolute; left: -9999px; }
.nl-form.sent input[type="email"], .nl-form.sent button { display: none; }
.nl-form.on-dark .nl-msg { color: var(--sand, #f3d9b1); }
.nl-form.on-dark .nl-legal { color: #9aa29c; }
.nl-band { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.nl-band .lead { margin-top: 14px; }
.nl-inline { margin-top: 56px; padding: 32px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); }
.nl-inline h3 { font-size: 1.6rem; margin-bottom: 6px; }
.footer-news { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; padding-bottom: 48px; margin-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-news h3 { color: #fff; font-size: 1.8rem; margin-bottom: 8px; }
.footer-news p { margin: 0; }

.ig-handle { font-size: .55em; color: var(--muted); font-style: italic; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 8px; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, filter .3s; }
.ig-tile span { position: absolute; left: 10px; bottom: 8px; color: #fff; font-size: .8rem; font-weight: 600; opacity: 0; transition: opacity .3s; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.ig-tile:hover img { transform: scale(1.06); filter: brightness(.75); }
.ig-tile:hover span { opacity: 1; }

/* ============================================================
   LIEN EN BIO (liens.html)
   ============================================================ */
.bio { background: linear-gradient(180deg, var(--forest-dark), var(--forest) 300px, var(--cream) 300px); min-height: 100vh; }
.bio-main { width: min(560px, 100% - 32px); margin: 0 auto; padding: 48px 0 40px; display: grid; gap: 12px; }
.bio-head { text-align: center; color: #fff; margin-bottom: 16px; }
.bio-head .muted { color: rgba(255,255,255,.75); margin: 6px 0 0; }
.bio-avatar { display: grid; place-items: center; width: 88px; height: 88px; margin: 0 auto 14px; border-radius: 50%; background: var(--cream); color: var(--gold); font-size: 2.4rem; box-shadow: var(--shadow); }
.bio-head h1 { font-size: 2rem; }
.bio-btn { display: block; text-align: center; padding: 16px 20px; border-radius: 16px; background: var(--paper); font-weight: 600; box-shadow: var(--shadow); transition: transform .15s; }
.bio-btn:hover { transform: translateY(-2px); }
.bio-btn-main { background: var(--terracotta); color: #fff; }
.bio-btn-quiet { background: transparent; box-shadow: none; border: 1px solid var(--line); }
.bio-title { font-size: 1.4rem; margin: 20px 0 4px; }
.bio-list { display: grid; gap: 10px; }
.bio-item { display: flex; gap: 14px; align-items: center; padding: 10px; background: var(--paper); border-radius: 16px; border: 1px solid var(--line); }
.bio-item img { width: 76px; height: 76px; object-fit: cover; border-radius: 12px; flex: none; }
.bio-item small { display: block; color: var(--terracotta); font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.bio-item strong { display: block; font: 400 1.15rem var(--serif); }
.bio-item em { font-style: normal; color: var(--muted); font-size: .88rem; }
.bio-nl { margin-top: 16px; padding: 24px; background: var(--paper); border-radius: 20px; border: 1px solid var(--line); }
.bio-nl h2 { font-size: 1.5rem; }
.bio-foot { text-align: center; margin: 12px 0 0; }

/* ============================================================
   STUDIO (outil interne)
   ============================================================ */
.studio { background: #ece6db; }
.studio-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 20px 0; }
.tabs { display: flex; gap: 4px; background: var(--paper); padding: 4px; border-radius: 999px; }
.tabs button { border: 0; background: none; padding: 9px 16px; border-radius: 999px; cursor: pointer; font-weight: 500; }
.tabs button.active { background: var(--ink); color: #fff; }
.studio-main { display: grid; grid-template-columns: 340px 1fr; gap: 28px; align-items: start; padding-bottom: 60px; }
.studio-side { position: sticky; top: 16px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 12px; background: var(--paper); padding: 22px; border-radius: var(--radius); max-height: calc(100vh - 32px); overflow: auto; }
.studio-side label { display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.studio-side input, .studio-side select, .studio-side textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; font-weight: 400; font-size: .92rem; }
.studio-side textarea { resize: vertical; font-family: var(--sans); line-height: 1.5; }
.studio-side .check { display: block; font-weight: 500; }
.studio-side .check input { width: auto; margin-right: 6px; }
.studio-side fieldset { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 12px; }
.studio-side legend { font-size: .85rem; font-weight: 600; color: var(--ink-soft); padding: 0 4px; }
.nl-picks { display: grid; gap: 4px; max-height: 260px; overflow: auto; }
.nl-picks .check { font-size: .88rem; }
.slides { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.slides.is-story { grid-template-columns: minmax(260px, 380px); }
.slides figure { margin: 0; }
.slides canvas { width: 100%; height: auto; border-radius: 12px; box-shadow: var(--shadow); background: var(--line); }
.slides figcaption { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; color: var(--muted); padding: 4px 2px; }
#nl-frame { width: 100%; height: calc(100vh - 120px); border: 0; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }


/* ============================================================
   ACCESSIBILITÉ & DÉTAILS
   ============================================================ */
.skip { position: absolute; left: 12px; top: -60px; z-index: 5000; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; transition: top .2s; }
.skip:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible, .select-btn:focus-visible { outline-offset: 3px; }
input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }

/* ============================================================
   MENUS DÉROULANTS SUR MESURE
   ============================================================ */
.select { position: relative; min-width: 0; }
.select-native { position: absolute !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; overflow: hidden; clip: rect(0 0 0 0); }
.select-btn { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; min-width: 0; font: inherit; text-align: left; cursor: pointer; border: 1px solid var(--line); background: #fff; color: var(--ink); padding: 11px 14px 11px 16px; border-radius: 999px; transition: border-color .2s, box-shadow .2s, background .2s; }
.select-btn:hover { border-color: var(--ink-soft); }
.select-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select-chevron { flex: none; width: 18px; height: 18px; opacity: .6; transition: transform .3s var(--ease); }
.select.is-open .select-chevron { transform: rotate(180deg); }
.select.is-open .select-btn { border-color: var(--forest); box-shadow: 0 0 0 4px rgba(36,57,47,.08); }
.select.is-disabled .select-btn { opacity: .5; cursor: not-allowed; }
.select-list { position: absolute; z-index: 90; top: calc(100% + 8px); left: 0; min-width: max(100%, 230px); max-height: 320px; overflow-y: auto; margin: 0; padding: 6px; list-style: none; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 50px -18px rgba(15,26,23,.4), 0 2px 6px rgba(15,26,23,.06); transform-origin: top center; animation: selectIn .22s var(--ease); overscroll-behavior: contain; }
.select.drop-up .select-list { top: auto; bottom: calc(100% + 8px); transform-origin: bottom center; }
@keyframes selectIn { from { opacity: 0; transform: translateY(-6px) scale(.98); } }
.select-list li { position: relative; display: flex; align-items: center; padding: 11px 36px 11px 14px; border-radius: 10px; cursor: pointer; font-size: .95rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--ink); white-space: nowrap; transition: background .12s; }
.select-list li.is-active { background: var(--cream); }
.select-list li.is-selected { font-weight: 600; color: var(--forest); }
.select-list li.is-selected::after { content: ""; position: absolute; right: 14px; top: 50%; width: 6px; height: 11px; margin-top: -7px; border: solid var(--terracotta); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.select-list li.is-disabled { color: var(--muted); opacity: .5; cursor: not-allowed; }
/* Variante : dans la barre de recherche de l'accueil */
.select.in-field .select-btn { border: 0; background: transparent; padding: 4px 0 0; border-radius: 6px; font-size: 1rem; box-shadow: none; }
.select.in-field .select-btn:hover { border: 0; }
.select.in-field .select-list { left: -18px; min-width: calc(100% + 36px); top: calc(100% + 16px); }
.select.in-field.drop-up .select-list { top: auto; bottom: calc(100% + 38px); }
.field:has(.select.is-open) { background: var(--cream); }
.hero-search { z-index: 5; }
.near-box:has(.select.is-open), .filters:has(.select.is-open) { position: relative; z-index: 60; }
.filters:has(.select.is-open) { position: sticky; }
/* Variante : filtres */
.select.pill { flex: 0 0 auto; }
.select.pill .select-btn { min-width: 190px; }
.select.pill .select-list { left: auto; right: 0; }
/* Variante : sur fond sombre (bloc « près de chez moi ») */
.select.on-dark .select-btn { border-color: transparent; min-width: 190px; }
.select.on-dark .select-list { left: auto; right: 0; }
.select.on-dark.is-disabled .select-btn { opacity: 1; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.65); }
/* Variante : formulaires */
.select.form .select-btn { border-radius: var(--radius-sm); padding: 12px 14px; font-weight: 400; }

/* ============================================================
   GUIDES
   ============================================================ */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.guide-card { position: relative; display: block; aspect-ratio: 4 / 3.3; border-radius: var(--radius); overflow: hidden; color: #fff; box-shadow: var(--shadow); isolation: isolate; }
.guide-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.guide-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,14,12,.05) 25%, rgba(8,14,12,.85)); transition: background .4s; }
.guide-card:hover img { transform: scale(1.06); }
.guide-card-text { position: absolute; left: 22px; right: 22px; bottom: 20px; display: grid; gap: 6px; }
.guide-card small { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); }
.guide-card strong { font: 400 1.55rem/1.15 var(--serif); }
.guide-card em { font-style: normal; font-size: .9rem; font-weight: 600; opacity: .85; transition: transform .3s var(--ease); }
.guide-card:hover em { transform: translateX(4px); }

.g-hero { position: relative; min-height: 78svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--night); }
.g-hero-sm { min-height: 62svh; }
.g-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: heroIn 1.6s var(--ease); }
.g-hero-inner { position: relative; padding: 140px 0 56px; }
.g-hero-inner > * { animation: fadeUp .9s var(--ease) both; }
.g-hero-inner > :nth-child(2) { animation-delay: .1s; }
.g-hero-inner > :nth-child(3) { animation-delay: .18s; }
.g-hero-inner > :nth-child(4) { animation-delay: .26s; }
.g-hero h1 { font-size: clamp(2.3rem, 5.6vw, 4.8rem); font-weight: 300; max-width: 20ch; }
.g-layout { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; padding: 64px 0 24px; }
.g-intro .lead { font-size: 1.22rem; line-height: 1.7; color: var(--ink); }
.g-toc { position: sticky; top: 96px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.g-toc ol { margin: 0; padding-left: 22px; display: grid; gap: 8px; }
.g-toc li { color: var(--muted); }
.g-toc a { color: var(--ink); font-weight: 500; }
.g-toc a:hover { color: var(--terracotta); }
.g-toc span { display: block; font-size: .82rem; color: var(--muted); }
.g-list { display: grid; gap: 72px; padding: 40px 0 24px; }
.g-item { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; scroll-margin-top: 90px; }
.g-item:nth-child(even) .g-media { order: 2; }
.g-media { position: relative; display: grid; grid-template-columns: 2fr 1fr; gap: 10px; }
.g-photo { display: block; border-radius: var(--radius); overflow: hidden; background: var(--line); box-shadow: var(--shadow); }
.g-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.4; transition: transform 1s var(--ease); }
.g-photo-sm { align-self: end; }
.g-photo-sm img { aspect-ratio: 3 / 4.2; }
.g-photo:hover img { transform: scale(1.05); }
.g-media .fav { top: 14px; right: auto; left: 14px; }
.g-num { font: 300 3.4rem/1 var(--serif); color: var(--gold); margin: 0 0 8px; }
.g-body h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 4px 0 10px; }
.g-body h2 a:hover { color: var(--terracotta); }
.g-place { color: var(--muted); margin: 0 0 14px; display: flex; flex-wrap: wrap; gap: 4px 6px; align-items: center; }
.g-note { color: var(--forest); font-weight: 600; }
.g-tagline { font: italic 400 1.2rem/1.5 var(--serif); color: var(--ink); margin: 0 0 12px; }
.g-body > p:not([class]) { color: var(--ink-soft); line-height: 1.75; }
.g-hl { list-style: none; padding: 0; margin: 16px 0 22px; display: grid; gap: 8px; }
.g-hl li { padding-left: 22px; position: relative; font-weight: 500; }
.g-hl li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.g-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.g-tips { margin-top: 56px; margin-bottom: 72px; padding: clamp(28px, 4vw, 48px); background: var(--forest-dark); color: var(--cream); border-radius: 28px; }
.g-tips h2 { margin-bottom: 18px; }
.g-tips ul { margin: 0 0 18px; padding: 0; list-style: none; display: grid; gap: 12px; }
.g-tips li { padding-left: 30px; position: relative; line-height: 1.6; }
.g-tips li::before { content: "→"; position: absolute; left: 0; color: var(--sand); }
.g-tips .muted { color: rgba(244,239,230,.6); }
.in-guides { margin-top: 48px; }
.in-guides h2 { font-size: 1.6rem; margin-bottom: 14px; }
.in-guides ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.in-guides a { display: inline-block; padding: 10px 16px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-weight: 500; transition: border-color .2s, background .2s; }
.in-guides a:hover { border-color: var(--terracotta); background: #fff; }

/* Annuaire par région (accueil) */
.directory { columns: 3 280px; column-gap: 40px; }
.dir-col { break-inside: avoid; margin-bottom: 30px; }
.dir-col h3 { font-size: 1.3rem; margin-bottom: 10px; display: flex; align-items: baseline; gap: 8px; }
.dir-col h3 span { font: 600 .75rem var(--sans); color: var(--terracotta); }
.dir-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.dir-col a { font-weight: 500; }
.dir-col a:hover { color: var(--terracotta); }
.dir-col small { display: block; color: var(--muted); font-size: .8rem; }


/* ============================================================
   CARTE INTERACTIVE (carte.html)
   ============================================================ */
body.map-page { height: 100svh; display: flex; flex-direction: column; overflow: hidden; }
body.map-page .site-header { position: relative; flex: none; }
.atlas { position: relative; flex: 1; min-height: 0; background: #dfe7e3; }
.atlas-map { position: absolute; inset: 0; background: #e8ece6; }
.atlas-map[data-layer="nuit"] { background: #1b1f22; }
.atlas-map[data-layer="satellite"] { background: #25312c; }
.atlas-error { position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink-soft); }
.atlas .leaflet-control-zoom { border: 0; box-shadow: var(--shadow); border-radius: 14px; overflow: hidden; margin: 0 18px 22px 0; }
.atlas .leaflet-control-zoom a { width: 42px; height: 42px; line-height: 42px; font-size: 1.2rem; color: var(--ink); border-color: var(--line); }
.atlas .leaflet-control-scale { margin: 0 0 12px 452px; }
.atlas .leaflet-control-attribution { font-size: .68rem; background: rgba(255,255,255,.75); }

/* Repères : photo en médaillon */
.atlas-pin { position: relative; }
.atlas-pin-photo { position: absolute; inset: 0; border-radius: 50%; border: 3px solid #fff; background: var(--line) center / cover; box-shadow: 0 8px 20px -6px rgba(0,0,0,.55); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.atlas-pin::after { content: ""; position: absolute; left: 50%; bottom: -7px; width: 10px; height: 10px; margin-left: -5px; background: #fff; transform: rotate(45deg); border-radius: 2px; z-index: -1; box-shadow: 2px 2px 6px rgba(0,0,0,.2); transition: background .3s; }
.atlas-pin:hover .atlas-pin-photo, .atlas-pin.hot .atlas-pin-photo { transform: scale(1.22); border-color: var(--sand); }
.atlas-pin.selected .atlas-pin-photo { transform: scale(1.35); border-color: var(--terracotta); box-shadow: 0 0 0 6px rgba(194,100,60,.28), 0 12px 26px -6px rgba(0,0,0,.6); }
.atlas-pin.selected::after { background: var(--terracotta); }
.atlas-pin.hot, .atlas-pin.selected { z-index: 10000 !important; }
.atlas-pin-label { position: absolute; left: 50%; top: calc(100% + 12px); transform: translateX(-50%); white-space: nowrap; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.95); color: var(--ink); font: 600 .75rem var(--sans); box-shadow: 0 4px 12px rgba(0,0,0,.18); opacity: 0; pointer-events: none; transition: opacity .25s; }
.atlas-map.show-labels .atlas-pin-label, .atlas-pin:hover .atlas-pin-label, .atlas-pin.hot .atlas-pin-label, .atlas-pin.selected .atlas-pin-label { opacity: 1; }
.leaflet-div-icon.atlas-pin, .leaflet-div-icon.atlas-cluster { background: none; border: 0; }

/* Groupes de lieux */
.atlas-cluster { display: grid; place-items: center; }
.atlas-cluster-photos { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; display: flex; border: 3px solid #fff; box-shadow: 0 10px 24px -6px rgba(0,0,0,.55); background: var(--forest-dark); transition: transform .3s var(--ease); }
.atlas-cluster-photos i { flex: 1; background: center / cover; filter: saturate(1.05); }
.atlas-cluster-photos::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(15,26,23,.55) 30%, rgba(15,26,23,.2)); }
.atlas-cluster b { position: relative; font: 400 1.5rem/1 var(--serif); color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.atlas-cluster:hover .atlas-cluster-photos { transform: scale(1.1); }
.marker-cluster-anim .leaflet-marker-icon, .marker-cluster-anim .leaflet-marker-shadow { transition: transform .35s var(--ease), opacity .3s; }

/* Panneau latéral */
.atlas-panel { position: absolute; z-index: 800; top: 18px; left: 18px; bottom: 18px; width: 400px; display: flex; flex-direction: column; background: rgba(251, 248, 242, .95); -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3); border: 1px solid rgba(255,255,255,.7); border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden; }
.atlas-handle { display: none; }
.atlas-head { padding: 22px 22px 10px; }
.atlas-head .eyebrow { margin-bottom: 6px; }
.atlas-head h1 { font-size: 2rem; font-weight: 300; }
.atlas-head h1 em { color: var(--terracotta); }
.atlas-count { margin: 6px 0 0; color: var(--muted); font-size: .9rem; }
.atlas-filters { display: grid; gap: 10px; padding: 8px 22px 14px; border-bottom: 1px solid var(--line); }
.atlas-filters input { width: 100%; padding: 11px 16px; border: 1px solid var(--line); border-radius: 999px; background: #fff; outline: none; }
.atlas-filters input:focus { border-color: var(--forest); }
.atlas-pills { overflow-x: auto; scrollbar-width: none; }
.atlas-pills button { flex: 1; padding: 7px 8px; font-size: .86rem; }
.atlas-types { padding-right: 18px; }
.atlas-list { list-style: none; margin: 0; padding: 10px; overflow-y: auto; flex: 1; overscroll-behavior: contain; }
.atlas-item { display: flex; gap: 12px; align-items: center; padding: 8px; border-radius: 16px; transition: background .2s, transform .2s var(--ease); }
.atlas-item:hover, .atlas-item.hot { background: #fff; }
.atlas-item.active { background: #fff; box-shadow: inset 0 0 0 2px var(--terracotta); }
.atlas-item img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; flex: none; }
.atlas-item small { display: block; color: var(--terracotta); font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.atlas-item strong { display: block; font: 400 1.12rem/1.2 var(--serif); margin: 2px 0; }
.atlas-item em { font-style: normal; color: var(--muted); font-size: .84rem; }
.atlas-empty { padding: 30px 12px; text-align: center; color: var(--muted); }

/* Commandes */
.atlas-tools { position: absolute; z-index: 800; top: 18px; right: 18px; display: flex; gap: 8px; align-items: center; }
.atlas-layers { display: flex; padding: 4px; background: rgba(251,248,242,.95); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-radius: 999px; box-shadow: var(--shadow); }
.atlas-layers button { border: 0; background: none; padding: 8px 14px; border-radius: 999px; font-weight: 500; font-size: .88rem; cursor: pointer; transition: background .25s, color .25s; }
.atlas-layers button.active { background: var(--ink); color: #fff; }
.atlas-btn { width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(251,248,242,.95); box-shadow: var(--shadow); cursor: pointer; font-size: 1.15rem; transition: transform .2s var(--ease), background .2s; }
.atlas-btn:hover { transform: scale(1.08); background: #fff; }
.atlas-btn.busy { animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(.9); opacity: .6; } }

/* Aperçu du lieu */
.atlas-card { position: absolute; z-index: 850; right: 18px; bottom: 90px; width: 360px; background: var(--paper); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); }
.atlas-card.in { animation: cardIn .45s var(--ease); }
@keyframes cardIn { from { opacity: 0; transform: translateY(18px) scale(.97); } }
.atlas-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--line); }
.atlas-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.atlas-card-media:hover img { transform: scale(1.05); }
.atlas-card > .fav { top: 12px; right: 58px; }
.atlas-card-close { position: absolute; z-index: 3; top: 12px; right: 12px; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(15,26,23,.35); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.atlas-card-body { padding: 18px 20px 20px; }
.atlas-card-body h2 { font-size: 1.6rem; margin: 2px 0 4px; }
.atlas-card-body .card-place { margin: 0 0 8px; }
.atlas-card-tagline { margin: 0 0 14px; color: var(--ink-soft); font: italic 1.02rem/1.45 var(--serif); }
.atlas-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.atlas-card-foot small { color: var(--muted); font-size: .8rem; display: block; }
.atlas-card-foot .btn { padding: 11px 20px; }

/* Accueil : vitrine de la carte */
.map-teaser { position: relative; display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; padding: clamp(28px, 4vw, 56px); border-radius: 30px; background: var(--forest-dark); color: var(--cream); overflow: hidden; }
.map-teaser h2 { margin-bottom: 14px; }
.map-teaser p { opacity: .85; max-width: 44ch; }
.map-teaser .btn { margin-top: 10px; }
.map-teaser-art { position: relative; aspect-ratio: 1.05; }
.map-teaser-art svg { width: 100%; height: 100%; overflow: visible; }
.map-teaser-art .fr { fill: rgba(244,239,230,.07); stroke: rgba(239,217,180,.45); stroke-width: 1.5; stroke-linejoin: round; }
.map-teaser-art .dot { fill: var(--terracotta); stroke: #fff; stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: dotIn .6s var(--ease) both; }
.map-teaser-art .ring { fill: none; stroke: var(--sand); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: ring 2.8s ease-out infinite; opacity: 0; }
.map-teaser:hover .dot { animation: dotPop .5s var(--ease); }
@keyframes dotIn { from { transform: scale(0); } }
@keyframes dotPop { 50% { transform: scale(1.5); } }
@keyframes ring { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(3); opacity: 0; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav > a:not(.nav-cta) { display: none; }
  .spotlight { grid-template-columns: 1fr; }
  .spot-media { min-height: 380px; }
  .detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .book-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 300px 1fr; }
  .nl-band, .footer-news { grid-template-columns: 1fr; gap: 28px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .studio-main { grid-template-columns: 1fr; }
  .studio-side { position: static; max-height: none; }
  .g-layout { grid-template-columns: 1fr; gap: 28px; }
  .g-toc { position: static; }
  .g-item { grid-template-columns: 1fr; gap: 24px; }
  .g-item:nth-child(even) .g-media { order: 0; }
}
@media (max-width: 760px) {
  .nav { gap: 6px; }
  .nav-cta { display: none; }
  .brand { font-size: 1.2rem; }
  .hero-inner { padding: 110px 0 190px; }
  .hero-search { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); border-radius: 20px; }
  .hero-search .field-grow, .hero-search .btn { grid-column: span 2; }
  .hero-caption { left: 16px; right: 16px; bottom: 70px; max-width: none; }
  .scroll-cue { display: none; }
  .env-accordion { flex-direction: column; height: auto; }
  .env-panel { flex: none; height: 110px; transition: height .8s var(--ease); }
  .env-panel.active { flex: none; height: 380px; }
  .env-panel:not(.active) h3 { writing-mode: horizontal-tb; transform: none; position: static; }
  .env-panel-text { left: 20px; right: 20px; bottom: 20px; }
  .spot-media { min-height: 280px; }
  .spot-thumbs { grid-template-columns: repeat(6, 1fr); gap: 5px; }
  .near-form { flex-basis: 100%; }
  .near-form select { flex: 1; }
  .filters { position: static; }
  .filter-row > * { flex: 1 1 100%; }
  .pills { overflow-x: auto; scrollbar-width: none; }
  .split { grid-template-columns: 1fr; grid-template-rows: 55vh auto; height: auto; }
  .split-map { order: -1; height: 55vh; }
  .split-list { max-height: 50vh; }
  .card-nav { display: none; }
  .surprise-card { grid-template-columns: 1fr; }
  .surprise-media { min-height: 240px; }
  .d-hero { min-height: 86svh; }
  .d-tabs.stuck { top: 56px; }
  .d-tabs-book { display: none; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .m-item:nth-child(3n+1) { grid-column: span 2; grid-row: span 2; }
  .detail-main, .detail { padding-bottom: 0; }
  .mobile-book { display: flex; justify-content: space-between; align-items: center; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(0,0,0,.08); }
  .mobile-book .budget { font: 400 1.5rem var(--serif); }
  body.detail .site-footer { padding-bottom: 110px; }
  .footer-grid { grid-template-columns: 1fr; }
  .atlas { --panel-h: 44svh; }
  .atlas.open { --panel-h: 78svh; }
  .atlas.peek { --panel-h: 132px; }
  .atlas-panel { top: auto; left: 0; right: 0; bottom: 0; width: auto; height: var(--panel-h); border-radius: 24px 24px 0 0; transition: height .4s var(--ease); }
  .atlas.peek .atlas-filters, .atlas.peek .atlas-list { display: none; }
  .atlas-handle { display: block; flex: none; width: 100%; padding: 10px 0 2px; border: 0; background: none; cursor: pointer; }
  .atlas-handle span { display: block; width: 44px; height: 5px; margin: 0 auto; border-radius: 3px; background: var(--line); }
  .atlas-head { padding: 6px 18px 6px; }
  .atlas-head .eyebrow { display: none; }
  .atlas-head h1 { font-size: 1.5rem; }
  .atlas-filters { padding: 6px 18px 10px; }
  .atlas-tools { top: 12px; right: 12px; left: 12px; justify-content: flex-end; flex-wrap: wrap; }
  .atlas-layers button { padding: 7px 11px; font-size: .82rem; }
  .atlas-btn { width: 40px; height: 40px; }
  .atlas .leaflet-control-zoom { display: none; }
  .atlas .leaflet-control-scale { display: none; }
  .atlas-card { left: 12px; right: 12px; width: auto; bottom: calc(var(--panel-h) + 12px); transition: bottom .4s var(--ease); display: grid; grid-template-columns: 120px 1fr; }
  .atlas-card-media { aspect-ratio: auto; height: 100%; }
  .atlas-card > .fav { top: 8px; left: 72px; right: auto; width: 36px; height: 36px; }
  .atlas-card-close { top: 8px; right: 8px; width: 34px; height: 34px; font-size: 1.3rem; background: rgba(15,26,23,.08); color: var(--ink); }
  .atlas-card-body { padding: 12px 14px; }
  .atlas-card-body h2 { font-size: 1.2rem; padding-right: 30px; }
  .atlas-card-tagline { display: none; }
  .atlas-card-body .card-place { font-size: .82rem; }
  .atlas-card-foot { padding-top: 8px; }
  .atlas-card-foot small { display: none; }
  .atlas-card-foot .btn { padding: 9px 14px; font-size: .9rem; }
  .map-teaser { grid-template-columns: 1fr; }
  .select.pill .select-btn, .select.on-dark .select-btn { min-width: 0; }
  .select.pill, .select.on-dark { flex: 1 1 100%; }
  .select.pill .select-list, .select.on-dark .select-list { left: 0; right: auto; }
  .g-list { gap: 56px; }
  .guide-card strong { font-size: 1.35rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* Fond de carte OpenStreetMap adouci pour s'accorder aux couleurs du site */
.leaflet-tile.tiles-plan { filter: saturate(.55) sepia(.12) brightness(1.03) contrast(.95); }
