/* =========================================================
   Hôtel Le Saint Germain — Refonte 2026
   Palette : neutres chauds, camel, terracotta, sauge
   Typo : Raleway (titres + corps)
   ========================================================= */

:root {
  /* Couleurs de marque */
  --cream: #f4efe6;
  --cream-deep: #ebe3d6;
  --camel: #c6a784;
  --camel-deep: #a9885f;
  --terracotta: #90503a; /* variante texte, contraste AA sur crème */
  --terracotta-warm: #a5624a; /* usage décoratif uniquement */
  --sage: #7c8471;
  --ink: #2a2723;
  --ink-soft: #4d4740;

  /* Tokens sémantiques (mode jour) */
  --bg: var(--cream);
  --bg-alt: #faf7f1;
  --bg-deep: var(--cream-deep);
  --surface: #fffdf9;
  --fg: var(--ink);
  --fg-muted: #5c554c;
  --fg-faint: #6b6355;
  --line: rgba(42, 39, 35, 0.14);
  --line-soft: rgba(42, 39, 35, 0.08);
  --accent: var(--terracotta);
  --accent-2: var(--sage);
  --btn-bg: var(--ink);
  --btn-fg: #fdfbf7;
  --img-filter: saturate(0.84) contrast(1.03) sepia(0.05);

  /* Typo */
  --font-display: "Raleway", Arial, sans-serif;
  --font-body: "Raleway", Arial, sans-serif;

  --step--1: clamp(0.8rem, 0.78rem + 0.1vw, 0.875rem);
  --step-0: clamp(1rem, 0.96rem + 0.18vw, 1.0625rem);
  --step-1: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  --step-3: clamp(2rem, 1.5rem + 2.4vw, 3.4rem);
  --step-4: clamp(2.6rem, 1.4rem + 6vw, 6rem);

  /* Rythme */
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section-y: clamp(4.5rem, 9vw, 9.5rem);
  --maxw: 1420px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Mode nuit */
html[data-theme="night"] {
  --bg: #201e1b;
  --bg-alt: #262320;
  --bg-deep: #2c2925;
  --surface: #2a2723;
  --fg: #f2ece2;
  --fg-muted: #cec5b8;
  --fg-faint: #b0a698;
  --line: rgba(244, 239, 230, 0.18);
  --line-soft: rgba(244, 239, 230, 0.1);
  --accent: #d98a6d;
  --accent-2: #9aa48c;
  --btn-bg: var(--camel);
  --btn-fg: #241f1a;
  --img-filter: saturate(0.78) contrast(1.02) brightness(0.88) sepia(0.06);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}
p { margin: 0 0 1.1em; }
::selection { background: var(--camel); color: #241f1a; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--ink); color: #fff; padding: 0.7rem 1.1rem; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ---------- Utilitaires ---------- */
.shell {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--fg-faint);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 1px;
  background: var(--camel-deep);
  flex: none;
}
.lede { font-size: var(--step-1); line-height: 1.55; color: var(--fg-muted); }
/* Aucun italique sur le site : la classe est conservée pour compatibilité, mais neutralisée. */
.serif-i { font-style: normal; font-family: inherit; font-weight: 500; }
.figure { overflow: hidden; background: var(--bg-deep); }
.figure img {
  width: 100%; height: 100%; object-fit: cover;
  filter: var(--img-filter);
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}
.figure--zoom:hover img { transform: scale(1.035); }
.ratio-43 { aspect-ratio: 4 / 3; }
.ratio-34 { aspect-ratio: 3 / 4; }
.ratio-11 { aspect-ratio: 1 / 1; }
.ratio-54 { aspect-ratio: 5 / 4; }

/* ---------- Boutons / liens ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: 999px;
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { background: var(--terracotta); color: #fffdf9; transform: translateY(-2px); }
html[data-theme="night"] .btn:hover { background: var(--camel); color: #241f1a; }
.btn--ghost {
  background: transparent; color: var(--fg);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--light { background: rgba(255, 253, 249, 0.94); color: var(--ink); }
.btn--light:hover { background: #fff; color: var(--terracotta); }
.footer a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.footer .social a, .footer .footer__base a { text-decoration: none; }
.footer .footer__base a { text-decoration: underline; text-underline-offset: 3px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), gap 0.3s var(--ease);
}
.link-arrow svg { width: 14px; height: 8px; transition: transform 0.35s var(--ease); }
.link-arrow:hover { color: var(--accent); border-color: var(--accent); gap: 0.85rem; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; gap: clamp(0.6rem, 2vw, 1.5rem);
  padding: 1.05rem var(--gutter);
  /* V12+ : réserve la place du bouton rond fixe (≤200px + marge) sur desktop uniquement */
  padding-right: calc(var(--gutter) + 220px);
  color: #fdfbf7;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease),
    box-shadow 0.45s var(--ease), padding 0.45s var(--ease);
}
.header::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(26, 23, 20, 0.55), rgba(26, 23, 20, 0));
  opacity: 1; transition: opacity 0.4s var(--ease);
}
.header.is-solid {
  background: var(--bg); color: var(--fg);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 0.7rem;
}
.header.is-solid::after { opacity: 0; }
.header.is-hidden { transform: translateY(-100%); }
.header { transition-property: background-color, color, box-shadow, padding, transform; }

