/* ============================================================
   LA CHAMBRE À HAIR — one page site
   Barlow Condensed 900 display · Barlow body
   Black #0A0A0A · Yellow #F5C800 · White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,900&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&display=swap');

@font-face {
  font-family: 'Agrandir';
  src: url('assets/fonts/Agrandir-TextBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0A0A0A;
  --panel: #181818;
  --panel-2: #1e1e1e;
  --line: #1f1f1f;
  --line-soft: #161616;
  --yellow: #F5C800;
  --white: #ffffff;
  --muted: #8c8c8c;
  --faint: #565656;
  --ghost: #161616;

  --disp: 'Agrandir', 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--black); }

a { color: inherit; text-decoration: none; }
img { display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* texture utility — faint diagonal hatch */
.hatch {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 7px,
    rgba(245, 200, 0, var(--hatch, .035)) 7px,
    rgba(245, 200, 0, var(--hatch, .035)) 8px
  );
}

.eyebrow {
  font-family: var(--disp);
  font-weight: 600;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-kicker {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 18px;
}
.section-title {
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(36px, 6vw, 88px);
  line-height: .86;
  letter-spacing: -.012em;
  margin: 0;
}
.section-title .y { color: var(--yellow); }

/* ===== buttons ===== */
.btn {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: clamp(14px, 1.3vw, 17px);
  padding: 16px 30px;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .ar { transition: transform .25s var(--ease); }
.btn:hover .ar { transform: translate(3px, -3px); }

.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #ffd60a; }

.btn-ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-black { background: var(--black); color: var(--yellow); }
.btn-black:hover { background: #000; transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--pad);
  transition: background .3s var(--ease), border-color .3s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: padding .3s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav.scrolled .nav-inner { padding-top: 11px; padding-bottom: 11px; }
.nav-brand { display: flex; align-items: center; gap: 13px; }
.nav-logo { width: 126px; height: 126px; object-fit: contain; transition: width .3s var(--ease), height .3s var(--ease); }
.nav.scrolled .nav-logo { width: 80px; height: 80px; }
.nav-word {
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: .9;
  font-size: 17px;
}
.nav-word small {
  display: block;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .26em;
  color: var(--faint);
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 40px); }
.nav-link {
  white-space: nowrap;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--yellow);
  transition: width .25s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 20px;
  transition: transform .18s var(--ease), background .2s;
}
.nav-cta:hover { background: #ffd60a; transform: translateY(-1px); }
.nav-burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 132px var(--pad) 64px;
  overflow: hidden;
}
/* photo background — sticky inside hero, invisible below ticker */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/photos/Papier peint_compressed.webp') center center / cover no-repeat;
  background-attachment: fixed;
  will-change: opacity;
}
/* dark gradient overlay so text stays readable */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.55) 0%,
    rgba(10,10,10,.72) 55%,
    rgba(10,10,10,.97) 85%,
    rgba(10,10,10,1)   100%
  );
  pointer-events: none;
}
.hero-bg-hatch {
  position: absolute; inset: 0;
  --hatch: .03;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(120% 100% at 70% 40%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 40%, #000 35%, transparent 80%);
}
/* giant emblem watermark */
.hero-mark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 720px);
  aspect-ratio: 1;
  opacity: .07;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.hero-mark img { width: 100%; height: 100%; object-fit: contain; }
/* big ghost outline word behind title */
.hero-ghost {
  position: absolute;
  left: var(--pad);
  bottom: 8%;
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(80px, 20vw, 320px);
  line-height: .8;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,200,0,.10);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  will-change: transform;
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding-top: 40px; }

.hero-eyebrow { margin: 0 0 clamp(20px, 3vw, 34px); }

.hero-title {
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(42px, 10vw, 144px);
  line-height: .82;
  letter-spacing: -.018em;
  margin: 0;
  white-space: nowrap;
}
.hero-title .l { display: block; overflow: hidden; padding: .12em 0 .06em; }
.hero-title .l > span {
  display: block;
  transform: translateY(110%);
  animation: lineUp .9s var(--ease) forwards;
}
.hero-title .l:nth-child(1) > span { animation-delay: .12s; }
.hero-title .l:nth-child(2) > span { animation-delay: .24s; }
.hero-title .y { color: var(--yellow); }

