/* ============================================================
   BG BARBERSHOP — Design System
   Dark premium · Noir profond / Argent · Bebas Neue + Manrope
   ============================================================ */

:root {
  --bg: #07080a;
  --bg-soft: #0b0c0f;
  --surface: #101114;
  --surface-2: #16171b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f6;
  --muted: #92959e;
  --silver: #c9ccd3;
  --silver-deep: #a7abb4;
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.75rem;
  --ease-lux: cubic-bezier(0.32, 0.72, 0, 1);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --header-h: 96px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--silver); color: #08090b; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* --- Atmosphère : grain + halo ------------------------------ */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.halo {
  position: absolute; pointer-events: none; z-index: 0;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 204, 211, 0.07) 0%, transparent 65%);
  filter: blur(40px);
}

/* --- Typographie -------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

h1.display { font-size: clamp(3.4rem, 9vw, 7.5rem); }
h2.display { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h3.display { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: 0.04em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.03);
}
.eyebrow::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--silver); box-shadow: 0 0 8px rgba(201, 204, 211, 0.9);
}

.lead { color: var(--muted); font-size: 1.05rem; max-width: 40rem; }

/* --- Boutons -------------------------------------------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.85rem;
  padding: 0.55rem 0.6rem 0.55rem 1.5rem;
  border-radius: 999px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.01em;
  cursor: pointer; border: none;
  transition: transform 0.6s var(--ease-lux), background 0.6s var(--ease-lux),
    border-color 0.6s var(--ease-lux), color 0.6s var(--ease-lux);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn .btn-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.15rem; height: 2.15rem; border-radius: 50%;
  transition: transform 0.6s var(--ease-lux);
}
.btn:hover .btn-ico { transform: translate(3px, -1px) scale(1.06); }
.btn .btn-ico svg { width: 14px; height: 14px; }

.btn-primary { background: #f5f5f6; color: #0a0b0d; }
.btn-primary:hover { background: #fff; }
.btn-primary .btn-ico { background: rgba(10, 11, 13, 0.08); }

/* Balayage lumineux périodique */
.btn-primary::after {
  content: ""; position: absolute; top: -40%; bottom: -40%; left: -30%;
  width: 30%; transform: skewX(-20deg) translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  filter: blur(14px); mix-blend-mode: screen;
  animation: shine 5.5s var(--ease-lux) infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 55% { transform: skewX(-20deg) translateX(-160%); }
  75%, 100% { transform: skewX(-20deg) translateX(680%); }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  padding: 0.7rem 1.5rem;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255,255,255,0.3); }

/* --- Header : pastille flottante ------------------------------ */
.site-header {
  position: fixed; top: 1.1rem; left: 50%; transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: 1.6rem;
  padding: 0.55rem 0.6rem 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(9, 10, 12, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.8);
  width: max-content; max-width: calc(100vw - 1.6rem);
  transition: box-shadow 0.6s var(--ease-lux);
}

.brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 1.35rem; }
.nav-links a {
  font-size: 0.86rem; font-weight: 600; color: var(--muted);
  transition: color 0.4s var(--ease-lux);
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }

.lang-switch {
  display: flex; align-items: center; gap: 0.15rem;
  border: 1px solid var(--line); border-radius: 999px; padding: 0.2rem;
}
.lang-switch a {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem; border-radius: 999px; color: var(--muted);
  transition: all 0.4s var(--ease-lux);
}
.lang-switch a.active { background: rgba(255,255,255,0.12); color: #fff; }
.lang-switch a:hover { color: #fff; }

/* Burger */
.burger {
  display: none; position: relative;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  cursor: pointer;
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 1.5px;
  background: #fff; border-radius: 2px;
  transition: transform 0.55s var(--ease-lux), opacity 0.3s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 24px; }
.burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.4rem;
  background: rgba(6, 7, 9, 0.92);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.55s var(--ease-lux);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a.mm-link {
  font-family: var(--font-display); font-size: 2.6rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--text);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux);
}
.mobile-menu.open a.mm-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open a.mm-link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a.mm-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a.mm-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a.mm-link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a.mm-link:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.open a.mm-link:nth-child(6) { transition-delay: 0.38s; }
.mobile-menu .mm-langs { display: flex; gap: 1rem; margin-top: 1rem;
  opacity: 0; transition: opacity 0.6s var(--ease-lux) 0.45s; }
