/* =================================================================
   RAPHAEL COIFFEUR BARBIER — Paris 17ᵉ
   Design system : ui-ux-pro-max (éditorial luxe sombre + laiton)
   Typo : Bodoni Moda (titres) · Jost (textes)
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Couleurs sombres (sections charbon) */
  --ink:        #16130F;
  --ink-2:      #1E1A15;
  --ink-3:      #29231D;
  --ink-line:   rgba(244, 239, 232, 0.12);

  /* Couleurs claires (sections crème) */
  --cream:      #FAF8F4;
  --cream-2:    #F2ECE2;
  --paper-line: #E4DBCC;

  /* Accent laiton / or */
  --gold:       #C19A4F;   /* sur fond sombre */
  --gold-deep:  #8A6214;   /* sur fond clair (contraste AA 5.1:1) */
  --gold-soft:  #D8B884;   /* éclat doré clair */
  --gold-glow:  rgba(193, 154, 79, 0.35);

  /* Texte */
  --tl:    #F4EFE8;   /* texte clair sur sombre */
  --tl-mut:#B7AD9D;   /* texte clair atténué */
  --td:    #1C1813;   /* texte sombre sur clair */
  --td-mut:#6C6456;   /* texte sombre atténué */

  /* Typo */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Divers */
  --radius:   3px;
  --radius-lg:5px;
  --maxw:     1500px;
  --maxw-text:980px;
  --gutter:   clamp(1.25rem, 4.5vw, 5rem);
  --ease:     cubic-bezier(.22,.61,.36,1);
  --shadow:   0 18px 50px -18px rgba(0,0,0,.55);
  --shadow-sm:0 6px 22px -10px rgba(0,0,0,.45);
}

/* ---------- RESET ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--td);
  background: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--gold); color: var(--ink); }

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

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 2000;
  background: var(--gold); color: var(--ink); padding: .6rem 1rem; border-radius: var(--radius);
  font-size: .85rem; letter-spacing: .05em; transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- TYPO HELPERS ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: -.012em; font-optical-sizing: auto; }

.kicker {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .32em;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .9rem;
  margin-bottom: 1.4rem;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }
.kicker-center { justify-content: center; }
.kicker-center::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .7; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem,5vw,4rem); }
.section-title { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.section-intro { color: var(--td-mut); margin-top: 1rem; font-size: 1.05rem; }

/* sections sombres : couleurs du kicker/titres adaptées */
.prestations .kicker, .equipe .kicker, .avis .kicker, .final-cta .kicker { color: var(--gold); }
.prestations .section-title, .equipe .section-title, .avis .avis-num,
.prestations .section-intro, .equipe .section-intro, .final-cta h2, .final-cta .final-cta-sub { color: var(--tl); }
.prestations .section-intro { color: var(--tl-mut); }

/* ---------- BOUTONS ---------- */
.btn {
  --bg: var(--gold); --fg: var(--ink); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bd);
  font-family: var(--sans); font-weight: 500; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .14em;
  padding: .95rem 1.7rem; border-radius: var(--radius);
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm  { padding: .7rem 1.25rem; font-size: .75rem; }
.btn-lg  { padding: 1.1rem 2.2rem; font-size: .85rem; }
.btn-block { display: flex; width: 100%; }

.btn-gold    { --bg: var(--gold); --fg: #1A140B; box-shadow: 0 10px 30px -12px var(--gold-glow); }
.btn-gold:hover { --bg: var(--gold-soft); box-shadow: 0 16px 36px -12px var(--gold-glow); }
.btn-dark    { --bg: var(--ink); --fg: var(--cream); }
.btn-dark:hover { --bg: #000; }
.btn-outline { --bg: transparent; --fg: var(--tl); --bd: rgba(244,239,232,.4); }
.btn-outline:hover { --bg: var(--tl); --fg: var(--ink); --bd: var(--tl); }
.btn-ghost   { --bg: transparent; --fg: var(--td); --bd: var(--paper-line); }
.btn-ghost:hover { --bg: var(--ink); --fg: var(--cream); --bd: var(--ink); }

/* ---------- FOCUS ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible, iframe:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--radius);
}

/* ---------- GRAIN ---------- */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: .5;
  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.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: fixed; top: var(--visipeak-popup-offset, 0px); left: 0; right: 0; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), top .25s var(--ease);
  padding: .55rem 0;
}
.site-header.scrolled {
  background: rgba(18,15,12,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--ink-line), 0 14px 40px -28px rgba(0,0,0,.9);
}
/* bandeau confiance et footer occupent toute la largeur de l'écran */
.trust .container,
.site-footer .container { max-width: 100%; }

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; justify-self: start; grid-column: 1; }
.brand-logo { height: 26px; width: auto; }

