/* ============================================================
   MARC JACOB — LE SALON
   styles.css · v.01
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* color */
  --bg: #ECEAE3;          /* Gris Distante OC-68 */
  --bg-warm: #E8E5DD;
  --bg-cool: #F1EFE8;
  --paper: #F5F3EC;
  --ink: #1B1C1F;         /* Nuité de Rêve, deeper for screen */
  --ink-soft: #2C2D31;
  --ink-quiet: #8A8C8F;
  --ink-faint: #b6b8bb;
  --rule: rgba(44,45,49,.10);
  --rule-strong: rgba(44,45,49,.22);
  --rule-on-dark: rgba(236,234,227,.10);

  --moss: #3E4230;        /* Belgian Wilderness */
  --moss-light: #555a3f;
  --moss-deep: #2a2c20;
  --moss-glow: rgba(85,90,63,.18);

  --steel: #B6BABE;
  --steel-shadow: #6F7378;
  --steel-light: #D4D7DA;

  /* "gold" replaced with cream — brand colors only, no gold per direction */
  --gold: #ECEAE3;
  --gold-deep: #B6BABE;

  /* typography */
  --serif: 'Newsreader', Georgia, serif;
  --display: 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* type scale — one ramp for the whole site */
  --h-hero: clamp(42px, 6vw, 96px);       /* page heroes + home hero */
  --h-section: clamp(34px, 4.2vw, 60px);  /* section headings */
  --h-item: clamp(22px, 2.2vw, 30px);     /* item titles (service names, FAQ) */
  --text-lede: clamp(18px, 1.5vw, 21px);  /* serif ledes */
  --text-body: 16px;
  --text-label: 11.5px;                   /* uppercase labels — floor, never below */
  --text-mono: 11px;                      /* mono tags — floor */
  --track-label: 0.32em;                  /* labels + nav */
  --track-cta: 0.4em;                     /* CTAs only */

  /* easing */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-ink: cubic-bezier(.65,.05,.36,1);
  --ease-cinematic: cubic-bezier(.77,0,.18,1);

  /* layout */
  --topbar-h: 84px;
  --content-max: 1320px;
  --content-pad: 48px;

  /* vertical rhythm */
  --space-section: clamp(104px, 13vh, 160px);
  --space-block: clamp(56px, 7vh, 80px);
}

/* ============================================================
   SCROLLBAR — brand-tinted
   ============================================================ */
html {
  scrollbar-color: var(--moss) #0a0b0d;
  scrollbar-width: thin;
  /* keep the scrollbar gutter reserved during entrance/menu locks — no layout shift */
  scrollbar-gutter: stable;
  /* gutter shows the root background when scrolling is locked (entrance/menu):
     match the scrollbar track so it never flashes light */
  background-color: #0a0b0d;
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0b0d; }
::-webkit-scrollbar-thumb {
  background: var(--moss);
  border: 2px solid #0a0b0d;
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover { background: #555a3f; }
::-webkit-scrollbar-corner { background: #0a0b0d; }

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* No text-selection caret popping anywhere */
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: default;
}
a, button, summary, [role="button"], .barber, .barber-cta, .hero-cta, .equipe-continue, .topbar .cta { cursor: pointer; }
em { font-style: normal; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }

/* keyboard focus — visible, on-brand, mouse clicks stay clean */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
}
[data-tone="dark"] :focus-visible,
[data-tone="moss"] :focus-visible,
.topbar :focus-visible,
footer :focus-visible {
  outline-color: rgba(236,234,227,.75);
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
#progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--moss-light);
  z-index: 200;
  transition: width .1s linear;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.topbar.on-dark { color: var(--bg); }
.topbar.scrolled {
  background: rgba(27,28,31,.78);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: rgba(236,234,227,.06);
  color: var(--bg);
}
.topbar.scrolled.on-light {
  background: rgba(236,234,227,.85);
  border-bottom-color: var(--rule);
  color: var(--ink);
}
.topbar .logo {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  transition: opacity .3s var(--ease);
}
.topbar .logo:hover { opacity: 0.7; }
.topbar nav {
  display: flex;
  gap: 30px;
}
.topbar nav a {
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  position: relative;
  padding: 10px 14px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    opacity .3s var(--ease),
    border-color .3s var(--ease),
    background-color .3s var(--ease);
  opacity: 0.85;
}
.topbar nav a::after { content: none; }
.topbar nav a:hover,
.topbar nav a.active {
  opacity: 1;
  border-color: rgba(236,234,227,.34);
  background: rgba(236,234,227,.05);
}
.topbar.on-light nav a:hover,
.topbar.on-light nav a.active,
.topbar.scrolled.on-light nav a:hover,
.topbar.scrolled.on-light nav a.active {
  border-color: rgba(27,28,31,.32);
  background: rgba(27,28,31,.045);
}
.topbar .cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,.22);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  transition: all .3s var(--ease);
}
.topbar:not(.on-dark):not(.scrolled) .cta { border-color: var(--rule-strong); }
.topbar.scrolled.on-light .cta { border-color: var(--rule-strong); }
.topbar .cta .arrow {
  width: 22px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .35s var(--ease);
}
.topbar .cta .arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.topbar .cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.topbar .cta:hover .arrow { width: 32px; }

/* right cluster: CTA + mobile toggle share the third grid column */
.topbar-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-right .cta { justify-self: auto; }

/* ============================================================
   MOBILE NAV — hamburger + full-screen overlay (≤1100px)
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
html.menu-open .nav-toggle span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
html.menu-open .nav-toggle span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0a0b0d;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--content-pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
html.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(28px, 7.5vw, 44px);
  letter-spacing: -0.01em;
  color: var(--bg);
  padding: 16px 0;
  border-bottom: 1px solid rgba(236,234,227,.08);
  opacity: .88;
  transition: opacity .3s var(--ease), padding-left .3s var(--ease);
}
.mobile-menu a:hover { opacity: 1; padding-left: 10px; }
.mobile-menu a.active { color: var(--steel); opacity: 1; }
html.menu-open { overflow: hidden; }
html.menu-open .topbar {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--bg);
  backdrop-filter: none;
}
html.menu-open .topbar .logo img { filter: none !important; }

/* ============================================================
   GENERIC LAYOUT
   ============================================================ */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}