.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand__logo {
  height: 64px; width: auto; display: block;
  /* Le logo officiel est noir sur fond transparent : on l'inverse
     tant que le header est posé sur le visuel sombre du hero. */
  filter: brightness(0) invert(1);
  transition: filter 0.45s var(--ease);
}
.header.is-solid .brand__logo { filter: none; }
html[data-theme="night"] .header.is-solid .brand__logo { filter: brightness(0) invert(1); }
@media (max-width: 720px) { .brand__logo { height: 50px; } }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.nav__link {
  font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 500;
  position: relative; padding-block: 0.3rem;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }

.header__tools { display: flex; align-items: center; gap: 0.9rem; }

/* FR/EN déplacé au tout début du header (avant le logo) */
.header .lang { order: -1; margin-right: 0.9rem; }
.lang {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 500;
  line-height: 1; padding-block: 0.3rem;
}
.lang a { opacity: 0.55; transition: opacity 0.3s var(--ease); }
.lang a:hover { opacity: 1; }
.lang [aria-current="true"] { opacity: 1; }
.lang__sep { opacity: 0.4; }

.icon-btn {
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid currentColor; border-radius: 999px; opacity: 0.75;
  transition: opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}
.icon-btn:hover { opacity: 1; background: rgba(198, 167, 132, 0.18); }
.icon-btn svg { width: 15px; height: 15px; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="night"] .theme-toggle .icon-moon { display: block; }
html[data-theme="night"] .theme-toggle .icon-sun { display: none; }

.burger { display: none; align-items: center; gap: 0.55rem; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.burger__lines { display: grid; gap: 4px; width: 20px; }
.burger__lines span { height: 1px; background: currentColor; transition: transform 0.3s var(--ease); }

/* ---------- Menu overlay ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  color: var(--fg);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.overlay.is-open { opacity: 1; visibility: visible; }
.overlay__close {
  position: absolute; top: 1.1rem; right: var(--gutter); z-index: 2;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.overlay__main {
  padding: clamp(5rem, 12vh, 9rem) var(--gutter) 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.overlay__list li { border-top: 1px solid var(--line-soft); }
.overlay__list li:last-child { border-bottom: 1px solid var(--line-soft); }
.overlay__list a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: clamp(0.6rem, 1.6vh, 1.15rem) 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  transition: color 0.35s var(--ease), padding-left 0.4s var(--ease);
}
.overlay__list a:hover { color: var(--accent); padding-left: 0.7rem; }
.overlay__list .idx {
  font-family: var(--font-body); font-size: 0.6875rem;
  letter-spacing: 0.14em; color: var(--fg-faint);
}
.overlay__meta {
  margin-top: clamp(1.6rem, 4vh, 3rem);
  display: flex; flex-wrap: wrap; gap: 1.2rem 2.6rem;
  font-size: 0.85rem; color: var(--fg-muted);
}
.overlay__meta a:hover { color: var(--accent); }
.overlay__theme {
  display: none; align-items: center; gap: 0.55rem;
  margin-top: 1.8rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
}
@media (max-width: 640px) { .overlay__theme { display: inline-flex; } }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.overlay__aside { position: relative; overflow: hidden; }
.overlay__aside img { width: 100%; height: 100%; object-fit: cover; filter: var(--img-filter); }
.overlay__aside figcaption {
  position: absolute; left: 1.6rem; bottom: 1.6rem;
  color: #fdfbf7; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.72) contrast(1.05) sepia(0.12) brightness(0.96); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(24, 21, 18, 0.82) 0%, rgba(24, 21, 18, 0.34) 42%, rgba(24, 21, 18, 0.18) 70%, rgba(24, 21, 18, 0.42) 100%),
    linear-gradient(to right, rgba(24, 21, 18, 0.42), rgba(24, 21, 18, 0) 62%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  padding-bottom: clamp(3.2rem, 7vh, 5.5rem);
  padding-top: 8rem;
  color: #fdfbf7;
}
.hero__kicker {
  font-size: 0.6875rem; letter-spacing: 0.28em; text-transform: uppercase;
  margin: 0 0 1.5rem; color: rgba(253, 251, 247, 0.82);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero__kicker::before { content: ""; width: 2.4rem; height: 1px; background: var(--camel); }
.hero__title {
  font-size: clamp(2.7rem, 8vw, 5.9rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
  max-width: 16ch;
}
.hero__title-em { font-weight: 700; }
.hero__sub {
  font-size: clamp(0.75rem, 1.05vw, 1rem);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(253, 251, 247, 0.92);
  margin: 0 0 2.4rem;
  max-width: 52ch;
}
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.6rem;
  margin: 0 0 2rem; max-width: 46rem;
}
.hero__chip {
  font-size: 0.68rem; letter-spacing: 0.11em; text-transform: uppercase; font-weight: 500;
  color: #fdfbf7; padding: 0.45rem 0.85rem;
  border: 1px solid rgba(253, 251, 247, 0.35); border-radius: 999px;
  background: rgba(24, 21, 18, 0.28); backdrop-filter: blur(3px);
}
.hero__chip--star {
  background: var(--terracotta-warm); border-color: var(--terracotta-warm);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.hero__chip--star::before { content: "★"; font-size: 0.72rem; line-height: 1; }
@media (max-width: 640px) {
  .hero__chips { gap: 0.4rem; margin-bottom: 1.5rem; }
  .hero__chip { font-size: 0.6rem; padding: 0.35rem 0.65rem; letter-spacing: 0.08em; }
}

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 1.8rem; }
.hero__discover {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: #fdfbf7;
}
.hero__discover .circle {
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid rgba(253, 251, 247, 0.5);
  display: grid; place-items: center;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.hero__discover .circle svg { width: 11px; height: 16px; }
.hero__discover:hover .circle { background: rgba(253, 251, 247, 0.16); border-color: #fdfbf7; }
.hero__discover:hover .circle svg { animation: nudge 0.9s var(--ease) infinite; }
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* V8 : le badge terracotta « Direct » a été supprimé.
   Seul subsiste le bouton rond noir .book-badge, désormais fixe en haut à droite. */
@keyframes badge-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ---------- Section générique ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); }
.section__head { max-width: 46rem; margin-bottom: clamp(2.4rem, 5vw, 4.2rem); }
.section__title { font-size: var(--step-3); }
.rule { height: 1px; background: var(--line-soft); border: 0; margin: 0; }

