/* =========================================================
   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: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --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(3.5rem, 8vw, 6.5rem) 0; }

.eyebrow {
  font-family: var(--ff-texte);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--dore);
  margin: 0 0 .8rem;
}

.section__title {
  font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.9rem);
  color: var(--blanc-casse);
}
.section__title::after {
  content: ""; display: block; width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--dore), transparent);
  margin-top: 1rem; border-radius: 3px;
}
.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: .95rem; font-weight: 500; 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: 50px; font-weight: 600 !important;
  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 {
  text-transform: uppercase; letter-spacing: .3em; font-size: .8rem; font-weight: 600;
  color: var(--dore); margin: 0 0 1rem;
}
.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.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.6rem; border-radius: 50px; font-weight: 600; font-size: .98rem;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.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: .5rem 1rem; border-radius: 50px;
  background: rgba(200,155,60,.1); border: 1px solid rgba(200,155,60,.3);
  color: var(--dore-clair); font-size: .85rem; font-weight: 500; letter-spacing: .02em;
}

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

.card {
  position: relative; padding: 2rem 1.7rem; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s;
  background: radial-gradient(120% 100% at 0 0, rgba(200,155,60,.12), transparent 60%);
}
.card:hover { transform: translateY(-6px); border-color: rgba(200,155,60,.45); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(145deg, rgba(200,155,60,.2), rgba(155,107,67,.18));
  border: 1px solid rgba(200,155,60,.3); margin-bottom: 1.2rem;
}
.card__icon svg { width: 28px; height: 28px; 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);
}

/* =========================================================
   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; }
.reviews .section__title::after { margin-inline: auto; }

.slider { overflow: hidden; max-width: 760px; margin: 0 auto; }
.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); }

/* =========================================================
   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 stylisé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__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; }

/* ---------- FAB appel (mobile) ---------- */
.call-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: none; place-items: center;
  background: linear-gradient(135deg, var(--dore-clair), var(--dore)); color: var(--noir);
  box-shadow: 0 12px 30px rgba(200,155,60,.45); animation: fab 2.5s ease-in-out infinite;
}
.call-fab svg { width: 26px; height: 26px; fill: currentColor; }
@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; }
  .call-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; }
}

/* ---------- 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; }
}