@keyframes lineUp { to { transform: translateY(0); } }

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: clamp(28px, 4vw, 48px);
}
.hero-sub {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--white);
  max-width: 440px;
  margin: 0;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .5s forwards;
}
.hero-sub b { color: var(--white); font-weight: 800; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .62s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.hero-chip {
  position: absolute;
  bottom: 30px;
  right: var(--pad);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--faint);
  writing-mode: vertical-rl;
}
.hero-chip .dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; }
.hero-chip .scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--yellow), transparent); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  padding: 18px 0;
  display: flex;
  position: relative;
  z-index: 3;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  animation: marquee var(--ticker-dur, 26s) linear infinite;
}
.ticker-track span {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: .04em;
  color: #e9e9e9;
  padding: 0 6px;
}
.ticker-track .sep { color: var(--yellow); padding: 0 22px; font-size: .82em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SALONS
   ============================================================ */
.salons {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 11vw, 150px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.salons-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/photos/lch-facade.webp') center center / cover no-repeat;
  background-attachment: fixed;
}
.salons-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10,10,10,.70);
  pointer-events: none;
}
.salons .wrap { position: relative; z-index: 2; }
.salons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.salon {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px 28px 48px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.salon:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.20); background: var(--panel-2); }
.salon.is-main { border-top: 3px solid var(--yellow); }
.salon-num {
  position: absolute;
  right: 8px; bottom: -18px;
  font-family: var(--disp);
  font-weight: 900;
  font-size: 200px;
  line-height: .7;
  color: transparent;
  -webkit-text-stroke: 1.5px #242424;
  z-index: 0;
  transition: -webkit-text-stroke-color .3s var(--ease), color .3s var(--ease);
  pointer-events: none;
}
.salon:hover .salon-num { -webkit-text-stroke-color: rgba(245,200,0,.30); }
.salon-hover-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.salon-hover-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.10);
}
.salon:hover .salon-hover-img { opacity: 1; }
.salon-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; }
.salon-badge {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: #1c1c1c;
  color: var(--yellow);
}
.salon.is-main .salon-badge { background: var(--yellow); color: var(--black); }
.salon-idx {
  font-family: var(--disp);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .1em;
  color: var(--faint);
}
.salon-body { position: relative; z-index: 1; margin-top: auto; transition: margin-top .35s var(--ease); }
.salon:hover .salon-body { margin-top: 32px; }
.salon-name {
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: .94;
  letter-spacing: -.005em;
  margin: 0 0 14px;
  transform: translateY(-32px);
}
/* masquer badge, idx, meta au hover */
.salon:hover .salon-top { opacity: 0; pointer-events: none; }
.salon:hover .salon-meta { opacity: 0; pointer-events: none; }
.salon-top { transition: opacity .3s var(--ease); }
.salon-meta { transition: opacity .3s var(--ease); }
.salon-meta { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.salon-line { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; color: var(--muted); line-height: 1.4; }
.salon-line i { color: var(--yellow); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.salon-line.hours b { color: #d8d8d8; font-weight: 600; }
.salon-cta {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding-bottom: 3px;
  border-bottom: 2px solid #2a2a2a;
  transition: color .2s var(--ease), border-color .2s var(--ease), gap .2s var(--ease);
}
.salon-cta:hover { color: var(--yellow); border-color: var(--yellow); gap: 12px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--panel); padding: clamp(80px, 11vw, 150px) 0; border-bottom: 1px solid var(--line-soft); }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto auto;
  border: 1px solid var(--line);
  margin-top: clamp(36px, 5vw, 60px);
}
.service {
  position: relative;
  background: #0A0A0A;
  padding: clamp(28px, 3vw, 44px) clamp(22px, 2vw, 30px);
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  min-height: 280px;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.service:last-child { border-right: none; }
.service::before {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 0;
  background: var(--white);
  transition: height .32s var(--ease);
  z-index: 0;
}
.service:hover::before { height: 100%; }
.service > * { position: relative; z-index: 1; transition: color .3s var(--ease); }
.service-icon { font-size: 34px; color: var(--yellow); transition: color .3s var(--ease); padding-bottom: 32px; align-self: start; }
.service-num {
  position: absolute; top: clamp(20px,2.4vw,30px); right: clamp(20px,2vw,28px);
  font-family: var(--disp); font-weight: 900; font-size: 14px; color: var(--faint);
  z-index: 1; transition: color .3s var(--ease);
}
.service-name {
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: .96;
  letter-spacing: -.005em;
  margin: 0 0 8px;
}
.service-desc { font-size: 13.5px; color: var(--muted); line-height: 1.45; margin: 0 0 16px; }
.service-link {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  color: var(--yellow);
  display: inline-flex; align-items: center; gap: 7px;
}
.service:hover .service-icon,
.service:hover .service-name,
.service:hover .service-desc,
.service:hover .service-link,
.service:hover .service-num { color: var(--black); }
.service:hover .service-desc { color: rgba(10,10,10,.65); }
.service:last-child .service-name { font-size: clamp(17px, 1.7vw, 22px); }
.services-foot { margin-top: clamp(32px,4vw,48px); display: flex; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { padding: clamp(80px, 11vw, 150px) 0; border-bottom: 1px solid var(--line-soft); }

/* colonnes défilantes */
.testi-columns {
  display: flex;
  gap: 4px;
  max-height: 740px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}
.testi-col {
  flex: 1;
  min-width: 0;
}
.testi-col--2 { display: none; }
.testi-col--3 { display: none; }
@media (min-width: 768px) { .testi-col--2 { display: block; } }
@media (min-width: 1024px) { .testi-col--3 { display: block; } }

/* mobile : scroll manuel, animation arrêtée */
@media (max-width: 767px) {
  .testi-columns {
    max-height: 520px;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .testi-col {
    overflow-y: auto;
    max-height: 520px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testi-col::-webkit-scrollbar { display: none; }
  .testi-track { animation: none; }
}

.testi-track {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: scrollUp var(--dur, 15s) linear infinite;
}
.testi-col:hover .testi-track { animation-play-state: paused; }

@keyframes scrollUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.tcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.tcard:hover { transform: translateY(-5px); background: var(--panel-2); }
.tcard-stars { color: var(--yellow); font-size: 15px; letter-spacing: 3px; margin-bottom: 18px; }
.tcard-text {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: #c7c7c7;
  margin: 0 0 26px;
  flex-grow: 1;
}
.tcard-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.tcard-avatar {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-weight: 900; font-size: 16px;
  letter-spacing: .02em;
}
.tcard-who { font-family: var(--disp); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: 16px; }
.tcard-since { font-size: 12.5px; color: var(--faint); letter-spacing: .02em; }

/* ============================================================
   FOOTER CTA (yellow)
   ============================================================ */
.cta-band {
  color: var(--white);
  padding: clamp(100px, 14vw, 180px) 0;
  position: relative;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background: url('assets/photos/LCH-2026-41.webp') center/cover no-repeat;
  background-attachment: fixed;
}
.cta-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,.82) 40%, rgba(10,10,10,.50) 100%);
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-title {
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(44px, 8.5vw, 128px);
  line-height: .82;
  letter-spacing: -.02em;
  margin: 0;
}
.cta-right { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; max-width: 360px; }
.cta-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: rgba(255,255,255,.75);
}
.cta-sub b { font-weight: 700; color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #ffd700; transform: translateY(-2px); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding: clamp(80px, 11vw, 150px) 0; border-bottom: 1px solid var(--line-soft); background: var(--panel); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: clamp(80px, 8vw, 112px);
}
.gallery-col { display: flex; flex-direction: column; gap: 12px; }
.gallery-col--offset-md { margin-top: 0; }
.gallery-col--offset-sm { margin-top: 0; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: var(--ratio, 2/3);
  background: var(--panel);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1s ease;
}
.gallery-item img.is-loaded {
  opacity: 1;
  transform: scale(1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.0);
  transition: background .4s var(--ease);
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(10,10,10,.25); }
.gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-col:last-child { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--black); padding: clamp(48px, 6vw, 80px) 0 32px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.foot-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.foot-brand img { width: 64px; height: 64px; object-fit: contain; }
.foot-brand .nm { font-family: var(--disp); font-weight: 900; text-transform: uppercase; font-size: 24px; line-height: .9; letter-spacing: -.01em; }
.foot-brand .nm small { display:block; font-weight:600; font-size:11px; letter-spacing:.24em; color: var(--faint); margin-top: 4px; }
.foot-tag { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 340px; }
.foot-col h4 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: var(--faint); margin: 0 0 18px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col li { font-size: 14.5px; color: var(--muted); display: flex; align-items: flex-start; gap: 9px; line-height: 1.4; }
.foot-col li i { color: var(--yellow); font-size: 15px; margin-top: 2px; }
.foot-col a:hover { color: var(--yellow); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.foot-bottom span { font-family: var(--disp); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.foot-legal-link { color: var(--faint); text-decoration: none; transition: color .25s; }
.foot-legal-link:hover { color: var(--yellow); }
.foot-legal-sep { margin: 0 10px; }

/* ============================================================
   TEAM
   ============================================================ */
.team { padding: clamp(80px, 11vw, 150px) 0; border-bottom: 1px solid var(--line-soft); }
.team-grid {
  display: flex;
  gap: 16px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.team-grid::-webkit-scrollbar { display: none; }
.member { margin: 0; overflow: hidden; flex: 0 0 calc(20% - 13px); scroll-snap-align: start; }
.member-photo {
  position: relative; aspect-ratio: 3/5; overflow: hidden;
  background: var(--black); border: none; outline: none;
}
.member-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter .45s var(--ease), transform .5s var(--ease);
}
.member:hover .member-photo img { filter: grayscale(0) contrast(1); transform: scale(1.045); }
.member.is-lead .member-photo { border-top: 3px solid var(--yellow); }

/* Team hover videos */
.member-static-photo {
  position: relative; z-index: 1;
  transition: opacity .3s ease;
}
.member-video {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
#member-antoine:hover .member-video,
#member-alexandre:hover .member-video { opacity: 1; }
#member-antoine:hover .member-static-photo,
#member-alexandre:hover .member-static-photo { opacity: 0; }
.member-tag {
  position: absolute; left: 0; bottom: 0; z-index: 3;
  background: var(--yellow); color: var(--black);
  font-family: var(--disp); font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; font-size: 12px; padding: 6px 13px; white-space: nowrap;
}
.member-name {
  font-family: var(--disp); font-weight: 900; text-transform: uppercase;
  font-size: clamp(24px, 2.4vw, 32px); line-height: .9; margin: 18px 0 4px; letter-spacing: -.005em;
}
.member-nick { font-size: 13px; color: var(--yellow); margin: 3px 0 6px; letter-spacing: .02em; font-style: italic; }
.member-role { font-size: 14px; color: var(--muted); margin: 0; letter-spacing: .02em; }

/* ============================================================
   reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-delay: 0s !important; transition: none !important; }
  .hero-title .l > span { transform: none; }
  .hero-sub, .hero-actions { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 980px) {
  .salons-grid { grid-template-columns: 1fr; gap: 16px; }
  .member { flex: 0 0 calc(50% - 8px); }
  .salon { min-height: 0; }
  .salon-num { font-size: 150px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service:nth-child(2) { border-right: none; }
  .service:nth-child(1), .service:nth-child(2) { border-bottom: 1px solid var(--line); }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand-cell { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,.97); border-bottom: 1px solid var(--line);
    padding: 26px var(--pad) 30px;
  }
  .nav-burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
  .nav-burger span { width: 24px; height: 2px; background: var(--white); display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--line); min-height: 0; }
  .service:last-child { border-bottom: none; }
  .member { flex: 0 0 75%; }
  .hero-chip { display: none; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .foot-top { grid-template-columns: 1fr; }
}

/* iOS/Android : parallax JS — bg étendu pour permettre le défilement */
@media (max-width: 1024px) {
  /* hero + cta : parallax simulé */
  .hero-bg-photo,
  .cta-band-bg {
    background-attachment: scroll;
    top: -160px;
    bottom: -160px;
  }
  .hero { overflow: hidden; }
  .cta-band { overflow: hidden; }

  /* salons mobile : photo statique en haut, fondu vers le bas */
  .salons-bg-photo {
    background-attachment: scroll;
    top: -60px; left: 0; right: 0; bottom: auto;
    height: 460px; /* 400px + 60px de marge pour le parallax */
  }
  .salons-bg-overlay {
    top: 0; left: 0; right: 0; bottom: auto;
    height: 400px;
    background: linear-gradient(to bottom,
      rgba(10,10,10,.25) 0%,
      rgba(10,10,10,.75) 65%,
      rgba(10,10,10,1)  100%
    );
  }
  .salons {
    background: #0A0A0A;
    padding-top: 280px;
  }
}