/* ---------- L'esprit du lieu ---------- */
.spirit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.spirit__media { position: relative; }
.spirit__media .figure { aspect-ratio: 4 / 5; }
.spirit__tag {
  position: absolute; right: -1.5rem; bottom: 2.2rem;
  background: var(--surface); color: var(--fg);
  border: 1px solid var(--line-soft);
  padding: 1rem 1.3rem; max-width: 12.5rem;
  font-size: 0.72rem; letter-spacing: 0.06em; line-height: 1.5;
}
.spirit__tag strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.2rem; }
.spirit__body p:first-of-type { font-size: var(--step-1); line-height: 1.55; }
.spirit__title { font-size: var(--step-3); margin-bottom: 1.6rem; }
.facts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem; margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--line-soft);
}
.facts dt { font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; line-height: 1; margin-bottom: 0.45rem; color: var(--fg); }
.facts dd { margin: 0; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-faint); line-height: 1.4; }

/* ---------- Chambres ---------- */
.rooms { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.6rem); }
.room__figure { aspect-ratio: 3 / 4; margin-bottom: 1.4rem; }
.room__name { font-size: var(--step-2); margin-bottom: 0.6rem; }
.room__meta { font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 0.9rem; }
.room__desc { color: var(--fg-muted); margin-bottom: 1.2rem; max-width: 32ch; }

/* ---------- Bar & salons (blocs alternés) ---------- */
.duo { display: grid; gap: clamp(2.5rem, 6vw, 5rem); }
.duo__row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(1.6rem, 5vw, 4.5rem); }
.duo__row--flip .duo__media { order: 2; }
.duo__media .figure { aspect-ratio: 5 / 4; }
.duo__title { font-size: var(--step-2); margin-bottom: 1.1rem; }
.duo__text { color: var(--fg-muted); max-width: 38ch; }
.duo__body { max-width: 30rem; }

