/* =========================================================
   L'Art du Barber — styles.css
   Palette, typographie, layout mobile-first
   ========================================================= */

:root {
  --noir: #121212;
  --noir-2: #1a1a1a;
  --noir-3: #222;
  --dore: #c89b3c;
  --dore-clair: #e0bd6a;
  --bois: #9b6b43;
  --blanc-casse: #f8f5f0;
  --gris: #b7b2a8;

  --ff-titre: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-texte: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.1rem, 4vw, 2rem);
  --radius: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-texte);
  color: var(--blanc-casse);
  background: var(--noir);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.05rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--ff-titre); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--dore); color: var(--noir); padding: .7rem 1.2rem; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--dore-clair); outline-offset: 3px; border-radius: 4px; }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--ff-texte);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--dore);
  margin: 0 0 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--dore); opacity: .8; }

.section__title {
  font-size: clamp(2rem, 1.3rem + 2.9vw, 3.25rem);
  line-height: 1.08; letter-spacing: -.015em;
  color: var(--blanc-casse);
}
.section__title::after {
  content: ""; display: block; width: 42px; height: 2px;
  background: var(--dore);
  margin-top: 1.1rem;
}
.section__head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section__head .section__title::after { margin-inline: 0; }
.section__lead { color: var(--gris); margin: .4rem 0 0; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.site-header.is-scrolled {
  background: rgba(18, 18, 18, .9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(200, 155, 60, .18);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(145deg, var(--dore), var(--bois));
  color: var(--noir); font-family: var(--ff-titre); font-weight: 700; font-size: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
}
.brand__name { font-family: var(--ff-titre); font-size: 1.18rem; letter-spacing: .02em; }

.nav__menu { display: flex; align-items: center; gap: 1.6rem; }
.nav__menu a { font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; color: var(--blanc-casse); position: relative; transition: color .25s; }
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--dore); transition: width .3s var(--ease);
}
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__menu a:hover { color: var(--dore-clair); }
.nav__cta {
  border: 1px solid var(--dore); color: var(--dore) !important;
  padding: .5rem 1rem; border-radius: 3px; font-weight: 600 !important;
  font-size: .85rem; letter-spacing: .04em;
  transition: background .25s, color .25s;
}
.nav__cta:hover { background: var(--dore); color: var(--noir) !important; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 9px;
}
.nav__toggle span { height: 2px; width: 100%; background: var(--blanc-casse); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -8% 0 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(13,12,11,.45), rgba(13,12,11,.65)),
    url("assets/img/salon.webp"),
    linear-gradient(160deg, #2a2118 0%, #161310 45%, #0d0c0b 100%);
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 2px, transparent 2px 7px);
  mix-blend-mode: overlay;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18,18,18,.55) 0%, rgba(18,18,18,.35) 40%, rgba(18,18,18,.92) 100%);
}