.mobile-menu.open .mm-langs { opacity: 1; }
.mobile-menu .mm-langs a { color: var(--muted); font-weight: 700; letter-spacing: 0.15em; font-size: 0.8rem; }
.mobile-menu .mm-langs a.active { color: #fff; }

/* --- Hero ------------------------------------------------------ */
.hero {
  position: relative; min-height: min(100dvh, 1080px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--header-h) + 1.5rem) 1.5rem 3.2rem;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.55) brightness(0.6) contrast(1.05);
  transform: scale(1.06);
  animation: heroDrift 18s var(--ease-lux) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translateY(0); }
  to { transform: scale(1.12) translateY(-1.5%); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 30%, rgba(7, 8, 10, 0.72) 78%),
    linear-gradient(to bottom, rgba(7, 8, 10, 0.55), rgba(7, 8, 10, 0.15) 35%, rgba(7, 8, 10, 0.92) 88%, var(--bg));
}

.hero-inner {
  width: 100%; max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1.4rem;
}
.hero-inner .display { text-shadow: 0 0 60px rgba(255,255,255,0.12); }
.hero-inner .sub {
  font-size: clamp(1rem, 2vw, 1.25rem); color: #d7d8dc; font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; margin-top: 0.4rem; }

.hero-scroll {
  margin-top: 2.4rem; color: var(--muted); font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--silver), transparent);
  animation: scrollPulse 2.4s var(--ease-lux) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* --- Carte infos pratiques (sous le hero) ---------------------- */
.info-strip { position: relative; z-index: 2; margin-top: -1px; padding: 0 1.5rem; }
.info-card {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 2rem; align-items: center;
}
.info-item .info-label {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.45rem; font-weight: 700;
}
.info-item .info-value { font-size: 0.95rem; font-weight: 600; line-height: 1.5; }
.info-item .info-value a { border-bottom: 1px solid var(--line-strong); transition: border-color .4s; }
.info-item .info-value a:hover { border-color: #fff; }
.info-item .sub-link {
  display: inline-block; margin-top: 0.4rem; font-size: 0.8rem; color: var(--silver);
}

/* --- Enveloppe double (bezel) ---------------------------------- */
.bezel {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.45rem;
}
.bezel-core {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: calc(var(--radius-lg) - 0.45rem);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.07);
  padding: 2rem;
  height: 100%;
}

