/* ============================================================
   Mille & Un Jeux — milleetunjeux.com
   Site statique — CreaWeb Conseil
   ============================================================ */

:root {
  --bg: #0c0e14;
  --surface: #141824;
  --surface-2: #1b2032;
  --border: #262c40;
  --text: #ece9e2;
  --muted: #a6a3b2;
  --gold: #e0a83f;
  --gold-light: #f2c46a;
  --gold-dark: #b9852a;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --font-display: "Cinzel", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Bandeau annonce ---------- */
.topbar {
  background: linear-gradient(90deg, #16325c, #1c4b8f);
  color: #fff;
  text-align: center;
  font-size: .88rem;
  padding: 7px 16px;
  letter-spacing: .02em;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 14, 20, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }

.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  transition: color .2s;
}
.nav a:hover, .nav a.active { color: var(--gold); }

.nav .dropdown { position: relative; }
.nav .dropdown > a::after { content: " ▾"; font-size: .7em; }
.nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -14px;
  /* Pont invisible qui comble l'espace entre le lien et le menu,
     sinon le survol se coupe en le traversant et le menu se referme. */
  --bridge: 12px;
  min-width: 210px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  display: none;
  box-shadow: var(--shadow);
}
.nav .dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: .92rem;
}
.nav .dropdown-menu::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--bridge));
  left: 0;
  right: 0;
  height: var(--bridge);
}
.nav .dropdown-menu .menu-cat {
  display: block;
  padding: 10px 14px 4px;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--gold);
}
.nav .dropdown-menu .menu-cat:not(:first-of-type) {
  border-top: 1px solid var(--border);
  margin-top: 6px;
}
.nav .dropdown-menu a:hover { background: rgba(224, 168, 63, .1); }
.nav .dropdown:hover .dropdown-menu,
.nav .dropdown:focus-within .dropdown-menu { display: block; }

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #14100a;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: .97rem;
  font-family: var(--font-body);
  letter-spacing: .01em;
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.btn:hover {
  color: #14100a;
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 10px 28px rgba(224, 168, 63, .35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { color: var(--gold-light); box-shadow: none; }
.header .btn { padding: 10px 22px; }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% -20%, #1d2438 0%, var(--bg) 65%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero > .container { position: relative; }

.hero .kicker,
.kicker {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold); }

.hero p.lead {
  max-width: 640px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--surface); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Cartes salles ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 26px;
}

.room-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  color: var(--text);
}
.room-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
  color: var(--text);
}

.room-card .room-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
/* Affiches d'escape games : texte incrusté en haut et en bas → format
   portrait natif (945×1400), jamais recadré. */
.room-card .room-img-poster { aspect-ratio: 885 / 1340; }
/* Pages de carte de restaurant exportées en portrait (778×1100). */
.room-card .room-img-menu { position: relative; aspect-ratio: 778 / 1100; overflow: hidden; }
.room-card .room-img img,
.room-card .room-img-menu img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.room-card:hover .room-img img,
.room-card:hover .room-img-menu img { transform: scale(1.06); }

.room-card .room-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.room-card h3 { font-size: 1.15rem; }
.room-card .room-tagline {
  color: var(--muted);
  font-size: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.room-card h3 a.card-link { color: var(--text); }
.room-card a.card-link::after { content: ""; position: absolute; inset: 0; }
.room-card .room-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.room-card .room-cta {
  color: var(--gold);
  font-weight: 700;
  font-size: .92rem;
}
.room-card:hover .room-cta { color: var(--gold-light); }
.btn-book {
  position: relative;
  z-index: 2;
  padding: 9px 20px;
  font-size: .87rem;
}

.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(224, 168, 63, .12);
  border: 1px solid rgba(224, 168, 63, .3);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-new {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--gold);
  color: #14100a;
  border: none;
}

/* Badge de difficulté : cadenas allumés / éteints sur une échelle de 5. */
.badge-diff { cursor: help; }
.badge-diff .locks { display: inline-flex; gap: 1px; letter-spacing: -1px; }
.badge-diff .lock { font-size: .72rem; line-height: 1; }
.badge-diff .lock.off { opacity: .25; filter: grayscale(1); }