.section {
  padding: 140px 0;
  position: relative;
}
.section.dark { background: var(--ink); color: var(--bg); }
.section.moss { background: var(--moss); color: var(--bg); }

.section-label {
  font-family: var(--display);
  font-size: var(--text-label);
  letter-spacing: var(--track-label);
  color: rgba(27,28,31,.62);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
}
.section.dark .section-label,
.section.moss .section-label,
[data-tone="dark"] .section-label,
[data-tone="moss"] .section-label { color: rgba(236,234,227,.62); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* stable on mobile address-bar show/hide */
  display: grid;
  grid-template-columns: minmax(500px, 660px) minmax(640px, 1280px);
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  align-content: center;
  /* centred, not space-between: on ultra-wide screens the columns cap out and
     space-between opened a dead void between the text and the photo */
  justify-content: center;
  gap: clamp(48px, 4.5vw, 104px);
  /* extra top room for the opening announcement strip */
  padding: calc(var(--topbar-h) + 74px) clamp(56px, 4.8vw, 96px) clamp(56px, 7vh, 84px);
  background: #A2A39E; /* fallback while the texture loads */
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero::before { content: none; }
.hero::after { content: none; }
/* polished cement — smoothed seamless concrete (CC, Wikimedia Commons), soft light pooling */
.hero-overlay-grain {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 90% 70% at 22% 16%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(ellipse 75% 60% at 80% 82%, rgba(31,32,36,.12), transparent 65%),
    url('assets/textures/concrete-smooth.webp');
  background-size: auto, auto, 1024px 1024px;
  background-repeat: no-repeat, no-repeat, repeat;
}
/* photo as a dark panel mounted on the cement wall:
   flush image, steel hairline, charcoal slab offset behind */
.hero-photo {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  width: min(100%, 1280px);
  aspect-ratio: 16 / 10;
  height: auto;
  z-index: 1;
  background: #1B1C1F;
  overflow: hidden; /* clips the Ken Burns zoom */
  /* offset charcoal slab lives in the shadow stack so it survives the clip */
  box-shadow:
    20px 20px 0 0 #1B1C1F,
    0 28px 70px rgba(20,21,24,.4);
}
.hero-photo-tag {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(236,234,227,.92);
  background: var(--moss);
  padding: 7px 11px;
}
.hero-photo img,
.zone-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: contrast(1.04) brightness(.94);
}
.hero-photo img {
  object-position: 50% 52%;
  opacity: 0;
  /* graded toward the palette: cooler, muted, darker */
  filter: grayscale(.32) saturate(.74) contrast(1.05) brightness(.88);
  transform-origin: 50% 50%;
  will-change: opacity, transform;
  /* slow dissolve + a whisper of Ken Burns drift */
  animation: heroPhotoCycle 24s linear infinite;
}
.hero-photo img:nth-of-type(1) { animation-delay: 0s; }
.hero-photo img:nth-of-type(2) {
  animation-delay: 12s;
  object-position: 48% 48%;
}
@keyframes heroPhotoCycle {
  0%   { opacity: 0; transform: scale(1.005); }
  8%   { opacity: 1; }
  46%  { opacity: 1; }
  58%  { opacity: 0; transform: scale(1.035); }
  100% { opacity: 0; transform: scale(1.005); }
}
.zone-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,14,17,.5) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
  text-align: left;
  max-width: 680px;
  padding: 0;
  align-self: center;
  transition: opacity .5s var(--ease), transform .5s var(--ease), filter .5s var(--ease);
}
.hero h1 {
  /* editorial serif, sentence case — the salon's own voice, not a slogan triad.
     Deliberately smaller than the logo lockup above it. */
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.85vw, 43px);
  line-height: 1.26;
  letter-spacing: -0.004em;
  text-transform: none;
  margin-bottom: 34px;
  max-width: 22ch;
  color: rgba(27,28,31,.95);
}
.hero h1 .line {
  display: block;
  overflow: hidden;
  /* headroom so accents (É) aren't clipped by the reveal mask; pulled back so line spacing is unchanged */
  padding-top: 0.14em;
  margin-top: -0.14em;
}
.hero h1 .line span {
  display: inline-block;
  animation: heroLineUp 1.1s var(--ease-cinematic) both;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.3s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.45s; }
@keyframes heroLineUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero-lede {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.55;
  color: rgba(27,28,31,.94);
  max-width: 28ch;
  margin: 0 0 36px 0;
  animation: heroFadeUp 1.1s var(--ease) 1s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 32px;
  background: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-cta);
  text-transform: uppercase;
  color: var(--bg);
  position: relative;
  overflow: hidden;
  animation: heroFadeUp 1.1s var(--ease) .95s both;
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  left: -40%;
  background: linear-gradient(115deg,
    transparent 0%,
    rgba(255,255,255,.05) 30%,
    rgba(255,255,255,.20) 50%,
    rgba(255,255,255,.05) 70%,
    transparent 100%);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
  animation: ctaShine 8s cubic-bezier(.45,.05,.35,1) 3s infinite;
}
.hero-cta > * { position: relative; z-index: 2; }
@keyframes ctaShine {
  /* slow glide: the sweep itself takes ~2.3s of the 8s cycle */
  0%   { left: -40%; }
  29%  { left: 130%; }
  100% { left: 130%; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-cta .arrow {
  width: 32px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .35s var(--ease), background-color .35s var(--ease);
}
.hero-cta .arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.hero-cta:hover {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--bg);
}
.hero-cta:hover .arrow { width: 48px; }

/* walk-in note — explicit: no appointment needed */
.hero-walkin {
  display: block;
  margin-top: 24px;
  animation: heroFadeUp 1.1s var(--ease) 1.1s both;
}
.hero-walkin .walkin-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ink);
}
.hero-walkin .walkin-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
  flex-shrink: 0;
}
.hero-walkin .walkin-sub {
  display: block;
  margin-top: 8px;
  padding-left: 20px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(27,28,31,.95);
  max-width: 40ch;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(27,28,31,.8);
  border-radius: 50%;
  transition: color .4s var(--ease), border-color .4s var(--ease);
  cursor: pointer;
}
.hero-scroll-cue svg {
  width: 22px;
  height: 22px;
  animation: scrollChevron 2s ease-in-out infinite;
}
.hero-scroll-cue:hover {
  color: var(--ink);
}
@keyframes scrollChevron {
  0%, 100% { transform: translateY(-2px); opacity: .5; }
  50%      { transform: translateY(4px);  opacity: 1; }
}
@media (max-width: 900px) {
  .hero {
    display: flex;
    align-items: center;
    padding: calc(var(--topbar-h) + 16px) var(--content-pad) 72px;
  }
  .hero-photo { display: none; }
  .hero-content {
    width: 100%;
    min-width: 0;
    max-width: 560px;
    margin: 0 auto;
    align-self: center;
    padding: 0;
  }
  .hero-logo { width: 100%; max-width: 440px; }
}