.hero__content { padding-top: 80px; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  text-transform: uppercase; letter-spacing: .3em; font-size: .78rem; font-weight: 600;
  color: var(--dore); margin: 0 0 1.1rem;
}
.hero__eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--dore); }
.hero__title {
  font-size: clamp(3rem, 1.6rem + 8vw, 6.5rem);
  line-height: .98; margin: 0; letter-spacing: -.01em;
  background: linear-gradient(180deg, #fff 0%, var(--blanc-casse) 40%, var(--dore-clair) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero__subtitle {
  font-family: var(--ff-titre); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem, .9rem + 1.2vw, 1.7rem);
  color: var(--blanc-casse); margin: 1rem 0 1.1rem;
}
.hero__pitch {
  color: var(--blanc-casse); font-weight: 500; margin: 0 0 1rem;
  font-size: clamp(.95rem, .9rem + .3vw, 1.1rem);
}
.status-pill {
  display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1.8rem;
  padding: .5rem 1rem; border-radius: 50px; font-size: .9rem; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(4px); color: var(--blanc-casse);
}
.status-pill__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--dore); flex: 0 0 auto;
  box-shadow: 0 0 0 0 currentColor;
}
.status-pill.is-open { color: #6fcf86; border-color: rgba(111,207,134,.4); background: rgba(111,207,134,.1); }
.status-pill.is-open .status-pill__dot { background: #6fcf86; animation: ping 2s var(--ease) infinite; }
.status-pill--sm { margin: 1rem 0 0; font-size: .82rem; padding: .4rem .85rem; }
.status-pill.is-closed { color: #d98a6a; border-color: rgba(217,138,106,.35); background: rgba(217,138,106,.1); }
.status-pill.is-closed .status-pill__dot { background: #d98a6a; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(111,207,134,.6) } 100% { box-shadow: 0 0 0 8px rgba(111,207,134,0) } }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(248,245,240,.5); border-radius: 14px;
  display: grid; justify-items: center;
}
.hero__scroll span {
  width: 4px; height: 8px; background: var(--dore); border-radius: 4px; margin-top: 7px;
  animation: scroll 1.6s var(--ease) infinite;
}
@keyframes scroll { 0% { transform: translateY(0); opacity: 1 } 70% { transform: translateY(12px); opacity: 0 } 100% { opacity: 0 } }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.7rem; border-radius: 3px; font-weight: 600;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .12em;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s;
}
.btn__ico { width: 19px; height: 19px; fill: currentColor; }
.btn--gold {
  background: linear-gradient(135deg, var(--dore-clair), var(--dore));
  color: var(--noir); box-shadow: 0 10px 30px rgba(200,155,60,.3);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(200,155,60,.45); }
.btn--ghost { border-color: rgba(248,245,240,.5); color: var(--blanc-casse); background: rgba(255,255,255,.03); }
.btn--ghost:hover { border-color: var(--dore); color: var(--dore-clair); transform: translateY(-3px); }

/* =========================================================
   PRÉSENTATION
   ========================================================= */
.presentation { background: linear-gradient(180deg, var(--noir) 0%, var(--noir-2) 100%); }
.presentation__grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.img-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(200,155,60,.2);
  background: linear-gradient(145deg, var(--bois), var(--noir-3));
  aspect-ratio: 4 / 5;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), inset 0 -60px 80px rgba(0,0,0,.4);
}

.presentation__text p { color: var(--gris); margin: 0 0 1.1rem; }
.presentation__text strong { color: var(--blanc-casse); font-weight: 600; }

.pillars { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.pillars li span {
  display: inline-block; padding: .45rem .9rem; border-radius: 3px;
  background: transparent; border: 1px solid rgba(200,155,60,.35);
  color: var(--dore-clair); font-size: .76rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--noir-2); }
.cards { display: grid; gap: 1.4rem; grid-template-columns: 1fr; counter-reset: card; }

.card {
  position: relative; padding: 2.4rem 2rem; border-radius: var(--radius);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .35s var(--ease), border-color .35s;
  counter-increment: card;
}
.card::after {
  content: counter(card, decimal-leading-zero);
  position: absolute; top: 1.6rem; right: 1.7rem;
  font-family: var(--ff-titre); font-size: 1.05rem; color: rgba(200,155,60,.4);
  letter-spacing: .05em;
}
.card:hover { transform: translateY(-4px); border-color: rgba(200,155,60,.4); }
.card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 6px;
  background: rgba(200,155,60,.08);
  border: 1px solid rgba(200,155,60,.22); margin-bottom: 1.2rem;
}
.card__icon svg { width: 26px; height: 26px; fill: var(--dore-clair); }
.card__title { font-size: 1.3rem; color: var(--blanc-casse); }
.card__text { color: var(--gris); margin: 0; font-size: .96rem; }

.services__more {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.2rem;
  justify-content: center;
}
.services__more li {
  padding: .45rem .95rem; border-radius: 50px; font-size: .82rem; color: var(--gris);
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.02);
}

/* =========================================================
   TARIFS
   ========================================================= */
.tarifs { background: linear-gradient(180deg, var(--noir-2), var(--noir)); }
.price-list {
  max-width: 640px; margin: 0 auto;
  border: 1px solid rgba(200,155,60,.2); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  padding: .6rem clamp(1rem, 3vw, 2rem); box-shadow: var(--shadow);
}
.price-item {
  display: flex; align-items: baseline; gap: .5rem;
  padding: 1rem 0; border-bottom: 1px dashed rgba(255,255,255,.1);
}
.price-item:last-child { border-bottom: 0; }
.price-item__name { font-size: 1.08rem; color: var(--blanc-casse); font-weight: 500; white-space: nowrap; }
.price-item__name small { color: var(--gris); font-weight: 400; font-size: .82rem; }
.price-item__dots { flex: 1 1 auto; border-bottom: 2px dotted rgba(200,155,60,.35); transform: translateY(-3px); min-width: 18px; }
.price-item__price {
  font-family: var(--ff-titre); font-size: 1.3rem; font-weight: 600; color: var(--dore-clair);
  white-space: nowrap;
}
.tarifs__cta { text-align: center; margin-top: 2rem; }