/* Accessibilité PMR : vert, pour se distinguer des badges dorés. */
.badge-pmr {
  background: rgba(90, 200, 140, .14);
  border-color: rgba(90, 200, 140, .38);
  color: #7fd8a8;
  cursor: help;
}

/* Escape mixte : violet, signale un format différent. */
.badge-mixte {
  background: rgba(160, 130, 230, .15);
  border-color: rgba(160, 130, 230, .4);
  color: #b9a4f0;
  cursor: help;
}

/* Texte réservé aux lecteurs d'écran. */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Features (principe escape game) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.feature {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.feature .icon { font-size: 1.9rem; margin-bottom: 14px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ---------- Split (texte + image) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  /* Les photos sources sont majoritairement en portrait : on cadre en carré
     pour garder les sections compactes, sans déformer (object-fit). */
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.split h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 14px; }
.split ul { color: var(--muted); margin: 0 0 14px 20px; }
.split li { margin-bottom: 6px; }

/* ---------- Page salle ---------- */
.room-hero { padding: 64px 0 40px; }
.room-hero .split { gap: 48px; align-items: start; }
.room-hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin: 12px 0 16px; }
.room-hero .badges { margin-bottom: 20px; }
.room-hero .room-poster img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  /* Affiches portrait : jamais recadrées (texte incrusté), largeur bornée. */
  aspect-ratio: auto;
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
  object-fit: unset;
}
.room-hero .lead { color: var(--muted); font-size: 1.08rem; }

.room-story p { color: var(--muted); margin-bottom: 16px; }
.room-story strong { color: var(--text); }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.price-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  padding-bottom: 14px;
  color: var(--text);
}
.price-table th, .price-table td {
  padding: 13px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  background: rgba(224, 168, 63, .1);
  color: var(--gold-light);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { font-weight: 800; color: var(--gold-light); }

.info-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 26px 0;
  color: var(--muted);
  font-size: .95rem;
}
.info-box strong { color: var(--text); }

/* Avertissement en haut de fiche salle (ex. densité d'énigmes de La Coupe des Sorciers). */
.room-highlight {
  margin: 22px 0 0;
  padding: 16px 20px;
  background: rgba(224, 168, 63, .1);
  border: 1px solid rgba(224, 168, 63, .32);
  border-radius: 12px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
}
.room-highlight strong { color: var(--gold-light); }

/* ---------- Filtre des scénarios ---------- */
.filters {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 40px;
}
.filters-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px 20px;
}
.filters .filter { display: flex; flex-direction: column; gap: 6px; margin: 0; }
.filters label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.filters select {
  min-width: 168px;
  padding: 9px 12px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: .92rem;
  cursor: pointer;
}
.filters select:focus-visible,
.filters input:focus-visible,
.filters button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.filters .filter-check { flex-direction: row; align-items: center; gap: 8px; padding-bottom: 9px; }
.filters .filter-check label { text-transform: none; font-size: .92rem; color: var(--text); cursor: pointer; }
.filters .filter-check input { width: 17px; height: 17px; accent-color: var(--gold); cursor: pointer; }
.filter-reset {
  margin-left: auto;
  padding: 9px 16px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  font-size: .88rem;
  cursor: pointer;
}
.filter-reset:hover { color: var(--gold-light); border-color: var(--gold); }
.filters-count {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .88rem;
  color: var(--muted);
}
.filters-count #f-count { color: var(--gold-light); font-weight: 800; }
.filters-empty { text-align: center; color: var(--muted); padding: 40px 0; }
.linklike {
  background: none; border: none; padding: 0;
  color: var(--gold-light); font: inherit;
  text-decoration: underline; cursor: pointer;
}
.room-card[hidden], .room-group[hidden] { display: none !important; }

/* ---------- Familles de scénarios ---------- */
.room-group + .room-group { margin-top: 64px; }
.group-head {
  padding-bottom: 18px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.group-head h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 1.5rem;
}
.group-icon { font-size: 1.2em; }
.group-count {
  font-family: var(--font-body, inherit);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(224, 168, 63, .12);
  border: 1px solid rgba(224, 168, 63, .3);
  padding: 3px 10px;
  border-radius: 999px;
}
.group-head p { color: var(--muted); margin-top: 10px; max-width: 720px; }
.room-group .concept-box { margin-bottom: 30px; }