/* ============================================================
   PRESENTATION
   ============================================================ */
.presentation {
  padding: var(--space-section) 0;
  background: var(--bg);
  position: relative;
}
.presentation .container {
  max-width: 1100px;
}
.pres-statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 24ch;
}
.pres-statement em {
  font-style: normal;
  color: var(--moss);
  font-weight: 400;
}
.pres-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: var(--space-block);
  padding-top: 48px;
  border-top: 1px solid var(--rule);
}
.pres-meta-item .label {
  font-family: var(--display);
  font-size: var(--text-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(27,28,31,.62);
  font-weight: 600;
  margin-bottom: 14px;
}
.pres-meta-item .value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
}
.pres-meta-item .value em {
  font-style: normal;
  color: var(--moss);
}

/* ============================================================
   ÉQUIPE
   ============================================================ */
.equipe {
  padding: 72px 0 64px;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.equipe > .container { width: 100%; }
.equipe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(85,90,63,.14), transparent 70%);
  pointer-events: none;
}
.equipe-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-on-dark);
  position: relative;
}
.equipe-title-wrap h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--h-section);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.equipe-title-wrap h2 em {
  font-style: normal;
  color: var(--steel);
  font-weight: 600;
}
.equipe-title-wrap p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: rgba(236,234,227,.72);
  max-width: 52ch;
  line-height: 1.55;
}
.equipe-stage {
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(236,234,227,.45);
  white-space: nowrap;
  align-self: end;
  padding-bottom: 8px;
}

/* horizontal cards — photo left, identity right: the pairing
   stays obvious at every viewport width */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.barber {
  position: relative;
  display: grid;
  grid-template-columns: clamp(160px, 30%, 260px) 1fr;
  align-items: stretch;
  background: #1f2024;
  border: 1px solid rgba(236,234,227,.08);
  overflow: hidden;
  transition: transform .55s var(--ease), border-color .55s var(--ease), opacity .55s var(--ease);
}
.barber-portrait {
  position: relative;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(180deg, #2a2b2f 0%, #16171a 100%);
  overflow: hidden;
}

.barber-info {
  padding: 26px 30px;
  border-left: 1px solid rgba(236,234,227,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.barber-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.barber-role {
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(236,234,227,.6);
  margin-bottom: 16px;
}
.barber-spec {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(236,234,227,.75);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 18px;
  min-height: auto;
}
.barber-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(236,234,227,.08);
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(236,234,227,.78);
  transition: color .35s var(--ease);
}
.barber-cta .arrow {
  width: 36px; height: 1px;
  background: rgba(236,234,227,.35);
  position: relative;
  transition: width .4s var(--ease), background-color .4s var(--ease);
}
.barber-cta .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid rgba(236,234,227,.35);
  border-top: 1px solid rgba(236,234,227,.35);
  transform: rotate(45deg);
  transition: border-color .4s var(--ease);
}

/* hover */
.barber:hover {
  border-color: rgba(236,234,227,.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(236,234,227,.04);
}
.barber:hover .barber-cta { color: var(--gold); }
.barber:hover .barber-cta .arrow {
  width: 60px;
  background: var(--gold);
}
.barber:hover .barber-cta .arrow::after {
  border-color: var(--gold);
}

/* selected */
.barber.selected { border-color: var(--moss-light); }
.barber.selected::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(85,90,63,.65);
  pointer-events: none;
}
.barber.selected .barber-portrait::after {
  content: '✓';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  background: rgba(0,0,0,.45);
}
.team-grid.has-selection .barber:not(.selected) {
  opacity: 0.42;
}

.equipe-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--rule-on-dark);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.equipe-status {
  font-family: var(--serif);
  font-style: normal;
  font-size: 17px;
  color: rgba(236,234,227,.55);
}
.equipe-status strong {
  font-family: var(--display);
  font-weight: 600;
  font-style: normal;
  font-size: var(--text-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 14px;
}
.equipe-continue {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-cta);
  text-transform: uppercase;
  color: rgba(236,234,227,.32);
  border: 1px solid rgba(236,234,227,.15);
  padding: 18px 28px;
  pointer-events: none;
  transition: all .5s var(--ease);
}
.equipe-continue .arrow {
  width: 0; height: 1px;
  background: currentColor;
  transition: width .4s var(--ease);
}
.equipe-continue.active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  pointer-events: auto;
}
.equipe-continue.active .arrow { width: 32px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-strong);
}
.services-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--h-section);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.services-head h2 em {
  font-style: normal;
  color: var(--moss);
  font-weight: 600;
}
.services-head a {
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  align-self: end;
  transition: color .3s var(--ease);
}
.services-head a:hover { color: var(--moss); }
.services-head a .arrow {
  width: 28px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .35s var(--ease);
}
.services-head a .arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.services-head a:hover .arrow { width: 44px; }