/* ---------- Salons professionnels ---------- */
.events { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2rem); }
.event {
  background: var(--surface); border: 1px solid var(--line-soft);
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.event:hover { transform: translateY(-4px); border-color: var(--camel); }
.event__date { font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.event__name { font-size: var(--step-2); }
.event__place { font-size: 0.8125rem; color: var(--fg-faint); margin: 0; }
.event__cta { margin-top: auto; padding-top: 1.2rem; }
/* ---------- Carrousel salons ---------- */
.events-carousel { position: relative; margin-top: 3rem; }
.events-carousel__track {
  display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-left: 1.5rem; padding: 1rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--camel-deep) transparent;
}
.events-carousel__track::-webkit-scrollbar { height: 6px; }
.events-carousel__track::-webkit-scrollbar-thumb { background: var(--camel-deep); border-radius: 999px; }
.event-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: var(--surface); border-radius: 8px; padding: 1.75rem 1.5rem;
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 0.7rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); border-color: var(--camel); }
.event-card__logo { height: 60px; display: flex; align-items: center; }
.event-card__logo img {
  max-height: 50px; max-width: 160px; width: auto; height: auto;
  filter: none; object-fit: contain;
}
.event-card__logo--text {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-muted); font-weight: 600;
  padding: 0.5rem 0.8rem; border: 1px solid var(--line);
  border-radius: 2px; line-height: 1.15;
}
html[data-theme="night"] .event-card__logo img { background: #fdfbf7; padding: 4px 6px; border-radius: 3px; }
.event-card__date {
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin: 0;
}
.event-card__name { font-size: 1.5rem; font-weight: 600; margin: 0.2rem 0 0.3rem; }
.event-card__place { color: var(--fg-muted); margin: 0 0 0.8rem; font-size: 0.95rem; }
.event-card .link-arrow { margin-top: auto; align-self: flex-start; }
.events-carousel__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--bg); color: var(--fg); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
  z-index: 2;
}
.events-carousel__nav svg { width: 20px; height: 20px; }
.events-carousel__nav--prev { left: -22px; }
.events-carousel__nav--next { right: -22px; }
.events-carousel__nav:hover { background: var(--fg); color: var(--bg); }
@media (max-width: 1080px) {
  .events-carousel__nav--prev { left: 0; }
  .events-carousel__nav--next { right: 0; }
}
@media (max-width: 720px) {
  .events-carousel__nav { display: none; }
  .event-card { flex: 0 0 82%; }
}

