/* La Maison des Hautes-Eaux — site de démonstration La Balise.
   Aucune règle inline dans la page : la CSP du domaine (style-src 'self') les bloquerait. */

@font-face { font-family: "Instrument Serif"; src: url("/exemples/maison-d-hotes/fonts/instrument-serif.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("/exemples/maison-d-hotes/fonts/instrument-serif-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Hanken"; src: url("/exemples/maison-d-hotes/fonts/hanken.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

/* Contrastes mesurés (WCAG) : ink/linen 13.1 · muted/linen 5.4 · tide/linen 7.1 ·
   blanc/tide 8.0 · coral-ink/linen 5.3 · linen/night 13.8 · muted-night/night 8.3 */
:root {
  --linen: #F6F1E8;
  --card: #FFFDF8;
  --sand: #EADCC4;
  --ink: #1C2A33;
  --muted: #58646C;
  --tide: #24566B;
  --tide-2: #2E6A82;
  --night: #18262F;
  --muted-night: #AFC0C8;
  --coral: #F2B79A;
  --coral-ink: #9E4424;
  --sun: #F2C08A;
  --hydrangea: #8FA2DD;
  --line: rgba(28, 42, 51, 0.12);
  --radius: 22px;
  --shadow: 0 1px 0 rgba(28, 42, 51, .05), 0 24px 50px -30px rgba(28, 42, 51, .45);
  /* Lift de carte : même valeur pour les chambres et les colonnes « autour de nous » */
  --lift: translateY(-6px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Hanken", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--linen); color: var(--ink); font: 400 17px/1.65 var(--sans); }
main, .foot { overflow-x: clip; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.01em; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--tide); }
.wrap { width: min(1180px, 100% - 32px); margin-inline: auto; }
:focus-visible { outline: 3px solid var(--tide); outline-offset: 3px; border-radius: 6px; }
.foot :focus-visible { outline-color: var(--sun); }

/* ---------- Bandeau démo ---------- */
.demo-bar { position: relative; z-index: 60; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 4px 16px; padding: 8px 16px; background: var(--night); color: var(--muted-night); font-size: 13px; text-align: center; }
.demo-bar strong { color: var(--linen); font-weight: 600; }
.demo-bar a { color: var(--sun); font-weight: 600; text-decoration: none; }
.demo-bar a:hover { text-decoration: underline; }

/* ---------- Boutons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border: 0; border-radius: 999px; font: 600 16px/1 var(--sans); text-decoration: none; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s ease, color .2s ease; }
.btn:active { transform: translateY(1px) scale(.98); }
.btn-primary { background: var(--tide); color: #fff; box-shadow: 0 12px 26px -14px rgba(36, 86, 107, .9); }
.btn-primary:hover { background: var(--tide-2); transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(36, 86, 107, .95); }
.btn-primary:disabled { background: #9AA9B1; box-shadow: none; transform: none; cursor: not-allowed; }
.btn-outline { color: var(--tide); box-shadow: inset 0 0 0 1.5px currentColor; background: transparent; }
.btn-outline:hover { background: var(--tide); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-block { width: 100%; }
.badge { display: inline-block; padding: 4px 9px; border-radius: 999px; background: var(--coral); color: var(--ink); font: 700 13px/1 var(--sans); }
.badge-lg { padding: 7px 12px; font-size: 15px; }

/* ---------- En-tête ---------- */
.top { position: sticky; top: 0; z-index: 50; background: rgba(246, 241, 232, .82); -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4); border-bottom: 1px solid transparent; transition: border-color .3s ease, box-shadow .3s ease; }
.top.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px -24px rgba(28, 42, 51, .5); }
.top-inner { display: flex; align-items: center; gap: 28px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; transition: transform .6s var(--ease); }
.brand:hover .brand-mark { transform: rotate(-10deg) scale(1.05); }
.brand-name { font: 400 24px/1 var(--serif); }
.brand-name em { font-style: italic; color: var(--tide); }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { position: relative; color: var(--muted); text-decoration: none; font-weight: 500; font-size: 15px; transition: color .2s ease; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px; background: var(--tide); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.top-cta { padding: 11px 12px 11px 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(96vh, 900px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, #9FBACB 0%, #D2D6D6 42%, #F1D6C0 72%, #F5D3B6 100%);
}
.scene { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 58%; }
.layer { will-change: transform; }
.clouds { animation: drift 90s linear infinite alternate; }
@keyframes drift { to { transform: translateX(-80px); } }
.ripples path { stroke-dasharray: 60 30; animation: ripple 9s linear infinite; }
.ripples path:nth-child(2) { animation-duration: 13s; animation-direction: reverse; }
@keyframes ripple { to { stroke-dashoffset: -180; } }
.boat { transform: translate(470px, 570px); animation: sail 70s ease-in-out infinite alternate; }
@keyframes sail { from { transform: translate(180px, 566px); } to { transform: translate(760px, 574px); } }
.lit { animation: flicker 5s ease-in-out infinite alternate; }
@keyframes flicker { 0%, 100% { opacity: .85; } 50% { opacity: 1; } }
.reeds path { transform-box: fill-box; transform-origin: 50% 100%; animation: sway 5s ease-in-out infinite alternate; }
.reeds path:nth-child(2n) { animation-duration: 6.5s; }
@keyframes sway { from { transform: rotate(-3deg); } to { transform: rotate(4deg); } }
.bird { animation: fly 30s linear infinite; }
.bird.b2 { animation-duration: 44s; animation-delay: -12s; }
.bird.b3 { animation-duration: 50s; animation-delay: -26s; }
@keyframes fly { from { transform: translate(820px, 380px); } to { transform: translate(1500px, 330px); } }
.bird.b2 { animation-name: fly2; }
@keyframes fly2 { from { transform: translate(840px, 400px); } to { transform: translate(1500px, 356px); } }
.bird.b3 { animation-name: fly3; }
@keyframes fly3 { from { transform: translate(860px, 366px); } to { transform: translate(1500px, 316px); } }

.hero-copy { position: relative; padding: clamp(48px, 8vh, 96px) 0 220px; }
.eyebrow { font-size: 14px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--tide); }
.hero h1 { margin-top: 18px; max-width: 11em; font-size: clamp(52px, 7.4vw, 104px); line-height: .95; letter-spacing: -0.025em; }
.hero h1 em { display: block; }
.hero-lead { margin-top: 24px; max-width: 30em; font-size: 19px; color: #3D4A52; }
.hero-direct { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-weight: 600; }

/* ---------- Recherche rapide ---------- */
.quick {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin-top: -64px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 253, 248, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -30px rgba(28, 42, 51, .45), inset 0 0 0 1px rgba(255, 255, 255, .7);
}
.q-field span { display: block; margin: 0 0 6px 6px; font-size: 13px; font-weight: 600; color: var(--muted); }
.q-field input, .q-field select, .field input, .field textarea, .sum-guests select {
  width: 100%;
  padding: 13px 14px;
  border: 0;
  border-radius: 14px;
  background: var(--linen);
  box-shadow: inset 0 0 0 1.5px rgba(28, 42, 51, .3);
  color: var(--ink);
  font: 500 16px var(--sans);
  transition: box-shadow .2s ease;
}
.q-field input:focus, .q-field select:focus, .field input:focus, .field textarea:focus, .sum-guests select:focus { outline: none; box-shadow: inset 0 0 0 2px var(--tide), 0 0 0 4px rgba(36, 86, 107, .15); }
.q-btn { height: 50px; }
.q-result { grid-column: 1 / -1; min-height: 0; font-size: 15px; font-weight: 600; color: var(--tide); }
.q-result:empty { display: none; }

/* ---------- Pourquoi en direct ---------- */
.direct { padding: 110px 0 40px; }
.direct-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.direct h2 { margin-top: 12px; font-size: clamp(42px, 5.4vw, 72px); }
.direct-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 4px; }
.direct-list li { display: grid; grid-template-columns: 1fr 1.4fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.direct-list strong { font: 400 26px/1.1 var(--serif); }
.direct-list span { color: var(--muted); }

/* ---------- Titres de section ---------- */
.section-head { max-width: 760px; }
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tide); }
.kicker::before { content: ""; width: 24px; height: 1.5px; background: currentColor; }
.section-head h2, .breakfast h2 { margin-top: 12px; font-size: clamp(42px, 5.4vw, 72px); }
.section-lead { margin-top: 18px; max-width: 34em; font-size: 18px; color: var(--muted); }

/* ---------- Chambres ---------- */
.rooms { padding: 90px 0 110px; }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.room { position: relative; display: flex; flex-direction: column; border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.room:hover { transform: var(--lift); box-shadow: 0 1px 0 rgba(28, 42, 51, .05), 0 34px 60px -30px rgba(28, 42, 51, .55); }
.room-window { position: relative; padding: 26px 40px 0; background: linear-gradient(180deg, #EFE6D8, #E7DCCB); }
.room-window svg { width: 100%; height: auto; transition: transform .8s var(--ease); transform-origin: 50% 100%; }
.room:hover .room-window svg { transform: scale(1.03); }
.room-tag { position: absolute; top: 16px; left: 16px; padding: 6px 12px; border-radius: 999px; background: var(--card); font-size: 13px; font-weight: 600; box-shadow: 0 6px 16px -10px rgba(28, 42, 51, .6); }
.room-body { flex: 1; padding: 24px 26px 0; }
.room h3 { font-size: 38px; }
.room-body p { margin-top: 10px; color: var(--muted); font-size: 16px; }
.room-facts { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 0; padding: 0; list-style: none; }
.room-facts li { padding: 5px 10px; border-radius: 999px; background: var(--linen); font-size: 13px; font-weight: 600; color: var(--ink); }
.room-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 22px 26px 24px; padding-top: 18px; border-top: 1px solid var(--line); }
.room-price { font-size: 14px; color: var(--muted); line-height: 1.3; }
.room-price strong { display: block; font: 400 34px/1 var(--serif); color: var(--ink); }
.room-foot .btn { padding: 12px 18px; font-size: 15px; }
.room-avail { position: absolute; top: 16px; right: 16px; padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; animation: pop .5s var(--ease); }
.room-avail.is-free { background: #DDEBDD; color: #1F5130; }
.room-avail.is-full { background: #F3DDD3; color: var(--coral-ink); }
.room.is-dim { opacity: .55; }
@keyframes pop { from { transform: scale(.6); opacity: 0; } }

/* ---------- Petit-déjeuner ---------- */
.breakfast { padding: 100px 0; background: var(--sand); }
.breakfast-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.breakfast-illu { width: 100%; max-width: 480px; margin-inline: auto; }
.steam path { animation: steam 3s ease-in-out infinite; }
.steam path:nth-child(2) { animation-delay: 1.2s; }
@keyframes steam { 0% { opacity: 0; transform: translateY(8px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(-10px); } }
.pull { margin: 26px 0 0; padding: 0 0 0 22px; border-left: 2px solid var(--tide); font: italic 400 28px/1.25 var(--serif); color: var(--ink); }
.breakfast .section-lead { color: #4B565D; }

/* ---------- Réservation ---------- */
.booking { padding: 110px 0; }
.sync { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding: 8px 14px; border-radius: 999px; background: var(--card); box-shadow: inset 0 0 0 1px var(--line); font-size: 14px; color: var(--muted); }
.sync-dot { width: 8px; height: 8px; border-radius: 50%; background: #3C9A5F; box-shadow: 0 0 0 0 rgba(60, 154, 95, .5); animation: ping 2.2s ease-out infinite; }
@keyframes ping { 80%, 100% { box-shadow: 0 0 0 9px rgba(60, 154, 95, 0); } }
.sync-demo { font-size: 12px; }
.room-tabs { display: inline-flex; gap: 4px; margin-top: 34px; padding: 5px; border-radius: 999px; background: var(--card); box-shadow: inset 0 0 0 1px var(--line); }
.room-tab { padding: 11px 20px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font: 600 15px/1 var(--sans); cursor: pointer; transition: background-color .25s ease, color .25s ease; }
.room-tab:hover { color: var(--ink); }
.room-tab[aria-pressed="true"] { background: var(--tide); color: #fff; }

.booking-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 24px; margin-top: 20px; align-items: start; }
.cal-card, .summary, .request, .sent { border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); }
.cal-card { padding: 22px 24px 18px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cal-hint { font-weight: 600; font-size: 15px; color: var(--tide); text-align: center; }
.cal-nav { width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--linen); color: var(--ink); font-size: 18px; cursor: pointer; transition: background-color .2s ease; }
.cal-nav:hover:not(:disabled) { background: var(--sand); }
.cal-nav:disabled { opacity: .35; cursor: default; }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 14px; }
.cal-month h4 { margin: 0 0 10px; font: 400 26px/1 var(--serif); text-transform: capitalize; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow { padding: 4px 0; font-size: 12px; font-weight: 700; text-align: center; color: var(--muted); text-transform: uppercase; }
.day {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font: 600 15px/1 var(--sans);
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease;
}
.day:hover:not(:disabled) { background: var(--linen); box-shadow: inset 0 0 0 1.5px var(--tide); }
.day:disabled { cursor: default; color: #A3ACB1; }
.day.is-taken { color: #9AA3A8; text-decoration: line-through; background: repeating-linear-gradient(-45deg, #F0EAE0 0 4px, transparent 4px 8px); }
.day.is-in { background: rgba(36, 86, 107, .12); border-radius: 0; }
.day.is-start, .day.is-end { background: var(--tide); color: #fff; }
.day.is-start { border-radius: 10px 0 0 10px; }
.day.is-end { border-radius: 0 10px 10px 0; }
.day.is-start.is-end { border-radius: 10px; }
.day.is-hover { background: rgba(36, 86, 107, .07); border-radius: 0; }
.day.is-today::after { content: ""; position: absolute; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--coral-ink); }
.day.is-start::after, .day.is-end::after { background: #fff; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 16px 0 0; padding: 14px 0 0; list-style: none; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.cal-legend li { display: inline-flex; align-items: center; gap: 6px; }
.lg { width: 14px; height: 14px; border-radius: 4px; }
.lg-free { box-shadow: inset 0 0 0 1.5px var(--line); }
.lg-taken { background: repeating-linear-gradient(-45deg, #E4DBCC 0 3px, transparent 3px 6px); box-shadow: inset 0 0 0 1px var(--line); }
.lg-sel { background: var(--tide); }
.lg-note { margin-left: auto; font-weight: 600; }

.summary { position: sticky; top: 96px; padding: 26px; }
.summary h3 { font-size: 34px; }
.sum-dates { margin-top: 6px; color: var(--muted); }
.sum-dates strong { color: var(--ink); }
.sum-guests { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.sum-guests span { display: block; margin: 0 0 6px 4px; font-size: 13px; font-weight: 600; color: var(--muted); }
.sum-cap { min-height: 0; margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--coral-ink); }
.sum-cap:empty { display: none; }
.sum-lines { margin: 20px 0 0; }
.sum-lines > div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.sum-lines dt { color: var(--muted); font-size: 15px; }
.sum-lines dt small { display: block; font-size: 12px; }
.sum-lines dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.strike { text-decoration: line-through; color: var(--muted); font-weight: 500 !important; }
.sum-direct dt { color: var(--ink); font-weight: 600; }
.sum-total { border-bottom: 0 !important; padding-top: 14px !important; }
.sum-total dt { color: var(--ink); font-weight: 700; font-size: 16px; }
.sum-total dd { font: 400 36px/1 var(--serif) !important; }
.sum-save { margin: 6px 0 16px; padding: 10px 14px; border-radius: 12px; background: #FBE7DD; color: var(--coral-ink); font-weight: 700; font-size: 15px; text-align: center; animation: pop .45s var(--ease); }
.summary .btn { margin-top: 14px; }
.fine { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; }

.request, .sent { margin-top: 24px; padding: 30px; }
.request[hidden], .sent[hidden] { display: none; }
.request { animation: rise .5s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } }
.request h3, .sent h3 { font-size: 36px; }
.request-recap { margin-top: 6px; color: var(--muted); }
.request-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.field { display: block; }
.field > span { display: block; margin: 0 0 6px 4px; font-size: 13px; font-weight: 600; color: var(--muted); }
.field small { font-weight: 500; }
.field-wide { grid-column: 1 / -1; }
.field textarea { resize: vertical; min-height: 90px; }
.form-error { min-height: 1.4em; margin-top: 12px; color: var(--coral-ink); font-weight: 600; font-size: 15px; }
.request-actions { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

.sent { text-align: center; animation: rise .6s var(--ease) both; }
.sent:focus { outline: none; }
.sent-illu { width: 140px; margin: 0 auto 10px; }
.sent-boat { animation: rock 2.4s ease-in-out infinite alternate; transform-origin: 60px 56px; }
@keyframes rock { from { transform: rotate(-4deg) translateX(-4px); } to { transform: rotate(4deg) translateX(4px); } }
.sent-wave { stroke-dasharray: 8 6; animation: ripple 4s linear infinite; }
.sent p { max-width: 34em; margin: 12px auto 0; color: var(--muted); }
.sent .btn { margin-top: 18px; }

/* ---------- Autour de nous ---------- */
.around { padding: 100px 0; background: var(--night); color: var(--linen); }
.around .kicker { color: var(--sun); }
.around h2 em { color: var(--sun); }
.around-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.around-col { padding: 26px; border-radius: var(--radius); background: rgba(246, 241, 232, .05); box-shadow: inset 0 0 0 1px rgba(246, 241, 232, .12); transition: transform .45s var(--ease), background-color .3s ease; }
.around-col:hover { transform: var(--lift); background: rgba(246, 241, 232, .08); }
.around-mode { font: italic 400 30px/1 var(--serif); color: var(--sun); }
.around-mode small { font: 400 14px var(--sans); color: var(--muted-night); }
.around-list { margin: 18px 0 0; padding: 0; list-style: none; counter-reset: stop; }
.around-list li { position: relative; display: flex; justify-content: space-between; gap: 16px; padding: 12px 0 12px 22px; border-top: 1px dashed rgba(246, 241, 232, .18); }
.around-list li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 8px; height: 8px; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--sun); }
.around-list strong { font-weight: 600; }
.around-list span { flex: none; color: var(--muted-night); font-size: 14px; }
.around-note { margin-top: 28px; color: var(--muted-night); }

/* ---------- Infos ---------- */
.infos { padding: 100px 0; }
.faq { margin-top: 36px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 48px 22px 0; font: 400 26px/1.2 var(--serif); cursor: pointer; list-style: none; transition: color .2s ease; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; width: 32px; height: 32px; margin-top: -16px; display: grid; place-items: center; border-radius: 50%; background: var(--card); box-shadow: inset 0 0 0 1px var(--line); font: 400 22px/1 var(--sans); color: var(--tide); transition: transform .3s var(--ease), background-color .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--tide); color: #fff; }
.faq summary:hover { color: var(--tide); }
.faq details p { max-width: 46em; padding: 0 0 24px; color: var(--muted); }
.faq details[open] p { animation: rise .35s var(--ease); }
.legal-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; padding: 0; list-style: none; }
.legal-facts li { padding: 8px 14px; border-radius: 999px; background: var(--card); box-shadow: inset 0 0 0 1px var(--line); font-size: 14px; }
.legal-facts small { color: var(--muted); }
.mono { font-family: ui-monospace, Consolas, monospace; }

/* ---------- Pied de page ---------- */
.foot { padding: 60px 0; background: var(--night); color: var(--muted-night); font-size: 15px; border-top: 1px solid rgba(246, 241, 232, .1); }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 32px; }
.brand-name-foot { margin-bottom: 12px; color: var(--linen); font-size: 30px; }
.brand-name-foot em { color: var(--sun); }
.foot a { color: var(--linen); }
.foot-small { margin-top: 6px; font-size: 13px; }
.foot-credit a { color: var(--sun); font-weight: 600; text-decoration: none; }
.foot-credit a:hover { text-decoration: underline; }

/* ---------- Apparitions au défilement ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease), box-shadow .45s var(--ease), background-color .3s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal.is-visible:hover { transform: var(--lift); }

/* ---------- Barre mobile ---------- */
.sticky-book { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav { display: none; }
  .top-cta { margin-left: auto; }
  .room-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .direct-grid, .breakfast-grid { grid-template-columns: 1fr; gap: 28px; }
  .around-grid { grid-template-columns: 1fr; }
  .quick { grid-template-columns: 1fr 1fr 1fr; }
  .q-btn { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .demo-long { display: none; }
  .top-inner { min-height: 64px; gap: 12px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 19px; }
  .brand-name em { display: block; }
  .top-cta { padding: 10px 10px 10px 16px; font-size: 15px; }
  .hero { min-height: 0; }
  .hero-copy { order: 1; padding: 36px 0 0; }
  .scene { position: relative; order: 2; height: 340px; margin-top: -60px; }
  .hero-lead { font-size: 17px; }
  .hero-direct { font-size: 15px; }
  .quick { grid-template-columns: 1fr 1fr; margin-top: -48px; }
  .q-field:first-child { grid-column: 1 / -1; }
  .direct { padding-top: 80px; }
  .direct-list li { grid-template-columns: 1fr; gap: 6px; }
  .room-grid { grid-template-columns: 1fr; }
  .room h3 { font-size: 34px; }
  .rooms, .booking, .breakfast, .around, .infos { padding: 76px 0; }
  .cal-card { padding: 16px 12px; }
  .cal-months { grid-template-columns: 1fr; }
  .cal-month + .cal-month { display: none; }
  .day { font-size: 14px; border-radius: 8px; }
  .summary, .request, .sent { padding: 22px 18px; }
  .request-grid { grid-template-columns: 1fr; }
  .request-actions { flex-direction: column-reverse; }
  .request-actions .btn { width: 100%; }
  .faq summary { font-size: 22px; }
  .foot { padding-bottom: 110px; }
  .foot-grid { grid-template-columns: 1fr; }
  .sticky-book { display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 55; transition: transform .35s var(--ease), opacity .3s ease; }
  .sticky-book .btn { box-shadow: 0 16px 30px -10px rgba(28, 42, 51, .6); }
  .sticky-book.is-away { transform: translateY(140%); opacity: 0; pointer-events: none; }
}

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .bird { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}