.services-list {
  display: flex;
  flex-direction: column;
}
.service-line {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto auto;
  gap: 36px;
  align-items: baseline;
  padding: 30px 16px;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .4s var(--ease), background-color .4s var(--ease);
}
.service-line:hover {
  background: var(--bg-warm);
  padding-left: 28px;
}
.service-num {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.24em;
  color: var(--ink-quiet);
  transition: color .4s var(--ease);
}
.service-line:hover .service-num { color: var(--moss); }
.service-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--ink);
  transition: color .4s var(--ease);
}
.service-line:hover .service-name { color: var(--moss); }
.service-name small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink-quiet);
  margin-top: 6px;
  letter-spacing: 0;
  line-height: 1.5;
}
.service-duration {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.18em;
  color: var(--ink-quiet);
  text-transform: uppercase;
}
.service-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* ============================================================
   ESPACE TEASER
   ============================================================ */
.espace-teaser {
  padding: 0;
  /* green plaster — moss baked into the texture, so no blend-mode needed (renders on every browser, incl. mobile) */
  background-color: var(--moss);
  background-image: url('assets/textures/concrete-green.webp?v=2');
  background-size: 720px 720px;
  background-repeat: repeat;
  color: var(--bg);
  position: relative;
  min-height: 90vh;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.espace-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 28%, rgba(236,234,227,.10), transparent 58%),
    radial-gradient(ellipse at 80% 72%, rgba(20,22,14,.18), transparent 62%);
  pointer-events: none;
}
.espace-teaser::after { content: none; }
.espace-teaser .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.espace-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.espace-text h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--h-section);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.espace-text h2 em {
  font-style: normal;
  color: var(--steel);
  font-weight: 600;
}
.espace-text p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: var(--text-lede);
  line-height: 1.6;
  color: rgba(236,234,227,.78);
  margin-bottom: 44px;
  max-width: 42ch;
}
.espace-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(236,234,227,.4);
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  transition: padding .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.espace-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  padding-right: 20px;
}
.espace-cta .arrow {
  width: 28px; height: 1px;
  background: currentColor;
  position: relative;
}
.espace-cta .arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.espace-zones {
  display: flex;
  flex-direction: column;
  background: rgba(10,11,13,.18);
  border-top: 1px solid rgba(236,234,227,.12);
  border-bottom: 1px solid rgba(236,234,227,.12);
}
.zone-card {
  background: rgba(27,28,31,.28);
  min-height: 128px;
  display: grid;
  grid-template-columns: minmax(116px, 34%) 1fr;
  transition: background .4s var(--ease);
  overflow: hidden;
  border-bottom: 1px solid rgba(236,234,227,.10);
}
.zone-card:last-child { border-bottom: 0; }
.zone-card:hover { background: rgba(27,28,31,.7); }
.zone-card-media {
  position: relative;
  height: 100%;
  min-height: 128px;
  border-right: 1px solid rgba(236,234,227,.10);
  overflow: hidden;
}
.zone-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(.82);
  transition: transform .6s var(--ease), filter .6s var(--ease);
}
.zone-card:hover .zone-card-media img {
  filter: contrast(1.07) brightness(.9);
  transform: scale(1.03);
}
.zone-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
}
.zone-card .zone-num {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.24em;
  color: rgba(236,234,227,.45);
  text-transform: uppercase;
}
.zone-card .zone-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 14px;
}
.zone-card .zone-name em {
  font-family: var(--serif);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(236,234,227,.66);
  display: block;
  font-size: 16px;
  font-weight: 300;
  margin-top: 6px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--space-section) 0;
  background: var(--bg);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contact-left h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--h-section);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.contact-left h2 em {
  font-style: normal;
  color: var(--moss);
  font-weight: 600;
}
.contact-left p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: var(--text-lede);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40ch;
  margin-bottom: 44px;
}
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 32px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-cta);
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.contact-cta:hover {
  background: var(--moss);
}
.contact-cta .arrow {
  width: 32px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .35s var(--ease);
}
.contact-cta .arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.contact-cta:hover .arrow { width: 50px; }

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-left: 32px;
  border-left: 1px solid var(--rule);
}
.contact-block .label {
  font-family: var(--display);
  font-size: var(--text-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(27,28,31,.62);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-block .value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
}
.contact-block .value em {
  font-style: normal;
  color: var(--moss);
}
.contact-block a.value:hover { color: var(--moss); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 40px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule-on-dark);
}
footer .logo-block img {
  width: 210px;
  margin-bottom: 24px;
  opacity: 0.95;
}
footer .logo-block p {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(236,234,227,.55);
  max-width: 28ch;
}
.footer-col h4 {
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(236,234,227,.45);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(236,234,227,.82);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.footer-col a:hover { color: var(--bg); padding-left: 6px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(236,234,227,.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --content-pad: 32px; }
  .topbar nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .pres-meta { grid-template-columns: 1fr; gap: 28px; }
  .equipe-head { flex-direction: column; align-items: start; gap: 16px; }
  .equipe-stage { padding-bottom: 0; }
  .team-grid { gap: 16px; }
  .equipe-actions { flex-direction: column; gap: 24px; align-items: start; }
  .services-head { flex-direction: column; align-items: start; gap: 24px; }
  .service-line { grid-template-columns: 36px 1fr auto; gap: 18px; padding: 24px 8px; }
  .service-line:hover { padding-left: 16px; }
  .service-duration { display: none; }
  .espace-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-right { padding-left: 0; border-left: none; padding-top: 32px; border-top: 1px solid var(--rule); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (min-width: 901px) and (max-width: 1250px) {
  .hero {
    grid-template-columns: minmax(360px, 1fr) minmax(440px, 52vw);
    gap: clamp(40px, 5vw, 72px);
    padding-inline: clamp(32px, 4vw, 56px);
  }
  .hero h1 {
    font-size: clamp(46px, 5.7vw, 68px);
  }
}
@media (max-width: 700px) {
  :root {
    --content-pad: 24px;
    --topbar-h: 58px;
    --space-section: 76px;
    --space-block: 44px;
  }
  .section, .presentation, .services, .contact { padding: 64px 0; }
  .topbar { padding: 0 16px; }
  .topbar.scrolled.on-light { background: rgba(236,234,227,.82); }
  .topbar .logo { height: 27px; }
  .topbar .cta { padding: 9px 13px; gap: 9px; }
  .topbar .cta .arrow { width: 15px; }
  .equipe { padding: 60px 0 56px; }
  .barber { grid-template-columns: 118px 1fr; }
  .barber-portrait { min-height: 172px; }
  .barber-info { padding: 16px 16px; }
  .barber-name { font-size: 19px; }
  .barber-role { margin-bottom: 10px; }
  .barber-spec { font-size: 13.5px; margin-bottom: 12px; }
  .barber-cta { padding-top: 12px; font-size: 11px; letter-spacing: 0.12em; gap: 10px; }
  .barber-cta .arrow { width: 22px; flex-shrink: 0; }
  .equipe-continue { width: 100%; justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: start; }
  .zone-card { grid-template-columns: 104px 1fr; min-height: 112px; }
  .zone-card-media { min-height: 112px; }
  .zone-card-body { padding: 18px 18px; }
  .zone-card .zone-name { font-size: 18px; }
  .zone-card .zone-name em { font-size: 14px; }
  .espace-teaser { padding-top: 48px; padding-bottom: 56px; }
  .espace-grid { gap: 40px; }
  .hero .hero-logo { margin-bottom: 22px; }
  .hero h1 { margin-bottom: 18px; }
  .hero-lede { margin-bottom: 26px; }
  .hero-cta { width: 100%; justify-content: space-between; padding: 18px 22px; }
  .hero-walkin { margin-top: 18px; }
  .hero-walkin .walkin-sub { font-size: 15.5px; }
  .pres-meta { gap: 24px; margin-top: 56px; padding-top: 36px; }
  .services-head { margin-bottom: 36px; }
  .service-line { padding: 22px 4px; gap: 14px; }
  .service-line:hover { padding-left: 10px; }
  .service-name { font-size: 21px; }
  .service-name small { font-size: 13.5px; }
  .service-price { font-size: 19px; }
  .service-price .price-from { font-size: 10px; }
  .faq-summary { font-size: 19px; }
  .contact-left h2 { margin-bottom: 24px; }
  .contact-cta { width: 100%; justify-content: space-between; }
  .entrance img { width: 78vw; }
}

/* ============================================================
   HERO LOGO (replaces text eyebrow)
   ============================================================ */
.hero-logo {
  display: block;
  width: clamp(380px, 34vw, 560px);
  max-width: 100%;
  margin-bottom: clamp(32px, 4.2vh, 48px);
  animation: heroFadeUp 1.4s var(--ease) 0.1s both;
}
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  /* white logotype → ink, sitting on cement */
  filter: invert(1) drop-shadow(0 2px 10px rgba(255,255,255,.12));
}

/* ============================================================
   TOPBAR LOGO — single white-on-transparent, inverted on light bg
   ============================================================ */
.topbar .logo {
  height: 51px;
  gap: 0;
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.topbar.past-hero .logo {
  opacity: 1;
  pointer-events: auto;
}
.topbar .logo img {
  height: 100%;
  width: auto;
  display: block;
  transition: filter .4s var(--ease);
}
.topbar.on-light .logo img { filter: invert(1); }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  padding: calc(var(--topbar-h) + clamp(64px, 9vh, 110px)) 0 clamp(64px, 9vh, 110px);
  background: var(--bg);
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.page-hero.dark { background: var(--ink); color: var(--bg); border-bottom-color: var(--rule-on-dark); }
.page-hero.moss { background: var(--moss); color: var(--bg); border-bottom-color: rgba(255,255,255,.08); }
.page-hero .container { max-width: 1100px; }
.page-hero .section-label { margin-bottom: 32px; }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--h-hero);
  line-height: 1.0;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 18ch;
}
.page-hero h1 em {
  font-style: normal;
  color: var(--moss);
  font-weight: 600;
}
.page-hero.dark h1 em, .page-hero.moss h1 em { color: var(--steel); }
.page-hero p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: var(--text-lede);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.page-hero.dark p, .page-hero.moss p { color: rgba(236,234,227,.72); }

/* ============================================================
   ZONE (espace.html)
   ============================================================ */
.zone {
  padding: clamp(88px, 11vh, 128px) 0;
  position: relative;
  background: var(--bg);
}
.zone[data-tone="dark"] { background: var(--ink); color: var(--bg); }
.zone[data-tone="moss"] {
  background-color: var(--moss);
  background-image: url('assets/textures/concrete-green.webp?v=2');
  background-size: 720px 720px;
  background-repeat: repeat;
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.zone[data-tone="moss"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 22%, rgba(236,234,227,.08), transparent 58%),
    radial-gradient(ellipse at 80% 80%, rgba(20,22,14,.35), transparent 60%);
  pointer-events: none;
}
.zone .container { position: relative; z-index: 1; }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: center;
}
.zone-text { max-width: 50ch; }
.zone-num {
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(27,28,31,.62);
  font-weight: 400;
  margin-bottom: 24px;
}
.zone[data-tone="dark"] .zone-num,
.zone[data-tone="moss"] .zone-num { color: rgba(236,234,227,.62); }
.zone-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.zone-name em {
  font-family: var(--serif);
  font-style: normal;
  text-transform: none;
  color: var(--moss);
  font-weight: 400;
  display: block;
  font-size: clamp(17px, 1.6vw, 22px);
  margin-top: 14px;
  letter-spacing: 0;
  line-height: 1.3;
}
.zone[data-tone="dark"] .zone-name em,
.zone[data-tone="moss"] .zone-name em { color: rgba(236,234,227,.66); }
.zone-desc {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: var(--text-lede);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-bottom: 32px;
}
.zone[data-tone="dark"] .zone-desc,
.zone[data-tone="moss"] .zone-desc { color: rgba(236,234,227,.78); }
.zone-meta {
  display: flex;
  gap: 32px;
  font-family: var(--mono);
  font-size: var(--text-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  flex-wrap: wrap;
}
.zone[data-tone="dark"] .zone-meta,
.zone[data-tone="moss"] .zone-meta { color: rgba(236,234,227,.45); }
.zone-meta span { position: relative; }
.zone-meta span + span::before {
  content: '·';
  position: absolute; left: -20px; top: 0;
}

.zone-visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.zone[data-tone="dark"] .zone-visual,
.zone[data-tone="moss"] .zone-visual { border-color: var(--rule-on-dark); }
.zone-visual .placeholder-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.45);
  padding: 6px 11px;
  z-index: 4;
}
/* index numeral — quiet corner mark instead of full-bleed watermark */
.zone-visual .zone-letter {
  position: absolute;
  left: 20px;
  bottom: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(236,234,227,.85);
  z-index: 3;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.zone-visual.bg-cream {
  background: #E8E5DD;
}
.zone-visual.bg-charcoal {
  background: #1B1C1F;
}
.zone-visual.bg-moss {
  background: #3E4230;
}
.zone-visual.bg-steel {
  background: #B6BABE;
}

/* ============================================================
   SERVICES — full
   ============================================================ */
.services-full {
  padding: 80px 0 160px;
  background: var(--bg);
}
.service-cat {
  margin-bottom: 96px;
}
.service-cat:last-child { margin-bottom: 0; }
.cat-label {
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--moss);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-strong);
  display: block;
}