/* =========================================================
   GALERIE
   ========================================================= */
.galerie { background: linear-gradient(180deg, var(--noir-2), var(--noir)); }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; grid-auto-flow: dense; }
.gallery__item {
  margin: 0; border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(145deg, var(--noir-3), var(--bois)); aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.06);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: linear-gradient(180deg, transparent 40%, rgba(200,155,60,.18), rgba(18,18,18,.6));
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* =========================================================
   POURQUOI NOUS CHOISIR
   ========================================================= */
.why { background: var(--noir); }
.why__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.why__item {
  text-align: center; padding: 2.2rem 1.4rem; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  border: 1px solid rgba(255,255,255,.06); transition: transform .35s var(--ease), border-color .35s;
}
.why__item:hover { transform: translateY(-5px); border-color: rgba(200,155,60,.4); }
.why__icon {
  display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 1.2rem;
  border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(200,155,60,.25), rgba(155,107,67,.12));
  border: 1px solid rgba(200,155,60,.35);
}
.why__icon svg { width: 30px; height: 30px; fill: var(--dore-clair); }
.why__item h3 { font-size: 1.25rem; color: var(--blanc-casse); }
.why__item p { color: var(--gris); margin: 0; font-size: .94rem; }

/* =========================================================
   AVIS — SLIDER
   ========================================================= */
.reviews { background: linear-gradient(180deg, var(--noir), var(--noir-2)); }
.reviews .section__head { text-align: center; margin-inline: auto; }
.rating-badge {
  display: inline-flex; align-items: center; gap: .5rem; flex-wrap: wrap; justify-content: center;
  margin: .2rem 0 0; color: var(--gris); font-size: 1rem;
}
.rating-badge strong { color: var(--blanc-casse); font-size: 1.15rem; }
.rating-badge__stars { color: var(--dore); letter-spacing: .1em; font-size: 1.1rem; }
.reviews .section__title::after { margin-inline: auto; }

.slider { overflow: hidden; max-width: 760px; margin: 0 auto; }
.slider::before {
  content: "\201C"; display: block; text-align: center;
  font-family: var(--ff-titre); font-size: 5rem; line-height: .5;
  color: rgba(200,155,60,.35); margin-bottom: 1.2rem; height: 2.5rem;
}
.slider__track { display: flex; transition: transform .6s var(--ease); }
.review {
  flex: 0 0 100%; margin: 0; padding: .5rem clamp(.5rem, 3vw, 2rem); text-align: center;
}
.review__stars { color: var(--dore); font-size: 1.25rem; letter-spacing: .15em; margin-bottom: 1rem; }
.review p {
  font-family: var(--ff-titre); font-style: italic; font-size: clamp(1.15rem, .95rem + 1vw, 1.55rem);
  color: var(--blanc-casse); line-height: 1.5; margin: 0 0 1.3rem;
}
.review cite { font-style: normal; color: var(--dore-clair); font-weight: 600; font-family: var(--ff-texte); letter-spacing: .04em; }

.slider__controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.8rem; }
.slider__btn {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.04); border: 1px solid rgba(200,155,60,.35); color: var(--dore-clair);
  display: grid; place-items: center; transition: background .25s, transform .2s;
}
.slider__btn svg { width: 22px; height: 22px; }
.slider__btn:hover { background: var(--dore); color: var(--noir); transform: scale(1.06); }
.slider__dots { display: flex; gap: .55rem; }
.slider__dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
  background: rgba(248,245,240,.25); transition: background .25s, transform .25s;
}
.slider__dots button.is-active { background: var(--dore); transform: scale(1.3); }
.reviews__cta { text-align: center; margin-top: 1.8rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: linear-gradient(180deg, var(--noir), var(--noir-2)); }
.faq__wrap { max-width: 820px; }
.faq__list { display: grid; gap: .8rem; }
.faq__item {
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  background: rgba(255,255,255,.025); overflow: hidden;
  transition: border-color .3s;
}
.faq__item[open] { border-color: rgba(200,155,60,.4); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--ff-titre); font-size: 1.1rem; color: var(--blanc-casse);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: 0 0 auto; font-family: var(--ff-texte); font-weight: 400;
  font-size: 1.5rem; color: var(--dore); transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 1.4rem 1.25rem; color: var(--gris); }