@media (max-width: 700px) {
  .filters { padding: 16px; }
  .filters-row { gap: 12px; }
  .filters .filter { width: 100%; }
  .filters select { width: 100%; min-width: 0; }
  .filter-reset { margin-left: 0; width: 100%; }
}

/* Encart d'explication du concept « escape mixte ». */
.section-concept { padding-top: 0; }
.concept-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 32px;
  background: linear-gradient(180deg, rgba(160, 130, 230, .12), rgba(160, 130, 230, .04));
  border: 1px solid rgba(160, 130, 230, .32);
  border-radius: var(--radius);
}
.concept-box h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #cdbcf7;
}
.concept-box p { color: var(--muted); margin-bottom: 12px; line-height: 1.7; }
.concept-box p:last-child { margin-bottom: 0; }
.concept-box strong { color: var(--text); }
.concept-box .concept-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(160, 130, 230, .25);
  font-size: .92rem;
  font-style: italic;
}
@media (max-width: 700px) {
  .concept-box { padding: 22px 20px; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Bandeau CTA ---------- */
.cta-band {
  background:
    linear-gradient(rgba(12, 14, 20, .82), rgba(12, 14, 20, .82)),
    var(--cta-img, var(--surface-2));
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 90px 24px;
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-band p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; }

/* ---------- Carte du restaurant ---------- */
.carte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.carte-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Widget résa ---------- */
.widget-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.trust-line {
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
  margin-top: 14px;
}
.hero-sm { padding: 56px 0 36px; }
.section-sm { padding: 40px 0 84px; }

/* ---------- Barre mobile ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(12, 14, 20, .96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mobile-bar .btn { flex: 1; text-align: center; padding: 12px 10px; }

/* ---------- Formulaires ---------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}
.form .full { grid-column: 1 / -1; }
.form label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 7px;
}
.form input, .form select, .form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .96rem;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  border-color: transparent;
}
.form textarea { min-height: 130px; resize: vertical; }
.form fieldset { border: none; grid-column: 1 / -1; }
.form fieldset legend { font-weight: 700; font-size: .88rem; margin-bottom: 8px; }
.form .checks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.form .checks label { display: flex; align-items: center; gap: 8px; font-weight: 500; margin: 0; }
.form .checks input { width: auto; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: .85rem; }

/* ---------- Infos pratiques / contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.contact-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.contact-card p { color: var(--muted); font-size: .95rem; }
.contact-card a { font-weight: 700; }

.map-embed {
  border: 0;
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  filter: grayscale(.2);
}

/* ---------- Pages légales / texte ---------- */
.prose { max-width: 800px; margin: 0 auto; }
.prose h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 34px; }
.prose h2 { font-size: 1.35rem; margin: 38px 0 14px; color: var(--gold-light); }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose li { color: var(--muted); margin: 0 0 8px 20px; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.prose th, .prose td { border: 1px solid var(--border); padding: 10px 14px; color: var(--muted); text-align: left; }

/* ---------- Presse ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.press-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}
.press-card strong { display: block; color: var(--text); font-size: 1.05rem; margin-top: 6px; }

/* ---------- Footer ---------- */
.footer {
  background: #090b10;
  border-top: 1px solid var(--border);
  padding: 64px 0 30px;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer a { display: block; color: var(--muted); margin-bottom: 9px; }
.footer a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  margin-bottom: 0;
  transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.socials a:hover {
  color: #14100a;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer p { color: var(--muted); margin-bottom: 9px; }
.footer .logo img { height: 58px; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #6d6a78;
  font-size: .85rem;
}
.footer-bottom a { display: inline; color: #6d6a78; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 4px;
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav > a, .nav .dropdown > a { padding: 10px 0; width: 100%; }
  .nav .dropdown-menu {
    position: static;
    display: block;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: 0;
  }
  .burger { display: flex; }
  .header .btn { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
  .split, .room-hero .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-text { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form { grid-template-columns: 1fr; padding: 26px 20px; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .hero { padding: 76px 0 64px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Sous-titre du H1 : porte les mots-clés locaux sans casser l'accroche. */
.h1-sub {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body, inherit);
  font-size: .3em;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--muted);
  text-transform: none;
}