/* ============================================================
   BARBER DETAIL (equipe.html)
   ============================================================ */
.barber-detail {
  padding: var(--space-section) 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.barber-detail.alt {
  background: #1f2024;
  border-top: 1px solid var(--rule-on-dark);
}
.barber-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.barber-detail-portrait {
  aspect-ratio: 3/4;
  position: relative;
  background: linear-gradient(180deg, #2a2b2f 0%, #14151a 100%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.barber-detail-text .role {
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(236,234,227,.6);
  margin-bottom: 22px;
}
.barber-detail-text h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(52px, 6.4vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.barber-detail-text .bio {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--text-lede);
  line-height: 1.65;
  color: rgba(236,234,227,.78);
  margin-bottom: 22px;
  max-width: 56ch;
}
.barber-detail-text .bio:last-of-type { margin-bottom: 34px; }
.barber-detail-text .bio em { font-style: normal; color: rgba(236,234,227,.5); }
.barber-detail-text .specs {
  margin-bottom: 38px;
  padding: 26px 0;
  border-top: 1px solid rgba(236,234,227,.12);
  border-bottom: 1px solid rgba(236,234,227,.12);
}
.barber-detail-text .specs dt {
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(236,234,227,.5);
  margin-bottom: 8px;
}
.barber-detail-text .specs dd {
  font-family: var(--serif);
  font-style: normal;
  font-size: 17px;
  color: rgba(236,234,227,.88);
  font-weight: 300;
  margin-bottom: 18px;
  line-height: 1.55;
}
.barber-detail-text .specs dd em { color: var(--bg); font-style: normal; }
.barber-detail-text .specs dd:last-child { margin-bottom: 0; }

.barber-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(236,234,227,.25);
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-cta);
  text-transform: uppercase;
  color: var(--bg);
  transition: all .35s var(--ease);
}
.barber-cta-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.barber-cta-link .arrow {
  width: 32px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .35s var(--ease);
}
.barber-cta-link .arrow::after {
  content: '';
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.barber-cta-link:hover .arrow { width: 48px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 80px 0 160px;
  background: var(--bg);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 96px;
  align-items: start;
}
.contact-info-block {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.contact-info-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.contact-info-block .label {
  font-family: var(--display);
  font-size: var(--text-label);
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(27,28,31,.62);
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-info-block .value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
  display: block;
}
.contact-info-block .value em {
  font-style: normal;
  color: var(--moss);
  font-size: 0.85em;
}
.contact-info-block a.value:hover { color: var(--moss); }

.map-frame {
  background: var(--bg-warm);
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
}
#leaflet-map {
  position: absolute;
  inset: 0;
  background: #e8e5dd;
  /* light basemap — legible street names on the cream page */
}
.leaflet-container { background: #e8e5dd !important; font-family: var(--sans) !important; }
.leaflet-control-attribution {
  background: rgba(255,255,255,.78) !important;
  color: rgba(44,45,49,.6) !important;
  font-size: 10px !important;
  letter-spacing: 0.06em !important;
  padding: 4px 8px !important;
  border: 1px solid rgba(44,45,49,.10) !important;
}
.leaflet-control-attribution a { color: rgba(44,45,49,.7) !important; }
.leaflet-bar a {
  background: rgba(255,255,255,.92) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(44,45,49,.16) !important;
  font-family: var(--display) !important;
  font-weight: 400 !important;
}
.leaflet-bar a:hover { background: var(--moss) !important; color: var(--bg) !important; }
.leaflet-marc-pin { position: relative; }
.leaflet-marc-pin .pin-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--moss);
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fff, 0 2px 8px rgba(27,28,31,.4);
  z-index: 2;
}
.leaflet-marc-pin .pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(62,66,48,.30);
  animation: pinPulse 2.4s ease-in-out infinite;
  z-index: 1;
}
@keyframes pinPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(.8); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}
.map-overlay-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 500;
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(236,234,227,.75);
  background: rgba(13,14,17,.7);
  backdrop-filter: blur(6px);
  padding: 9px 15px;
  border: 1px solid rgba(236,234,227,.1);
  pointer-events: none;
}
.map-note {
  margin-top: 18px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
}
.map-note a {
  color: var(--moss);
  font-weight: 500;
  border-bottom: 1px solid var(--moss);
  padding-bottom: 1px;
  transition: opacity .3s var(--ease);
}
.map-note a:hover { opacity: .7; }