.faq__answer p { margin: 0; }
.faq__answer a { color: var(--dore-clair); font-weight: 600; }

/* =========================================================
   INFOS PRATIQUES
   ========================================================= */
.infos { background: var(--noir-2); }
.infos__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }

.infos__list { display: grid; gap: 1.6rem; margin: 1.8rem 0; }
.infos__list li { display: flex; gap: 1rem; align-items: flex-start; }
.infos__ico {
  flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px;
  background: rgba(200,155,60,.12); border: 1px solid rgba(200,155,60,.3);
}
.infos__ico svg { width: 22px; height: 22px; fill: var(--dore-clair); }
.infos__list h3 { font-size: 1.1rem; margin: .1rem 0 .35rem; color: var(--blanc-casse); }
.infos__list address { font-style: normal; color: var(--gris); }
.infos__list a { color: var(--dore-clair); font-weight: 600; }
.infos__list a:hover { text-decoration: underline; }

.hours { border-collapse: collapse; width: 100%; max-width: 360px; }
.hours th, .hours td { text-align: left; padding: .28rem 0; font-weight: 400; color: var(--gris); font-size: .92rem; }
.hours th { color: var(--blanc-casse); font-weight: 500; padding-right: 1rem; white-space: nowrap; }
.hours--closed { color: var(--bois); font-style: italic; }

.infos__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }

/* ---------- Carte Google Maps ---------- */
.map-frame {
  width: 100%; min-height: 360px; height: 100%; border: 0; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid rgba(200,155,60,.25);
}
.map-frame__link {
  display: inline-block; margin-top: .8rem; color: var(--dore-clair);
  font-weight: 600; font-size: .9rem;
}
.map-frame__link:hover { text-decoration: underline; }

/* ---------- Carte stylisée (héritage, non utilisée) ---------- */
.map-card {
  position: relative; display: block; min-height: 320px; height: 100%;
  border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,155,60,.25);
  background:
    radial-gradient(80% 70% at 60% 40%, rgba(155,107,67,.3), transparent 60%),
    linear-gradient(160deg, #1d1a16, #0f0e0c);
  box-shadow: var(--shadow);
}
.map-card__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,155,60,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,155,60,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(70% 70% at 60% 45%, #000 40%, transparent 80%);
}
.map-card__pin {
  position: absolute; top: 42%; left: 60%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  background: var(--dore); box-shadow: 0 0 0 8px rgba(200,155,60,.2), 0 12px 30px rgba(0,0,0,.5);
  animation: pin 2.2s var(--ease) infinite;
}
.map-card__pin svg { width: 26px; height: 26px; fill: var(--noir); }
@keyframes pin { 0%,100% { transform: translate(-50%,-50%) } 50% { transform: translate(-50%,-62%) } }
.map-card__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.3rem;
  background: linear-gradient(transparent, rgba(18,18,18,.9)); color: var(--blanc-casse);
  font-weight: 600;
}
.map-card__label small { color: var(--dore-clair); font-weight: 500; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--noir); border-top: 1px solid rgba(200,155,60,.18); padding-top: clamp(3rem,6vw,4rem); }
.footer__grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; }
.brand--footer { margin-bottom: .8rem; }
.footer__tag { font-family: var(--ff-titre); font-style: italic; color: var(--dore-clair); margin: 0 0 .4rem; }
.footer__small { color: var(--gris); font-size: .9rem; margin: 0; }
.footer__col h4 { font-size: 1.05rem; color: var(--blanc-casse); margin-bottom: .9rem; }
.footer__col address { font-style: normal; color: var(--gris); line-height: 1.8; }
.footer__col address a { color: var(--dore-clair); font-weight: 600; }
.footer__hours { color: var(--gris); line-height: 1.9; margin: 0; }
.footer__hours-closed { color: var(--bois); font-style: italic; }
.footer__links li { margin-bottom: .5rem; }
.footer__links a { color: var(--gris); transition: color .2s; }
.footer__links a:hover { color: var(--dore-clair); }