.nav { display: flex; gap: 2.1rem; justify-self: center; grid-column: 2; }
.nav-link {
  color: var(--tl); font-size: .8rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: .16em; position: relative; padding: .3rem 0;
  transition: color .25s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--gold-soft); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold-soft); }

.header-actions { display: flex; align-items: center; justify-self: end; gap: 1.1rem; grid-column: 3; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--tl-mut); font-size: .82rem; letter-spacing: .04em;
  transition: color .25s var(--ease);
}
.header-phone:hover { color: var(--gold-soft); }
.header-phone svg { color: var(--gold); }

.burger { display: none; flex-direction: column; gap: 5px; width: 30px; height: 22px; justify-content: center; }
.burger span { display: block; height: 1.5px; width: 100%; background: var(--tl); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(16,13,10,.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2.5rem;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
  padding: 5rem var(--gutter) 3rem;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; gap: 1.6rem; text-align: center; }
.mobile-link {
  font-family: var(--serif); font-size: 2rem; color: var(--tl); font-weight: 500;
  opacity: 0; transform: translateY(14px); transition: opacity .4s var(--ease), transform .4s var(--ease), color .25s;
}
.mobile-menu.open .mobile-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-link:nth-child(1){ transition-delay:.08s }
.mobile-menu.open .mobile-link:nth-child(2){ transition-delay:.14s }
.mobile-menu.open .mobile-link:nth-child(3){ transition-delay:.20s }
.mobile-menu.open .mobile-link:nth-child(4){ transition-delay:.26s }
.mobile-menu.open .mobile-link:nth-child(5){ transition-delay:.32s }
.mobile-menu.open .mobile-link:nth-child(6){ transition-delay:.38s }
.mobile-link:hover { color: var(--gold-soft); }
.mobile-menu-foot { display: flex; flex-direction: column; gap: .9rem; width: 100%; max-width: 320px; }

/* =================================================================
   HERO
   ================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* léger sur-cadrage pour laisser jouer la parallaxe sans bord visible */
.hero .hero-media img { transform: scale(1.22); will-change: transform; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 95% at 50% 22%, rgba(16,13,10,.30) 0%, rgba(16,13,10,.74) 58%, rgba(13,10,8,.95) 100%),
    linear-gradient(180deg, rgba(16,13,10,.58) 0%, rgba(16,13,10,.42) 45%, rgba(16,13,10,.93) 100%);
}
.hero-content { position: relative; z-index: 3; text-align: center; padding-block: 7rem; max-width: 1100px; margin-inline: auto; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--tl); font-weight: 300; line-height: 1.06; letter-spacing: -.015em;
  font-optical-sizing: auto;
  text-shadow: 0 2px 40px rgba(0,0,0,.45);
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--gold-soft); }
.hero-sub {
  color: var(--tl-mut); max-width: 560px; margin: 1.7rem auto 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.7; font-weight: 300;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.hero-rating {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: 2.4rem;
  color: var(--tl-mut); font-size: .9rem;
}
.stars { color: var(--gold); letter-spacing: .12em; font-size: 1rem; }
.rating-text strong { color: var(--tl); font-weight: 600; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 4;
  width: 26px; height: 42px; border: 1px solid rgba(244,239,232,.35); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue span { width: 3px; height: 8px; border-radius: 2px; background: var(--gold-soft); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0%{opacity:0;transform:translateY(-4px)} 40%{opacity:1} 80%{opacity:0;transform:translateY(10px)} 100%{opacity:0} }

/* =================================================================
   TRUST STRIP
   ================================================================= */
.trust { background: var(--ink-2); border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 2.3rem; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: .35rem; text-align: center; flex: 1; }
.trust-num { font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--gold-soft); font-weight: 500; }
.trust-num sup { font-size: .55em; }
.trust-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .2em; color: var(--tl-mut); }
.trust-sep { width: 1px; height: 38px; background: var(--ink-line); }