/* ============================================================
   RESPONSIVE — additions
   ============================================================ */
@media (max-width: 1100px) {
  .topbar .logo { height: 38px; }
  .zone-grid { grid-template-columns: 1fr !important; gap: 40px; }
  /* photo first, text second — consistent order when zones stack */
  .zone-grid .zone-visual { order: 1; }
  .zone-grid .zone-text { order: 2; }
  .barber-detail-grid { grid-template-columns: 1fr; gap: 56px; }
  .barber-detail-grid > .barber-detail-text { order: 2; }
  .barber-detail-grid > .barber-detail-portrait { order: 1; max-width: 480px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 64px; }
}
@media (max-width: 700px) {
  .page-hero { padding: calc(var(--topbar-h) + 56px) 0 56px; }
  .zone { padding: 80px 0; }
  .barber-detail { padding: 80px 0; }
  .zone-meta { flex-direction: column; gap: 8px; }
  .zone-meta span + span::before { display: none; }
}

/* ============================================================
   LE MÉTIER — philosophy pull-quote section (moss bg)
   ============================================================ */
.metier {
  padding: var(--space-section) 0;
  /* green plaster — moss baked into the texture, so no blend-mode needed (renders on every browser, incl. mobile) */
  background-color: var(--moss);
  background-image: url('assets/textures/concrete-green.webp?v=2');
  background-size: 720px 720px;
  background-repeat: repeat;
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.metier::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 28%, rgba(236,234,227,.10), transparent 58%),
    radial-gradient(ellipse at 80% 78%, rgba(20,22,14,.38), transparent 60%);
  pointer-events: none;
}
.metier::after { content: none; }
.metier .container {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}
.metier .section-label {
  margin-bottom: 48px;
  color: rgba(236,234,227,.55);
}
.metier-quote {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--bg);
  margin-bottom: 44px;
  max-width: 34ch;
}
.metier-quote em {
  font-style: normal;
  color: var(--bg);
  font-weight: 500;
}
.metier-author {
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(236,234,227,.65);
  padding-top: 26px;
  border-top: 1px solid rgba(236,234,227,.22);
  display: inline-block;
}
.metier-body {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--text-lede);
  line-height: 1.65;
  color: rgba(236,234,227,.78);
  max-width: 56ch;
  margin-top: 48px;
}
.metier-body em {
  font-style: normal;
  color: var(--bg);
  font-weight: 500;
}