.socials { display: flex; gap: .8rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(200,155,60,.3); background: rgba(255,255,255,.03); transition: all .25s;
}
.socials svg { width: 20px; height: 20px; fill: var(--dore-clair); }
.socials a:hover { background: var(--dore); transform: translateY(-3px); }
.socials a:hover svg { fill: var(--noir); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; padding-bottom: 2rem;
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: space-between;
}
.footer__bottom p { margin: 0; color: var(--gris); font-size: .82rem; }
.footer__legal { color: rgba(183,178,168,.65) !important; }

/* ---------- Boutons flottants (mobile) ---------- */
.fab {
  position: fixed; right: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center;
}
.fab svg { width: 27px; height: 27px; fill: currentColor; }
.call-fab {
  bottom: 18px; color: var(--noir);
  background: linear-gradient(135deg, var(--dore-clair), var(--dore));
  box-shadow: 0 12px 30px rgba(200,155,60,.45); animation: fab 2.5s ease-in-out infinite;
}
.fab--whatsapp {
  bottom: 84px; color: #fff; background: #25d366;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
}
@keyframes fab { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-5px) } }

/* =========================================================
   ANIMATIONS REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  .presentation__grid { grid-template-columns: .9fr 1.1fr; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(4, 1fr); }
  .infos__grid { grid-template-columns: 1.1fr .9fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Menu mobile ---------- */
@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .fab { display: grid; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.8rem;
    background: rgba(18,18,18,.97); backdrop-filter: blur(14px);
    padding: 2rem 2.2rem; transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,.5); border-left: 1px solid rgba(200,155,60,.2);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a { font-size: 1.15rem; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

/* =========================================================
   ANIMATIONS PREMIUM
   ========================================================= */

/* Barre de progression de défilement */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  background: linear-gradient(90deg, var(--bois), var(--dore), var(--dore-clair));
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
}

/* Entrée du hero en cascade */
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero__eyebrow { opacity: 0; animation: heroIn .7s var(--ease) .05s forwards; }
.hero__subtitle { opacity: 0; animation: heroIn .7s var(--ease) .30s forwards; }
.hero__pitch { opacity: 0; animation: heroIn .7s var(--ease) .42s forwards; }
.hero .status-pill { opacity: 0; animation: heroIn .7s var(--ease) .54s forwards; }
.hero__actions { opacity: 0; animation: heroIn .7s var(--ease) .66s forwards; }

/* Titre : entrée sobre, couleur unie */
.hero__title {
  opacity: 0;
  background: none; -webkit-background-clip: border-box; background-clip: border-box;
  color: var(--blanc-casse); -webkit-text-fill-color: var(--blanc-casse);
  animation: heroIn .8s var(--ease) .18s forwards;
}

/* Léger Ken Burns sur la photo du hero (compatible avec la parallaxe JS) */
.hero__bg { animation: kenburns 32s ease-in-out infinite alternate; }
@keyframes kenburns { from { background-position: 50% 42%; } to { background-position: 50% 60%; } }

/* Galerie cliquable */
.gallery__item img { cursor: zoom-in; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  background: rgba(10,9,8,.92); backdrop-filter: blur(6px); padding: 4vw;
  opacity: 0; transition: opacity .3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__img {
  max-width: 92vw; max-height: 88vh; border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6); border: 1px solid rgba(200,155,60,.3);
  transform: scale(.92); transition: transform .35s var(--ease);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; width: 48px; height: 48px;
  border: 0; border-radius: 50%; cursor: pointer; font-size: 1.8rem; line-height: 1;
  background: rgba(255,255,255,.08); color: var(--blanc-casse); border: 1px solid rgba(255,255,255,.2);
  transition: background .2s, transform .2s;
}
.lightbox__close:hover { background: var(--dore); color: var(--noir); transform: rotate(90deg); }

/* ---------- Préférences réduites ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__eyebrow, .hero__title, .hero__subtitle, .hero__pitch, .hero .status-pill, .hero__actions { opacity: 1; }
}