.visipeak-popup {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  background: rgba(20, 16, 12, .94);
  color: var(--tl);
  border-bottom: 1px solid rgba(232, 168, 56, .26);
  box-shadow: 0 18px 40px -30px rgba(0, 0, 0, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.visipeak-popup-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-block: .62rem;
  font-size: .82rem;
  letter-spacing: .02em;
}
.visipeak-popup strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--gold-soft);
  white-space: nowrap;
}
.visipeak-popup span {
  color: rgba(248, 246, 240, .78);
  max-width: 720px;
}
.visipeak-popup a {
  color: var(--gold-soft);
  border: 1px solid rgba(232, 168, 56, .42);
  padding: .42rem .76rem;
  border-radius: 999px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.visipeak-popup a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.visipeak-popup--closure strong { color: #ffd69b; }
.visipeak-popup--announcement strong { color: var(--tl); }

/* =================================================================
   SECTIONS CRÈME / SOMBRES
   ================================================================= */
section { position: relative; }
.section-cream { background: var(--cream); color: var(--td); padding-block: clamp(4.5rem, 9vw, 8rem); }
.prestations, .equipe, .avis { background: var(--ink); color: var(--tl); padding-block: clamp(4.5rem, 9vw, 8rem); }

/* =================================================================
   ATELIER
   ================================================================= */
.atelier-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.atelier-media { position: relative; }
.atelier-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.atelier-badge {
  position: absolute; bottom: -26px; right: -16px;
  background: var(--ink); color: var(--cream); border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow);
  border: 1px solid var(--ink-3);
}
.atelier-badge-num { font-family: var(--serif); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.atelier-badge-txt { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--tl-mut); line-height: 1.4; }

.atelier-text h2 { font-size: clamp(1.9rem, 4.3vw, 3rem); margin-bottom: 1.4rem; }
.atelier-text .lead { font-size: 1.18rem; color: var(--td); margin-bottom: 1.1rem; line-height: 1.6; }
.atelier-text p { color: var(--td-mut); margin-bottom: 1rem; }

.feature-list { list-style: none; margin: 2rem 0; display: flex; flex-direction: column; gap: 1.1rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list svg { color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.feature-list strong { display: block; font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--td); }
.feature-list span { font-size: .94rem; color: var(--td-mut); }

/* =================================================================
   PRESTATIONS
   ================================================================= */
.price-menu { max-width: 960px; margin-inline: auto; }
.price-list-single { list-style: none; }
.price-row {
  display: flex; align-items: baseline; gap: 1.2rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--ink-line);
  transition: padding-left .35s var(--ease);
}
.price-list-single .price-row:first-child { border-top: 1px solid var(--ink-line); }
.price-row:hover { padding-left: .6rem; }
.price-info h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 2.6vw, 1.75rem); color: var(--tl); letter-spacing: -.01em; }
.price-info span { display: block; font-size: .9rem; color: var(--tl-mut); margin-top: .2rem; }
.price-dots { flex: 1; border-bottom: 1px dotted rgba(244,239,232,.22); transform: translateY(-5px); min-width: 24px; }
.price-end { text-align: right; white-space: nowrap; }
.price-amt { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--gold-soft); font-weight: 400; font-variant-numeric: tabular-nums; display: block; line-height: 1.1; }
.price-dur { font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: var(--tl-mut); }