/* ============================================================
   FAQ — collapsible questions (light bg)
   ============================================================ */
.faq-section {
  padding: var(--space-section) 0;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}
.faq-head {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-strong);
}
.faq-head .section-label { margin-bottom: 20px; }
.faq-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--h-section);
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.faq-title em {
  font-style: normal;
  color: var(--moss);
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 48px;
  padding: 30px 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.3;
  color: var(--ink);
  transition: padding-left .4s var(--ease), color .4s var(--ease);
  user-select: none;
}
.faq-summary::after {
  content: '+';
  font-family: var(--display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-quiet);
  transition: color .4s var(--ease), transform .4s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-summary {
  color: var(--moss);
}
.faq-item[open] .faq-summary::after {
  content: '−';
  color: var(--moss);
}
.faq-item:hover .faq-summary {
  padding-left: 28px;
}
.faq-answer {
  padding: 0 16px 34px 16px;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: var(--text-lede);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 68ch;
}
.faq-answer a {
  color: var(--moss);
  border-bottom: 1px solid var(--moss);
  transition: opacity .3s var(--ease);
}
.faq-answer a:hover { opacity: 0.7; }

@media (max-width: 700px) {
  .metier { padding: 80px 0; }
  .faq-section { padding: 80px 0; }
  .faq-summary { padding: 24px 8px; gap: 24px; }
  .faq-answer { padding: 0 8px 24px 8px; }
  .faq-item:hover .faq-summary { padding-left: 8px; }
}

/* ============================================================
   SCROLL MOTION — restrained editorial reveals
   ============================================================ */
.motion-ready [data-motion] {
  --motion-y: 18px;
  --motion-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, var(--motion-y), 0);
  transition:
    opacity .72s var(--ease),
    transform .86s var(--ease);
  transition-delay: var(--motion-delay);
  will-change: opacity, transform;
}
.motion-ready [data-motion].motion-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-ready [data-motion="quiet"] { --motion-y: 10px; }
.motion-ready [data-motion="copy"] {
  --motion-y: 14px;
  transition-duration: .82s, .95s;
}
.motion-ready [data-motion="mask-left"],
.motion-ready [data-motion="mask-up"] {
  opacity: 1;
  transform: none;
  overflow: hidden;
  transition: clip-path .95s var(--ease), opacity .72s var(--ease);
  transition-delay: var(--motion-delay);
}
.motion-ready [data-motion="mask-left"] { clip-path: inset(0 100% 0 0); }
.motion-ready [data-motion="mask-up"] {
  clip-path: inset(12% 0 0 0);
  opacity: 0;
}
.motion-ready [data-motion="mask-left"].motion-in,
.motion-ready [data-motion="mask-up"].motion-in {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.motion-ready [data-motion="service-line"] {
  opacity: 1;
  transform: none;
  border-top-color: transparent;
}
.motion-ready [data-motion="service-line"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule-strong);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s var(--ease);
  transition-delay: var(--motion-delay);
  pointer-events: none;
}
.motion-ready [data-motion="service-line"] > * {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity .62s var(--ease),
    transform .78s var(--ease);
  transition-delay: calc(var(--motion-delay) + 110ms);
}
.motion-ready [data-motion="service-line"].motion-in::before { transform: scaleX(1); }
.motion-ready [data-motion="service-line"].motion-in > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-ready .service-line { position: relative; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-photo img,
  .hero h1 .line span,
  .hero-logo,
  .hero-lede,
  .hero-cta,
  .hero-walkin,
  .hero-scroll-cue svg {
    animation: none !important;
  }
  .hero-photo img { opacity: 1 !important; }
  .hero-photo img:nth-of-type(2) { display: none; }
  .motion-ready [data-motion],
  .motion-ready [data-motion] > * {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
  .motion-ready [data-motion="service-line"]::before {
    transform: scaleX(1) !important;
    transition: none !important;
  }
}

/* ============================================================
   BARBER PHOTOS (real images replacing placeholder silhouette)
   ============================================================ */
.barber-portrait .barber-photo,
.barber-detail-portrait .barber-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: contrast(1.04);
  transition: filter .7s var(--ease), transform 1.1s var(--ease);
}
.barber:hover .barber-portrait .barber-photo,
.barber.selected .barber-portrait .barber-photo {
  filter: contrast(1.1) saturate(1.1) brightness(1.05);
  transform: scale(1.05);
}
.barber-detail:hover .barber-detail-portrait .barber-photo {
  filter: contrast(1.08) saturate(1.06);
  transform: scale(1.02);
}
/* Bottom fade — for any text overlay legibility */
.barber-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(13,14,17,.45) 100%);
  z-index: 2;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}