/* --- Sections --------------------------------------------------- */
.section { position: relative; padding: clamp(5.5rem, 10vw, 9rem) 1.5rem; overflow-x: clip; }
.section-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.section-head {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head.center { align-items: center; text-align: center; }

/* --- Services : onglets Coupe / Barbe / Combos -------------------- */
.svc-tabs {
  display: inline-flex; gap: 0.3rem;
  padding: 0.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  margin-bottom: 2.4rem;
}
.svc-tab {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  padding: 0.55rem 1.6rem; border-radius: 999px;
  transition: color 0.5s var(--ease-lux), background 0.5s var(--ease-lux),
    transform 0.5s var(--ease-lux);
}
.svc-tab:hover { color: #fff; }
.svc-tab:active { transform: scale(0.96); }
.svc-tab.active {
  background: #f5f5f6; color: #0a0b0d;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.8);
}

.svc-panel { display: none; }
.svc-panel.active { display: block; animation: panelIn 0.65s var(--ease-lux); }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.svc-panel .svc-card { animation: cardIn 0.7s var(--ease-lux) backwards; }
.svc-panel .svc-card:nth-child(2) { animation-delay: 0.07s; }
.svc-panel .svc-card:nth-child(3) { animation-delay: 0.14s; }
.svc-panel .svc-card:nth-child(4) { animation-delay: 0.21s; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(26px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.svc-card { transition: transform 0.7s var(--ease-lux); }
.svc-card:hover { transform: translateY(-4px); }
.svc-card .bezel-core { display: flex; flex-direction: column; gap: 0.8rem; padding: 1.6rem; }
.svc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.svc-name { font-weight: 800; font-size: 1.02rem; letter-spacing: 0.01em; }
.svc-price {
  font-family: var(--font-display); font-size: 1.7rem; line-height: 1;
  color: #fff; white-space: nowrap;
}
.svc-desc { color: var(--muted); font-size: 0.88rem; flex-grow: 1; }
.svc-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 0.4rem; }
.svc-time {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver-deep);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.svc-time svg { width: 13px; height: 13px; opacity: 0.7; }
.svc-choose {
  font-size: 0.8rem; font-weight: 700; color: var(--text);
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.95rem; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.04);
  transition: all 0.5s var(--ease-lux);
}
.svc-choose:hover { background: #f5f5f6; color: #0a0b0d; border-color: #f5f5f6; }
.svc-more { text-align: center; margin-top: 3rem; color: var(--muted); font-size: 0.92rem; }
.svc-more strong { color: var(--text); }

/* --- Galerie ------------------------------------------------------ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px; gap: 0.8rem;
}
.g-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 1.2s var(--ease-lux), filter 1.2s var(--ease-lux);
}
.g-item:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,8,10,0.35), transparent 45%);
  pointer-events: none;
}
.g-1 { grid-column: span 7; grid-row: span 2; }
.g-2 { grid-column: span 5; }
.g-3 { grid-column: span 5; }
.g-4 { grid-column: span 4; }
.g-5 { grid-column: span 4; }
.g-6 { grid-column: span 4; }

/* --- Équipe -------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.team-card .bezel-core {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.9rem; padding: 2.4rem 1.6rem;
}
.team-mono {
  width: 74px; height: 74px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.9rem; color: #0a0b0d;
  background: linear-gradient(140deg, #f5f5f6, #b9bcc4);
  box-shadow: 0 0 40px -8px rgba(201, 204, 211, 0.4);
}
.team-name { font-weight: 800; font-size: 1.1rem; }
.team-role { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* --- Avis ----------------------------------------------------------- */
.rating-banner {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  flex-wrap: wrap; margin-bottom: 2.6rem;
}
.rating-score { font-family: var(--font-display); font-size: 4rem; line-height: 1; }
.rating-meta { text-align: left; }
.rating-stars { color: var(--silver); letter-spacing: 0.3em; font-size: 0.9rem; }
.rating-count { color: var(--muted); font-size: 0.85rem; }

.marquee { overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 1rem; width: max-content;
  animation: marquee 42s linear infinite;
  padding: 0.5rem 0;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.review-card {
  width: 340px; flex-shrink: 0;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem;
}
.review-stars { color: var(--silver); font-size: 0.8rem; letter-spacing: 0.25em; }
.review-text { font-size: 0.92rem; color: #d3d4d9; font-style: italic; }
.review-src { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* --- FAQ ------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
  overflow: hidden;
  transition: border-color 0.5s var(--ease-lux), background 0.5s var(--ease-lux);
}
.faq-item[open] { border-color: var(--line-strong); background: rgba(255,255,255,0.045); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 700; font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 400; font-size: 1.1rem; color: var(--silver);
  transition: transform 0.5s var(--ease-lux);
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-body { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: 0.93rem; }

/* --- Localisation ------------------------------------------------------ */
.map-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1rem; align-items: stretch; }
.map-card .bezel-core { display: flex; flex-direction: column; gap: 1.6rem; justify-content: center; }
.map-frame { overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--line); min-height: 420px; }
.map-frame iframe {
  width: 100%; height: 100%; min-height: 420px; border: 0; display: block;
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.9);
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table td { padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--silver); font-weight: 600; }
.hours-table tr.closed td:last-child { color: var(--muted); font-weight: 400; }

/* --- CTA final ----------------------------------------------------------- */
.cta-final { text-align: center; }
.cta-final .bezel { max-width: 900px; margin: 0 auto; }
.cta-final .bezel-core {
  padding: clamp(3rem, 7vw, 5rem) 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  position: relative; overflow: hidden;
}
.cta-final .bezel-core::before {
  content: ""; position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 120%;
  background: radial-gradient(ellipse at top, rgba(201,204,211,0.09), transparent 60%);
  pointer-events: none;
}

/* --- Footer ---------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 4rem 1.5rem 2.5rem;
  background: var(--bg-soft);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; max-width: 260px; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--silver-deep); margin-bottom: 1rem; font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.88rem; transition: color 0.4s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.8rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.78rem;
}
.footer-bottom .langs a { color: var(--muted); margin-left: 0.8rem; }
.footer-bottom .langs a.active, .footer-bottom .langs a:hover { color: #fff; }

.ig-link { display: inline-flex; align-items: center; gap: 0.5rem; }
.ig-link svg { width: 16px; height: 16px; }

/* --- CTA réserver flottant ---------------------------------------------------
   N'apparaît que lorsque la section prestations ([data-cta-zone])
   est visible à l'écran — entrée/sortie animées.
   Desktop : pastille flottante en bas à droite.
   Mobile (≤768px) : barre sticky pleine largeur (voir media query). */
.mobile-cta {
  position: fixed; bottom: 1.6rem; right: 1.6rem; left: auto; z-index: 40;
  opacity: 0; pointer-events: none;
  transform: translateY(26px) scale(0.9);
  transition: opacity 0.45s var(--ease-lux),
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-cta.show {
  opacity: 1; pointer-events: auto;
  transform: translateY(0) scale(1);
}
.mobile-cta .btn {
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* --- Page Réservation --------------------------------------------------------- */
.booking-hero {
  padding: calc(var(--header-h) + 3rem) 1.5rem 2.5rem;
  text-align: center;
  position: relative;
}
.booking-hero .display { margin-top: 0.8rem; }
.booking-recap {
  max-width: 760px; margin: 1.8rem auto 0;
}
.booking-recap .bezel-core {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.2rem;
  padding: 1.4rem 2rem; text-align: left;
}
.booking-recap .info-label {
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 0.25rem;
}
.booking-recap .info-value { font-size: 0.9rem; font-weight: 600; }

.booking-widget { padding: 1rem 1.5rem 6rem; }
.booking-widget .widget-shell {
  max-width: 860px; margin: 0 auto;
}
.booking-widget .bezel-core { padding: clamp(1.2rem, 4vw, 2.5rem); }

.widget-note {
  text-align: center; color: var(--muted); font-size: 0.8rem;
  max-width: 560px; margin: 1.6rem auto 0;
}

/* Loader en attendant Planity */
.planity-loading {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 3rem 1rem; color: var(--muted); font-size: 0.9rem;
}
.planity-loading .spin {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--line-strong); border-top-color: #fff;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Bandeau de consentement cookies ---------------------------------------------- */
.consent-banner {
  position: fixed; bottom: 1.2rem; left: 1.2rem; z-index: 80;
  max-width: 400px;
  background: rgba(13, 14, 17, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.9);
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease-lux), transform 0.6s var(--ease-lux);
}
.consent-banner.show { opacity: 1; transform: translateY(0); }
.consent-banner p {
  font-size: 0.85rem; color: var(--muted); line-height: 1.55;
  margin-bottom: 0.9rem;
}
.consent-actions { display: flex; gap: 0.6rem; }
.consent-btn {
  flex: 1; cursor: pointer;
  padding: 0.6rem 1.1rem; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  transition: all 0.4s var(--ease-lux);
}
.consent-accept { background: #f5f5f6; color: #0a0b0d; border: none; }
.consent-accept:hover { background: #fff; }
.consent-refuse {
  background: rgba(255, 255, 255, 0.05); color: var(--text);
  border: 1px solid var(--line-strong);
}
.consent-refuse:hover { background: rgba(255, 255, 255, 0.1); }

@media (max-width: 768px) {
  .consent-banner { left: 0.8rem; right: 0.8rem; bottom: 0.8rem; max-width: none; }
}

/* --- Reveal au scroll ------------------------------------------------------------ */
/* Visible par défaut (fail-safe si JS/IO indisponible) ;
   la classe .pre n'est posée par JS que sur les éléments sous la ligne de flottaison */
[data-reveal] {
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
}
[data-reveal].pre { opacity: 0; transform: translateY(34px); }
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal="2"] { transition-delay: 0.1s; }
[data-reveal="3"] { transition-delay: 0.2s; }
[data-reveal="4"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --- Responsive -------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .info-card { grid-template-columns: 1fr 1fr; }
  .g-1 { grid-column: span 12; }
  .g-2, .g-3 { grid-column: span 6; }
  .g-4, .g-5, .g-6 { grid-column: span 4; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .site-header .lang-switch { display: none; }
  .burger { display: block; }
  .site-header { gap: 0.8rem; width: calc(100vw - 1.6rem); justify-content: space-between; }
  .site-header .btn { display: none; }

  .section { padding: 4.5rem 1rem; }
  .hero { padding: 0 1rem 6.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .info-card { grid-template-columns: 1fr; gap: 1.4rem; }
  .map-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 150px; }
  .g-2, .g-3, .g-4, .g-5, .g-6 { grid-column: span 12; }
  .g-2, .g-3 { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mobile-cta {
    bottom: 0; right: 0; left: 0;
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
    background: linear-gradient(to top, rgba(6,7,9,0.95), rgba(6,7,9,0.75));
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    transform: translateY(105%);
  }
  .mobile-cta.show { transform: translateY(0); }
  .mobile-cta .btn { width: 100%; justify-content: center; box-shadow: none; }
  .svc-tabs { width: 100%; justify-content: space-between; }
  .svc-tab { padding: 0.55rem 1rem; flex: 1; font-size: 1.05rem; }
  .booking-recap .bezel-core { flex-direction: column; gap: 1.1rem; }
  .marquee-track { animation-duration: 30s; }
  .review-card { width: 280px; }
}