.price-carte-block { margin-top: 2.8rem; text-align: center; }
.price-carte-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .24em; color: var(--gold); margin-bottom: 1.2rem; }
.price-carte { list-style: none; display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
.price-carte li {
  font-size: .84rem; color: var(--tl); border: 1px solid var(--ink-line);
  padding: .5rem 1.05rem; border-radius: 100px; background: rgba(255,255,255,.02);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.price-carte li:hover { border-color: rgba(193,154,79,.5); color: var(--gold-soft); }
.price-note { margin-top: 1.3rem; font-size: .8rem; color: var(--tl-mut); font-style: italic; }
.prestations-cta { text-align: center; margin-top: 2.8rem; }

/* =================================================================
   ÉQUIPE
   ================================================================= */
.equipe {
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  overflow: hidden;
}
.equipe .section-intro { color: var(--tl-mut); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 1240px;
  margin-inline: auto;
}
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.team-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 18%, rgba(216,184,132,.18), transparent 34%),
    linear-gradient(145deg, rgba(244,239,232,.08), rgba(244,239,232,.015) 45%, rgba(0,0,0,.22)),
    var(--ink-3);
  border: 1px solid var(--ink-line);
  box-shadow: var(--shadow-sm);
}
.team-photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(216,184,132,.22);
  border-radius: var(--radius);
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(10,8,6,.58));
}
.team-monogram {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7vw, 5.2rem);
  font-weight: 300;
  color: rgba(244,239,232,.72);
  line-height: 1;
}
.team-photo-tag {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--tl-mut);
  font-size: .68rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.team-card h3 {
  color: var(--tl);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-top: 1.15rem;
}
.team-card p {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-top: .25rem;
}

/* =================================================================
   GALERIE
   ================================================================= */
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; gap: 1.1rem;
  max-width: 1240px; margin-inline: auto;
}
.gallery-tall { grid-row: span 2; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); width: 100%; height: 100%;
  box-shadow: var(--shadow-sm); background: var(--cream-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,13,10,.45));
  opacity: 0; transition: opacity .4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom {
  position: absolute; bottom: 14px; right: 16px; z-index: 2;
  width: 38px; height: 38px; border: 1px solid rgba(244,239,232,.6); border-radius: 50%;
  color: var(--tl); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 300;
  opacity: 0; transform: scale(.8); transition: opacity .4s var(--ease), transform .4s var(--ease); backdrop-filter: blur(4px);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-cta { text-align: center; margin-top: 2.5rem; }
.insta-link {
  display: inline-flex; align-items: center; gap: .65rem; color: var(--td);
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 500;
  padding-bottom: 3px; border-bottom: 1px solid var(--paper-line); transition: color .25s, border-color .25s;
}
.insta-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* =================================================================
   AVIS
   ================================================================= */
.avis-head { text-align: center; margin-bottom: clamp(2.5rem,5vw,4rem); }
.avis-score { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.avis-num { font-family: var(--serif); font-size: clamp(3rem, 8vw, 5rem); color: var(--gold-soft); font-weight: 500; line-height: 1; }
.stars-lg { font-size: 1.7rem; }
.avis-sub { color: var(--tl-mut); margin-top: 1rem; font-size: 1.05rem; }
.avis-sub strong { color: var(--tl); }

.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; max-width: 1240px; margin-inline: auto; }
.testi {
  background: var(--ink-2); border: 1px solid var(--ink-line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1rem;
}
.testi .stars { font-size: .95rem; }
.testi blockquote { font-family: var(--serif); font-size: 1.12rem; line-height: 1.55; color: var(--tl); font-style: italic; font-weight: 400; }
.testi figcaption { font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); margin-top: auto; }
.testi figcaption span { display: block; margin-top: .25rem; color: var(--tl-mut); letter-spacing: .14em; }
.avis-cta { text-align: center; margin-top: clamp(2.5rem,5vw,3.5rem); }

/* =================================================================
   ACCÈS
   ================================================================= */
.acces-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.info-block { padding-bottom: 1.6rem; margin-bottom: 1.6rem; border-bottom: 1px solid var(--paper-line); }
.info-block h3 {
  display: flex; align-items: center; gap: .6rem; font-size: 1.25rem; margin-bottom: .8rem; color: var(--td);
}
.info-block h3 svg { color: var(--gold-deep); }
.info-block p { color: var(--td-mut); }
.contact-strong { font-family: var(--serif); font-size: 1.6rem; color: var(--td); transition: color .25s; }
.contact-strong:hover { color: var(--gold-deep); }
.metro { font-size: .9rem; margin-top: .6rem; }
.link-arrow { display: inline-block; margin-top: .7rem; color: var(--gold-deep); font-size: .86rem; font-weight: 500; letter-spacing: .03em; transition: transform .25s var(--ease); }
.link-arrow:hover { transform: translateX(4px); }

.hours { font-size: .95rem; }
.hours th { text-align: left; font-weight: 400; color: var(--td); padding: .42rem 0; font-family: var(--sans); }
.hours td { text-align: right; color: var(--td-mut); padding: .42rem 0; font-variant-numeric: tabular-nums; }
.hours tr { border-bottom: 1px solid var(--cream-2); }
.hours tr:last-child { border-bottom: none; }
.hours .closed { color: #B5462F; font-style: italic; }
.hours-late th, .hours-late td { color: var(--gold-deep); font-weight: 500; }

.acces-map { position: relative; height: 100%; min-height: 440px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--paper-line); }
.acces-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; filter: grayscale(.32) sepia(.12) contrast(1.04); }
.map-open {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink); color: var(--cream);
  font-size: .76rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em;
  padding: .6rem 1rem; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.map-open svg { color: var(--gold-soft); }