/* Cool hover effect — diagonal sheen sweeps across photo */
.barber-portrait::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -55%;
  width: 50%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,0) 65%,
    transparent 100%);
  transform: skewX(-14deg);
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: overlay;
}
.barber:hover .barber-portrait::before {
  animation: barberSheen 1.1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes barberSheen {
  0%   { left: -55%; opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* ============================================================
   SECTION BLEND TRANSITIONS — sections fade into each other
   instead of slamming into hard color blocks
   ============================================================ */
.presentation,
.equipe,
.services,
.metier,
.espace-teaser,
.faq-section,
.contact,
.contact-section,
.barber-detail {
  position: relative;
}
.presentation > .container,
.equipe > .container,
.services > .container,
.metier > .container,
.espace-teaser > .container,
.faq-section > .container,
.contact > .container,
.contact-section > .container,
.barber-detail > .container { position: relative; z-index: 2; }

/* Section blending — minimal, just a clean edge transition.
   No tall halo gradients; sections meet directly. */
footer { position: relative; }
footer > .container { position: relative; z-index: 1; }

/* ============================================================
   ENTRANCE — one-time logo reveal, lifts to the hero.
   Skipped on repeat visits (sessionStorage) + reduced motion.
   ============================================================ */
.entrance {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: #0a0b0d;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: entranceLift .6s var(--ease-cinematic) .85s forwards;
}
/* film grain on the curtain */
.entrance::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='420' height='420'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='420' height='420' filter='url(%23g)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .4;
  pointer-events: none;
}
.entrance img {
  position: relative;
  width: clamp(440px, 56vw, 820px);
  max-width: 90vw;
  animation: entranceLogoIn .65s var(--ease) .1s both;
}
@keyframes entranceLogoIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes entranceLift {
  to { transform: translateY(-101%); }
}
html.entrance-lock { overflow: hidden; }

/* hero choreography waits for the curtain (lift clears mid-screen ~1.15s) */
html.entrance-play .hero-logo { animation-delay: 1.0s; }
html.entrance-play .hero h1 .line:nth-child(1) span { animation-delay: 1.1s; }
html.entrance-play .hero h1 .line:nth-child(2) span { animation-delay: 1.25s; }
html.entrance-play .hero-cta { animation-delay: 1.5s; }
html.entrance-play .hero-walkin { animation-delay: 1.65s; }

@media (prefers-reduced-motion: reduce) {
  .entrance { display: none; }
}

/* ============================================================
   PRICES — "à partir de" qualifier above the number
   ============================================================ */
.service-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.service-price .price-from {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* ============================================================
   FOOTER NOCTAVE LINK
   ============================================================ */
.footer-bottom a {
  color: rgba(236,234,227,.55);
  border-bottom: 1px solid rgba(236,234,227,.15);
  padding-bottom: 1px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.footer-bottom a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   HEADER LOGO — removed per request.
   The hairline logotype never held up small; brand now lives in the
   hero lockup (home) and the footer. visibility:hidden (not display:none)
   keeps its grid cell so the nav stays centered and the bar balanced.
   ============================================================ */
.topbar .logo { visibility: hidden; pointer-events: none; }

/* ============================================================
   OPENING ANNOUNCEMENT — slim strip under the topbar on the home hero.
   Hidden until main.js resolves the countdown, so it can never flash a
   stale value. Self-removes a week after opening.
   ============================================================ */
.hero-announce {
  position: absolute;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 20px;
  background: var(--moss);
  color: var(--bg);
  font-family: var(--display);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
}
.hero-announce.is-ready {
  animation: heroFadeUp 1s var(--ease) .35s both;
}
.hero-announce strong { font-weight: 600; }
.announce-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bg);
  flex-shrink: 0;
  animation: announcePulse 2.6s ease-in-out infinite;
}
@keyframes announcePulse {
  0%, 100% { opacity: .3; }
  50%      { opacity: 1; }
}
.announce-count {
  font-family: var(--mono);
  font-size: var(--text-mono);
  text-transform: none;
  letter-spacing: .06em;
  opacity: .82;
  display: flex;
  align-items: center;
  gap: 14px;
}
.announce-count::before {
  content: '';
  width: 1px;
  height: 11px;
  background: currentColor;
  opacity: .45;
}
@media (max-width: 700px) {
  .hero-announce {
    font-size: 10px;
    letter-spacing: .14em;
    gap: 10px;
    padding: 9px 14px;
  }
  .announce-count { gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .announce-dot { animation: none; opacity: .9; }
}

/* ============================================================
   LEGAL — mentions légales & politique de confidentialité (prose)
   ============================================================ */
.legal { padding: var(--space-section) 0; background: var(--bg); }
.legal .container { max-width: 760px; }
.legal-block { margin-bottom: clamp(48px, 7vh, 80px); }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--h-section);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--ink);
}
.legal-block h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 36px 0 12px;
  color: var(--ink);
}
.legal-block p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 68ch;
}
.legal-block p em { color: var(--ink-quiet); font-style: italic; }
.legal-block strong { font-weight: 500; color: var(--ink); }
.legal-block a { color: var(--moss); border-bottom: 1px solid var(--moss); transition: opacity .3s var(--ease); }
.legal-block a:hover { opacity: 0.7; }
.legal-meta { margin: 20px 0; border-top: 1px solid var(--rule); }
.legal-meta dt {
  font-family: var(--sans);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-top: 18px;
}
.legal-meta dd {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 4px 0 0;
}
.legal-list { list-style: none; margin: 8px 0 16px; padding: 0; }
.legal-list li {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.legal-list li::before { content: '—'; position: absolute; left: 0; color: var(--moss); }
.legal-updated { margin-top: 32px; font-size: 14px !important; color: var(--ink-quiet) !important; }
@media (max-width: 700px) {
  .legal { padding: 72px 0; }
  .legal-block h2 { margin-bottom: 20px; }
}