/* ---------- Nos services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin-top: 3rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; gap: 2rem; } }
.service { padding: 1.5rem 0; }
.service--feature {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--camel-deep);
  border-radius: 16px;
  padding: 2.1rem 1.9rem 1.9rem;
  box-shadow: 0 14px 40px rgba(42, 39, 35, 0.06);
}
.service--feature p { max-width: 38ch; }
.service__flag {
  display: block; width: fit-content; margin-bottom: 1.1rem;
  font-size: 0.625rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  color: #fdfbf7; background: var(--terracotta);
  padding: 0.35rem 0.75rem; border-radius: 999px;
}
html[data-theme="night"] .service__flag { background: var(--camel); color: #241f1a; }
.service--feature .service__icon { margin-bottom: 1rem; }
.service__icon { display: block; width: 40px; height: 40px; color: var(--accent); margin-bottom: 1.2rem; }
.service h3 { font-size: 1.4rem; margin: 0 0 0.7rem; font-weight: 600; }
.service p { color: var(--fg-muted); line-height: 1.6; margin: 0; max-width: 34ch; }

/* ---------- Widget avis Customer Alliance ---------- */
#avis .section__head { text-align: center; }
#avis .section__head .eyebrow { justify-content: center; }
.ca-widget { padding: 0.5rem 0 0; display: flex; justify-content: center; }
.ca-widget iframe { max-width: 100%; border: 0; }
/* Le widget Customer Alliance ancre ses iframes en absolu dans #ca-widget-container. */
#ca-widget-container { position: relative; width: 118px; min-height: 186px; }
@media (max-width: 720px) { #ca-widget-container { width: 96px; min-height: 96px; } }

/* Widget CA sticky bas-droite permanent */
.ca-widget-fixed {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  pointer-events: auto;
}
.ca-widget-fixed #ca-widget-container { width: 118px; min-height: 118px; }
@media (max-width: 720px) {
  .ca-widget-fixed { right: 10px; bottom: 10px; }
  .ca-widget-fixed #ca-widget-container { width: 92px; min-height: 92px; }
}

/* CTA row (bouton centré sous un titre de section) */
.cta-row { display: flex; justify-content: center; margin-top: 2rem; }

.events__note { margin-top: 2.2rem; font-size: 0.8125rem; color: var(--fg-muted); }
.events__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.events__note a:hover { text-decoration-thickness: 2px; }

/* ---------- Aux portes de Paris ---------- */
.locate { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.map-card { position: relative; border: 1px solid var(--line-soft); background: var(--surface); }
.map-card svg { display: block; width: 100%; height: auto; }
.poi { border-top: 1px solid var(--line-soft); }
.poi li {
  display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 1rem;
  padding: 1.05rem 0; border-bottom: 1px solid var(--line-soft);
}
.poi__name { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: -0.01em; }
.poi__note { display: block; font-family: var(--font-body); font-size: 0.78rem; color: var(--fg-faint); letter-spacing: 0.02em; margin-top: 0.2rem; }
.poi__time { display: flex; flex-direction: column; gap: 0.25rem; text-align: right; align-items: flex-end; }
.poi__mode {
  font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--fg); background: var(--bg-deep); padding: 0.28rem 0.65rem;
  border-radius: 999px; white-space: nowrap;
}
.poi__mode + .poi__mode { color: var(--fg-muted); font-size: 0.74rem; background: transparent; border: 1px solid var(--line-soft); }
.locate__addr { margin-top: 2rem; font-size: 0.9rem; color: var(--fg-muted); }

/* ---------- Bande CTA ---------- */
.cta-band { background: var(--ink); color: #f4efe6; padding-block: clamp(3.5rem, 7vw, 6rem); }
html[data-theme="night"] .cta-band { background: #17150f; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { font-size: var(--step-3); max-width: 22ch; font-weight: 600; }
.cta-band p { color: rgba(244, 239, 230, 0.72); max-width: 34ch; margin: 1rem 0 0; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); padding-block: clamp(3.5rem, 7vw, 6rem) 2rem; border-top: 1px solid var(--line-soft); }
.footer__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.footer__title { font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-faint); margin: 0 0 1.2rem; font-family: var(--font-body); font-weight: 500; }
.footer address { font-style: normal; line-height: 1.8; font-size: 0.9375rem; color: var(--fg-muted); }
.footer a:hover { color: var(--accent); }
.footer__list li { margin-bottom: 0.6rem; font-size: 0.9375rem; color: var(--fg-muted); }
.footer__base {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; align-items: center;
  font-size: 0.75rem; color: var(--fg-faint);
}
.footer__base ul { display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; }
.social { display: flex; gap: 0.7rem; }
.social a {
  width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 999px;
  display: grid; place-items: center; transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social a:hover { background: var(--camel); border-color: var(--camel); color: #241f1a; }
.social svg { width: 15px; height: 15px; }

/* ---------- Barre événement sticky (badge qui bouge au scroll) ---------- */
.eventbar {
  position: fixed; z-index: 80; left: 50%; bottom: 1.1rem;
  transform: translate(-50%, 160%);
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--ink); color: #f4efe6;
  padding: 0.6rem 0.7rem 0.6rem 1.2rem; border-radius: 999px;
  font-size: 0.75rem; letter-spacing: 0.06em;
  box-shadow: 0 10px 40px rgba(26, 23, 20, 0.28);
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
  max-width: calc(100vw - 2rem);
}
html[data-theme="night"] .eventbar { background: var(--camel); color: #241f1a; }
.eventbar.is-visible { transform: translate(-50%, 0); }
.eventbar__dot { width: 6px; height: 6px; border-radius: 999px; background: var(--camel); flex: none; }
html[data-theme="night"] .eventbar__dot { background: #241f1a; }
.eventbar__txt { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.eventbar .btn { padding: 0.5rem 1.05rem; background: rgba(244, 239, 230, 0.14); color: inherit; font-size: 0.6875rem; }
.eventbar .btn:hover { background: var(--camel); color: #241f1a; transform: none; }
html[data-theme="night"] .eventbar .btn { background: rgba(36, 31, 26, 0.16); }
html[data-theme="night"] .eventbar .btn:hover { background: #241f1a; color: var(--camel); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.09s; }
.reveal[data-d="2"] { transition-delay: 0.18s; }
.reveal[data-d="3"] { transition-delay: 0.27s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .overlay { grid-template-columns: 1fr; }
  .overlay__aside { display: none; }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}
@media (max-width: 900px) {
  .spirit, .locate, .duo__row { grid-template-columns: 1fr; }
  .duo__row--flip .duo__media { order: 0; }
  .rooms { grid-template-columns: 1fr 1fr; }
  .events { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .spirit__tag { position: static; margin-top: 1.2rem; max-width: none; right: auto; }
  .duo__body, .duo__text { max-width: none; }
}
@media (max-width: 640px) {
  .rooms { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  :root { --gutter: 1.1rem; }
  .brand__logo { height: 46px; }
  /* Header mobile : FR/EN à gauche, logo parfaitement centré, burger à droite */
  .header {
    justify-content: space-between;
    gap: 0.5rem;
    padding-right: var(--gutter);
  }
  .header .lang {
    order: -1;
    margin-right: 0;
    flex: 0 0 auto;
    min-width: 56px;
  }
  .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    flex: 0 0 auto;
  }
  .header__tools {
    margin-left: auto;
    gap: 0.7rem;
    align-items: center;
    flex: 0 0 auto;
    min-width: 56px;
    justify-content: flex-end;
  }
  .header .theme-toggle { display: none; }
  .lang { font-size: 0.7rem; letter-spacing: 0.1em; gap: 0.35rem; }
  .burger {
    width: 38px; height: 38px;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0; gap: 0;
    flex: 0 0 auto;
  }
  .burger__lines { width: 16px; }
  .hero__inner { padding-bottom: 2.6rem; padding-top: 7rem; }
  .hero__title { max-width: none; }
  .facts { grid-template-columns: 1fr; gap: 1.1rem; text-align: left; }
  .facts > div { display: flex; align-items: baseline; gap: 0.9rem; }
  .facts dt { font-size: 1.5rem; margin-bottom: 0; }
  .eventbar { left: 1rem; right: 1rem; transform: translate(0, 160%); max-width: none; }
  .eventbar.is-visible { transform: translate(0, 0); }
}

/* ---------- Accessibilité motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .book-badge__ring { animation: none !important; transform: none !important; }
}

/* ---------- À table, tout près (restaurants) ---------- */
.resto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.1rem, 2vw, 1.6rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 1180px) {
  .resto-grid { grid-template-columns: repeat(3, 1fr); }
}
.resto-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.2vw, 1.9rem) clamp(1.35rem, 2vw, 1.7rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-style: normal;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.resto-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(42, 39, 35, 0.09);
  border-color: var(--camel);
}
html[data-theme="night"] .resto-card:hover { box-shadow: 0 14px 38px rgba(0, 0, 0, 0.4); }

.resto-card__head { display: flex; flex-direction: column; gap: 0.4rem; }
.resto-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--fg);
}
.resto-card__star {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.resto-card__type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0;
  line-height: 1.5;
}

.resto-card__info { margin: 0; display: flex; flex-direction: column; }
.resto-card__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.22rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line-soft);
}
.resto-card__row:last-child { padding-bottom: 0; }
.resto-card__info dt {
  font-size: 0.7rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0;
}
.resto-card__info dd {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--fg);
  margin: 0;
}
.resto-card__info dd a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.05rem;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.resto-card__info dd a:hover { border-color: var(--accent); }
.resto-card__info dd a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (min-width: 560px) {
  .resto-card__row { grid-template-columns: 5.5rem 1fr; gap: 0 1rem; align-items: baseline; }
  .resto-card__info dt { padding-top: 0.12rem; }
}
@media (max-width: 560px) {
  .resto-grid { grid-template-columns: 1fr; }
}

/* ---------- V8 · Bouton réservation unique : badge noir à texte rotatif, fixe haut droite ---------- */
.book-badge {
  position: fixed; top: 76px; right: 24px; z-index: 100;
  display: grid; place-items: center;
  width: clamp(170px, 13vw, 200px); aspect-ratio: 1;
  color: #fdfbf7; text-decoration: none;
  filter: drop-shadow(0 12px 30px rgba(17, 17, 17, 0.45));
}
.book-badge__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.book-badge__ring { transform-origin: 50% 50%; animation: badge-spin 22s linear infinite; }
.book-badge__core {
  position: relative; z-index: 1;
  width: 78%; aspect-ratio: 1; border-radius: 999px;
  background: #111; color: #fdfbf7;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.4em;
  text-align: center; padding: 0 0.6em;
  transition: background-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.book-badge__title {
  font-family: var(--font-display, Raleway), Raleway, Arial, sans-serif;
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  line-height: 1.15;
}
.book-badge__sub {
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  line-height: 1.25; opacity: 0.85;
}
.book-badge:hover .book-badge__core { background: var(--terracotta); transform: scale(1.04); }
.book-badge:focus-visible { outline: 2px solid #fdfbf7; outline-offset: 4px; border-radius: 999px; }
html[data-theme="night"] .book-badge:focus-visible { outline-color: #fdfbf7; }
/* Fond du texte tournant : écrit en couleur claire (contraste sur fond photo) */
.book-badge__ring text { fill: #fdfbf7; }
/* Masqué quand le menu plein écran est ouvert */
body.menu-open .book-badge { opacity: 0; pointer-events: none; transition: opacity 0.25s var(--ease); }
@media (max-width: 900px) {
  .book-badge { width: 148px; top: 84px; right: 18px; }
  .book-badge__title { font-size: 0.78rem; }
  .book-badge__sub { font-size: 0.54rem; letter-spacing: 0.1em; }
}
@media (max-width: 640px) {
  .book-badge { top: 74px; right: 12px; width: 118px; }
  .book-badge__title { font-size: 0.65rem; letter-spacing: 0.06em; }
  .book-badge__sub { font-size: 0.48rem; letter-spacing: 0.08em; }
}
@media (max-width: 360px) {
  .book-badge { width: 98px; }
  .book-badge__title { font-size: 0.55rem; }
  .book-badge__sub { display: none; }
}

/* ---------- Chips équipements des chambres ---------- */
.room__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 1.15rem; padding: 0; list-style: none; }
.room__chips li {
  font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.62rem; border: 1px solid var(--line); border-radius: 999px;
  color: var(--fg-muted);
}

/* ---------- V7 · Diaporama de fond du hero ---------- */
.hero__slides { position: absolute; inset: 0; overflow: hidden; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: saturate(0.72) contrast(1.05) sepia(0.12) brightness(0.96);
  opacity: 0;
  transition: opacity 1400ms var(--ease);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }

/* ---------- V7 · Carrousel "prochains événements" superposé au hero ---------- */
.hero-evt {
  position: absolute; z-index: 4;
  /* Desktop : colonne de droite, en bas (le hero est aligné à gauche :
     un placement centré recouvrirait h1/chips). */
  right: var(--gutter); left: auto;
  bottom: clamp(3.2rem, 7vh, 5.5rem);
  width: min(360px, 32vw); max-width: 500px;
  font-family: var(--font-display, Raleway), Raleway, Arial, sans-serif;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border-radius: 4px;
  padding: 24px 24px 18px;
  box-shadow: 0 18px 50px rgba(20, 17, 14, 0.25);
  color: #fdfbf7;
  text-align: center;
}
.hero-evt__eyebrow {
  margin: 0 0 14px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
  color: #fff; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.hero-evt__viewport { position: relative; min-height: 132px; overflow: hidden; }
.hero-evt-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-decoration: none; color: #fdfbf7;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(40px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease), visibility 650ms var(--ease);
}
.hero-evt-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(0); }
.hero-evt-slide.is-leaving { opacity: 0; transform: translateX(-40px); visibility: visible; }
.hero-evt-slide img {
  height: 74px; width: auto; max-width: 78%; object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 3px; padding: 7px 12px;
}
.hero-evt-slide__name {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero-evt-slide__date {
  display: block; margin-top: 3px;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(253, 251, 247, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero-evt-slide:hover .hero-evt-slide__name { text-decoration: underline; text-underline-offset: 3px; }
.hero-evt__dots { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.hero-evt__dot {
  width: 7px; height: 7px; padding: 0; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent; cursor: pointer;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero-evt__dot[aria-current="true"] { background: #fdfbf7; transform: scale(1.15); }
.hero-evt__dot:focus-visible { outline: 2px solid #fdfbf7; outline-offset: 3px; }

/* Tablette : la carte remonte en haut du hero, centrée (le contenu du hero
   occupe toute la largeur en bas à ces tailles). */
@media (max-width: 1100px) {
  .hero-evt {
    left: 50%; right: auto; transform: translateX(-50%);
    /* V8 : décalé sous le bouton rond fixe (top 20px + ~110px) */
    top: 8.6rem; bottom: auto;
    width: 90%; max-width: 420px;
    padding: 12px 16px 9px;
  }
  .hero-evt__eyebrow { margin-bottom: 8px; }
  .hero-evt__viewport { min-height: 50px; }
  .hero-evt-slide { flex-direction: row; gap: 14px; text-align: left; }
  .hero-evt-slide img { height: 46px; max-width: 44%; padding: 4px 8px; }
  .hero-evt__dots { margin-top: 8px; }
}
/* Mobile : le carrousel devient un bandeau compact plein-largeur en bas du hero,
   sous les chips et juste au-dessus du bouton "Découvrir". Aucun contenu du hero
   n'est masqué et le bandeau apporte un vrai contexte plutôt qu'une superposition
   flottante en plein milieu de l'image. */
@media (max-width: 640px) {
  .hero-evt {
    position: absolute;
    left: 1rem; right: 1rem; transform: none;
    top: auto; bottom: 1.2rem;
    width: auto; max-width: none;
    padding: 9px 14px 8px;
    background: rgba(20, 17, 14, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 28px rgba(20, 17, 14, 0.25);
  }
  .hero-evt__eyebrow { font-size: 9px; letter-spacing: 2px; margin-bottom: 6px; }
  .hero-evt__viewport { min-height: 40px; }
  .hero-evt-slide { flex-direction: row; gap: 10px; text-align: left; justify-content: flex-start; }
  .hero-evt-slide img { height: 34px; max-width: 40%; padding: 3px 6px; }
  .hero-evt-slide__name { font-size: 0.75rem; }
  .hero-evt-slide__date { font-size: 0.6rem; letter-spacing: 0.1em; margin-top: 1px; }
  .hero-evt__dots { margin-top: 6px; gap: 6px; }
  .hero-evt__dot { width: 6px; height: 6px; }
  /* Réserve la place du bandeau événements en bas du hero */
  .hero__inner { padding-bottom: 6.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide, .hero-evt-slide { transition-duration: 0.1s !important; }
  .hero__slide.is-active, .hero-evt-slide.is-active { opacity: 1; }
}


/* =========================================================
   V9 — Fiches restaurants
   ========================================================= */

/* Cartes liste allégées (home) */
.resto-card--link {
  text-decoration: none;
  color: inherit;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 148px;
}
.resto-card--link:hover,
.resto-card--link:focus-visible {
  transform: translateY(-3px) scale(1.012);
  border-color: var(--camel-deep);
}
.resto-card--link .resto-card__head { display: flex; flex-direction: column; gap: 0.4rem; }
.resto-card__more {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  transition: opacity 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}
.resto-card--link:hover .resto-card__more { opacity: 1; letter-spacing: 0.2em; }

/* Header toujours lisible sur les fiches (pas de hero photo sombre) */
body.page-resto .header { color: var(--fg); background: var(--bg); box-shadow: 0 1px 0 var(--line-soft); }
body.page-resto .header::after { opacity: 0; }
body.page-resto .brand__logo { filter: none; }
html[data-theme="night"] body.page-resto .brand__logo { filter: brightness(0) invert(1); }

/* Bouton flottant navigation entre sections */
.scroll-nav {
  position: fixed;
  left: 1.2rem;
  bottom: 1.4rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.scroll-nav.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-nav__btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: var(--bg);
  color: var(--fg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.scroll-nav__btn:hover { transform: translateY(-1px); background: var(--surface); border-color: var(--line); }
.scroll-nav__btn svg { width: 12px; height: 18px; }
html[data-theme="night"] .scroll-nav__btn { background: rgba(20, 18, 15, 0.9); border-color: rgba(255,255,255,0.14); color: #f2ede0; box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
html[data-theme="night"] .scroll-nav__btn:hover { background: rgba(28, 25, 21, 1); border-color: rgba(255,255,255,0.22); }
@media (max-width: 720px) {
  .scroll-nav { left: 0.7rem; bottom: 5.5rem; gap: 0.3rem; }
  .scroll-nav__btn { width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-nav { transition: opacity 0.15s linear; transform: none; }
  .scroll-nav.is-visible { transform: none; }
}

/* Pages légales */
.shell--narrow { max-width: 780px; }
.legal-shell { padding-top: clamp(6rem, 12vh, 9rem); }
.legal-shell h2 { margin-top: 2.4rem; margin-bottom: 0.9rem; font-size: 1.3rem; font-weight: 600; letter-spacing: 0; }
.legal-shell p { margin: 0 0 1rem; line-height: 1.7; color: var(--fg); }
.legal-shell .legal-list { padding-left: 1.2rem; margin: 0 0 1.2rem; line-height: 1.8; }
.legal-shell .legal-list li { margin-bottom: 0.3rem; }
.legal-shell a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal-shell a:hover { text-decoration-thickness: 2px; }
.legal-shell .btn, .legal-shell .btn:hover, .legal-shell .resto-back, .legal-shell .resto-back:hover { text-decoration: none; }
.legal-shell .btn { color: var(--btn-fg); }

/* Hero fiche */
.resto-detail__hero {
  background:
    radial-gradient(120% 140% at 88% 0%, var(--rd-3, var(--cream-deep)) 0%, transparent 62%),
    linear-gradient(160deg, var(--rd-2, var(--bg-alt)) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--line-soft);
  padding-block: clamp(6.5rem, 11vw, 9rem) clamp(2.6rem, 5vw, 4rem);
}
html[data-theme="night"] .resto-detail__hero {
  background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-alt) 100%);
}
.resto-detail__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-3);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0.7rem 0 0;
  color: var(--fg);
}
.resto-detail__star {
  margin: 0.7rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.resto-detail__sub {
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* Bouton retour */
.resto-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg-muted);
  padding-bottom: 0.25rem;
  transition: color 0.3s var(--ease);
}
.resto-back:hover { color: var(--accent); }
.resto-back--bottom { margin-top: 1.6rem; }
.resto-detail__hero .resto-back { margin-bottom: 1.9rem; }
.resto-detail__hero .eyebrow { margin-top: 0; }

/* Bandeau disclaimer */
.resto-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  padding: clamp(1.15rem, 2.2vw, 1.6rem) clamp(1.2rem, 2.4vw, 1.9rem);
  background: #fdf6e6;
  border: 1px solid rgba(169, 136, 95, 0.35);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
}
html[data-theme="night"] .resto-disclaimer {
  background: rgba(198, 167, 132, 0.12);
  border-color: rgba(244, 239, 230, 0.16);
  border-left-color: var(--accent);
}
.resto-disclaimer__icon { font-size: 1.4rem; line-height: 1.1; color: var(--accent); }
.resto-disclaimer p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--fg);
}

/* Grille logo + infos */
.resto-detail__grid {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: start;
}
@media (min-width: 860px) {
  .resto-detail__grid { grid-template-columns: 220px 1fr; }
}
.resto-detail__logo {
  width: 200px;
  height: 200px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(42, 39, 35, 0.1);
}
.resto-detail__h2 { font-size: var(--step-2); margin: 0 0 0.4rem; }
.resto-detail__dl { margin: 1.2rem 0 0; }
.resto-detail__row {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
}
@media (min-width: 700px) {
  .resto-detail__row { grid-template-columns: 190px 1fr; gap: 1.2rem; align-items: baseline; }
}
.resto-detail__row:last-child { border-bottom: 1px solid var(--line-soft); }
.resto-detail__dl dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0;
}
.resto-detail__dl dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
}
.resto-detail__dl dd a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Galerie */
.resto-detail__gallery {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}
.resto-gallery__placeholder {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  overflow: hidden;
}
.resto-gallery__placeholder svg { width: 44px; height: 44px; opacity: 0.75; }
.resto-gallery__placeholder figcaption {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}
html[data-theme="night"] .resto-gallery__placeholder { filter: saturate(1) brightness(0.8) sepia(0.08); }
.resto-gallery__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface-2);
}
.resto-gallery__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.resto-gallery__photo figcaption { display: none; }