.map-open:hover { background: #000; transform: translateY(-2px); }

/* =================================================================
   CTA FINAL
   ================================================================= */
.final-cta { position: relative; overflow: hidden; min-height: 70vh; display: flex; align-items: center; text-align: center; }
.final-cta .hero-media img { filter: saturate(.9); }
.final-cta-content { position: relative; z-index: 3; padding-block: 6rem; margin-inline: auto; max-width: 640px; }
.final-cta h2 { font-size: clamp(2.2rem, 6vw, 4rem); color: var(--tl); margin-bottom: 1rem; }
.final-cta-sub { color: var(--tl-mut); margin-bottom: 2.2rem; font-size: 1.1rem; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: #100D0A; color: var(--tl); padding-top: clamp(3.5rem,6vw,5rem); border-top: 1px solid var(--ink-line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { height: 40px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { color: var(--tl-mut); max-width: 260px; font-size: .95rem; }
.footer-col h4 { font-family: var(--sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .22em; color: var(--gold); margin-bottom: 1.1rem; font-weight: 500; }
.footer-col p { color: var(--tl-mut); font-size: .92rem; margin-bottom: .6rem; }
.footer-col a { display: block; color: var(--tl-mut); font-size: .92rem; padding: .2rem 0; transition: color .25s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-block: 1.6rem; border-top: 1px solid var(--ink-line); font-size: .82rem; color: var(--tl-mut);
}
.footer-bottom a:hover { color: var(--gold-soft); }

/* =================================================================
   MOBILE STICKY BAR
   ================================================================= */
.mobile-bar { display: none; }

/* =================================================================
   LIGHTBOX
   ================================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(10,8,6,.94);
  display: flex; align-items: center; justify-content: center; padding: 5vw;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: scale(.96); transition: transform .35s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox-close { position: fixed; top: 1.4rem; right: 1.8rem; font-size: 2.6rem; color: var(--tl); line-height: 1; font-weight: 200; transition: color .25s, transform .25s; }
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* =================================================================
   MENTIONS LÉGALES MODAL
   ================================================================= */
.legal-modal {
  position: fixed; inset: 0; z-index: 2100; background: rgba(10,8,6,.7);
  display: flex; align-items: center; justify-content: center; padding: var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.legal-modal.open { opacity: 1; visibility: visible; }
.legal-card {
  background: var(--cream); color: var(--td); border-radius: var(--radius-lg); padding: 2.6rem 2.4rem;
  max-width: 540px; width: 100%; max-height: 86vh; overflow-y: auto; position: relative; box-shadow: var(--shadow);
}
.legal-card h3 { font-size: 1.6rem; margin-bottom: 1.2rem; }
.legal-card p { color: var(--td-mut); font-size: .92rem; margin-bottom: .9rem; }
.legal-card strong { color: var(--td); }
.legal-edit { color: var(--gold-deep) !important; font-size: .82rem !important; font-style: italic; margin-top: 1.2rem; }
.legal-close { position: absolute; top: 1rem; right: 1.3rem; font-size: 2rem; color: var(--td-mut); line-height: 1; transition: color .2s; }
.legal-close:hover { color: var(--td); }

/* =================================================================
   REVEAL ANIMATIONS
   ================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .atelier-grid, .acces-grid { grid-template-columns: 1fr; }
  .atelier-media { max-width: 460px; margin-inline: auto; }
  .acces-map { min-height: 360px; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
}

@media (max-width: 1120px) {
  .nav, .header-phone { display: none; }
  .burger { display: flex; }
  .header-cta { display: none; }
}

@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .burger { display: flex; }
  .header-cta { display: none; }
  .testimonials { grid-template-columns: 1fr; max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 70px; }
  .site-header { padding: .45rem 0; }
  .brand-logo { height: 21px; }
  .mobile-menu {
    justify-content: flex-start;
    align-items: flex-end;
    padding-top: 5.4rem;
  }
  .mobile-nav {
    align-items: flex-end;
    text-align: right;
  }
  .mobile-menu-foot {
    align-self: stretch;
    margin-top: auto;
  }
  .trust-inner { flex-wrap: wrap; gap: 1.5rem 0; padding-block: 1.8rem; }
  .trust-item { flex: 0 0 50%; }
  .trust-sep { display: none; }
  .equipe {
    min-height: calc(100svh + var(--team-scroll-distance, 900px));
    padding-block: 0;
    overflow: clip;
  }
  .equipe .container {
    position: sticky;
    top: 0;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-block: 4.8rem 7rem;
  }
  .equipe .container::before,
  .equipe .container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 4;
    width: 4.2rem;
    pointer-events: none;
  }
  .equipe .container::before {
    left: 0;
    background: linear-gradient(90deg, var(--ink), rgba(22,19,15,0));
  }
  .equipe .container::after {
    right: 0;
    background: linear-gradient(270deg, var(--ink), rgba(22,19,15,0));
  }
  .equipe .section-head {
    position: relative;
    z-index: 5;
    margin-bottom: 2rem;
  }
  .team-grid {
    position: relative;
    z-index: 3;
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    width: max-content;
    max-width: none;
    margin-inline: 0;
    transform: translate3d(var(--team-x, 0px), 0, 0);
    will-change: transform;
  }
  .team-card {
    flex: 0 0 min(78vw, 320px);
    transform: translateY(calc(var(--team-card-lift, 0px) * -1));
  }
  .team-photo {
    box-shadow: 0 22px 56px -24px rgba(0,0,0,.72);
  }

  .avis {
    overflow: hidden;
  }
  .testimonials {
    display: flex;
    grid-template-columns: none;
    gap: 1rem;
    width: max-content;
    max-width: none;
    margin-inline: 0;
    animation: avis-drift 16s ease-in-out infinite alternate;
    will-change: transform;
  }
  .testi {
    flex: 0 0 min(82vw, 340px);
    min-height: 315px;
  }
  .visipeak-popup-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .38rem;
    padding-block: .74rem;
  }
  .visipeak-popup strong { white-space: normal; }
  .visipeak-popup span { max-width: 32ch; }
  .visipeak-popup a { margin-top: .24rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-tall { grid-row: span 1; }
  .atelier-badge { right: 12px; bottom: -20px; padding: .85rem 1.1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; }

  /* barre mobile collante */
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    background: rgba(16,13,10,.92); backdrop-filter: blur(12px);
    border-top: 1px solid var(--ink-line); padding: .7rem .8rem; gap: .7rem;
    padding-bottom: calc(.7rem + env(safe-area-inset-bottom, 0px));
  }
  .mbar-call {
    display: flex; align-items: center; justify-content: center; gap: .45rem;
    flex: 0 0 38%; border: 1px solid rgba(244,239,232,.3); border-radius: var(--radius);
    color: var(--tl); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; padding: .85rem;
  }
  .mbar-call svg { color: var(--gold); }
  .mbar-book {
    flex: 1; display: flex; align-items: center; justify-content: center;
    background: var(--gold); color: #1A140B; border-radius: var(--radius);
    font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; padding: .85rem;
  }
  /* éviter que la barre cache le footer */
  .site-footer { padding-bottom: 5rem; }
}

@keyframes avis-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(var(--reviews-shift, -42vw), 0, 0); }
}

/* =================================================================
   REDUCED MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .scroll-cue span { animation: none; }
  .team-grid, .testimonials { transform: none !important; animation: none !important; }
}
